@eeacms/volto-marine-policy 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (154) hide show
  1. package/.coverage.babel.config.js +9 -0
  2. package/.eslintrc.js +65 -0
  3. package/.husky/pre-commit +2 -0
  4. package/.release-it.json +17 -0
  5. package/CHANGELOG.md +5 -0
  6. package/DEVELOP.md +53 -0
  7. package/DEVELOP.md.tpl +106 -0
  8. package/Jenkinsfile.tpl +416 -0
  9. package/LICENSE.md +9 -0
  10. package/Makefile.tpl +165 -0
  11. package/README.md +172 -0
  12. package/README.md.tpl +93 -0
  13. package/RELEASE.md +74 -0
  14. package/babel.config.js +17 -0
  15. package/bootstrap +41 -0
  16. package/cypress.config.js +24 -0
  17. package/docker-compose.yml +32 -0
  18. package/jest-addon.config.js +35 -0
  19. package/jest-addon.config.js.tpl +51 -0
  20. package/jest.setup.js +65 -0
  21. package/locales/de/LC_MESSAGES/volto.po +14 -0
  22. package/locales/en/LC_MESSAGES/volto.po +14 -0
  23. package/locales/it/LC_MESSAGES/volto.po +14 -0
  24. package/locales/ro/LC_MESSAGES/volto.po +14 -0
  25. package/locales/volto.pot +16 -0
  26. package/package.json +68 -0
  27. package/package.json.tpl +70 -0
  28. package/razzle.extend.js +29 -0
  29. package/src/components/Blocks/CustomBlockTemplates/customBlockTemplates.js +25 -0
  30. package/src/components/Blocks/MsfdDataExplorerBlock/Edit.jsx +29 -0
  31. package/src/components/Blocks/MsfdDataExplorerBlock/View.jsx +105 -0
  32. package/src/components/Blocks/MsfdDataExplorerBlock/index.js +23 -0
  33. package/src/components/Blocks/MsfdDataExplorerBlock/schema.jsx +30 -0
  34. package/src/components/Result/MarineMeasureItem.jsx +83 -0
  35. package/src/components/Widgets/MeasureViewWidget.jsx +233 -0
  36. package/src/components/Widgets/String.jsx +15 -0
  37. package/src/components/Widgets/TextAlign.jsx +41 -0
  38. package/src/components/Widgets/measure.css +101 -0
  39. package/src/components/index.js +15 -0
  40. package/src/components/theme/AppExtras/PrintPage/PrintPage.jsx +61 -0
  41. package/src/components/theme/AppExtras/PrintPage/css/printpage.less +29 -0
  42. package/src/components/theme/AppExtras/PrintPage/index.js +3 -0
  43. package/src/components/theme/AppExtras/ScrollToTop/ScrollToTop.jsx +61 -0
  44. package/src/components/theme/AppExtras/ScrollToTop/css/scrolltop.less +19 -0
  45. package/src/components/theme/AppExtras/ScrollToTop/index.js +3 -0
  46. package/src/components/theme/AppExtras/index.js +18 -0
  47. package/src/components/theme/DatabaseItemView/DatabaseItemView.jsx +39 -0
  48. package/src/components/theme/DatabaseItemView/style.less +87 -0
  49. package/src/components/theme/Header/HeroSection.jsx +45 -0
  50. package/src/components/theme/Header/StickyHeader.jsx +51 -0
  51. package/src/components/theme/Header/less/globals.less +18 -0
  52. package/src/components/theme/Header/less/herosection.less +64 -0
  53. package/src/components/theme/Header/less/herosection.variables +18 -0
  54. package/src/components/theme/ItemMetadata/ItemMetadata.jsx +217 -0
  55. package/src/components/theme/ItemMetadata/ItemMetadataSnippet.jsx +69 -0
  56. package/src/components/theme/ItemMetadata/ItemTitle.jsx +29 -0
  57. package/src/components/theme/MetadataListingView/MapPreview.jsx +105 -0
  58. package/src/components/theme/MetadataListingView/MetadataHeader.jsx +66 -0
  59. package/src/components/theme/MetadataListingView/MetadataListingView.jsx +36 -0
  60. package/src/components/theme/MetadataListingView/style.less +219 -0
  61. package/src/components/theme/SimpleListingView/SimpleListingView.jsx +97 -0
  62. package/src/components/theme/SimpleListingView/style.less +33 -0
  63. package/src/components/theme/Tableau/TableauDownload.jsx +86 -0
  64. package/src/components/theme/Tableau/TableauFullscreen.jsx +78 -0
  65. package/src/components/theme/Tableau/TableauShare.jsx +128 -0
  66. package/src/components/theme/View/FullwidthView.jsx +102 -0
  67. package/src/components/theme/View/HeroSectionView.jsx +125 -0
  68. package/src/constants/ActionTypes.js +12 -0
  69. package/src/constants/measureFields.js +56 -0
  70. package/src/customizations/@eeacms/volto-block-style/StyleWrapper/schema.js +217 -0
  71. package/src/customizations/@eeacms/volto-eea-design-system/ui/Header/Header.jsx +358 -0
  72. package/src/customizations/@eeacms/volto-eea-design-system/ui/Header/HeaderMenuPopUp.js +403 -0
  73. package/src/customizations/@eeacms/volto-eea-design-system/ui/Header/HeaderSearchPopUp.js +131 -0
  74. package/src/customizations/@eeacms/volto-eea-design-system/ui/Logo/Logo.jsx +32 -0
  75. package/src/customizations/@eeacms/volto-eea-design-system/ui/Logo/marine_logo.svg +63 -0
  76. package/src/customizations/volto/components/manage/Contents/ContentsBreadcrumbs.jsx +81 -0
  77. package/src/customizations/volto/components/manage/Contents/README.md +1 -0
  78. package/src/customizations/volto/components/manage/Toolbar/PersonalTools.jsx +205 -0
  79. package/src/customizations/volto/components/manage/Toolbar/Toolbar.jsx +624 -0
  80. package/src/customizations/volto/components/theme/Breadcrumbs/Breadcrumbs.jsx +49 -0
  81. package/src/customizations/volto/components/theme/Breadcrumbs/README.md +1 -0
  82. package/src/customizations/volto/components/theme/Header/Header.jsx +272 -0
  83. package/src/helpers/index.js +2 -0
  84. package/src/helpers/useCopyToClipboard.js +25 -0
  85. package/src/helpers/useOutsideClick.js +20 -0
  86. package/src/icons/arrow.svg +3 -0
  87. package/src/icons/basket.svg +3 -0
  88. package/src/icons/newspaper.svg +3 -0
  89. package/src/icons/popup.svg +3 -0
  90. package/src/icons/search.svg +3 -0
  91. package/src/icons/star-full.svg +3 -0
  92. package/src/icons/user.svg +3 -0
  93. package/src/index.js +466 -0
  94. package/src/reducers/breadcrumb/breadcrumb.js +59 -0
  95. package/src/reducers/index.js +2 -0
  96. package/src/reducers/localnavigation/localnavigation.js +69 -0
  97. package/src/search/config.js +98 -0
  98. package/src/search/facets.js +85 -0
  99. package/src/search/index.js +48 -0
  100. package/src/search/views.js +15 -0
  101. package/src/slate-styles.less +43 -0
  102. package/src/static/bise_logo.svg +1 -0
  103. package/src/static/cca_logo.svg +20 -0
  104. package/src/static/ec_logo.svg +343 -0
  105. package/src/static/ec_logo_white.svg +10 -0
  106. package/src/static/eea_logo.svg +14 -0
  107. package/src/static/footer-fishes.svg +21 -0
  108. package/src/static/forest_logo.svg +30 -0
  109. package/src/static/freshwater_logo.svg +12 -0
  110. package/src/static/marine_logo.svg +63 -0
  111. package/src/static/marine_logo_white.svg +44 -0
  112. package/src/utils.js +38 -0
  113. package/theme/assets/fonts/Poppins/Poppins-Bold.ttf +0 -0
  114. package/theme/assets/fonts/Poppins/Poppins-Bold.woff +0 -0
  115. package/theme/assets/fonts/Poppins/Poppins-Bold.woff2 +0 -0
  116. package/theme/assets/fonts/Poppins/Poppins-ExtraBold.ttf +0 -0
  117. package/theme/assets/fonts/Poppins/Poppins-Light.ttf +0 -0
  118. package/theme/assets/fonts/Poppins/Poppins-Light.woff +0 -0
  119. package/theme/assets/fonts/Poppins/Poppins-Light.woff2 +0 -0
  120. package/theme/assets/fonts/Poppins/Poppins-Regular.ttf +0 -0
  121. package/theme/assets/fonts/Poppins/Poppins-Regular.woff +0 -0
  122. package/theme/assets/fonts/Poppins/Poppins-Regular.woff2 +0 -0
  123. package/theme/assets/fonts/Poppins/Poppins-SemiBold.ttf +0 -0
  124. package/theme/assets/fonts/Poppins/Poppins-SemiBold.woff +0 -0
  125. package/theme/assets/fonts/Poppins/Poppins-SemiBold.woff2 +0 -0
  126. package/theme/assets/fonts/Roboto/Roboto-Light.ttf +0 -0
  127. package/theme/assets/fonts/Roboto/Roboto-Light.woff +0 -0
  128. package/theme/assets/fonts/Roboto/Roboto-Light.woff2 +0 -0
  129. package/theme/assets/fonts/Roboto/Roboto-Medium.ttf +0 -0
  130. package/theme/assets/fonts/Roboto/Roboto-Medium.woff +0 -0
  131. package/theme/assets/fonts/Roboto/Roboto-Medium.woff2 +0 -0
  132. package/theme/assets/fonts/Roboto/Roboto-Regular.ttf +0 -0
  133. package/theme/assets/fonts/Roboto/Roboto-Regular.woff +0 -0
  134. package/theme/assets/fonts/Roboto/Roboto-Regular.woff2 +0 -0
  135. package/theme/assets/images/Footer/ec_logo.svg +10 -0
  136. package/theme/assets/images/Header/climate-adapt-logo-1.svg +20 -0
  137. package/theme/assets/images/Header/climate-adapt-logo.svg +22 -0
  138. package/theme/assets/images/spinner.svg +1 -0
  139. package/theme/collections/table.variables +17 -0
  140. package/theme/elements/button.overrides +22 -0
  141. package/theme/extras/banner.variables +5 -0
  142. package/theme/extras/contextNavigation.overrides +60 -0
  143. package/theme/extras/contextNavigation.variables +32 -0
  144. package/theme/extras/footer.variables +6 -0
  145. package/theme/extras/header.overrides +20 -0
  146. package/theme/extras/header.variables +7 -0
  147. package/theme/extras/hero.overrides +4 -0
  148. package/theme/extras/inpageNavigation.variables +5 -0
  149. package/theme/extras/mixins.less +8 -0
  150. package/theme/globals/site.overrides +349 -0
  151. package/theme/globals/site.variables +997 -0
  152. package/theme/theme.config +136 -0
  153. package/theme/tokens/colors.less +9 -0
  154. package/theme/tokens/tokens.less +1 -0
@@ -0,0 +1,85 @@
1
+ import { histogramFacet, makeRange, multiTermFacet } from '@eeacms/search';
2
+ import globalSearchBaseConfig from '@eeacms/volto-globalsearch/config/global-search-base-config.js';
3
+
4
+ const facets = [
5
+ ...globalSearchBaseConfig.facets.filter(
6
+ (facet) => facet.field !== 'time_coverage',
7
+ ),
8
+ multiTermFacet({
9
+ field: 'wm_spm_sector.keyword',
10
+ isFilterable: false,
11
+ isMulti: true,
12
+ label: 'Sector',
13
+ iconsFamily: 'Sources',
14
+ alwaysVisible: true,
15
+ }),
16
+ multiTermFacet({
17
+ field: 'wm_spm_origin.keyword',
18
+ isFilterable: false,
19
+ isMulti: true,
20
+ label: 'Origin of the measure',
21
+ iconsFamily: 'Sources',
22
+ alwaysVisible: true,
23
+ }),
24
+ multiTermFacet({
25
+ field: 'wm_spm_country_coverage.keyword',
26
+ isFilterable: false,
27
+ isMulti: true,
28
+ label: 'Country',
29
+ iconsFamily: 'Sources',
30
+ alwaysVisible: true,
31
+ }),
32
+ multiTermFacet({
33
+ field: 'wm_spm_impacts.keyword',
34
+ isFilterable: false,
35
+ isMulti: true,
36
+ label: 'Measure impacts to',
37
+ iconsFamily: 'Sources',
38
+ alwaysVisible: true,
39
+ }),
40
+ multiTermFacet({
41
+ field: 'wm_spm_descriptors.keyword',
42
+ isFilterable: false,
43
+ isMulti: true,
44
+ label: 'MSFD descriptor',
45
+ iconsFamily: 'Sources',
46
+ alwaysVisible: true,
47
+ }),
48
+ multiTermFacet({
49
+ field: 'wm_theme.keyword',
50
+ isFilterable: false,
51
+ isMulti: true,
52
+ label: 'WISE topics',
53
+ iconsFamily: 'WISE topics',
54
+ alwaysVisible: false,
55
+ }),
56
+ multiTermFacet({
57
+ field: 'legislative_reference.keyword',
58
+ isFilterable: false,
59
+ isMulti: true,
60
+ label: 'Reference legislations',
61
+ iconsFamily: 'Reference legislations',
62
+ alwaysVisible: false,
63
+ }),
64
+
65
+ histogramFacet({
66
+ field: 'time_coverage',
67
+ isMulti: true,
68
+ label: 'Time coverage',
69
+ // TODO: implement split in buckets
70
+ ranges: makeRange({
71
+ step: 1,
72
+ normalRange: [2000, new Date().getFullYear() + 1],
73
+ includeOutlierStart: false,
74
+ includeOutlierEnd: false,
75
+ }),
76
+ step: 1,
77
+ // isFilterable: false,
78
+ aggs_script:
79
+ "def vals = doc['time_coverage']; if (vals.length == 0){return 2500} else {def ret = [];for (val in vals){def tmp_val = val.substring(0,4);ret.add(tmp_val.toLowerCase() == tmp_val.toUpperCase() ? Integer.parseInt(tmp_val) : 2500);}return ret;}",
80
+ }),
81
+ ];
82
+
83
+ export default {
84
+ facets,
85
+ };
@@ -0,0 +1,48 @@
1
+ import installMainSearch from './config';
2
+ import MarineMeasureItem from '../components/Result/MarineMeasureItem';
3
+
4
+ const applyConfig = (config) => {
5
+ config.settings.searchlib = installMainSearch(config.settings.searchlib);
6
+
7
+ const { resolve } = config.settings.searchlib;
8
+
9
+ resolve.MarineMeasureItem = { component: MarineMeasureItem };
10
+
11
+ // fix the query
12
+ const marineMeasureConfig = config.settings.searchlib.searchui.marinemeasure;
13
+ const index = marineMeasureConfig.permanentFilters.findIndex(
14
+ (f) => f.id === 'constantScore',
15
+ );
16
+ const baseConstantScore = marineMeasureConfig.permanentFilters[index];
17
+
18
+ function updatedConstantScore() {
19
+ const base = baseConstantScore();
20
+ let filterBool = base.constant_score.filter.bool;
21
+
22
+ if (filterBool) {
23
+ if (!Array.isArray(filterBool.must_not)) {
24
+ if (
25
+ filterBool.must_not?.exists?.field === 'exclude_from_globalsearch'
26
+ ) {
27
+ delete filterBool.must_not;
28
+ }
29
+ } else {
30
+ filterBool.must_not = filterBool.must_not.filter((item) => {
31
+ if (item?.exists?.field === 'exclude_from_globalsearch') {
32
+ return false;
33
+ }
34
+ return true;
35
+ });
36
+ }
37
+ }
38
+
39
+ return base;
40
+ }
41
+
42
+ updatedConstantScore.id = 'constantScore';
43
+
44
+ marineMeasureConfig.permanentFilters[index] = updatedConstantScore;
45
+ return config;
46
+ };
47
+
48
+ export default applyConfig;
@@ -0,0 +1,15 @@
1
+ export default {
2
+ resultViews: [
3
+ {
4
+ id: 'marineMeasureCard',
5
+ title: 'Marine measure items',
6
+ icon: 'bars',
7
+ render: null,
8
+ isDefault: true,
9
+ factories: {
10
+ view: 'HorizontalCard.Group',
11
+ item: 'MarineMeasureItem',
12
+ },
13
+ },
14
+ ],
15
+ };
@@ -0,0 +1,43 @@
1
+ @type: 'extra';
2
+ @element: 'custom';
3
+
4
+ @import (multiple, reference, optional) '../../theme.config';
5
+
6
+ .h1 {
7
+ font-size: @h1;
8
+ }
9
+
10
+ .h2 {
11
+ font-size: @h2;
12
+ }
13
+
14
+ .h3 {
15
+ font-size: @h3;
16
+ }
17
+
18
+ .h4 {
19
+ font-size: @h4;
20
+ }
21
+
22
+ .h5 {
23
+ font-size: @h5;
24
+ }
25
+
26
+ .p-text {
27
+ font-size: @fontSize;
28
+ }
29
+
30
+ .poppins-regular {
31
+ font-family: @headerFont;
32
+ font-weight: 400;
33
+ }
34
+
35
+ .poppins-light {
36
+ font-family: @headerFont;
37
+ font-weight: 100;
38
+ }
39
+
40
+ .poppins-bold {
41
+ font-family: @headerFont;
42
+ font-weight: 600;
43
+ }
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 40"><defs><style>.a{fill:#f4cf00;}.b{fill:#3c8000;}.c{fill:#666;}</style></defs><title>BISE Logo</title><polygon class="a" points="13.352 31.649 12.804 29.953 12.255 31.649 10.448 31.649 11.907 32.655 11.359 34.398 12.804 33.303 14.252 34.401 13.699 32.695 15.094 31.649 13.352 31.649"/><polygon class="a" points="20.543 33.533 19.995 31.888 19.446 33.535 17.652 33.585 19.098 34.582 18.551 36.273 19.993 35.228 21.443 36.328 20.89 34.619 22.273 33.533 20.543 33.533"/><polygon class="a" points="27.695 31.649 27.195 29.953 26.597 31.649 24.84 31.649 26.248 32.654 25.702 34.39 27.185 33.302 28.648 34.411 28.041 32.693 29.434 31.649 27.695 31.649"/><polygon class="a" points="8.089 26.384 7.59 24.74 6.992 26.384 5.248 26.384 6.642 27.429 6.097 29.116 7.579 28.079 9.042 29.189 8.435 27.47 9.817 26.384 8.089 26.384"/><polygon class="a" points="5.652 20.887 7.116 21.998 6.509 20.278 7.89 19.192 6.162 19.192 5.664 17.549 5.065 19.195 3.322 19.245 4.716 20.24 4.171 21.924 5.652 20.887"/><polygon class="a" points="12.804 5.178 12.256 6.822 10.461 6.822 11.907 7.869 11.355 9.574 12.804 8.475 14.252 9.574 13.699 7.867 15.094 6.822 13.351 6.822 12.804 5.178"/><polygon class="a" points="7.59 10.4 6.992 12.044 5.248 12.044 6.642 13.089 6.093 14.788 7.58 13.697 9.042 14.806 8.436 13.088 9.828 12.044 8.089 12.044 7.59 10.4"/><polygon class="a" points="19.995 3.166 19.446 4.812 17.652 4.862 19.098 5.858 18.551 7.55 19.993 6.505 21.443 7.605 20.89 5.896 22.273 4.81 20.543 4.81 19.995 3.166"/><polygon class="a" points="27.195 5.178 26.598 6.822 24.853 6.822 26.248 7.867 25.698 9.565 27.185 8.475 28.648 9.584 28.041 7.866 29.434 6.822 27.694 6.822 27.195 5.178"/><path class="b" d="M64.769,24.458a3.208,3.208,0,0,1-1.341-.276,3.118,3.118,0,0,1-1.058-.774,3.655,3.655,0,0,1-.693-1.165,4.151,4.151,0,0,1-.249-1.462,4.463,4.463,0,0,1,.228-1.441,3.557,3.557,0,0,1,.647-1.166,3.065,3.065,0,0,1,.99-.774,2.8,2.8,0,0,1,1.26-.282,2.614,2.614,0,0,1,1.34.349,2.423,2.423,0,0,1,.922.944v-3.92h2.156V21.9a.752.752,0,0,0,.1.451.5.5,0,0,0,.358.155v1.819a4.177,4.177,0,0,1-.512.088c-.144.012-.278.019-.4.019A1.612,1.612,0,0,1,67.6,24.2a.914.914,0,0,1-.405-.681l-.04-.363a2.415,2.415,0,0,1-1.016.983A2.987,2.987,0,0,1,64.769,24.458Zm.579-1.818a1.561,1.561,0,0,0,.854-.263,1.672,1.672,0,0,0,.627-.72V20.175a1.952,1.952,0,0,0-.653-.883,1.533,1.533,0,0,0-.937-.342,1.335,1.335,0,0,0-.639.154,1.7,1.7,0,0,0-.5.411,1.807,1.807,0,0,0-.33.593,2.185,2.185,0,0,0-.115.714,2.01,2.01,0,0,0,.128.727,1.779,1.779,0,0,0,.35.579,1.521,1.521,0,0,0,.539.377A1.714,1.714,0,0,0,65.348,22.64Z"/><path class="b" d="M70.583,16.444V14.491h2.155v1.953Zm0,7.88V17.252h2.155v7.072Z"/><path class="b" d="M75.9,24.324l-2.5-7.072h2.222L77.163,22.6l1.563-5.347h2.006L78.24,24.324Z"/><path class="b" d="M84.543,24.458a4.166,4.166,0,0,1-1.6-.29,3.515,3.515,0,0,1-1.2-.788A3.371,3.371,0,0,1,81,22.229a3.708,3.708,0,0,1-.256-1.367A4.071,4.071,0,0,1,81,19.414a3.514,3.514,0,0,1,.741-1.192,3.454,3.454,0,0,1,1.192-.808,4.123,4.123,0,0,1,1.61-.3,4.074,4.074,0,0,1,1.6.3,3.528,3.528,0,0,1,1.185.8,3.426,3.426,0,0,1,.734,1.165,3.9,3.9,0,0,1,.249,1.388c0,.126,0,.249-.013.37a2.868,2.868,0,0,1-.04.317H83.034a1.449,1.449,0,0,0,.519,1.084,1.648,1.648,0,0,0,1.057.371,1.939,1.939,0,0,0,.91-.23,1.166,1.166,0,0,0,.585-.619l1.833.512a3.309,3.309,0,0,1-1.294,1.36A4,4,0,0,1,84.543,24.458Zm1.495-4.336a1.623,1.623,0,0,0-.485-1.065,1.458,1.458,0,0,0-1.037-.39,1.44,1.44,0,0,0-1.044.4,1.649,1.649,0,0,0-.479,1.058Z"/><path class="b" d="M93.711,19.1a4.172,4.172,0,0,0-1.415.256,1.719,1.719,0,0,0-.915.728v4.243H89.226V17.252h1.979V18.68a3,3,0,0,1,.937-1.118,2.159,2.159,0,0,1,1.218-.418h.216a.688.688,0,0,1,.135.014Z"/><path class="b" d="M97.341,24.458a5.6,5.6,0,0,1-1.778-.29,4.043,4.043,0,0,1-1.482-.841l.768-1.32a6.331,6.331,0,0,0,1.259.687,3.191,3.191,0,0,0,1.179.242,1.2,1.2,0,0,0,.647-.147.485.485,0,0,0,.228-.432.508.508,0,0,0-.289-.451,4.423,4.423,0,0,0-1.018-.357q-.713-.2-1.2-.39a3.379,3.379,0,0,1-.8-.418,1.356,1.356,0,0,1-.445-.526,1.672,1.672,0,0,1-.134-.7,2.2,2.2,0,0,1,.808-1.737,2.824,2.824,0,0,1,.9-.486,3.51,3.51,0,0,1,1.125-.174,4.984,4.984,0,0,1,1.488.215,3.73,3.73,0,0,1,1.34.781l-.835,1.294a5.69,5.69,0,0,0-1.078-.607,2.451,2.451,0,0,0-.915-.188,1.157,1.157,0,0,0-.593.141.524.524,0,0,0,.019.9,4.39,4.39,0,0,0,.977.323,12.611,12.611,0,0,1,1.273.4,3.424,3.424,0,0,1,.842.452,1.532,1.532,0,0,1,.472.572,1.829,1.829,0,0,1,.147.767,2.017,2.017,0,0,1-.781,1.67A3.3,3.3,0,0,1,97.341,24.458Z"/><path class="b" d="M101.2,16.444V14.491h2.156v1.953Zm0,7.88V17.252h2.156v7.072Z"/><path class="b" d="M109.29,23.947a8.384,8.384,0,0,1-1.017.349,4.166,4.166,0,0,1-1.151.162,2.811,2.811,0,0,1-.762-.1,1.689,1.689,0,0,1-.626-.323,1.508,1.508,0,0,1-.424-.586,2.23,2.23,0,0,1-.155-.875V18.882h-.9v-1.63h.9V15h2.156v2.25h1.441v1.63h-1.441v2.95a.641.641,0,0,0,.174.5.648.648,0,0,0,.445.155,1.651,1.651,0,0,0,.5-.081,3.092,3.092,0,0,0,.444-.175Z"/><path class="b" d="M110.105,25.388a3.157,3.157,0,0,0,.5.135,2.649,2.649,0,0,0,.425.04.732.732,0,0,0,.606-.27,2.676,2.676,0,0,0,.39-.969l-2.693-7.072h2.222l1.643,5.226,1.414-5.226h2.021l-2.694,8.216a2.794,2.794,0,0,1-2.734,1.967,3.292,3.292,0,0,1-.546-.047,2.944,2.944,0,0,1-.559-.155Z"/><path class="c" d="M62,30.337V27h.423v3.337Z"/><path class="c" d="M65.479,30.337h-.414V28.965a1.06,1.06,0,0,0-.119-.573.408.408,0,0,0-.364-.179.69.69,0,0,0-.254.049,1.014,1.014,0,0,0-.24.134.922.922,0,0,0-.2.2.862.862,0,0,0-.127.258v1.481h-.413V27.884h.376v.526A1.076,1.076,0,0,1,64.146,28a1.208,1.208,0,0,1,.6-.155.723.723,0,0,1,.353.078.605.605,0,0,1,.225.216.941.941,0,0,1,.12.327,2.177,2.177,0,0,1,.035.408Z"/><path class="c" d="M66.4,30.337V28.208h-.333v-.324H66.4v-.052a1.14,1.14,0,0,1,.2-.715.663.663,0,0,1,.551-.258,1.061,1.061,0,0,1,.286.039.994.994,0,0,1,.254.112l-.1.3a.579.579,0,0,0-.162-.075.712.712,0,0,0-.191-.028.359.359,0,0,0-.314.155.78.78,0,0,0-.109.451v.067h.654v.324h-.654v2.129Z"/><path class="c" d="M69.076,30.384A1.208,1.208,0,0,1,68.181,30a1.208,1.208,0,0,1-.251-.4,1.346,1.346,0,0,1,0-.973,1.269,1.269,0,0,1,.254-.4,1.23,1.23,0,0,1,1.786,0,1.305,1.305,0,0,1,.254.4,1.36,1.36,0,0,1,0,.973,1.219,1.219,0,0,1-.647.681A1.188,1.188,0,0,1,69.076,30.384Zm-.813-1.265a.994.994,0,0,0,.063.358.942.942,0,0,0,.174.287.829.829,0,0,0,.259.192.755.755,0,0,0,.635,0,.834.834,0,0,0,.26-.2.91.91,0,0,0,.176-.291,1,1,0,0,0,.064-.36.976.976,0,0,0-.064-.355.921.921,0,0,0-.176-.291.819.819,0,0,0-.26-.2.733.733,0,0,0-.318-.071.716.716,0,0,0-.317.073.848.848,0,0,0-.259.2.95.95,0,0,0-.174.291A1.007,1.007,0,0,0,68.263,29.119Z"/><path class="c" d="M72.317,28.245a1.07,1.07,0,0,0-.547.16.817.817,0,0,0-.336.418v1.514h-.413V27.884h.384v.568a1.173,1.173,0,0,1,.334-.411.834.834,0,0,1,.442-.177h.08a.29.29,0,0,1,.056,0Z"/><path class="c" d="M76.608,30.337h-.413V28.965a1.027,1.027,0,0,0-.125-.569.414.414,0,0,0-.368-.183.65.65,0,0,0-.454.181,1,1,0,0,0-.284.467v1.476H74.55V28.965a1.029,1.029,0,0,0-.122-.573.411.411,0,0,0-.366-.179.669.669,0,0,0-.452.176.964.964,0,0,0-.287.467v1.481H72.91V27.884h.376v.526a1.127,1.127,0,0,1,.39-.421,1.015,1.015,0,0,1,.541-.148.7.7,0,0,1,.491.167.73.73,0,0,1,.223.43,1.023,1.023,0,0,1,.935-.6.737.737,0,0,1,.355.078.6.6,0,0,1,.228.216.984.984,0,0,1,.122.327,2.016,2.016,0,0,1,.037.408Z"/><path class="c" d="M78.086,30.384a.88.88,0,0,1-.324-.059.8.8,0,0,1-.262-.162.779.779,0,0,1-.174-.242.724.724,0,0,1-.063-.3.635.635,0,0,1,.075-.308.732.732,0,0,1,.214-.238,1.112,1.112,0,0,1,.329-.154,1.443,1.443,0,0,1,.416-.057,2.039,2.039,0,0,1,.362.033,1.628,1.628,0,0,1,.324.089v-.2a.59.59,0,0,0-.648-.644,1.363,1.363,0,0,0-.78.287l-.137-.268a1.7,1.7,0,0,1,.954-.32,1.051,1.051,0,0,1,.755.259.959.959,0,0,1,.269.728v1q0,.147.132.15v.358l-.108.014a.833.833,0,0,1-.089,0,.267.267,0,0,1-.2-.072.307.307,0,0,1-.087-.177l-.009-.173a1.073,1.073,0,0,1-.416.336A1.278,1.278,0,0,1,78.086,30.384Zm.107-.311a1.016,1.016,0,0,0,.411-.082.667.667,0,0,0,.29-.219.259.259,0,0,0,.089-.182v-.362a1.692,1.692,0,0,0-.625-.118.881.881,0,0,0-.505.132.4.4,0,0,0-.195.343.465.465,0,0,0,.153.348.524.524,0,0,0,.171.1A.568.568,0,0,0,78.193,30.073Z"/><path class="c" d="M81.472,30.215c-.026.013-.058.027-.1.045s-.087.034-.139.052a1.391,1.391,0,0,1-.169.042,1.178,1.178,0,0,1-.19.016.634.634,0,0,1-.391-.125.456.456,0,0,1-.164-.388V28.208h-.334v-.324h.334v-.819h.414v.819h.55v.324h-.55V29.73a.256.256,0,0,0,.089.2.3.3,0,0,0,.189.061.589.589,0,0,0,.222-.04.959.959,0,0,0,.139-.063Z"/><path class="c" d="M82.053,27.423v-.517h.413v.517Zm0,2.914V27.884h.413v2.453Z"/><path class="c" d="M84.413,30.384A1.208,1.208,0,0,1,83.518,30a1.208,1.208,0,0,1-.251-.4,1.346,1.346,0,0,1,0-.973,1.285,1.285,0,0,1,.253-.4,1.248,1.248,0,0,1,.39-.278,1.213,1.213,0,0,1,.5-.1,1.211,1.211,0,0,1,.9.381,1.305,1.305,0,0,1,.254.4,1.353,1.353,0,0,1,0,.973,1.2,1.2,0,0,1-.253.4,1.227,1.227,0,0,1-.393.277A1.188,1.188,0,0,1,84.413,30.384ZM83.6,29.119a.994.994,0,0,0,.063.358.942.942,0,0,0,.174.287.829.829,0,0,0,.259.192.753.753,0,0,0,.634,0,.827.827,0,0,0,.261-.2.91.91,0,0,0,.176-.291,1,1,0,0,0,.063-.36.976.976,0,0,0-.063-.355.921.921,0,0,0-.176-.291.812.812,0,0,0-.261-.2.725.725,0,0,0-.317-.071.716.716,0,0,0-.317.073.848.848,0,0,0-.259.2.95.95,0,0,0-.174.291A1.007,1.007,0,0,0,83.6,29.119Z"/><path class="c" d="M88.487,30.337h-.414V28.965a1.06,1.06,0,0,0-.119-.573.408.408,0,0,0-.364-.179.69.69,0,0,0-.254.049,1.014,1.014,0,0,0-.24.134.949.949,0,0,0-.2.2.912.912,0,0,0-.127.258v1.481h-.413V27.884h.376v.526a1.086,1.086,0,0,1,.42-.414,1.208,1.208,0,0,1,.6-.155.716.716,0,0,1,.352.078.608.608,0,0,1,.226.216.941.941,0,0,1,.12.327,2.177,2.177,0,0,1,.035.408Z"/><path class="c" d="M92.533,27.7a.7.7,0,0,0-.15-.127,1.315,1.315,0,0,0-.212-.11,1.422,1.422,0,0,0-.256-.08,1.3,1.3,0,0,0-.289-.03.909.909,0,0,0-.571.145.489.489,0,0,0-.181.4.452.452,0,0,0,.052.226.429.429,0,0,0,.162.153,1.265,1.265,0,0,0,.275.111c.11.031.24.063.39.1a3.859,3.859,0,0,1,.468.129,1.42,1.42,0,0,1,.357.181.723.723,0,0,1,.226.264.852.852,0,0,1,.077.38.869.869,0,0,1-.094.416.824.824,0,0,1-.256.291,1.084,1.084,0,0,1-.384.169,1.95,1.95,0,0,1-.479.055,2.2,2.2,0,0,1-.73-.12,2,2,0,0,1-.627-.351l.2-.356a1.1,1.1,0,0,0,.194.159,1.548,1.548,0,0,0,.272.144,2.021,2.021,0,0,0,.33.1,1.643,1.643,0,0,0,.369.04,1.016,1.016,0,0,0,.554-.127.423.423,0,0,0,.2-.381.428.428,0,0,0-.064-.237.54.54,0,0,0-.185-.167,1.429,1.429,0,0,0-.3-.124c-.121-.036-.258-.073-.411-.11a4.09,4.09,0,0,1-.447-.132,1.246,1.246,0,0,1-.322-.169.634.634,0,0,1-.195-.24.793.793,0,0,1-.065-.338.968.968,0,0,1,.088-.424.9.9,0,0,1,.249-.31,1.1,1.1,0,0,1,.381-.19,1.747,1.747,0,0,1,.48-.063,1.708,1.708,0,0,1,.61.1,1.669,1.669,0,0,1,.484.277Z"/><path class="c" d="M93.56,31c.041.007.082.012.122.015l.094,0a.19.19,0,0,0,.1-.026.277.277,0,0,0,.09-.1,2.094,2.094,0,0,0,.1-.208q.057-.135.141-.351L93.17,27.884H93.6l.836,2.082.761-2.082h.4L94.4,30.98a.706.706,0,0,1-.218.29.648.648,0,0,1-.421.125c-.028,0-.057,0-.087,0s-.066-.01-.11-.019Z"/><path class="c" d="M97.012,30.384a1.864,1.864,0,0,1-.582-.092,1.4,1.4,0,0,1-.494-.266l.178-.277a1.74,1.74,0,0,0,.433.247,1.267,1.267,0,0,0,.456.082.755.755,0,0,0,.425-.105.34.34,0,0,0,.158-.3.27.27,0,0,0-.043-.153.348.348,0,0,0-.127-.11,1.091,1.091,0,0,0-.216-.085c-.088-.024-.189-.052-.305-.08-.148-.037-.275-.073-.381-.107a1.06,1.06,0,0,1-.263-.122.431.431,0,0,1-.15-.17.556.556,0,0,1-.047-.244.684.684,0,0,1,.272-.567.9.9,0,0,1,.3-.145,1.286,1.286,0,0,1,.369-.05,1.465,1.465,0,0,1,.518.09,1.274,1.274,0,0,1,.4.234l-.188.25a1.077,1.077,0,0,0-.348-.2,1.193,1.193,0,0,0-.4-.068.723.723,0,0,0-.383.1.335.335,0,0,0-.158.308.292.292,0,0,0,.031.142.265.265,0,0,0,.1.1.823.823,0,0,0,.181.075c.074.022.162.045.265.071.164.037.3.076.426.115a1.206,1.206,0,0,1,.3.139.49.49,0,0,1,.237.451.653.653,0,0,1-.263.545A1.143,1.143,0,0,1,97.012,30.384Z"/><path class="c" d="M99.955,30.215c-.025.013-.058.027-.1.045s-.086.034-.138.052a1.491,1.491,0,0,1-.169.042,1.191,1.191,0,0,1-.191.016.629.629,0,0,1-.39-.125.454.454,0,0,1-.164-.388V28.208H98.47v-.324H98.8v-.819h.414v.819h.55v.324h-.55V29.73a.253.253,0,0,0,.089.2.3.3,0,0,0,.188.061.6.6,0,0,0,.223-.04.987.987,0,0,0,.138-.063Z"/><path class="c" d="M101.564,30.384a1.233,1.233,0,0,1-.506-.1,1.188,1.188,0,0,1-.4-.275,1.279,1.279,0,0,1-.256-.406,1.36,1.36,0,0,1-.092-.492,1.336,1.336,0,0,1,.092-.489,1.265,1.265,0,0,1,.259-.4,1.243,1.243,0,0,1,.4-.275,1.257,1.257,0,0,1,.507-.1,1.192,1.192,0,0,1,1.14.778,1.3,1.3,0,0,1,.087.473c0,.034,0,.065,0,.094a.614.614,0,0,1-.007.065h-2.035a.949.949,0,0,0,.084.334.853.853,0,0,0,.439.428.767.767,0,0,0,.3.06.824.824,0,0,0,.221-.03,1.029,1.029,0,0,0,.2-.082.716.716,0,0,0,.167-.127.5.5,0,0,0,.11-.169l.358.1a.93.93,0,0,1-.167.249,1.162,1.162,0,0,1-.244.195,1.257,1.257,0,0,1-.309.129A1.314,1.314,0,0,1,101.564,30.384Zm.842-1.439a.889.889,0,0,0-.087-.321.843.843,0,0,0-.183-.252.827.827,0,0,0-.567-.221.817.817,0,0,0-.309.059.787.787,0,0,0-.257.165.848.848,0,0,0-.179.251.955.955,0,0,0-.082.319Z"/><path class="c" d="M107.168,30.337h-.413V28.965a1.027,1.027,0,0,0-.125-.569.414.414,0,0,0-.368-.183.649.649,0,0,0-.454.181,1,1,0,0,0-.285.467v1.476h-.414V28.965a1.029,1.029,0,0,0-.122-.573.411.411,0,0,0-.366-.179.667.667,0,0,0-.451.176.95.95,0,0,0-.287.467v1.481h-.413V27.884h.376v.526a1.116,1.116,0,0,1,.389-.421,1.017,1.017,0,0,1,.541-.148.7.7,0,0,1,.492.167.723.723,0,0,1,.222.43,1.025,1.025,0,0,1,.936-.6.733.733,0,0,1,.354.078.6.6,0,0,1,.229.216,1.03,1.03,0,0,1,.122.327,2.091,2.091,0,0,1,.037.408Z"/><path class="c" d="M62.063,35.337V33.208H61.73v-.324h.333v-.052a1.134,1.134,0,0,1,.2-.715.66.66,0,0,1,.55-.258,1.074,1.074,0,0,1,.287.039,1,1,0,0,1,.253.112l-.1.3a.579.579,0,0,0-.162-.075.712.712,0,0,0-.191-.028.359.359,0,0,0-.314.155.789.789,0,0,0-.108.451v.067h.653v.324h-.653v2.129Z"/><path class="c" d="M64.735,35.384A1.208,1.208,0,0,1,63.84,35a1.208,1.208,0,0,1-.251-.4,1.346,1.346,0,0,1,0-.973,1.269,1.269,0,0,1,.254-.4,1.23,1.23,0,0,1,1.786,0,1.305,1.305,0,0,1,.254.4,1.346,1.346,0,0,1,0,.973,1.219,1.219,0,0,1-.647.681A1.188,1.188,0,0,1,64.735,35.384Zm-.813-1.265a.994.994,0,0,0,.063.358.942.942,0,0,0,.174.287.829.829,0,0,0,.259.192.755.755,0,0,0,.635,0,.834.834,0,0,0,.26-.2.893.893,0,0,0,.176-.291,1,1,0,0,0,.064-.36.976.976,0,0,0-.064-.355.9.9,0,0,0-.176-.291.819.819,0,0,0-.26-.2.729.729,0,0,0-.318-.071.719.719,0,0,0-.317.073.848.848,0,0,0-.259.2.95.95,0,0,0-.174.291A1.007,1.007,0,0,0,63.922,34.119Z"/><path class="c" d="M67.978,33.245a1.073,1.073,0,0,0-.548.16.817.817,0,0,0-.336.418v1.514h-.413V32.884h.384v.568a1.173,1.173,0,0,1,.334-.411.837.837,0,0,1,.442-.177h.08a.31.31,0,0,1,.057.005Z"/><path class="c" d="M72.1,34.961v.376H69.829V32h2.224v.376h-1.8v1.081h1.565v.353H70.252v1.151Z"/><path class="c" d="M73.492,35.384a.686.686,0,0,1-.583-.259,1.255,1.255,0,0,1-.2-.771v-1.47h.413v1.39q0,.753.521.752a.792.792,0,0,0,.478-.162.957.957,0,0,0,.331-.443V32.884h.414v1.945c0,.1.044.148.131.15v.358l-.11.012c-.027,0-.052,0-.077,0a.294.294,0,0,1-.2-.073.247.247,0,0,1-.087-.18l-.009-.287a1.146,1.146,0,0,1-.433.425A1.191,1.191,0,0,1,73.492,35.384Z"/><path class="c" d="M77.061,33.245a1.073,1.073,0,0,0-.548.16.817.817,0,0,0-.336.418v1.514h-.413V32.884h.384v.568a1.173,1.173,0,0,1,.334-.411.837.837,0,0,1,.442-.177H77a.31.31,0,0,1,.057.005Z"/><path class="c" d="M78.68,35.384a1.212,1.212,0,0,1-.9-.381,1.24,1.24,0,0,1-.251-.4,1.346,1.346,0,0,1,0-.973,1.305,1.305,0,0,1,.254-.4,1.229,1.229,0,0,1,1.786,0,1.269,1.269,0,0,1,.254.4,1.346,1.346,0,0,1,0,.973,1.2,1.2,0,0,1-.254.4,1.212,1.212,0,0,1-.392.277A1.2,1.2,0,0,1,78.68,35.384Zm-.814-1.265a.994.994,0,0,0,.064.358.923.923,0,0,0,.174.287.836.836,0,0,0,.258.192.755.755,0,0,0,.635,0,.827.827,0,0,0,.261-.2.91.91,0,0,0,.176-.291,1,1,0,0,0,.063-.36.976.976,0,0,0-.063-.355.921.921,0,0,0-.176-.291.812.812,0,0,0-.261-.2.728.728,0,0,0-.317-.071.72.72,0,0,0-.318.073.856.856,0,0,0-.258.2.931.931,0,0,0-.174.291A1.008,1.008,0,0,0,77.866,34.119Z"/><path class="c" d="M81.945,35.384a.967.967,0,0,1-.538-.151,1.135,1.135,0,0,1-.369-.38v1.485h-.413V32.884h.366v.46a1.15,1.15,0,0,1,.379-.365,1,1,0,0,1,.515-.138,1.057,1.057,0,0,1,.465.1,1.167,1.167,0,0,1,.366.281,1.348,1.348,0,0,1,.329.885,1.5,1.5,0,0,1-.08.5,1.23,1.23,0,0,1-.226.405,1.084,1.084,0,0,1-.347.272A.979.979,0,0,1,81.945,35.384Zm-.127-.358a.7.7,0,0,0,.331-.077.8.8,0,0,0,.254-.207.887.887,0,0,0,.162-.294.992.992,0,0,0,.057-.338.954.954,0,0,0-.244-.641.853.853,0,0,0-.266-.2.764.764,0,0,0-.331-.073.663.663,0,0,0-.233.045,1.128,1.128,0,0,0-.226.117.813.813,0,0,0-.182.174.534.534,0,0,0-.1.214v.7a1.065,1.065,0,0,0,.132.229.928.928,0,0,0,.4.3A.676.676,0,0,0,81.818,35.026Z"/><path class="c" d="M84.851,35.384a1.234,1.234,0,0,1-.507-.1,1.2,1.2,0,0,1-.4-.275,1.279,1.279,0,0,1-.256-.406,1.359,1.359,0,0,1-.091-.492,1.336,1.336,0,0,1,.091-.489,1.229,1.229,0,0,1,1.163-.78,1.223,1.223,0,0,1,.506.1,1.189,1.189,0,0,1,.634.675,1.3,1.3,0,0,1,.087.473c0,.034,0,.065,0,.094a.614.614,0,0,1-.007.065H84.038a.949.949,0,0,0,.084.334.869.869,0,0,0,.184.259.857.857,0,0,0,.256.169.759.759,0,0,0,.3.06.824.824,0,0,0,.221-.03,1,1,0,0,0,.2-.082.7.7,0,0,0,.167-.127.5.5,0,0,0,.11-.169l.358.1a.93.93,0,0,1-.167.249,1.113,1.113,0,0,1-.244.2,1.257,1.257,0,0,1-.309.129A1.312,1.312,0,0,1,84.851,35.384Zm.841-1.439a.87.87,0,0,0-.087-.321.843.843,0,0,0-.183-.252.838.838,0,0,0-.876-.162.787.787,0,0,0-.257.165.848.848,0,0,0-.179.251.955.955,0,0,0-.082.319Z"/><path class="b" d="M45.446,18.384a.938.938,0,0,0,.283-.754,1,1,0,0,0-.25-.728.8.8,0,0,0-.6-.256H42.631v1.981H44.8A.963.963,0,0,0,45.446,18.384Zm-.269,1.98H42.631v2.088h2.451a.97.97,0,0,0,.714-.283,1.006,1.006,0,0,0,.283-.741,1.144,1.144,0,0,0-.256-.754A.805.805,0,0,0,45.177,20.364ZM56.393,18.95a1.459,1.459,0,0,0-1.125.512,1.782,1.782,0,0,0-.33.586,2.192,2.192,0,0,0-.122.747,1.959,1.959,0,0,0,.445,1.341,1.445,1.445,0,0,0,1.132.5,1.42,1.42,0,0,0,.619-.135,1.513,1.513,0,0,0,.492-.377,1.832,1.832,0,0,0,.33-.586,2.235,2.235,0,0,0,.121-.748,1.956,1.956,0,0,0-.444-1.34A1.426,1.426,0,0,0,56.393,18.95ZM43.81,3.5A16.667,16.667,0,1,0,60.477,20.168,16.667,16.667,0,0,0,43.81,3.5ZM31.861,12.044l.548-1.644.548,1.644H34.7L33.3,13.089l.553,1.708-1.448-1.1-1.448,1.1.552-1.708-1.394-1.045Zm2,17.135-1.45-1.1-1.443,1.044.549-1.694-1.394-1.046h1.742l.548-1.644.548,1.644h1.73L33.3,27.471ZM35.829,22l-1.412-1.11-1.48,1.036.544-1.684-1.393-.995,1.743-.05.6-1.646.5,1.643h1.728l-1.383,1.087Zm12.243.952a2.2,2.2,0,0,1-.7.761,3.3,3.3,0,0,1-1.037.458,4.956,4.956,0,0,1-1.253.155h-4.66V14.761h5.32a1.888,1.888,0,0,1,.9.216,2.253,2.253,0,0,1,.687.558,2.566,2.566,0,0,1,.438.781,2.677,2.677,0,0,1,.155.9,2.579,2.579,0,0,1-.344,1.293,2.165,2.165,0,0,1-1.03.916,2.481,2.481,0,0,1,1.3.862,2.534,2.534,0,0,1,.477,1.59A2.164,2.164,0,0,1,48.072,22.95Zm3.546,1.374H49.463V17.253h2.155Zm0-7.88H49.463V14.491h2.155Zm7.576,6.917a3.485,3.485,0,0,1-1.192.8,4.51,4.51,0,0,1-3.219,0,3.5,3.5,0,0,1-1.192-.8,3.386,3.386,0,0,1-.735-1.172,4.027,4.027,0,0,1,0-2.788,3.377,3.377,0,0,1,.735-1.172,3.6,3.6,0,0,1,1.192-.808,4.051,4.051,0,0,1,1.61-.3,4,4,0,0,1,1.6.3,3.623,3.623,0,0,1,1.186.808,3.467,3.467,0,0,1,.741,1.172,3.875,3.875,0,0,1,.256,1.394,3.949,3.949,0,0,1-.249,1.394A3.386,3.386,0,0,1,59.194,23.361Z"/></svg>
@@ -0,0 +1,20 @@
1
+ <svg width="216" height="70" viewBox="0 0 216 70" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M98.5054 67.9271L96.3396 60.8274H85.4492L83.2834 67.9271H76.459L87.0021 37.9775H94.7459L105.33 67.9271H98.5054ZM94.8276 55.5229C92.8253 49.0896 91.6947 45.4513 91.4359 44.6081C91.1907 43.7648 91.0136 43.0983 90.9046 42.6087C90.4551 44.3496 89.1679 48.6544 87.0429 55.5229H94.8276Z" fill="#2F2F2F"/>
3
+ <path d="M133.857 52.7296C133.857 57.6395 132.454 61.4002 129.648 64.0117C126.855 66.6231 122.816 67.9288 117.531 67.9288H109.072V38.1016H118.451C123.327 38.1016 127.114 39.3869 129.811 41.9575C132.508 44.5281 133.857 48.1188 133.857 52.7296ZM127.277 52.8928C127.277 46.4866 124.444 43.2836 118.778 43.2836H115.406V62.706H118.124C124.226 62.706 127.277 59.4349 127.277 52.8928V52.8928Z" fill="#2F2F2F"/>
4
+ <path d="M157.504 67.9271L155.338 60.8274H144.447L142.281 67.9271H135.457L146 37.9775H153.744L164.328 67.9271H157.504ZM153.826 55.5229C151.823 49.0896 150.693 45.4513 150.434 44.6081C150.189 43.7648 150.012 43.0983 149.903 42.6087C149.453 44.3496 148.166 48.6544 146.041 55.5229H153.826Z" fill="#2F2F2F"/>
5
+ <path d="M174.414 52.1379H176.498C178.446 52.1379 179.904 51.7571 180.871 50.9954C181.838 50.2201 182.321 49.0981 182.321 47.6291C182.321 46.1466 181.913 45.0517 181.095 44.3445C180.292 43.6372 179.025 43.2836 177.295 43.2836H174.414V52.1379ZM188.717 47.4047C188.717 50.6146 187.709 53.0696 185.693 54.7697C183.69 56.4698 180.837 57.3199 177.132 57.3199H174.414V67.9288H168.08V38.1016H177.622C181.245 38.1016 183.997 38.8836 185.877 40.4478C187.77 41.9983 188.717 44.3173 188.717 47.4047V47.4047Z" fill="#2F2F2F"/>
6
+ <path d="M205.918 67.9288H199.584V43.3652H191.473V38.1016H214.03V43.3652H205.918V67.9288Z" fill="#2F2F2F"/>
7
+ <path d="M88.7363 9.69934C86.6483 9.69934 85.0316 10.4856 83.8862 12.0582C82.7408 13.6188 82.1681 15.799 82.1681 18.5986C82.1681 24.4243 84.3575 27.3371 88.7363 27.3371C90.5737 27.3371 92.7989 26.8784 95.4118 25.9611V30.6073C93.2642 31.5008 90.866 31.9476 88.2173 31.9476C84.4112 31.9476 81.4999 30.7979 79.4836 28.4986C77.4672 26.1874 76.459 22.8755 76.459 18.5629C76.459 15.8466 76.9541 13.4699 77.9444 11.4327C78.9347 9.38363 80.3545 7.81703 82.2039 6.73292C84.0652 5.63689 86.2426 5.08887 88.7363 5.08887C91.2776 5.08887 93.8309 5.7024 96.3961 6.92948L94.6065 11.4327C93.6281 10.9681 92.6438 10.5631 91.6535 10.2176C90.6632 9.87208 89.6908 9.69934 88.7363 9.69934V9.69934Z" fill="#2F2F2F"/>
8
+ <path d="M105.988 31.59H100.529V3.78418H105.988V31.59Z" fill="#2F2F2F"/>
9
+ <path d="M111.467 6.44682C111.467 4.67173 112.457 3.78418 114.438 3.78418C116.418 3.78418 117.409 4.67173 117.409 6.44682C117.409 7.29267 117.158 7.95385 116.657 8.43039C116.168 8.89501 115.428 9.12732 114.438 9.12732C112.457 9.12732 111.467 8.23382 111.467 6.44682V6.44682ZM117.158 31.59H111.699V11.6113H117.158V31.59Z" fill="#2F2F2F"/>
10
+ <path d="M140.78 31.5893H135.321V19.9202C135.321 18.4787 135.077 17.4005 134.588 16.6857C134.11 15.959 133.353 15.5957 132.315 15.5957C130.919 15.5957 129.905 16.1079 129.272 17.1325C128.64 18.157 128.324 19.8428 128.324 22.1897V31.5893H122.865V11.6106H127.035L127.769 14.166H128.073C128.61 13.2487 129.386 12.5339 130.4 12.0216C131.414 11.4974 132.577 11.2354 133.89 11.2354C136.884 11.2354 138.913 12.2123 139.975 14.166H140.458C140.995 13.2368 141.782 12.516 142.82 12.0038C143.87 11.4915 145.051 11.2354 146.364 11.2354C148.631 11.2354 150.343 11.8191 151.5 12.9866C152.67 14.1422 153.254 16.0007 153.254 18.5621V31.5893H147.778V19.9202C147.778 18.4787 147.533 17.4005 147.044 16.6857C146.567 15.959 145.809 15.5957 144.771 15.5957C143.435 15.5957 142.433 16.0722 141.764 17.0253C141.108 17.9783 140.78 19.4913 140.78 21.5642V31.5893Z" fill="#2F2F2F"/>
11
+ <path d="M171.582 31.5899L170.526 28.8737H170.383C169.464 30.0293 168.516 30.8334 167.537 31.2861C166.571 31.7269 165.306 31.9473 163.743 31.9473C161.822 31.9473 160.307 31.3993 159.197 30.3033C158.1 29.2073 157.551 27.6466 157.551 25.6213C157.551 23.5007 158.291 21.9401 159.77 20.9394C161.261 19.9267 163.504 19.3668 166.499 19.2596L169.971 19.1524V18.2767C169.971 16.2515 168.933 15.2388 166.857 15.2388C165.258 15.2388 163.379 15.7213 161.22 16.6863L159.412 13.0051C161.715 11.8018 164.268 11.2002 167.072 11.2002C169.756 11.2002 171.815 11.784 173.246 12.9515C174.678 14.119 175.394 15.8941 175.394 18.2767V31.5899H171.582ZM169.971 22.3332L167.859 22.4047C166.273 22.4523 165.091 22.7383 164.316 23.2625C163.54 23.7867 163.153 24.5848 163.153 25.657C163.153 27.1939 164.035 27.9623 165.801 27.9623C167.066 27.9623 168.074 27.5989 168.826 26.8722C169.589 26.1455 169.971 25.1805 169.971 23.9773V22.3332Z" fill="#2F2F2F"/>
12
+ <path d="M189.423 27.6042C190.377 27.6042 191.522 27.3957 192.859 26.9787V31.0352C191.499 31.6428 189.828 31.9466 187.848 31.9466C185.664 31.9466 184.071 31.3986 183.069 30.3026C182.079 29.1946 181.584 27.5387 181.584 25.3347V15.7027H178.971V13.3975L181.977 11.5747L183.552 7.35742H187.042V11.6105H192.644V15.7027H187.042V25.3347C187.042 26.1091 187.257 26.6809 187.687 27.0502C188.128 27.4195 188.707 27.6042 189.423 27.6042V27.6042Z" fill="#2F2F2F"/>
13
+ <path d="M205.175 15.1132C204.018 15.1132 203.111 15.4825 202.455 16.2211C201.799 16.9478 201.423 17.9843 201.327 19.3305H208.987C208.963 17.9843 208.611 16.9478 207.931 16.2211C207.251 15.4825 206.332 15.1132 205.175 15.1132V15.1132ZM205.945 31.9467C202.723 31.9467 200.206 31.0592 198.392 29.2841C196.579 27.509 195.672 24.9953 195.672 21.7429C195.672 18.3953 196.507 15.8101 198.177 13.9873C199.86 12.1527 202.18 11.2354 205.139 11.2354C207.967 11.2354 210.168 12.0395 211.743 13.6478C213.318 15.2561 214.106 17.478 214.106 20.3133V22.9581H201.202C201.262 24.5068 201.721 25.716 202.58 26.5857C203.439 27.4554 204.644 27.8902 206.195 27.8902C207.4 27.8902 208.54 27.7651 209.614 27.515C210.687 27.2648 211.809 26.8657 212.978 26.3177V30.535C212.024 31.0115 211.004 31.363 209.918 31.5893C208.832 31.8276 207.508 31.9467 205.945 31.9467V31.9467Z" fill="#2F2F2F"/>
14
+ <path d="M21.3538 17.2586C25.1878 17.1576 27.1671 15.5321 27.5639 12.5238C27.9607 9.5153 25.7989 6.94543 22.766 6.55198C17.4638 5.86414 13.1226 11.0325 10.4609 16.6098C15.2534 15.321 17.6816 17.3554 21.3538 17.2586Z" fill="#005C96"/>
15
+ <path d="M12.5239 28.6169C15.4804 26.1795 16.0231 23.6825 14.4547 21.0695C12.8864 18.4566 9.57693 17.7625 6.94218 19.3179C2.33598 22.0369 2.14812 28.7764 3.53871 34.8049C6.5076 30.8428 9.692 30.9515 12.5239 28.6169Z" fill="#005C96"/>
16
+ <path d="M35.3672 13.7691C38.4459 16.0531 41.0209 15.9951 43.2181 13.8741C45.4153 11.7531 45.3255 8.39975 43.1868 6.22077C39.4478 2.41142 32.7951 3.79939 27.207 6.54418C31.7837 8.48504 32.4185 11.5815 35.3672 13.7691Z" fill="#005C96"/>
17
+ <path d="M33.603 67.9293C51.5147 67.9293 66.035 53.5294 66.035 35.7663C66.035 27.5066 62.8953 19.974 57.7349 14.2783C61.8724 39.085 36.3917 34.0794 20.6359 38.919C8.03124 42.7908 8.03665 52.8418 9.56113 57.3957C41.4854 69.8072 55.6426 50.6633 58.7846 39.5275C57.8699 60.7444 34.2537 66.0274 22.56 66.0168C26.0068 67.2543 29.7255 67.9293 33.603 67.9293Z" fill="#8A9C3A"/>
18
+ <path d="M55.1027 12.0387C52.7329 10.5142 49.6883 9.49378 46.6465 8.89844C48.1468 11.5461 48.1949 13.6397 48.2417 15.6776C48.271 16.952 48.2997 18.2046 48.6828 19.5573C49.7224 23.2281 51.8005 24.7372 54.8457 24.3817C54.9653 24.3678 55.0831 24.3502 55.1993 24.3291C56.0048 21.9933 56.2436 18.879 55.537 14.6423L55.1027 12.0387Z" fill="#005C96"/>
19
+ <path d="M12.8181 40.3736C12.6932 38.1665 11.5384 36.6962 9.43608 35.8713C6.5849 34.7525 3.53708 36.2076 2.40894 39.0351C0.803918 43.0579 3.15575 47.4162 6.6819 51.0184C6.83898 49.7429 7.1521 48.4228 7.6711 47.1085C8.63737 44.6615 10.2836 42.3223 12.8181 40.3736Z" fill="#005C96"/>
20
+ </svg>
@@ -0,0 +1,343 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 20.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ viewBox="0 0 170.0800018 42.5200005" style="enable-background:new 0 0 170.0800018 42.5200005;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:#404040;}
7
+ .st1{fill:#034EA2;}
8
+ .st2{fill:#B3B3B3;}
9
+ .st3{fill:#FFF200;}
10
+ </style>
11
+ <g>
12
+ <path class="st0" d="M94.2233047,20.6836967c0-0.1380959,0.0639801-0.2127438,0.2127151-0.2127438H98.35112
13
+ c0.1276855,0,0.2020493,0.0746479,0.2020493,0.202076v0.6598206c0,0.1276798-0.0533142,0.1913795-0.2127151,0.1913795H95.436264
14
+ v1.8298569h2.5744095c0.1383743,0,0.212738,0.0636997,0.212738,0.1914082v0.6595402
15
+ c0,0.1276798-0.0533066,0.1916599-0.212738,0.1916599H95.436264v2.0956306h2.9788361
16
+ c0.1274338,0,0.1914139,0.0639801,0.1914139,0.202076v0.6491528c0,0.1380672-0.0533447,0.1913795-0.2023621,0.1913795h-3.968132
17
+ c-0.148735,0-0.2127151-0.0636997-0.2127151-0.1913795V20.6836967z"/>
18
+ <path class="st0" d="M103.9691544,27.5349331h-0.7554932c-0.1594315,0-0.2020798-0.0743675-0.2020798-0.2020473v-0.3297844
19
+ l-0.0213318-0.0106678c-0.4147949,0.2871113-1.1383133,0.6382046-1.7871857,0.6382046
20
+ c-1.4360962,0-1.57444-0.8509216-1.57444-1.9682045v-3.127573c0-0.1276798,0.0530319-0.2127151,0.2020493-0.2127151h0.7765808
21
+ c0.1383438,0,0.191658,0.0743675,0.191658,0.2127151v2.9895058c0,0.6382027,0.1274261,1.0426064,0.7765808,1.0426064
22
+ c0.4571838,0,1.1593628-0.3404236,1.4360886-0.4787712v-3.5533409c0-0.1276798,0.0426483-0.2127151,0.2020798-0.2127151h0.7554932
23
+ c0.1487656,0,0.2017975,0.0743675,0.2017975,0.2127151v4.7980251
24
+ C104.1709518,27.4712334,104.1179199,27.5349331,103.9691544,27.5349331z"/>
25
+ <path class="st0" d="M106.6718292,27.3328857c0,0.1276798-0.0530624,0.2020473-0.2020798,0.2020473h-0.7659073
26
+ c-0.1487427,0-0.2020798-0.0636997-0.2020798-0.2020473v-4.7980251c0-0.1383476,0.0533371-0.2127151,0.2020798-0.2127151h0.7552414
27
+ c0.1596832,0,0.2127457,0.0850353,0.2127457,0.2127151v0.468132l0.0213089,0.0213375
28
+ c0.3193893-0.2980614,1.0746078-0.6595402,1.5744629-0.7555237c0.1383514-0.0317249,0.2340546,0,0.2553864,0.1810188
29
+ l0.0743713,0.7128525c0.0109482,0.1487637,0.0213394,0.2127419-0.2020798,0.2551079
30
+ c-0.5958099,0.1170406-1.3510513,0.3297844-1.7234497,0.4894676V27.3328857z"/>
31
+ <path class="st0" d="M111.3536224,27.619997c-2.1385574,0-2.2766495-1.5637989-2.2766495-2.7765083
32
+ c0-0.9999352,0.2231293-2.6277161,2.2766495-2.6277161c2.0636292,0,2.3509903,1.372364,2.3509903,2.6277161
33
+ C113.7046127,26.0561981,113.5555954,27.619997,111.3536224,27.619997z M111.3640137,23.2370453
34
+ c-0.9042664,0-1.1063385,0.5745049-1.1063385,1.6808395c0,1.1276455,0.2020721,1.6808128,1.0959473,1.6808128
35
+ c0.9679565,0,1.1593704-0.5424995,1.1593704-1.6808128C112.5129929,23.7902126,112.3322525,23.2370453,111.3640137,23.2370453z"/>
36
+ <path class="st0" d="M117.2265091,27.6306381c-0.3510895,0-0.8405609-0.0637016-1.3297501-0.2340527l-0.0106354,0.0106678
37
+ v1.8724995c0,0.1170406-0.0320053,0.2127438-0.2020721,0.2127438h-0.7555313c-0.1700668,0-0.2020493-0.0746479-0.2020493-0.2127438
38
+ v-6.7448921c0-0.1383476,0.0533142-0.2127151,0.2020493-0.2127151h0.7555313c0.1487274,0,0.1914063,0.0850353,0.1914063,0.2127151
39
+ v0.3191166l0.0319748,0.0213089c0.3828125-0.2660561,1.0636902-0.6382046,1.6808395-0.6382046
40
+ c1.3936996,0,1.7551804,1.0530243,1.7551804,2.6594677C119.3434525,26.6307011,118.9073257,27.6306381,117.2265091,27.6306381z
41
+ M117.3115463,23.3007736c-0.4361267,0-1.1063385,0.3087006-1.4254227,0.4787712v2.6597481
42
+ c0.4787674,0.1380692,0.8615875,0.1807404,1.2233429,0.1807404c0.7658844,0,1.0319443-0.3934841,1.0319443-1.7341518
43
+ C118.1414108,23.5348263,117.875351,23.3007736,117.3115463,23.3007736z"/>
44
+ <path class="st0" d="M121.3868637,25.2476406c0.0319748,1.0746136,0.4150696,1.3723927,1.287323,1.3723927
45
+ c0.3831024,0,0.9786301-0.0743961,1.3830643-0.1170406c0.1914063-0.0213356,0.2551041-0.0213356,0.2871094,0.1810207
46
+ l0.0639801,0.3508129c0.031723,0.1596832,0.0106659,0.2447186-0.181015,0.3300343
47
+ c-0.4147949,0.1594334-1.1913757,0.2657776-1.712822,0.2657776c-2.0318985,0-2.3296814-1.2977161-2.3296814-2.6807785
48
+ c0-1.0319386,0.1914063-2.734087,2.2659836-2.734087c1.9042206,0,2.2446518,1.2340164,2.2766266,2.3829975
49
+ c0.0106659,0.3828144-0.0957031,0.6488705-0.5214462,0.6488705H121.3868637z M121.3975296,24.4497528h2.1065521
50
+ c0-0.6488705-0.1703491-1.2766876-1.0532761-1.2766876C121.663559,23.1730652,121.4508438,23.651865,121.3975296,24.4497528z"/>
51
+ <path class="st0" d="M128.98349,26.9284534c-0.5318298,0.4044323-1.2446899,0.6915436-1.9575424,0.6915436
52
+ c-1.1276398,0-1.457428-0.6168957-1.457428-1.5104885c-0.0106659-1.2446823,0.6595459-1.7767944,1.9999313-1.7767944h1.3617249
53
+ v-0.2764454c0-0.638483-0.2340546-0.8618679-1.1063385-0.8618679c-0.3510895,0-1.0212708,0.0533123-1.4467621,0.095705
54
+ c-0.2127151,0.0319748-0.2660522,0.0213356-0.2977448-0.1274281L125.983345,22.76894
55
+ c-0.0210571-0.1383743,0.0106659-0.2234097,0.2447205-0.3191147c0.4574661-0.1596851,1.2979889-0.2340527,1.7978439-0.2340527
56
+ c1.8404999,0,2.0639191,0.7552166,2.0639191,1.9468689v2.0532398c0,0.4361286,0.053299,0.4467964,0.3830872,0.4891872
57
+ c0.1594086,0.0106697,0.2020569,0.0426445,0.2020569,0.1596851v0.4467964c0,0.1170387-0.0743713,0.1914082-0.2554016,0.2233829
58
+ c-0.1700592,0.0320034-0.3404236,0.0533409-0.4998169,0.0533409c-0.5001373,0-0.8085632-0.149044-0.9149323-0.6491528
59
+ L128.98349,26.9284534z M128.9197845,25.1626053h-1.2980194c-0.5318375,0-0.872261,0.1914082-0.872261,0.8935928
60
+ c0,0.468132,0.1594086,0.6171474,0.6595459,0.6171474c0.4574585,0,1.1063004-0.2660561,1.5107346-0.5001087V25.1626053z"/>
61
+ <path class="st0" d="M135.7395782,27.5349331h-0.7658844c-0.138382,0-0.2020721-0.0636997-0.2020721-0.2020473l0.0106659-2.9895058
62
+ c0-0.6275349-0.1490173-1.0426064-0.7661591-1.0426064c-0.4254913,0-1.1700745,0.3404236-1.457428,0.4787712v3.5533409
63
+ c0,0.1276798-0.0530701,0.2020473-0.2020874,0.2020473h-0.7552338c-0.1490173,0-0.2023315-0.0636997-0.2023315-0.2020473
64
+ v-4.7980251c0-0.1383476,0.0533142-0.2127151,0.2023315-0.2127151h0.7552338c0.1490173,0,0.2020874,0.0743675,0.2020874,0.2127151
65
+ v0.3191166c0.0106659,0,0.0213318,0.0106678,0.0319672,0.0106678c0.3934937-0.2764435,1.1383362-0.6382027,1.7871857-0.6382027
66
+ c1.4361267,0,1.563797,0.9466228,1.563797,2.0212345v3.0852089
67
+ C135.9416504,27.4605656,135.8992615,27.5349331,135.7395782,27.5349331z"/>
68
+ <path class="st0" d="M97.0785217,31.5965862c0.5214462,0,1.3830643,0.0743675,1.9468994,0.3084469
69
+ c0.1700668,0.0746479,0.2340469,0.1596832,0.2023239,0.3297577l-0.0957031,0.4361267
70
+ c-0.0322571,0.1277084-0.0853119,0.1810188-0.2767258,0.1596832c-0.5211639-0.0637016-1.1596451-0.1383476-1.7127838-0.1383476
71
+ c-1.4470444,0-1.6597824,1.1703148-1.6597824,2.5533485c0,1.3934479,0.2660522,2.4893951,1.6597824,2.4893951
72
+ c0.6168671,0,1.1383133-0.0640068,1.7127838-0.1383781c0.2020798-0.0213318,0.2444687,0.0320053,0.287117,0.1703529
73
+ l0.0853119,0.4041519c0.0423965,0.1700745-0.0109177,0.2660561-0.181015,0.3404236
74
+ c-0.5211639,0.2233849-1.4467621,0.319088-1.9682083,0.319088c-2.3723297,0-2.8721848-1.7551765-2.8721848-3.5636978
75
+ C94.206337,33.4477501,94.6531372,31.5965862,97.0785217,31.5965862z"/>
76
+ <path class="st0" d="M102.2711258,38.8199959c-2.1383057,0-2.2766571-1.563797-2.2766571-2.7765083
77
+ c0-0.9999352,0.2233887-2.6277161,2.2766571-2.6277161c2.0639038,0,2.3509903,1.372364,2.3509903,2.6277161
78
+ C104.6221161,37.2561989,104.473381,38.8199959,102.2711258,38.8199959z M102.2815094,34.4370461
79
+ c-0.9039764,0-1.1063385,0.5745049-1.1063385,1.6808395c0,1.1276436,0.2023621,1.6808128,1.0959549,1.6808128
80
+ c0.9679565,0,1.1593628-0.5424995,1.1593628-1.6808128C103.4304886,34.9902115,103.2497482,34.4370461,102.2815094,34.4370461z"/>
81
+ <path class="st0" d="M113.0910187,38.7349319h-0.7658768c-0.1487656,0-0.2020798-0.0636978-0.2020798-0.2020493v-3.0215073
82
+ c0-0.78722-0.1914063-1.010601-0.7235184-1.010601c-0.393486,0-1.0319443,0.3087006-1.3617249,0.4787712
83
+ c0,0.1063728,0.0109482,0.2977791,0.0109482,0.5424995v3.0108376c0,0.1276817-0.0426483,0.2020493-0.2023544,0.2020493h-0.7765579
84
+ c-0.1383438,0-0.181015-0.0636978-0.181015-0.2020493v-3.0745392c0-0.6488686-0.1700745-0.9575691-0.7021866-0.9575691
85
+ c-0.3721466,0-0.9679565,0.2660561-1.3721085,0.4787712v3.5533371c0,0.1276817-0.0530319,0.2020493-0.2023315,0.2020493h-0.7656326
86
+ c-0.1383743,0-0.1916885-0.0636978-0.1916885-0.2020493v-4.7980232c0-0.1383476,0.0533142-0.2127151,0.1916885-0.2127151h0.755249
87
+ c0.1596832,0,0.2127151,0.0850372,0.2127151,0.2127151v0.3084488l0.0103836,0.0106697
88
+ c0.4151001-0.2871132,1.0002441-0.6062279,1.5853882-0.6275368c0.6168976,0,1.1276703,0.1276817,1.457428,0.7445488
89
+ c0.5318375-0.3934555,1.1916504-0.7445488,1.8725052-0.7445488c1.4041138,0,1.5424576,0.9148979,1.5424576,1.9785919v3.1278496
90
+ C113.2827072,38.6605644,113.2400665,38.7349319,113.0910187,38.7349319z"/>
91
+ <path class="st0" d="M121.8585205,38.7349319h-0.7661591c-0.1487427,0-0.2020798-0.0636978-0.2020798-0.2020493v-3.0215073
92
+ c0-0.78722-0.1914063-1.010601-0.7235184-1.010601c-0.3934555,0-1.031662,0.3087006-1.3616943,0.4787712
93
+ c0,0.1063728,0.0106354,0.2977791,0.0106354,0.5424995v3.0108376c0,0.1276817-0.042366,0.2020493-0.2020493,0.2020493h-0.7765732
94
+ c-0.1383514,0-0.1807404-0.0636978-0.1807404-0.2020493v-3.0745392c0-0.6488686-0.1703568-0.9575691-0.7021866-0.9575691
95
+ c-0.3724289,0-0.9682388,0.2660561-1.3723907,0.4787712v3.5533371c0,0.1276817-0.0533142,0.2020493-0.2020493,0.2020493h-0.7661896
96
+ c-0.1380692,0-0.1914139-0.0636978-0.1914139-0.2020493v-4.7980232c0-0.1383476,0.0533447-0.2127151,0.1914139-0.2127151h0.7555237
97
+ c0.1594009,0,0.2127151,0.0850372,0.2127151,0.2127151v0.3084488l0.0106659,0.0106697
98
+ c0.4148178-0.2871132,0.9999619-0.6062279,1.5851364-0.6275368c0.6168671,0,1.1276474,0.1276817,1.4574051,0.7445488
99
+ c0.5318527-0.3934555,1.1913681-0.7445488,1.8722458-0.7445488c1.4043655,0,1.5427094,0.9148979,1.5427094,1.9785919v3.1278496
100
+ C122.0499268,38.6605644,122.0072861,38.7349319,121.8585205,38.7349319z"/>
101
+ <path class="st0" d="M123.9445801,32.7562332c-0.5531693,0-0.6275406-0.3087006-0.6275406-0.6171494
102
+ c0-0.3404236,0.1170425-0.6064777,0.6275406-0.6064777c0.5214386,0,0.6278152,0.2447186,0.6278152,0.6064777
103
+ C124.5723953,32.4688416,124.4766922,32.7562332,123.9445801,32.7562332z M124.5084152,38.5328827
104
+ c0,0.117012-0.0423965,0.2020493-0.1914063,0.2020493h-0.755249c-0.1490173,0-0.2127151-0.0636978-0.2127151-0.2020493v-4.8086891
105
+ c0-0.1490173,0.0636978-0.2020493,0.2127151-0.2020493h0.755249c0.1490097,0,0.1914063,0.0850372,0.1914063,0.2020493V38.5328827z"
106
+ />
107
+ <path class="st0" d="M127.5728149,38.8199959c-0.5321121,0-1.2446823-0.0743942-1.649086-0.2340813
108
+ c-0.2127457-0.0850334-0.2553864-0.1807365-0.2234116-0.3510895l0.0743942-0.350811
109
+ c0.0319748-0.1703529,0.1063461-0.1810226,0.2766953-0.1596832c0.468132,0.0743675,1.1490097,0.1276779,1.5107727,0.1276779
110
+ c0.6808472,0,0.9572906-0.1810188,0.9572906-0.6064796c0-0.4894409-0.1807404-0.5958138-0.8509445-0.6915169
111
+ c-1.0426102-0.1487617-1.9575424-0.3724289-1.9575424-1.5317955c0-1.0532761,0.8085556-1.6064453,1.9999313-1.6064453
112
+ c0.4361343,0,1.170311,0.0637016,1.6171188,0.2340546c0.1807404,0.0743675,0.2553864,0.1594048,0.2233734,0.3191147
113
+ l-0.0850372,0.3830681c-0.0319672,0.1487656-0.0957031,0.1700706-0.2873535,0.1487656
114
+ c-0.4574738-0.0530624-1.0530243-0.1170425-1.4467697-0.1170425c-0.6808701,0-0.8402786,0.1916885-0.8402786,0.5958138
115
+ c0,0.4148178,0.2551117,0.468132,0.9042587,0.5745049c1.0106277,0.1490135,1.9255295,0.3510895,1.9255295,1.6171112
116
+ C129.721756,38.415844,128.6684875,38.8199959,127.5728149,38.8199959z"/>
117
+ <path class="st0" d="M132.4566956,38.8199959c-0.5321198,0-1.2446899-0.0743942-1.6490936-0.2340813
118
+ c-0.212738-0.0850334-0.2553864-0.1807365-0.2234192-0.3510895l0.0743713-0.350811
119
+ c0.0320129-0.1703529,0.106369-0.1810226,0.2767334-0.1596832c0.4681244,0.0743675,1.1489716,0.1276779,1.5107269,0.1276779
120
+ c0.6808777,0,0.9573212-0.1810188,0.9573212-0.6064796c0-0.4894409-0.1807404-0.5958138-0.8509369-0.6915169
121
+ c-1.0426178-0.1487617-1.9575348-0.3724289-1.9575348-1.5317955c0-1.0532761,0.808548-1.6064453,1.9999237-1.6064453
122
+ c0.4364014,0,1.1703186,0.0637016,1.6171112,0.2340546c0.181015,0.0743675,0.2553864,0.1594048,0.2233887,0.3191147
123
+ l-0.0850372,0.3830681c-0.0319824,0.1487656-0.0957031,0.1700706-0.2873993,0.1487656
124
+ c-0.457428-0.0530624-1.0529938-0.1170425-1.4467316-0.1170425c-0.6808777,0-0.840271,0.1916885-0.840271,0.5958138
125
+ c0,0.4148178,0.2550964,0.468132,0.9042511,0.5745049c1.0106049,0.1490135,1.9255371,0.3510895,1.9255371,1.6171112
126
+ C134.6056366,38.415844,133.5523529,38.8199959,132.4566956,38.8199959z"/>
127
+ <path class="st0" d="M136.3403168,32.7562332c-0.5531464,0-0.627533-0.3087006-0.627533-0.6171494
128
+ c0-0.3404236,0.1170349-0.6064777,0.627533-0.6064777c0.5214386,0,0.6278229,0.2447186,0.6278229,0.6064777
129
+ C136.9681396,32.4688416,136.8724365,32.7562332,136.3403168,32.7562332z M136.9041595,38.5328827
130
+ c0,0.117012-0.0424042,0.2020493-0.1914215,0.2020493h-0.7552032c-0.1490479,0-0.2127533-0.0636978-0.2127533-0.2020493v-4.8086891
131
+ c0-0.1490173,0.0637054-0.2020493,0.2127533-0.2020493h0.7552032c0.1490173,0,0.1914215,0.0850372,0.1914215,0.2020493V38.5328827z
132
+ "/>
133
+ <path class="st0" d="M140.394043,38.8199959c-2.1382751,0-2.2766418-1.563797-2.2766418-2.7765083
134
+ c0-0.9999352,0.2234039-2.6277161,2.2766418-2.6277161c2.0639038,0,2.3510284,1.372364,2.3510284,2.6277161
135
+ C142.7450714,37.2561989,142.5960236,38.8199959,140.394043,38.8199959z M140.4047089,34.4370461
136
+ c-0.9042511,0-1.1066132,0.5745049-1.1066132,1.6808395c0,1.1276436,0.2023621,1.6808128,1.0959473,1.6808128
137
+ c0.9679718,0,1.1596527-0.5424995,1.1596527-1.6808128C141.5536957,34.9902115,141.3726807,34.4370461,140.4047089,34.4370461z"/>
138
+ <path class="st0" d="M148.08638,38.7349319h-0.7658844c-0.138382,0-0.2020874-0.0636978-0.2020874-0.2020493l0.0106659-2.989502
139
+ c0-0.6275368-0.1490021-1.0426064-0.7661591-1.0426064c-0.4254913,0-1.1700592,0.3404236-1.457428,0.4787712v3.5533371
140
+ c0,0.1276817-0.0530548,0.2020493-0.2020721,0.2020493h-0.755249c-0.1490173,0-0.2023315-0.0636978-0.2023315-0.2020493v-4.7980232
141
+ c0-0.1383476,0.0533142-0.2127151,0.2023315-0.2127151h0.755249c0.1490173,0,0.2020721,0.0743675,0.2020721,0.2127151v0.3191185
142
+ c0.0106659,0,0.0213318,0.0106659,0.0319824,0.0106659c0.3934784-0.2764435,1.1383362-0.6382027,1.7872009-0.6382027
143
+ c1.4360962,0,1.5637817,0.9466248,1.5637817,2.0212364v3.0852051
144
+ C148.2884521,38.6605644,148.2460632,38.7349319,148.08638,38.7349319z"/>
145
+ </g>
146
+ <polygon class="st1" points="155.0057068,38.7335892 155.0057068,17.3514462 153.1813354,17.3514462 153.1813354,38.7335892
147
+ 155.0057068,38.7335892 "/>
148
+ <g>
149
+ <path class="st2" d="M15.1403875,15.6534138c0,0,21.9824638-2.8660517,22.603447-2.9684477
150
+ c0.9511337-0.1562681,1.7963409-0.3391924,2.5843735-0.5590487c1.7781754-0.4906712,3.4148369-1.2397556,4.8636436-2.2264471
151
+ c1.3890648-0.9390097,2.6813202-2.3048205,3.9622345-3.8029885c0.8145752-0.9533439,1.6700325-2.1963758,2.4680595-3.3960917
152
+ v-0.578872c-0.9467888,1.4121799-1.8793297,2.628696-2.8382759,3.702888
153
+ c-1.2710876,1.425704-2.6043587,2.5919318-3.9636154,3.4667916c-1.402462,0.9102802-2.9811554,1.589756-4.6923294,2.0198917
154
+ c-0.7669792,0.194684-1.5882454,0.3524647-2.5112381,0.482048c-0.608551,0.0861559-1.2356682,0.1524601-1.8420067,0.2168598
155
+ C35.5323944,12.0357008,15.1403875,14.21525,15.1403875,14.21525V15.6534138z"/>
156
+ <path class="st2" d="M44.619957,11.9392977c-1.3759346,0.7974958-2.9652901,1.3808765-4.7232285,1.7344322
157
+ c-0.750988,0.1527119-1.5692596,0.2768354-2.5026398,0.3793707c-0.5479622,0.0598936-1.1002884,0.1081648-1.6532059,0.1561289
158
+ c-0.2984505,0.026124-0.5967636,0.0521078-0.8941231,0.0797167c-6.7365475,0.6086636-13.438488,1.256052-19.7063713,1.8692226
159
+ v1.4369049c6.3172197-0.7678165,13.0658083-1.58074,19.8000298-2.3486958
160
+ c0.2994041-0.0353918,0.5990906-0.0687685,0.8989143-0.101696c0.5516548-0.0614042,1.1040115-0.1226406,1.6581306-0.1961966
161
+ c0.9582443-0.12852,1.7967606-0.2761641,2.5629234-0.4513054c1.8265648-0.4115419,3.4766235-1.0612259,4.9021912-1.9310179
162
+ c1.4170876-0.8569679,2.6694298-2.0569363,4.0158386-3.524332c0.8382339-0.9132757,1.7710571-2.2021441,2.6437302-3.4133401
163
+ V5.1015859c-1.0279922,1.4053202-2.003624,2.5859122-2.9692574,3.5929599
164
+ C47.3383446,10.066658,45.981678,11.157958,44.619957,11.9392977z"/>
165
+ <path class="st2" d="M48.4670792,11.5872536c-1.3413391,1.2396164-2.7416115,2.2145758-4.1628036,2.8983078
166
+ c-1.3893356,0.6752481-2.9441032,1.1491203-4.7538528,1.4490843c-0.7467575,0.1245432-1.5587311,0.2265196-2.4810219,0.3110247
167
+ l-21.9290123,1.814539v1.4339085l19.4929543-2.0842915l2.5221863-0.2672882
168
+ c0.9497871-0.1104603,1.7785606-0.2346115,2.5328522-0.379261c1.8742752-0.3562717,3.4820862-0.8890829,4.9144897-1.6278915
169
+ c1.4642563-0.7462282,2.9275513-1.9877758,4.2877655-3.3023195c0.9131622-0.8815517,1.7921104-2.0200052,2.7315102-3.2141199
170
+ V8.1412659C50.5371475,9.5001059,49.5012321,10.632678,48.4670792,11.5872536z"/>
171
+ <path class="st2" d="M43.1643143,19.0329571c-1.2765427,0.7196846-2.2312508,1.1343651-4.0543861,1.3260231
172
+ c-1.1018295,0.1195049-2.2344017,0.1765137-3.3299294,0.2314777c-0.5302086,0.0266552-1.0610886,0.0531712-1.5907364,0.0867996
173
+ c-3.3129578,0.190876-6.5663071,0.4023876-9.8854256,0.6204529l-9.1634493,0.6217957v1.4336281l9.2548971-0.8557358
174
+ c2.9905949-0.2702847,6.4658432-0.5820084,9.8585186-0.8609161l2.4661293-0.1923599
175
+ c0.96278-0.0746479,1.7523232-0.1538048,2.4837685-0.2499294c1.8759155-0.2439079,3.4785423-0.6257439,4.8983688-1.1664791
176
+ c1.528923-0.5764084,2.9707489-1.4708138,4.4146538-2.5223236c1.3018341-0.9479961,3.1033821-2.8176403,3.105423-2.8421125
177
+ v-0.5065479c-1.1778183,1.1578836-1.8560905,1.8081284-3.1452103,2.6641169
178
+ C46.9361229,17.8437691,44.3089256,18.3877811,43.1643143,19.0329571z"/>
179
+ <path class="st2" d="M43.6305237,21.7577496c-1.3834572,0.4085197-2.9406662,0.6852436-4.7604141,0.8456287
180
+ c-0.7371864,0.0642319-1.5323296,0.113596-2.4312706,0.1501064l-2.4528542,0.1084156
181
+ c-6.0947895,0.2853203-12.1597843,0.6044369-18.8455963,0.9608498v1.430212
182
+ c6.3862677-0.4982052,12.644969-0.9828568,18.9009514-1.4314442l2.4456329-0.1682796
183
+ c0.944046-0.0623569,1.7266197-0.130312,2.4629898-0.2138367c1.8656693-0.2102795,3.4613037-0.5347157,4.8774376-0.9914799
184
+ c1.5696678-0.500948,3.0995407-1.2273235,4.5471382-2.1586609c1.0691261-0.685915,2.138279-1.5034866,3.2476082-2.4792595
185
+ v-0.0250034c-1.2225342,1.0514832-2.3875313,1.2847233-3.5486641,1.9913025
186
+ C46.6517372,20.6441898,45.1569901,21.3108139,43.6305237,21.7577496z"/>
187
+ <path class="st2" d="M43.4043922,24.1332417c-1.3934364,0.3282719-2.9033699,0.5393639-4.7526283,0.6640472
188
+ c-0.7133827,0.0482731-1.4798279,0.0843639-2.4136276,0.1136246l-2.4292259,0.08708
189
+ c-6.120882,0.2332401-12.3272228,0.5013409-18.6685219,0.7786236v1.4293728
190
+ c6.3004198-0.4331036,12.481616-0.8546162,18.7162628-1.2478199l2.4237366-0.1463013
191
+ c0.9503212-0.0545425,1.7247162-0.1103191,2.4363365-0.1756706c1.8835602-0.1750011,3.4246597-0.430109,4.8495445-0.8020039
192
+ c1.5987892-0.4150734,3.1528702-1.0234566,4.6193275-1.8082409c1.1339417-0.6056671,2.2647247-1.333807,3.4365501-2.2104607
193
+ v-0.6114063c-1.266552,0.922039-2.4813042,1.6731682-3.6977081,2.2859478
194
+ C46.4848022,23.2164097,44.9643517,23.7690182,43.4043922,24.1332417z"/>
195
+ <path class="st2" d="M43.1968536,26.4623928c-1.3980865,0.2579918-2.903759,0.4226055-4.739212,0.5183067
196
+ c-0.690567,0.0355339-1.4292603,0.0612373-2.3958778,0.0836658l-20.9213753,0.5709209v1.4279156l18.5524635-0.9756317
197
+ l2.4033813-0.1230602c0.9378853-0.0442963,1.705143-0.0902157,2.4145775-0.1454601
198
+ c1.8605995-0.1432762,3.3913155-0.3494701,4.8166084-0.6496849c1.6180687-0.3385201,3.188282-0.8326359,4.6674423-1.4678154
199
+ c1.1910896-0.508873,2.3845062-1.1298561,3.627285-1.8849316v-0.5738316
200
+ c-1.3279533,0.778204-2.5904198,1.4030228-3.8438377,1.9025993C46.3196487,25.7297173,44.7784157,26.1723976,43.1968536,26.4623928
201
+ z"/>
202
+ <path class="st2" d="M43.0326538,28.8012333c-2.5671616,0.3450718-5.2099419,0.3850002-7.7657547,0.4232769
203
+ c-0.5858421,0.0082035-1.1718254,0.0174999-1.7569695,0.0295391l-18.3695412,0.3335915v1.4262371l18.4012642-0.7989807
204
+ c0.5834923-0.0267963,1.1678505-0.0503159,1.7525749-0.0738087c2.5738716-0.1039085,5.2355232-0.2105598,7.8371391-0.6272831
205
+ c1.6473236-0.2614079,3.2323036-0.648592,4.7112007-1.1495113c1.2250023-0.4134483,2.4941559-0.9483051,3.7795792-1.5804882
206
+ V26.236517c-1.350914,0.6342564-2.6795425,1.160881-3.9551392,1.5557365
207
+ C46.205349,28.2472534,44.646347,28.5868645,43.0326538,28.8012333z"/>
208
+ <path class="st2" d="M42.886776,31.1549969c-2.4054375,0.2001438-4.8670578,0.2007027-7.2480087,0.2007027
209
+ c-0.7406006,0-1.4811974,0-2.2218285,0.0059929c-6.0854626,0.0267963-12.1228504,0.0771122-18.2765503,0.1307049v1.426796
210
+ c5.8611288-0.2007027,12.0792284-0.4101448,18.2972145-0.5960922c0.7379951-0.0246124,1.4764137-0.0437355,2.2156677-0.0628891
211
+ c2.3936653-0.0607033,4.8688087-0.1241226,7.2988548-0.388834c1.6979141-0.183176,3.242424-0.4522572,4.7222748-0.8213806
212
+ c1.2908821-0.3193951,2.616375-0.7459488,3.9477463-1.2583771v-0.5239067
213
+ c-1.3742943,0.4971123-2.7438011,0.9028873-4.0773582,1.198204C46.0792961,30.7918644,44.555294,31.0171795,42.886776,31.1549969z"
214
+ />
215
+ <path class="st2" d="M42.793808,33.4753838c-1.0021477,0.0399017-2.0872917,0.0590553-3.3181725,0.0590553
216
+ c-0.465107,0-0.9302139-0.0027466-1.3941193-0.0071144l-4.7346878-0.0579605
217
+ c-3.230669-0.0240784-6.4490452-0.0295372-9.4683399-0.0322838l-8.738101,0.0082054v1.4262619l8.7588758-0.2313347
218
+ c3.0085163-0.0743675,6.2363014-0.1514816,9.4565792-0.2099991l4.7306023-0.0628891
219
+ c1.2977448-0.0207748,3.0102806-0.0590515,4.7449608-0.1739082c1.699688-0.1110191,3.2466583-0.2816238,4.729229-0.5200729
220
+ c1.3343964-0.2154579,2.6977463-0.5047531,4.061512-0.8547554v-0.5064087
221
+ c-1.4012299,0.3259201-2.7936974,0.5857048-4.1450348,0.7678185C46.0028687,33.2790489,44.4710732,33.4081001,42.793808,33.4753838
222
+ z"/>
223
+ <path class="st2" d="M38.026413,35.7175674l-4.7184219-0.0508728c-6.0193272-0.0853157-12.0331669-0.1963081-18.1676025-0.3116989
224
+ v1.426796c5.8555288-0.0393944,12.0572214-0.0842209,18.1719704-0.1536903l4.7209129-0.0705338
225
+ c1.5907097-0.0273552,3.1486282-0.0563354,4.723896-0.1093674c3.2437859-0.1049995,6.1494827-0.3347092,8.8649788-0.6967239
226
+ v-0.4960175c-2.725769,0.2953148-5.6358185,0.4511604-8.8815231,0.4724998
227
+ C41.1701393,35.7421799,39.5982742,35.7307014,38.026413,35.7175674z"/>
228
+ <polygon class="st2" points="51.6221466,38.2397537 15.1403875,37.3078842 15.1403875,38.7335892 51.6221466,38.7335892 "/>
229
+ </g>
230
+ <g>
231
+ <path class="st2" d="M48.3372154,14.2815533c-1.3858032,1.1216526-2.4562988,1.9187279-4.1524315,2.5979519
232
+ c-1.4769745,0.591444-3.0635872,0.8337002-4.8762245,1.0826759c-1.1663399,0.1646118-2.3854599,0.4082394-3.5500336,0.4863052
233
+ c-0.478775,0.0323944-0.9579926,0.0643997-1.4356728,0.1021156l-19.1824646,1.4087639V21.39081l19.2599678-1.881937
234
+ l2.4970398-0.2359829c0.9262695-0.0881729,1.7484894-0.1909904,2.5137291-0.3152809
235
+ c1.866333-0.3020077,3.4748306-0.7631397,4.916256-1.409687c1.4955673-0.6647205,3.0090294-1.7532768,4.4154701-2.9457417
236
+ c0.95718-0.8096466,1.8775673-1.828763,2.8792953-2.9415102v-0.5129604
237
+ C50.4104195,12.409894,49.4060593,13.418314,48.3372154,14.2815533z"/>
238
+ </g>
239
+ <path class="st2" d="M67.1477814,2.1215181c0,0,6.5657806,10.4572153,7.7661972,12.3745718
240
+ c1.200386,1.916935,2.5724945,3.4335556,7.4302444,4.4638443c4.8577499,1.0300636,6.9725037,1.5166187,6.9725037,1.5166187v0.372036
241
+ c0,0-3.0865555-0.658308-7.0583801-1.5453472c-3.9718018-0.8870125-5.5954895-1.1854916-7.4061661-3.7046518
242
+ c-1.5066528-2.0968637-7.7043991-11.0069695-7.7043991-11.0069695V2.1215181z"/>
243
+ <path class="st2" d="M67.1477814,14.0636301c0,0,5.976799,6.2629557,7.7043991,8.0609484
244
+ c1.8333817,1.9073582,4.1818008,2.6128197,7.4367981,3.1942959c3.1072159,0.5546799,7.026123,1.1953182,7.026123,1.1953182
245
+ v0.3527451c0,0-3.679924-0.6029243-7.026123-1.1756363c-3.2807007-0.5619316-5.5771484-0.8754196-7.4562302-2.6066875
246
+ c-1.6827164-1.5503883-7.684967-7.1788359-7.684967-7.1788359V14.0636301z"/>
247
+ <path class="st2" d="M67.1477814,16.8855247c0,0,5.6839447,5.2780285,7.7043991,7.0810604
248
+ c1.8596497,1.6593647,3.3665543,2.1753197,7.4564819,2.9003525c4.0904922,0.7251434,7.0064392,1.1757755,7.0064392,1.1757755
249
+ v0.372427c0,0-3.6990814-0.6075706-7.026123-1.1369381c-3.326622-0.5288372-5.4467239-0.7378845-7.4367981-2.3513012
250
+ c-2.2968979-1.8629227-7.7043991-6.3168278-7.7043991-6.3168278V16.8855247z"/>
251
+ <path class="st2" d="M67.1477814,19.893734c0,0,6.4930649,5.1507397,7.7062988,6.0522556
252
+ c1.2132416,0.9012642,2.8183136,1.9528885,7.4759216,2.626091c4.6187668,0.6672134,6.9867249,0.9991531,6.9867249,0.9991531
253
+ v0.3921108c0,0-4.1879578-0.6075706-6.9867249-0.9603157c-2.7983475-0.3527431-4.9444351-0.5025711-7.4565125-2.1754589
254
+ c-2.445076-1.6279202-7.725708-5.345705-7.725708-5.345705V19.893734z"/>
255
+ <path class="st2" d="M67.1477814,22.7856007c0,0,6.5121841,4.3361931,7.7453918,5.0219688
256
+ c1.2332001,0.6857758,2.6813354,1.8030319,7.4368286,2.4106312c4.7560196,0.6075726,6.9867249,0.8815517,6.9867249,0.8815517
257
+ v0.3724289c0,0-3.9336624-0.4309483-7.0064087-0.7639809c-3.0723572-0.3336201-5.1661987-0.7842236-7.4562378-2.0382023
258
+ c-2.2900314-1.2540092-7.7062988-4.4187641-7.7062988-4.4187641V22.7856007z"/>
259
+ <path class="st2" d="M67.1477814,25.6774979c0,0,5.7564087,3.1313801,7.7043991,4.1091957
260
+ c2.1727142,1.0910206,4.051651,1.6133041,7.4564819,2.0185204c3.3434525,0.3981323,7.0064392,0.7842216,7.0064392,0.7842216
261
+ v0.3527451c0,0-3.386795-0.3625984-7.0064392-0.7054863c-3.588028-0.3401451-4.8659515-0.4965534-7.4564819-1.6460934
262
+ c-2.3165817-1.0281029-7.7043991-3.5404606-7.7043991-3.5404606V25.6774979z"/>
263
+ <path class="st2" d="M67.1477814,28.6087341c0,0,4.548912,1.9479599,7.7453918,3.2161636
264
+ c3.1445389,1.2474289,5.5451736,1.3524284,7.4565125,1.5678864c0.8416519,0.0946121,6.967041,0.725174,6.967041,0.725174v0.3521805
265
+ c0,0-3.6596832-0.293663-6.9867249-0.5873528c-3.3271866-0.293663-4.7620468-0.4183502-7.4565125-1.3130341
266
+ c-2.7261658-0.9050713-7.725708-2.6485176-7.725708-2.6485176V28.6087341z"/>
267
+ <path class="st2" d="M67.1477814,31.5968647c0,0,4.5926743,1.423521,7.7240829,2.2465534
268
+ c3.1314087,0.8230591,6.0083771,1.1566505,7.4564819,1.2539787c1.4481354,0.0984497,6.9883804,0.5485191,6.9883804,0.5485191
269
+ v0.3335915c0,0-3.1510925-0.2149277-7.0080643-0.4899979c-3.1182785-0.2220116-5.6231003-0.4571838-7.4564819-0.8624268
270
+ c-2.0316544-0.4484215-7.7043991-1.7964821-7.7043991-1.7964821V31.5968647z"/>
271
+ <path class="st2" d="M67.1477814,34.5368652c0,0,3.7559509,0.6474991,7.7240829,1.3053894
272
+ c2.9747162,0.4932747,7.0064087,0.8039055,7.4367981,0.8235893c0.4309464,0.0191536,7.0064392,0.4703178,7.0064392,0.4703178
273
+ v0.3521843c0,0-4.2087631-0.2176476-7.0064392-0.3718681c-2.9142914-0.1613388-5.8109512-0.3379898-7.4564819-0.5096855
274
+ c-3.6854172-0.3844681-7.7043991-0.8930588-7.7043991-0.8930588V34.5368652z"/>
275
+ <path class="st2" d="M67.1477814,37.5796814c0,0,5.9237671,0.2225723,7.7240829,0.26194
276
+ c1.8005676,0.0388374,14.4432373,0.5485191,14.4432373,0.5485191v0.3434486H67.1477814V37.5796814z"/>
277
+ <path class="st2" d="M82.3086624,20.5763741c-5.3622513-1.1562328-6.5754929-3.1159534-7.475914-4.3309841
278
+ c-0.9004288-1.2152843-7.684967-11.1312313-7.684967-11.1312313V7.351974
279
+ c0.2674332,0.3499999,6.0744324,7.9518313,7.7043991,10.0495071c1.8372192,2.3637314,4.7166519,2.9003525,7.4564819,3.4883785
280
+ c2.7397156,0.5878887,7.0080643,1.4075336,7.0080643,1.4075336v-0.3135166
281
+ C89.3167267,21.9838772,83.6933441,20.8748264,82.3086624,20.5763741z"/>
282
+ <path class="st2" d="M82.3086624,22.1441212c-4.4033051-0.8622875-6.1841888-2.253664-7.475914-3.9391232
283
+ c-1.2917252-1.6853485-7.684967-10.1121445-7.684967-10.1121445v2.1188726
284
+ c0.2675705,0.3173237,6.116127,7.2545748,7.684967,9.0514746c1.8301086,2.0961647,4.3839035,2.6457767,7.475914,3.2139797
285
+ c3.0924606,0.5683441,7.0064392,1.3128929,7.0064392,1.3128929v-0.3133488
286
+ C89.3151016,23.4767246,84.8476715,22.6413727,82.3086624,22.1441212z"/>
287
+ <path class="st2" d="M82.3086624,23.7705288c-4.5791168-0.8881321-5.5183792-1.6198292-7.4564819-3.7430954
288
+ c-1.2184525-1.334507-7.4418945-8.683136-7.7043991-8.9930677v1.9578152c0,0,5.8157425,6.2030649,7.684967,8.0348253
289
+ c2.4532776,2.4040508,4.7557678,2.5868359,7.475914,3.0767231c2.7205658,0.4898605,7.0064392,1.2739449,7.0064392,1.2739449
290
+ v-0.3332005C89.3151016,25.0444736,84.140564,24.1259899,82.3086624,23.7705288z"/>
291
+ <polygon class="st1" points="62.2661247,38.7335892 62.2661247,17.3522568 30.3040123,17.3522568 30.3040123,38.7335892
292
+ 62.2661247,38.7335892 "/>
293
+ <g>
294
+ <polygon class="st3" points="46.6315041,20.3923569 47.7436981,20.3923569 46.8472443,21.0905647 47.1955986,22.1982727
295
+ 46.3026924,21.515913 45.4099197,22.1982727 45.7618332,21.0905647 44.8583984,20.3923569 45.966774,20.3923569
296
+ 46.3026924,19.312006 46.6315041,20.3923569 "/>
297
+ <polygon class="st3" points="46.6706047,34.6511612 47.7843285,34.6511612 46.8879929,35.3243637 47.2361984,36.389122
298
+ 46.3434372,35.7328835 45.4505234,36.389122 45.8023033,35.3243637 44.8972244,34.6511612 46.0075188,34.6511612
299
+ 46.3434372,33.6115494 46.6706047,34.6511612 "/>
300
+ <polygon class="st3" points="50.1976776,33.7066917 51.311657,33.7066917 50.4151802,34.378273 50.7635574,35.4446831
301
+ 49.870636,34.7867928 48.9778557,35.4446831 49.3296471,34.378273 48.4244347,33.7066917 49.5347214,33.7066917
302
+ 49.870636,32.6670799 50.1976776,33.7066917 "/>
303
+ <polygon class="st3" points="50.1976776,21.3434887 51.311657,21.3434887 50.4151802,22.0153503 50.7635574,23.0814781
304
+ 49.870636,22.4246807 48.9778557,23.0814781 49.3296471,22.0153503 48.4244347,21.3434887 49.5347214,21.3434887
305
+ 49.870636,20.304018 50.1976776,21.3434887 "/>
306
+ <polygon class="st3" points="52.8163757,23.961937 53.9281731,23.961937 53.0318642,24.6329575 53.3802109,25.6998978
307
+ 52.4874306,25.0431004 51.5963058,25.6998978 51.9480972,24.6329575 51.0428543,23.961937 52.1513748,23.961937
308
+ 52.4874306,22.9223251 52.8163757,23.961937 "/>
309
+ <polygon class="st3" points="52.8163757,31.123806 53.9281731,31.123806 53.0318642,31.7975693 53.3802109,32.8634186
310
+ 52.4874306,32.2055283 51.5963058,32.8634186 51.9480972,31.7975693 51.0428543,31.123806 52.1513748,31.123806
311
+ 52.4874306,30.0841942 52.8163757,31.123806 "/>
312
+ <polygon class="st3" points="53.7974663,27.4882011 54.9114761,27.4882011 54.0148582,28.1602859 54.362957,29.2266941
313
+ 53.4701767,28.5688057 52.5773964,29.2266941 52.9293289,28.1602859 52.0240898,27.4882011 53.1327477,27.4882011
314
+ 53.4701767,26.4495411 53.7974663,27.4882011 "/>
315
+ <polygon class="st3" points="43.0355263,21.352253 44.1474609,21.352253 43.2511292,22.0250378 43.5994911,23.0911655
316
+ 42.7065811,22.4334183 41.8136711,23.0911655 42.1657219,22.0250378 41.2621498,21.352253 42.3708,21.352253
317
+ 42.7065811,20.3127804 43.0355263,21.352253 "/>
318
+ <polygon class="st3" points="40.4895439,23.9707012 41.6033974,23.9707012 40.7069359,24.6425343 41.0535202,25.7088013
319
+ 40.1623917,25.0518646 39.2696114,25.7088013 39.6205635,24.6425343 38.7161636,23.9707012 39.8264771,23.9707012
320
+ 40.1623917,22.9312286 40.4895439,23.9707012 "/>
321
+ <polygon class="st3" points="39.5445442,27.4969368 40.6575737,27.4969368 39.7611237,28.1695805 40.109333,29.2354565
322
+ 39.2165527,28.5797539 38.3236618,29.2354565 38.6755638,28.1695805 37.7720032,27.4969368 38.8806343,27.4969368
323
+ 39.2165527,26.4584179 39.5445442,27.4969368 "/>
324
+ <polygon class="st3" points="40.4895439,31.1325703 41.6033974,31.1325703 40.7069359,31.8063049 41.0535202,32.8721809
325
+ 40.1623917,32.2148247 39.2696114,32.8721809 39.6205635,31.8063049 38.7161636,31.1325703 39.8264771,31.1325703
326
+ 40.1623917,30.0945797 40.4895439,31.1325703 "/>
327
+ <polygon class="st3" points="43.0727119,33.7154579 44.1846466,33.7154579 43.2881813,34.3875694 43.6347656,35.4534187
328
+ 42.7436295,34.7960892 41.8508606,35.4534187 42.2027702,34.3875694 41.2993355,33.7154579 42.4078484,33.7154579
329
+ 42.7436295,32.6758461 43.0727119,33.7154579 "/>
330
+ </g>
331
+ <g>
332
+ </g>
333
+ <g>
334
+ </g>
335
+ <g>
336
+ </g>
337
+ <g>
338
+ </g>
339
+ <g>
340
+ </g>
341
+ <g>
342
+ </g>
343
+ </svg>