@reltio/dashboard 1.4.1585 → 1.4.1586-mui5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.DS_Store +0 -0
- package/index.ts +12 -0
- package/package.json +42 -25
- package/public/bundle.js +205 -0
- package/public/bundle.js.LICENSE.txt +59 -0
- package/public/package.json +26 -0
- package/public/types/components/DashboardConfigItem/styles.d.ts +1 -0
- package/{types → public/types}/components/DashboardError/styles.d.ts +1 -1
- package/public/types/components/DashboardLayout/styles.d.ts +1 -0
- package/public/types/components/DashboardLayoutItem/styles.d.ts +1 -0
- package/public/types/components/DashboardLayoutPanel/styles.d.ts +1 -0
- package/public/types/components/DashboardLinearLoader/styles.d.ts +1 -0
- package/{types → public/types}/components/DashboardNoData/styles.d.ts +1 -1
- package/public/types/components/DashboardPerspectiveHeader/styles.d.ts +2 -0
- package/{types → public/types}/components/DashboardPopupMenu/DashboardPopupMenu.d.ts +1 -1
- package/public/types/components/DashboardPopupMenu/styles.d.ts +1 -0
- package/public/types/components/EntityTable/cell-renderers/styles.d.ts +1 -0
- package/{types → public/types}/components/EntityTable/styles.d.ts +1 -1
- package/public/types/components/LayoutItemContent/styles.d.ts +1 -0
- package/public/types/components/LayoutItemHeader/styles.d.ts +1 -0
- package/public/types/components/LayoutItemView/styles.d.ts +1 -0
- package/public/types/components/StatsChart/customized/styles.d.ts +1 -0
- package/public/types/components/WorkflowTaskItem/styles.d.ts +1 -0
- package/public/types/perspective/styles.d.ts +1 -0
- package/public/types/views/chartBased/styles.d.ts +1 -0
- package/public/types/views/custom/styles.d.ts +1 -0
- package/public/types/views/tableBased/styles.d.ts +1 -0
- package/scripts/build/index.js +21 -0
- package/src/HOCs/withPagination.tsx +39 -0
- package/src/components/DashboardConfigItem/DashboardConfigItem.tsx +101 -0
- package/src/components/DashboardConfigItem/__tests__/DashboardConfigItem.specs.tsx +81 -0
- package/src/components/DashboardConfigItem/icons/barChart.svg +12 -0
- package/src/components/DashboardConfigItem/icons/bubbleChart.svg +18 -0
- package/src/components/DashboardConfigItem/icons/customChart.svg +66 -0
- package/src/components/DashboardConfigItem/icons/donutChart.svg +33 -0
- package/src/components/DashboardConfigItem/icons/geomap.svg +23 -0
- package/src/components/DashboardConfigItem/icons/lineChart.svg +16 -0
- package/src/components/DashboardConfigItem/icons/pieChart.svg +27 -0
- package/src/components/DashboardConfigItem/icons/tableWithBars.svg +27 -0
- package/src/components/DashboardConfigItem/icons/treemap.svg +15 -0
- package/src/components/DashboardConfigItem/icons/wordCloud.svg +27 -0
- package/src/components/DashboardConfigItem/styles.ts +56 -0
- package/src/components/DashboardError/DashboardError.tsx +34 -0
- package/src/components/DashboardError/__tests__/DashboardError.test.js +34 -0
- package/src/components/DashboardError/icons/error.svg +113 -0
- package/src/components/DashboardError/styles.ts +30 -0
- package/src/components/DashboardLayout/DashboardLayout.tsx +59 -0
- package/src/components/DashboardLayout/__tests__/DashboardLayout.specs.tsx +56 -0
- package/src/components/DashboardLayout/styles.ts +30 -0
- package/src/components/DashboardLayoutItem/DashboardLayoutItem.tsx +59 -0
- package/src/components/DashboardLayoutItem/__tests__/DashboardLayoutItem.specs.tsx +145 -0
- package/src/components/DashboardLayoutItem/styles.ts +10 -0
- package/src/components/DashboardLayoutPanel/DashboardLayoutPanel.tsx +59 -0
- package/src/components/DashboardLayoutPanel/__tests__/DashboardLayoutPanel.specs.tsx +58 -0
- package/src/components/DashboardLayoutPanel/styles.ts +43 -0
- package/src/components/DashboardLinearLoader/DashboardLinearLoader.tsx +10 -0
- package/src/components/DashboardLinearLoader/__tests__/DashboardLinearLoader.test.js +12 -0
- package/src/components/DashboardLinearLoader/styles.ts +11 -0
- package/src/components/DashboardNoData/.DS_Store +0 -0
- package/src/components/DashboardNoData/DashboardNoData.tsx +21 -0
- package/src/components/DashboardNoData/__tests__/DashboardNoData.test.js +15 -0
- package/src/components/DashboardNoData/icons/noData.svg +68 -0
- package/src/components/DashboardNoData/styles.ts +21 -0
- package/src/components/DashboardPerspectiveHeader/DashboardPerspectiveHeader.tsx +43 -0
- package/src/components/DashboardPerspectiveHeader/__tests__/DashboardPerspectiveHeader.specs.tsx +41 -0
- package/src/components/DashboardPerspectiveHeader/styles.ts +24 -0
- package/src/components/DashboardPopupMenu/DashboardPopupMenu.tsx +75 -0
- package/src/components/DashboardPopupMenu/__tests__/DashboardPopupMenu.test.tsx +51 -0
- package/src/components/DashboardPopupMenu/styles.ts +20 -0
- package/src/components/EntityTable/EntityTable.tsx +49 -0
- package/src/components/EntityTable/__tests__/EntityTable.test.tsx +33 -0
- package/src/components/EntityTable/cell-renderers/EntityLabelRenderer.tsx +24 -0
- package/src/components/EntityTable/cell-renderers/HeadCellRenderer.tsx +34 -0
- package/src/components/EntityTable/cell-renderers/__tests__/EntityLabelRenderer.test.tsx +25 -0
- package/src/components/EntityTable/cell-renderers/styles.ts +46 -0
- package/src/components/EntityTable/styles.ts +19 -0
- package/src/components/LayoutItemContent/LayoutItemContent.tsx +63 -0
- package/src/components/LayoutItemContent/__tests__/LayoutItemContent.test.tsx +71 -0
- package/src/components/LayoutItemContent/styles.ts +36 -0
- package/src/components/LayoutItemHeader/LayoutItemHeader.tsx +86 -0
- package/src/components/LayoutItemHeader/__tests__/LayoutItemHeader.specs.tsx +48 -0
- package/src/components/LayoutItemHeader/styles.ts +44 -0
- package/src/components/LayoutItemView/LayoutItemView.tsx +24 -0
- package/src/components/LayoutItemView/styles.ts +11 -0
- package/src/components/StatsChart/StatsChart.tsx +77 -0
- package/src/components/StatsChart/__tests__/StatsChart.test.tsx +106 -0
- package/src/components/StatsChart/customized/CustomAxisTick.tsx +28 -0
- package/src/components/StatsChart/customized/CustomLegend.tsx +37 -0
- package/src/components/StatsChart/customized/CustomTooltip.tsx +41 -0
- package/src/components/StatsChart/customized/styles.ts +53 -0
- package/src/components/StatsChart/getStatsChartSettings.ts +65 -0
- package/src/components/WorkflowTaskItem/WorkflowTaskItem.tsx +67 -0
- package/src/components/WorkflowTaskItem/WorkflowTaskObject.tsx +54 -0
- package/src/components/WorkflowTaskItem/__tests__/WorkflowTaskItem.test.tsx +73 -0
- package/src/components/WorkflowTaskItem/__tests__/WorkflowTaskObject.test.tsx +95 -0
- package/src/components/WorkflowTaskItem/styles.ts +74 -0
- package/src/components/WorkflowTasksList/WorkflowTasksList.tsx +34 -0
- package/src/components/WorkflowTasksList/__tests__/WorkflowTasksList.test.tsx +98 -0
- package/src/components/index.ts +8 -0
- package/src/contexts/DashboardViewIdContext/index.ts +5 -0
- package/src/hooks/__tests__/useActivititesRequest.specs.tsx +106 -0
- package/src/hooks/__tests__/useEntityByTypeRequest.specs.tsx +280 -0
- package/src/hooks/__tests__/useFacetRequest.specs.tsx +437 -0
- package/src/hooks/__tests__/useFilteredEntitiesRequest.specs.tsx +103 -0
- package/src/hooks/__tests__/useSavedSearchesRequest.specs.tsx +201 -0
- package/src/hooks/__tests__/useStatsRequest.specs.tsx +212 -0
- package/src/hooks/__tests__/useWorkflowTasksRequest.specs.tsx +388 -0
- package/src/hooks/useActivitiesRequest.ts +50 -0
- package/src/hooks/useEntityByTypeRequest.ts +67 -0
- package/src/hooks/useFacetRequest.ts +117 -0
- package/src/hooks/useFilteredEntitiesRequest.ts +57 -0
- package/src/hooks/useSavedSearchesRequest.ts +82 -0
- package/src/hooks/useStatsRequest.ts +47 -0
- package/src/hooks/useWorkflowTasksRequest.ts +66 -0
- package/src/index.ts +25 -0
- package/src/perspective/DashboardPerspectiveView.tsx +132 -0
- package/src/perspective/__tests__/DashboardPerspectiveView.specs.tsx +276 -0
- package/src/perspective/__tests__/data/metadata.data.ts +33 -0
- package/src/perspective/__tests__/data/store.data.ts +15 -0
- package/src/perspective/__tests__/helpers.specs.ts +33 -0
- package/src/perspective/helpers.ts +19 -0
- package/src/perspective/index.tsx +65 -0
- package/src/perspective/styles.ts +16 -0
- package/src/services/__tests__/facets.specs.ts +42 -0
- package/src/services/__tests__/filters.specs.ts +60 -0
- package/src/services/__tests__/period.test.ts +33 -0
- package/src/services/__tests__/stats.test.ts +319 -0
- package/src/services/entityTypes.ts +66 -0
- package/src/services/facets.ts +178 -0
- package/src/services/filters.ts +87 -0
- package/src/services/period.ts +33 -0
- package/src/services/savedSearches.ts +20 -0
- package/src/services/stats.ts +191 -0
- package/src/services/workflowTasks.ts +116 -0
- package/src/types/ActivitiesViewFacetConfig.ts +5 -0
- package/src/types/CustomActionViewFacetConfig.ts +5 -0
- package/src/types/DashboardPerspectiveConfig.ts +18 -0
- package/src/types/DashboardSavedState.ts +7 -0
- package/src/types/EntityByTypeViewFacetConfig.ts +7 -0
- package/src/types/EntityData.ts +4 -0
- package/src/types/FilteredEntitiesFacetConfig.ts +6 -0
- package/src/types/FilteredSavedSearchesFacetConfig.ts +6 -0
- package/src/types/PeriodStep.ts +4 -0
- package/src/types/SavedSearchData.ts +6 -0
- package/src/types/SearchOptions.ts +10 -0
- package/src/types/StatsData.ts +14 -0
- package/src/types/WorkflowTasks.ts +26 -0
- package/src/types/index.ts +14 -0
- package/src/views/ViewsFactory.tsx +79 -0
- package/src/views/__tests__/ViewsFactory.specs.tsx +70 -0
- package/src/views/chartBased/DashboardFacet.tsx +71 -0
- package/src/views/chartBased/EntitiesByTypeViewFacet.tsx +60 -0
- package/src/views/chartBased/ProfileStatsFacet.tsx +54 -0
- package/src/views/chartBased/__tests__/DashboardFacet.specs.tsx +358 -0
- package/src/views/chartBased/__tests__/EntitiesByTypeViewFacet.specs.tsx +101 -0
- package/src/views/chartBased/__tests__/ProfileStatsFacet.specs.tsx +106 -0
- package/src/views/chartBased/styles.ts +13 -0
- package/src/views/custom/CustomActionViewFacet.tsx +36 -0
- package/src/views/custom/NotificationInboxFacet.tsx +86 -0
- package/src/views/custom/__tests__/CustomActionViewFacet.specs.tsx +35 -0
- package/src/views/custom/__tests__/NotificationInboxFacet.specs.tsx +144 -0
- package/src/views/custom/styles.ts +31 -0
- package/src/views/tableBased/ActivitiesViewFacet.tsx +79 -0
- package/src/views/tableBased/FilteredEntitiesViewFacet.tsx +67 -0
- package/src/views/tableBased/FilteredSavedSearchesFacet.tsx +85 -0
- package/src/views/tableBased/__tests__/ActivitiesViewFacet.specs.tsx +113 -0
- package/src/views/tableBased/__tests__/FIlteredEntitiesViewFacet.specs.tsx +90 -0
- package/src/views/tableBased/__tests__/FilteredSavedSearchesFacet.specs.tsx +133 -0
- package/src/views/tableBased/helpers.ts +8 -0
- package/src/views/tableBased/styles.ts +7 -0
- package/stories/Dashboards.stories.js +118 -0
- package/stories/utils/dashboardPerspectiveConfig.js +78 -0
- package/stories/utils/dashboardsViewConfig.js +17 -0
- package/stories/utils/mdmStore.js +73 -0
- package/stories/utils/responses.js +10 -0
- package/tsconfig.json +14 -0
- package/webpack.config.js +10 -0
- package/bundle.js +0 -2
- package/bundle.js.LICENSE.txt +0 -22
- package/types/components/DashboardConfigItem/styles.d.ts +0 -1
- package/types/components/DashboardLayout/styles.d.ts +0 -1
- package/types/components/DashboardLayoutItem/styles.d.ts +0 -1
- package/types/components/DashboardLayoutPanel/styles.d.ts +0 -1
- package/types/components/DashboardLinearLoader/styles.d.ts +0 -1
- package/types/components/DashboardPerspectiveHeader/styles.d.ts +0 -2
- package/types/components/DashboardPopupMenu/styles.d.ts +0 -1
- package/types/components/EntityTable/cell-renderers/styles.d.ts +0 -1
- package/types/components/LayoutItemContent/styles.d.ts +0 -1
- package/types/components/LayoutItemHeader/styles.d.ts +0 -1
- package/types/components/LayoutItemView/styles.d.ts +0 -1
- package/types/components/StatsChart/customized/styles.d.ts +0 -1
- package/types/components/WorkflowTaskItem/styles.d.ts +0 -1
- package/types/perspective/styles.d.ts +0 -1
- package/types/views/chartBased/styles.d.ts +0 -1
- package/types/views/custom/styles.d.ts +0 -1
- package/types/views/tableBased/styles.d.ts +0 -1
- /package/{types → public/types}/HOCs/withPagination.d.ts +0 -0
- /package/{types → public/types}/components/DashboardConfigItem/DashboardConfigItem.d.ts +0 -0
- /package/{types → public/types}/components/DashboardError/DashboardError.d.ts +0 -0
- /package/{types → public/types}/components/DashboardLayout/DashboardLayout.d.ts +0 -0
- /package/{types → public/types}/components/DashboardLayoutItem/DashboardLayoutItem.d.ts +0 -0
- /package/{types → public/types}/components/DashboardLayoutPanel/DashboardLayoutPanel.d.ts +0 -0
- /package/{types → public/types}/components/DashboardLinearLoader/DashboardLinearLoader.d.ts +0 -0
- /package/{types → public/types}/components/DashboardNoData/DashboardNoData.d.ts +0 -0
- /package/{types → public/types}/components/DashboardPerspectiveHeader/DashboardPerspectiveHeader.d.ts +0 -0
- /package/{types → public/types}/components/EntityTable/EntityTable.d.ts +0 -0
- /package/{types → public/types}/components/EntityTable/cell-renderers/EntityLabelRenderer.d.ts +0 -0
- /package/{types → public/types}/components/EntityTable/cell-renderers/HeadCellRenderer.d.ts +0 -0
- /package/{types → public/types}/components/LayoutItemContent/LayoutItemContent.d.ts +0 -0
- /package/{types → public/types}/components/LayoutItemHeader/LayoutItemHeader.d.ts +0 -0
- /package/{types → public/types}/components/LayoutItemView/LayoutItemView.d.ts +0 -0
- /package/{types → public/types}/components/StatsChart/StatsChart.d.ts +0 -0
- /package/{types → public/types}/components/StatsChart/customized/CustomAxisTick.d.ts +0 -0
- /package/{types → public/types}/components/StatsChart/customized/CustomLegend.d.ts +0 -0
- /package/{types → public/types}/components/StatsChart/customized/CustomTooltip.d.ts +0 -0
- /package/{types → public/types}/components/StatsChart/getStatsChartSettings.d.ts +0 -0
- /package/{types → public/types}/components/WorkflowTaskItem/WorkflowTaskItem.d.ts +0 -0
- /package/{types → public/types}/components/WorkflowTaskItem/WorkflowTaskObject.d.ts +0 -0
- /package/{types → public/types}/components/WorkflowTasksList/WorkflowTasksList.d.ts +0 -0
- /package/{types → public/types}/components/index.d.ts +0 -0
- /package/{types → public/types}/contexts/DashboardViewIdContext/index.d.ts +0 -0
- /package/{types → public/types}/hooks/useActivitiesRequest.d.ts +0 -0
- /package/{types → public/types}/hooks/useEntityByTypeRequest.d.ts +0 -0
- /package/{types → public/types}/hooks/useFacetRequest.d.ts +0 -0
- /package/{types → public/types}/hooks/useFilteredEntitiesRequest.d.ts +0 -0
- /package/{types → public/types}/hooks/useSavedSearchesRequest.d.ts +0 -0
- /package/{types → public/types}/hooks/useStatsRequest.d.ts +0 -0
- /package/{types → public/types}/hooks/useWorkflowTasksRequest.d.ts +0 -0
- /package/{types → public/types}/index.d.ts +0 -0
- /package/{types → public/types}/perspective/DashboardPerspectiveView.d.ts +0 -0
- /package/{types → public/types}/perspective/helpers.d.ts +0 -0
- /package/{types → public/types}/perspective/index.d.ts +0 -0
- /package/{types → public/types}/services/entityTypes.d.ts +0 -0
- /package/{types → public/types}/services/facets.d.ts +0 -0
- /package/{types → public/types}/services/filters.d.ts +0 -0
- /package/{types → public/types}/services/period.d.ts +0 -0
- /package/{types → public/types}/services/savedSearches.d.ts +0 -0
- /package/{types → public/types}/services/stats.d.ts +0 -0
- /package/{types → public/types}/services/workflowTasks.d.ts +0 -0
- /package/{types → public/types}/types/ActivitiesViewFacetConfig.d.ts +0 -0
- /package/{types → public/types}/types/CustomActionViewFacetConfig.d.ts +0 -0
- /package/{types → public/types}/types/DashboardPerspectiveConfig.d.ts +0 -0
- /package/{types → public/types}/types/DashboardSavedState.d.ts +0 -0
- /package/{types → public/types}/types/EntityByTypeViewFacetConfig.d.ts +0 -0
- /package/{types → public/types}/types/EntityData.d.ts +0 -0
- /package/{types → public/types}/types/FilteredEntitiesFacetConfig.d.ts +0 -0
- /package/{types → public/types}/types/FilteredSavedSearchesFacetConfig.d.ts +0 -0
- /package/{types → public/types}/types/PeriodStep.d.ts +0 -0
- /package/{types → public/types}/types/SavedSearchData.d.ts +0 -0
- /package/{types → public/types}/types/SearchOptions.d.ts +0 -0
- /package/{types → public/types}/types/StatsData.d.ts +0 -0
- /package/{types → public/types}/types/WorkflowTasks.d.ts +0 -0
- /package/{types → public/types}/types/index.d.ts +0 -0
- /package/{types → public/types}/views/ViewsFactory.d.ts +0 -0
- /package/{types → public/types}/views/chartBased/DashboardFacet.d.ts +0 -0
- /package/{types → public/types}/views/chartBased/EntitiesByTypeViewFacet.d.ts +0 -0
- /package/{types → public/types}/views/chartBased/ProfileStatsFacet.d.ts +0 -0
- /package/{types → public/types}/views/custom/CustomActionViewFacet.d.ts +0 -0
- /package/{types → public/types}/views/custom/NotificationInboxFacet.d.ts +0 -0
- /package/{types → public/types}/views/tableBased/ActivitiesViewFacet.d.ts +0 -0
- /package/{types → public/types}/views/tableBased/FilteredEntitiesViewFacet.d.ts +0 -0
- /package/{types → public/types}/views/tableBased/FilteredSavedSearchesFacet.d.ts +0 -0
- /package/{types → public/types}/views/tableBased/helpers.d.ts +0 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="255px" height="110px" viewBox="0 0 255 110" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>Cards / Elements / Geomap</title>
|
|
4
|
+
<defs>
|
|
5
|
+
<linearGradient x1="100%" y1="50%" x2="0%" y2="50%" id="linearGradient-1">
|
|
6
|
+
<stop stop-color="#C87AD4" stop-opacity="0.78" offset="0%"></stop>
|
|
7
|
+
<stop stop-color="#D598DE" stop-opacity="0" offset="100%"></stop>
|
|
8
|
+
</linearGradient>
|
|
9
|
+
</defs>
|
|
10
|
+
<g id="Cards-/-Elements-/-Geomap" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
11
|
+
<rect id="Rectangle" x="0" y="0" width="255" height="110"></rect>
|
|
12
|
+
<g id="Group" transform="translate(15.000000, 5.000000)" fill="#C87AD4">
|
|
13
|
+
<path d="M107.45509,29.2215569 L107.634731,29.5508982 L107.54491,29.9700599 L106.976048,29.4311377 L107.45509,29.2215569 Z M108.652695,29.2814371 L108.443114,29.9101796 L107.994012,30.1197605 L107.724551,30 L108.233533,29.8502994 L107.874251,29.6706587 L107.724551,29.251497 L108.113772,29.1017964 L108.203593,29.3113772 L108.443114,28.9520958 L108.652695,29.011976 L108.652695,29.2814371 Z M107.065868,38.5928144 L106.886228,38.7724551 L106.916168,39.251497 L106.736527,39.760479 L106.497006,39.6407186 L106.347305,39.1616766 L106.437126,38.9520958 L106.766467,38.8622754 L106.796407,38.6526946 L107.065868,38.5928144 Z M113.682635,6.79640719 L114.041916,6.79640719 L114.131737,7.18562874 L113.443114,7.2754491 L112.964072,6.91616766 L113.682635,6.79640719 Z M110.239521,17.5149701 L110.479042,17.4550898 L110.628743,17.7245509 L110.898204,17.5149701 L110.808383,18.0538922 L110.449102,18.0538922 L108.862275,18.4431138 L109.88024,17.9640719 L109.640719,17.7844311 L110.239521,17.5149701 Z M113.802395,7.2754491 L114.550898,7.21556886 L114.91018,7.69461078 L115.359281,7.75449102 L114.700599,8.44311377 L114.221557,8.44311377 L114.431138,8.08383234 L113.383234,8.20359281 L113.353293,8.05389222 L113.802395,7.63473054 L113.353293,7.4251497 L113.802395,7.2754491 Z M112.39521,27.1257485 L112.48503,27.4550898 L112.185629,27.6347305 L112.245509,27.9041916 L111.886228,28.2934132 L111.766467,27.8143713 L111.976048,27.5748503 L112.42515,27.4251497 L112.39521,27.1257485 Z M129.94012,17.5149701 L129.88024,17.3952096 L129.401198,17.8143713 L128.892216,17.5748503 L128.922156,17.1856287 L129.491018,16.9760479 L130.05988,17.2754491 L129.94012,17.5149701 Z M133.952096,4.8502994 L133.143713,4.8502994 L133.293413,4.5508982 L134.041916,4.49101796 L133.832335,4.37125749 L134.700599,4.37125749 L134.790419,5.02994012 L135.568862,4.82035928 L135.209581,5.08982036 L134.580838,5.08982036 L134.670659,4.79041916 L133.952096,4.8502994 Z M132.39521,4.49101796 L132.065868,4.37125749 L131.886228,4.76047904 L131.137725,4.64071856 L131.526946,4.46107784 L131.916168,4.58083832 L132.095808,4.19161677 L132.39521,4.49101796 Z M133.682635,4.01197605 L133.203593,4.16167665 L132.155689,3.92215569 L132.784431,3.80239521 L132.54491,3.50299401 L133.323353,3.62275449 L134.251497,3.92215569 L133.682635,4.01197605 Z M138.263473,3.41317365 L138.682635,3.77245509 L138.083832,4.01197605 L137.365269,4.10179641 L137.005988,3.89221557 L137.874251,3.68263473 L138.263473,3.41317365 Z M128.802395,4.13173653 L128.622754,3.98203593 L127.664671,4.43113772 L127.095808,4.13173653 L128.922156,3.89221557 L129.161677,4.19161677 L128.802395,4.13173653 Z M114.311377,26.8562874 L114.011976,26.6167665 L114.341317,26.5269461 L114.760479,26.8862275 L114.580838,27.1257485 L114.101796,27.3053892 L113.922156,27.005988 L114.311377,26.8562874 Z M103.652695,40.6586826 L103.323353,41.1077844 L102.814371,40.9281437 L103.143713,40.748503 L103.652695,40.6586826 Z M110.11976,41.497006 L110.05988,41.9161677 L110.299401,41.7964072 L110.05988,42.4550898 L110.209581,42.6646707 L110.05988,42.8742515 L109.730539,42.7844311 L108.982036,42.3353293 L108.682635,42.2754491 L108.502994,42.0359281 L108.922156,41.8862275 L108.952096,41.5568862 L109.101796,41.9461078 L109.311377,42.0359281 L109.97006,41.8862275 L110.11976,41.497006 Z M106.856287,39.8502994 L107.065868,40.3293413 L106.916168,41.257485 L106.616766,41.2275449 L106.526946,41.4371257 L106.167665,41.2275449 L106.347305,40.748503 L106.197605,39.9401198 L106.317365,40.1197605 L106.736527,39.8203593 L106.856287,39.8502994 Z M116.287425,42.3053892 L116.736527,42.1257485 L116.586826,42.4251497 L116.856287,42.6646707 L116.946108,42.9041916 L117.185629,43.1437126 L117.54491,43.0239521 L117.275449,43.3832335 L116.556886,42.4251497 L116.287425,42.3053892 Z M115.269461,42.3053892 L115.329341,42.2155689 L115.479042,42.7844311 L115.868263,42.7844311 L115.778443,42.5748503 L116.137725,42.6047904 L116.437126,42.9640719 L115.958084,42.754491 L115.658683,42.9041916 L115.479042,42.8143713 L115.269461,42.3053892 Z M115.389222,41.3473054 L115.239521,41.7365269 L115.658683,42.0658683 L115.808383,42.3053892 L115.628743,42.4251497 L115.508982,42.0359281 L114.670659,41.4670659 L115.179641,41.5568862 L115.389222,41.3473054 Z M116.347305,41.6467066 L116.257485,41.9161677 L116.017964,41.6467066 L116.287425,41.6167665 L116.347305,41.3173653 L116.167665,41.1676647 L116.467066,41.0778443 L116.586826,41.3473054 L116.347305,41.6467066 Z M114.760479,43.4131737 L115.269461,43.7125749 L116.137725,43.742515 L116.407186,43.9221557 L115.538922,43.9820359 L115.359281,43.8323353 L115.149701,44.0419162 L114.850299,43.7724551 L114.760479,43.4131737 Z M120.239521,44.1916168 L120.179641,44.1616766 L120.08982,44.1616766 L120.149701,44.1317365 L120.239521,44.1916168 Z M120.748503,43.9820359 L120.718563,43.9820359 L120.688623,43.9520958 L120.688623,43.9520958 L120.688623,43.9520958 L120.688623,43.9520958 L120.658683,43.9520958 L120.688623,43.9520958 L120.658683,43.9520958 L120.628743,43.9820359 L120.658683,43.9520958 L120.658683,43.9520958 L120.658683,43.9520958 L120.658683,43.9520958 L120.658683,43.9520958 L120.688623,43.9221557 L120.748503,43.9820359 Z M116.616766,40.4491018 L116.347305,40.6287425 L116.377246,40.4790419 L116.736527,40.2694611 L116.317365,40.2694611 L116.017964,40.4191617 L115.898204,40.8083832 L115.688623,41.0479042 L115.718563,40.6886228 L115.868263,40.7185629 L115.988024,40.0898204 L115.718563,40 L115.568862,40.2694611 L115.449102,40.0299401 L114.94012,40.2095808 L115.08982,40.4191617 L114.760479,40.5389222 L114.461078,40.3592814 L114.311377,40.6586826 L114.760479,41.2275449 L114.431138,41.497006 L115.08982,41.8263473 L115.149701,42.245509 L114.88024,41.9760479 L114.820359,42.7245509 L114.431138,42.7844311 L114.281437,42.994012 L114.071856,42.6347305 L113.802395,42.8143713 L113.742515,42.3053892 L113.293413,42.0958084 L113.502994,41.7964072 L113.173653,41.5568862 L113.502994,41.3473054 L112.934132,41.2275449 L112.964072,40.9281437 L112.54491,40.5389222 L112.45509,40.239521 L112.57485,40.0598802 L112.51497,39.7305389 L112.60479,39.4610778 L112.39521,39.3712575 L112.095808,39.011976 L111.616766,38.7724551 L111.107784,38.8023952 L110.988024,38.5628743 L110.658683,38.6526946 L110.808383,38.4431138 L110.08982,38.0239521 L110.149701,37.7245509 L109.610778,37.1856287 L109.431138,37.3952096 L109.221557,37.1856287 L109.191617,36.7065868 L108.413174,37.0359281 L108.502994,37.7844311 L109.221557,38.2934132 L109.491018,38.9221557 L110.08982,39.3712575 L110.598802,39.3712575 L110.598802,39.7305389 L111.706587,40.239521 L112.005988,40.5988024 L111.916168,40.8083832 L111.616766,40.4790419 L111.167665,40.3293413 L110.928144,40.6287425 L110.868263,40.8982036 L111.227545,41.0778443 L111.197605,41.4071856 L110.898204,41.5269461 L110.898204,41.7365269 L110.628743,42.0359281 L110.389222,42.0359281 L110.479042,41.5568862 L110.688623,41.5269461 L110.568862,41.0479042 L110.359281,40.6287425 L109.97006,40.508982 L109.88024,40.239521 L109.640719,40.2994012 L109.101796,40.1497006 L109.191617,39.8802395 L108.892216,39.8502994 L107.57485,38.7724551 L107.245509,37.9341317 L106.437126,37.6646707 L106.137725,37.994012 L105.748503,38.1137725 L105,38.6526946 L103.712575,38.2934132 L103.263473,38.5628743 L103.233533,38.9520958 L103.383234,39.1017964 L103.143713,39.5209581 L102.664671,39.8203593 L102.065868,39.9700599 L101.317365,41.0179641 L101.377246,41.2874251 L101.616766,41.5269461 L101.197605,41.7964072 L101.077844,42.245509 L100.538922,42.4251497 L100.269461,42.8443114 L98.9820359,42.8443114 L98.5329341,43.0538922 L98.2934132,43.2934132 L97.994012,43.1137725 L97.7844311,42.6946108 L97.2754491,42.5449102 L96.9760479,42.6946108 L96.5868263,42.5748503 L96.3772455,42.6347305 L96.497006,42.3353293 L96.497006,41.7664671 L96.1077844,41.5269461 L96.3473054,40.8982036 L96.5868263,40 L96.4371257,39.251497 L96.5868263,39.1317365 L96.1976048,38.7125749 L96.2874251,38.502994 L96.7664671,38.3832335 L97.005988,38.1137725 L97.3952096,38.2634731 L98.4131737,38.2634731 L99.011976,38.3832335 L99.4610778,38.2934132 L100.269461,38.4431138 L100.658683,38.2634731 L100.808383,37.4850299 L100.868263,36.8562874 L100.718563,36.5868263 L100.868263,36.3772455 L100.149701,36.0479042 L100.269461,35.6287425 L99.251497,35.2095808 L98.5628743,34.7904192 L99.7305389,34.491018 L99.9700599,34.760479 L100.718563,34.6407186 L100.449102,34.1017964 L100.209581,34.251497 L100.239521,33.8922156 L100.688623,33.8622754 L100.808383,34.0718563 L101.377246,34.1916168 L101.736527,34.0718563 L101.616766,33.8622754 L102.155689,33.6826347 L102.365269,33.4431138 L102.39521,33.0239521 L103.502994,32.6047904 L104.041916,31.9161677 L104.251497,31.2275449 L104.431138,31.1077844 L105.988024,30.7784431 L106.347305,30.988024 L106.347305,30.7185629 L106.616766,30.7185629 L106.197605,29.9101796 L106.437126,29.7305389 L106.077844,29.4011976 L106.257485,29.1317365 L106.107784,28.5928144 L106.377246,28.1437126 L106.826347,28.1137725 L107.155689,27.754491 L107.51497,27.6347305 L107.335329,28.3233533 L107.365269,28.5928144 L107.724551,28.6826347 L106.886228,29.4610778 L106.946108,29.9401198 L107.185629,30.2095808 L107.60479,30.3892216 L107.904192,30.2994012 L107.60479,30.5988024 L107.964072,30.6287425 L108.592814,30.239521 L108.802395,30.3293413 L109.101796,30.1197605 L109.550898,30.6586826 L110.658683,30.3892216 L110.898204,30.1796407 L111.886228,29.9700599 L112.035928,30.2694611 L112.634731,30.2694611 L112.874251,29.8802395 L113.562874,29.8802395 L113.532934,29.4311377 L113.413174,28.8323353 L113.443114,28.3532934 L113.832335,27.7844311 L114.700599,27.6047904 L114.700599,28.1437126 L114.94012,28.2634731 L115.329341,28.0538922 L115.299401,27.5149701 L115.419162,27.1257485 L115.11976,27.1556886 L114.850299,26.9461078 L114.820359,26.4071856 L115.179641,26.3173653 L115.419162,26.0778443 L115.329341,25.6886228 L114.790419,25.7784431 L114.461078,25.6586826 L114.281437,25.8682635 L114.161677,25.4491018 L113.682635,25.2694611 L113.443114,25.3592814 L113.113772,25.748503 L112.724551,25.6886228 L112.814371,25.4191617 L113.113772,25.5389222 L113.622754,25.1796407 L113.712575,24.3113772 L113.562874,24.0419162 L113.622754,23.7125749 L113.473054,23.4131737 L113.622754,22.9341317 L114.191617,22.8443114 L114.311377,22.5149701 L114.760479,22.3353293 L115.568862,21.4371257 L115.838323,21.497006 L115.898204,20.8682635 L115.419162,20.5688623 L114.401198,20.6287425 L114.191617,20.9281437 L113.892216,20.8083832 L113.443114,21.497006 L113.712575,21.8263473 L113.293413,22.3652695 L112.664671,22.754491 L112.45509,22.7245509 L112.095808,22.994012 L111.556886,23.6227545 L111.407186,23.5329341 L111.377246,24.251497 L111.257485,24.8802395 L111.497006,25.2994012 L111.706587,25.2994012 L112.185629,25.6586826 L112.275449,25.9281437 L112.155689,26.4071856 L111.107784,26.8862275 L111.017964,27.3053892 L110.808383,27.5149701 L111.197605,28.0538922 L110.808383,28.8622754 L110.898204,28.2035928 L110.508982,28.9820359 L109.820359,28.9221557 L109.550898,29.1916168 L109.640719,29.4311377 L110.08982,29.7305389 L110.05988,29.8502994 L109.550898,29.5209581 L108.862275,29.491018 L108.922156,29.3113772 L108.592814,28.8323353 L108.802395,28.5329341 L108.532934,28.2934132 L108.353293,27.8742515 L108.023952,27.4550898 L107.874251,26.7664671 L107.45509,26.1676647 L107.42515,26.3772455 L107.005988,26.6167665 L106.317365,27.2155689 L105.808383,27.3952096 L105.209581,27.3053892 L104.610778,26.7964072 L104.670659,26.497006 L104.431138,26.4371257 L104.431138,26.1676647 L104.700599,25.8682635 L104.461078,25.8982036 L104.461078,25.5688623 L104.131737,24.8502994 L104.580838,24.8502994 L104.311377,24.5209581 L104.520958,24.4011976 L104.221557,24.1616766 L104.580838,23.9520958 L104.670659,23.7125749 L105.209581,23.5329341 L105.419162,23.2035928 L106.077844,23.0239521 L106.197605,22.5449102 L106.497006,22.4850299 L106.706587,22.6646707 L107.005988,22.5449102 L107.215569,22.8443114 L107.994012,22.4251497 L107.784431,22.3952096 L107.125749,22.6646707 L106.916168,22.4251497 L107.275449,22.0658683 L107.664671,21.7964072 L107.634731,21.4371257 L107.874251,21.4670659 L108.652695,21.1976048 L108.353293,21.1077844 L108.742515,20.4191617 L108.502994,20.4790419 L108.772455,19.9700599 L108.982036,20 L109.221557,19.491018 L109.461078,19.4311377 L109.670659,19.011976 L110.359281,18.7125749 L109.88024,18.6227545 L110.479042,18.4730539 L110.179641,18.4431138 L111.467066,18.0538922 L110.898204,18.0239521 L110.928144,17.8443114 L111.437126,17.3353293 L111.047904,17.4251497 L111.616766,16.8862275 L111.766467,17.1257485 L112.724551,16.6766467 L112.694611,16.2275449 L113.173653,16.5868263 L113.173653,16.2275449 L114.251497,16.1676647 L114.191617,15.748503 L114.730539,15.6586826 L114.491018,16.0179641 L114.94012,15.988024 L114.550898,16.257485 L114.580838,16.4371257 L115.08982,15.9580838 L115.08982,15.4191617 L115.299401,15.6886228 L115.568862,15.4191617 L115.778443,15.508982 L116.077844,15.2694611 L116.377246,15.4491018 L115.748503,15.9580838 L115.778443,16.3772455 L116.467066,15.5688623 L116.646707,15.4790419 L116.556886,16.1077844 L117.125749,15.5988024 L117.155689,15.3293413 L117.694611,15.4491018 L117.305389,15.988024 L117.54491,16.0479042 L117.844311,15.5688623 L118.532934,15.748503 L119.131737,16.1676647 L118.622754,16.4071856 L117.754491,16.3473054 L118.802395,16.6467066 L119.550898,16.7964072 L119.700599,16.497006 L120.299401,16.8263473 L119.760479,16.8263473 L120.538922,17.0359281 L120.419162,17.245509 L120.928144,17.0658683 L121.167665,17.2155689 L121.916168,17.3053892 L122.904192,17.754491 L123.323353,18.1137725 L124.221557,18.4431138 L124.790419,18.7724551 L125,19.4311377 L124.461078,20 L123.832335,20.2694611 L123.023952,20.2994012 L122.45509,20.1197605 L121.586826,20 L121.257485,19.7904192 L120.508982,19.7005988 L119.820359,19.3113772 L120.209581,19.8802395 L121.077844,20.2694611 L121.317365,20.6586826 L121.047904,20.9580838 L121.347305,21.4371257 L121.257485,21.7365269 L121.616766,21.9760479 L121.886228,21.8562874 L121.856287,21.3173653 L122.185629,21.4071856 L122.51497,21.1676647 L123.113772,21.4371257 L123.982036,21.7365269 L124.431138,21.3772455 L124.041916,20.9580838 L124.101796,20.748503 L124.670659,20.3892216 L124.97006,20.3293413 L125.688623,19.6407186 L125.658683,20.0299401 L126.047904,19.9700599 L126.586826,20.4790419 L126.556886,20.0898204 L126.766467,19.7305389 L126.646707,19.3413174 L126.377246,19.251497 L126.616766,18.2035928 L126.107784,17.8742515 L127.215569,17.9341317 L127.60479,18.0239521 L128.023952,18.6227545 L127.245509,18.7125749 L127.035928,19.1317365 L127.39521,19.2814371 L127.54491,19.5508982 L127.964072,19.6107784 L128.592814,19.4311377 L128.652695,18.8922156 L129.191617,18.742515 L130.568862,17.9640719 L131.167665,17.8742515 L131.856287,17.5449102 L132.365269,17.5149701 L132.005988,17.8143713 L132.155689,18.1137725 L132.664671,18.2934132 L132.694611,18.0838323 L133.293413,17.8143713 L134.071856,17.9041916 L134.431138,17.6347305 L134.94012,17.4850299 L135.02994,17.245509 L135.239521,17.6946108 L135.05988,18.0538922 L135.389222,18.1437126 L135.449102,17.8143713 L136.107784,17.5449102 L135.658683,16.8862275 L135.838323,16.7365269 L135.329341,16.7664671 L135.269461,16.5868263 L134.760479,16.3772455 L134.730539,16.1377246 L135.209581,16.1077844 L135.838323,16.5568862 L135.838323,16.7365269 L136.017964,16.6167665 L137.065868,16.7365269 L137.934132,16.9161677 L138.832335,17.3952096 L139.760479,17.6646707 L140,17.9640719 L139.491018,19.251497 L139.071856,19.9401198 L138.023952,21.3173653 L137.994012,22.3652695 L137.844311,23.7724551 L137.60479,24.8203593 L137.185629,26.0778443 L136.676647,27.2155689 L136.227545,28.3832335 L135.988024,28.3832335 L135.808383,29.251497 L135.269461,29.6107784 L135.209581,30.0898204 L135.718563,30.5389222 L135.838323,30.8982036 L135.508982,31.1077844 L135.479042,31.5568862 L135.628743,32.2754491 L136.317365,32.7245509 L136.167665,33.0239521 L135.299401,33.0538922 L134.401198,32.8143713 L133.592814,32.8742515 L132.964072,32.754491 L132.215569,32.7245509 L131.736527,32.8143713 L131.047904,33.4431138 L130.808383,33.8323353 L130.748503,34.3413174 L130.538922,34.7005988 L130.299401,35.4790419 L130.269461,35.8682635 L128.712575,36.8263473 L128.532934,36.7664671 L128.293413,37.2754491 L128.023952,37.6347305 L128.532934,38.0239521 L128.443114,38.6227545 L129.101796,39.4311377 L128.682635,39.8802395 L128.353293,39.7904192 L127.964072,39.491018 L127.39521,39.1916168 L127.45509,38.9820359 L126.976048,38.8023952 L126.467066,38.9520958 L126.377246,38.8323353 L125.598802,38.502994 L125.08982,38.502994 L124.580838,38.2634731 L124.221557,38.3832335 L124.221557,38.3832335 L123.622754,37.8443114 L123.173653,37.6646707 L122.994012,37.4850299 L122.275449,37.1257485 L122.934132,37.0359281 L122.844311,36.7964072 L123.053892,36.5269461 L123.383234,36.4670659 L123.053892,36.2874251 L122.934132,36.0778443 L123.802395,35.8383234 L123.802395,35.6586826 L122.844311,35.7784431 L122.694611,35.9281437 L121.886228,36.0778443 L121.257485,36.4371257 L121.556886,37.005988 L122.275449,36.9461078 L122.185629,37.2155689 L121.736527,37.1856287 L121.077844,37.4550898 L120.778443,37.6946108 L120.568862,37.5149701 L120.568862,37.1856287 L120.179641,37.005988 L120.149701,36.8263473 L120.688623,36.6167665 L120.359281,36.4071856 L119.97006,36.497006 L119.461078,36.3772455 L119.97006,36.1377246 L119.101796,36.1377246 L118.413174,36.8263473 L118.323353,37.3652695 L118.023952,37.4251497 L117.754491,37.7245509 L117.754491,38.2634731 L117.48503,38.3532934 L117.185629,39.011976 L117.45509,39.5808383 L118.023952,39.8502994 L117.964072,40 L117.54491,39.9401198 L117.125749,40.0299401 L116.916168,40.2694611 L116.706587,40.4191617 L116.616766,40.4491018 Z M111.467066,5.11976048 L112.125749,5.5988024 L112.245509,6.07784431 L113.323353,6.22754491 L113.113772,6.34730539 L113.712575,6.46706587 L113.652695,6.70658683 L113.233533,6.67664671 L112.275449,6.94610778 L112.305389,7.4251497 L112.035928,7.45508982 L111.826347,8.14371257 L111.556886,8.17365269 L111.047904,9.25149701 L110.209581,8.74251497 L109.640719,8.50299401 L109.401198,8.11377246 L110.08982,7.90419162 L111.077844,7.75449102 L111.017964,7.69461078 L109.281437,7.81437126 L109.221557,7.45508982 L110.02994,7.39520958 L110.449102,7.09580838 L111.107784,7.09580838 L110.269461,6.9760479 L109.91018,6.61676647 L109.670659,6.91616766 L109.820359,7.06586826 L109.371257,7.2754491 L108.892216,7.2754491 L108.323353,6.76646707 L108.173653,6.9760479 L108.413174,7.2754491 L107.814371,6.9760479 L107.45509,6.55688623 L107.844311,6.61676647 L107.904192,6.16766467 L107.57485,5.56886228 L107.694611,5.4491018 L108.203593,5.20958084 L108.502994,5.41916168 L109.341317,5.1497006 L109.131737,5.53892216 L109.371257,5.5988024 L109.760479,5.23952096 L110.149701,5.47904192 L110.299401,5.86826347 L110.778443,6.37724551 L110.568862,5.89820359 L110.419162,5.1497006 L110.748503,4.91017964 L111.047904,5.1497006 L111.467066,5.11976048 Z M116.167665,5.71856287 L115.299401,5.89820359 L115.149701,6.04790419 L114.520958,5.98802395 L114.491018,5.74850299 L113.323353,5.80838323 L112.964072,5.68862275 L112.694611,5.86826347 L112.634731,5.50898204 L113.892216,5.38922156 L113.922156,5.23952096 L112.155689,5.35928144 L111.826347,5.11976048 L112.185629,4.97005988 L111.736527,4.82035928 L111.886228,4.52095808 L112.48503,4.88023952 L112.305389,4.52095808 L112.634731,4.7005988 L113.083832,4.43113772 L113.143713,4.13173653 L113.353293,4.73053892 L113.892216,4.64071856 L114.191617,5 L114.401198,4.34131737 L114.700599,4.4011976 L114.550898,4.79041916 L115.329341,4.61077844 L116.706587,4.76047904 L116.916168,5.17964072 L116.167665,5.47904192 L116.167665,5.71856287 Z M133.203593,3.41317365 L132.994012,3.23353293 L133.622754,3.32335329 L133.892216,2.96407186 L134.670659,3.0239521 L134.610778,2.8742515 L134.431138,2.5748503 L135.11976,2.51497006 L134.760479,3.11377246 L135.479042,3.29341317 L135.419162,3.44311377 L134.341317,3.17365269 L134.491018,3.53293413 L134.820359,3.62275449 L134.670659,4.01197605 L133.772455,3.65269461 L133.892216,3.32335329 L133.203593,3.41317365 Z M135.598802,3.65269461 L136.526946,3.53293413 L136.616766,2.90419162 L136.856287,2.7245509 L137.664671,2.7245509 L137.54491,2.8742515 L136.826347,2.93413174 L136.766467,4.19161677 L136.167665,4.46107784 L135.149701,4.31137725 L135.299401,3.95209581 L136.167665,3.89221557 L135.598802,3.65269461 Z M140.389222,8.77245509 L140.658683,9.25149701 L139.640719,9.82035928 L136.347305,10.6886228 L136.047904,10.8982036 L135.748503,11.3772455 L135.179641,11.497006 L135.08982,11.7065868 L134.550898,11.5568862 L134.850299,11.9461078 L134.580838,12.005988 L134.311377,12.5149701 L133.143713,13.5329341 L132.964072,14.0718563 L133.023952,14.491018 L133.353293,15.1796407 L134.221557,15.7185629 L133.952096,15.9580838 L133.323353,15.8682635 L132.994012,15.6886228 L132.844311,15.8982036 L132.45509,15.6586826 L131.766467,15.5688623 L132.065868,15.2694611 L131.736527,15.1197605 L131.616766,15.4790419 L131.167665,15.1497006 L131.467066,15 L130.778443,14.8502994 L130.688623,14.5209581 L130.958084,14.2215569 L131.257485,14.2814371 L131.467066,13.6826347 L131.377246,13.4730539 L131.766467,13.4431138 L131.676647,13.1437126 L132.48503,12.6347305 L131.946108,12.4850299 L132.634731,12.2155689 L132.964072,11.7065868 L133.443114,11.6766467 L133.023952,11.4670659 L133.532934,11.4071856 L133.233533,11.257485 L133.682635,11.1377246 L133.562874,11.0179641 L133.892216,10.6287425 L134.281437,10.7185629 L134.191617,10.4790419 L134.550898,10.4191617 L134.850299,10.0598802 L135.449102,10 L135.718563,9.79041916 L136.197605,9.82035928 L136.197605,9.61077844 L136.946108,9.7005988 L137.874251,9.5508982 L138.772455,9.25149701 L139.520958,8.80239521 L140.389222,8.77245509 Z M127.994012,4.58083832 L128.592814,4.52095808 L128.982036,4.25149701 L129.401198,4.31137725 L129.700599,4.16167665 L129.341317,3.98203593 L130.11976,3.65269461 L130.868263,4.10179641 L130.449102,4.28143713 L129.730539,4.34131737 L129.850299,4.7005988 L130.209581,5.02994012 L130.479042,4.88023952 L130.688623,5.11976048 L129.91018,5.02994012 L129.610778,4.52095808 L128.263473,4.79041916 L127.994012,4.58083832 Z M92.3952096,22.0958084 L91.8263473,22.4251497 L91.4071856,22.5149701 L90.8383234,22.7844311 L90.0299401,22.6347305 L89.4610778,22.3353293 L88.5928144,22.3952096 L89.1317365,22.0359281 L88.8023952,21.7365269 L88.8023952,21.5568862 L87.8143713,21.4071856 L89.1017964,21.2874251 L88.6826347,21.1676647 L89.0419162,20.9281437 L88.3233533,20.7784431 L87.9041916,20.9281437 L87.5449102,20.8383234 L87.994012,20.5988024 L88.1736527,20.1796407 L88.6826347,20.4191617 L88.3532934,19.9700599 L88.6526946,19.9401198 L89.3712575,20.3892216 L89.2814371,20.7784431 L89.491018,21.0778443 L89.7305389,20.6586826 L89.9700599,20.6287425 L89.8802395,20.2994012 L90.0598802,20.2694611 L90.3293413,20.5988024 L90.7784431,20.1796407 L91.0179641,20.3592814 L91.257485,19.8802395 L91.497006,20.4191617 L91.7065868,20.2095808 L92.1257485,20.2095808 L92.0958084,19.9101796 L92.3952096,19.8802395 L92.754491,20.239521 L93.0538922,20 L92.9341317,20.3293413 L93.1437126,20.3293413 L93.0538922,20.6287425 L93.742515,20.8383234 L93.742515,21.3173653 L93.2934132,21.6167665 L93.2335329,21.8562874 L92.3952096,22.0958084 Z M96.0179641,31.7065868 L96.2275449,31.2874251 L95.7185629,30.9580838 L96.0479042,30.7784431 L95.8083832,30.4491018 L95.8982036,30.3592814 L96.6766467,30.4191617 L96.8862275,30.1197605 L96.5568862,30.1497006 L96.7964072,29.7005988 L97.3053892,29.5209581 L97.6646707,29.7005988 L97.9341317,29.6107784 L98.3532934,30.1197605 L98.1437126,30.5389222 L97.8742515,30.6287425 L98.0838323,31.4371257 L97.8742515,32.0359281 L97.2754491,32.0658683 L96.5568862,32.4850299 L95.8982036,32.5748503 L95.5988024,32.245509 L95.8682635,32.0658683 L95.5389222,32.0958084 L96.0179641,31.7065868 Z M97.4850299,27.2155689 L97.9341317,27.005988 L97.8443114,27.245509 L98.0239521,27.9341317 L98.2634731,27.8143713 L98.2035928,27.5449102 L98.6526946,26.8862275 L98.8323353,26.9461078 L99.5508982,26.8862275 L99.7005988,26.4670659 L100.05988,26.497006 L99.6706587,27.1556886 L99.1616766,27.4550898 L99.3413174,27.5449102 L99.0718563,27.8443114 L99.491018,27.6646707 L100.389222,27.6646707 L100.479042,27.8443114 L100.05988,28.5628743 L100.02994,28.8023952 L99.6706587,28.9820359 L100.269461,29.1017964 L100.568862,29.3712575 L100.868263,30.1197605 L101.167665,30.239521 L101.437126,30.5389222 L101.676647,31.3173653 L101.497006,31.497006 L102.215569,31.4371257 L102.48503,31.7964072 L102.39521,32.0958084 L102.035928,32.3053892 L101.976048,32.4850299 L102.305389,32.6347305 L102.245509,32.8143713 L101.646707,33.1137725 L101.377246,33.0538922 L100.748503,33.2335329 L100.748503,33.0538922 L100.08982,33.2335329 L99.8502994,33.1137725 L99.491018,33.2634731 L99.4311377,33.502994 L98.8023952,33.4131737 L98.5329341,33.6826347 L98.4131737,33.502994 L99.1317365,32.754491 L99.760479,32.7844311 L99.9700599,32.4550898 L99.491018,32.6047904 L98.9820359,32.3353293 L98.6826347,32.4550898 L98.4730539,32.2155689 L99.1017964,31.9461078 L99.1616766,31.4670659 L98.8922156,31.1077844 L99.1317365,31.2275449 L99.6706587,31.1077844 L99.9101796,30.5389222 L99.6407186,30.5389222 L99.4311377,30.2095808 L99.5508982,29.9401198 L99.251497,30.0299401 L98.9820359,29.9101796 L99.011976,30.2994012 L98.5628743,29.9700599 L98.8622754,29.4311377 L98.4730539,29.1317365 L98.5928144,29.491018 L98.2035928,29.5808383 L98.2934132,29.2215569 L98.2035928,29.011976 L98.3233533,28.7125749 L97.9041916,28.8323353 L97.9640719,28.4431138 L98.1736527,28.4431138 L98.2634731,28.0838323 L97.7844311,28.1736527 L97.8742515,27.8143713 L97.7844311,27.4850299 L97.3952096,27.6946108 L97.4850299,27.2155689 Z" id="EU" stroke="#FFFFFF" stroke-width="0.4" fill-rule="nonzero" opacity="0.699999988"></path>
|
|
14
|
+
<path d="M190.479042,69.1017964 L190.419162,68.8622754 L190.748503,69.011976 L190.808383,69.2814371 L191.017964,69.1017964 L191.407186,69.5508982 L190.479042,69.1017964 Z M179.670659,85.5389222 L179.94012,85.6586826 L179.580838,85.8682635 L179.161677,85.8682635 L179.101796,85.6586826 L179.670659,85.5389222 Z M194.491018,75.8682635 L195.359281,76.4670659 L195.598802,76.7365269 L196.017964,76.9760479 L196.676647,77.5449102 L196.616766,77.5748503 L195.808383,77.1556886 L195.209581,76.7964072 L194.88024,76.4371257 L194.491018,75.8682635 Z M175.598802,71.1976048 L175.389222,71.257485 L175.568862,70.9281437 L175.748503,71.0179641 L176.047904,70.9281437 L176.227545,71.0778443 L175.898204,71.3173653 L175.598802,71.1976048 Z M189.341317,67.6347305 L189.281437,67.4550898 L190.05988,68.2335329 L190.179641,68.4730539 L189.88024,68.7125749 L189.97006,68.4431138 L189.760479,68.3832335 L189.670659,68.1437126 L189.401198,67.9341317 L189.341317,67.6347305 Z M186.976048,66.0778443 L186.856287,65.8982036 L187.51497,66.1976048 L187.724551,66.3473054 L187.844311,66.1676647 L187.964072,66.5269461 L188.203593,66.2874251 L188.113772,66.6167665 L188.502994,66.9760479 L188.353293,67.3053892 L188.233533,66.9161677 L188.023952,66.5868263 L187.335329,66.1676647 L186.976048,66.0778443 Z M196.437126,73.0538922 L196.616766,73.742515 L196.856287,73.9221557 L196.646707,74.011976 L196.467066,73.7125749 L196.467066,73.4131737 L196.257485,73.4730539 L196.137725,73.3233533 L196.137725,72.8742515 L196.257485,73.1736527 L196.437126,73.0538922 Z M193.502994,70.0598802 L193.383234,70.3293413 L193.682635,70.6886228 L193.413174,70.6586826 L193.143713,70.3293413 L193.353293,70.3592814 L193.502994,70.0598802 L193.263473,70.0898204 L192.874251,69.7305389 L192.724551,69.2814371 L192.754491,69.0419162 L193.173653,69.9401198 L193.502994,70.0598802 Z M191.916168,69.7305389 L192.42515,69.6407186 L192.844311,70.0598802 L192.754491,70.1796407 L192.305389,70.1197605 L192.185629,69.8203593 L191.916168,69.7305389 Z M181.586826,69.7305389 L181.586826,68.4730539 L181.586826,66.0179641 L182.215569,66.2874251 L182.994012,66.497006 L183.353293,66.3772455 L183.203593,66.6167665 L183.592814,66.7065868 L183.892216,67.005988 L184.341317,67.3053892 L184.281437,67.6347305 L184.700599,67.7245509 L185.02994,67.9041916 L185.269461,67.9341317 L185.479042,68.1437126 L185.479042,68.3532934 L185,68.3832335 L185.11976,68.7724551 L185.628743,69.1317365 L185.898204,69.6706587 L186.227545,69.6407186 L186.257485,69.9401198 L186.706587,70.0299401 L186.826347,69.760479 L187.155689,69.8802395 L187.245509,70.2994012 L186.916168,69.9401198 L186.556886,70.1197605 L186.676647,70.2694611 L187.065868,70.3293413 L186.916168,70.4191617 L187.185629,70.5389222 L186.826347,70.6287425 L186.556886,70.4191617 L185.568862,70.3293413 L185.02994,69.9101796 L184.491018,69.1317365 L184.311377,69.0419162 L183.592814,68.9820359 L183.173653,68.8622754 L183.263473,69.0718563 L183.113772,69.1017964 L182.994012,69.3712575 L182.724551,69.2814371 L182.964072,69.6407186 L182.54491,69.8502994 L181.586826,69.7305389 Z M191.407186,68.8023952 L191.137725,68.742515 L191.137725,68.742515 L191.377246,68.7724551 L191.407186,68.8023952 Z M191.407186,68.8023952 L191.676647,68.8622754 L192.305389,69.2814371 L191.736527,69.0718563 L191.407186,68.8023952 Z M203.233533,74.7005988 L203.143713,74.6706587 L203.143713,74.6706587 L203.203593,74.6407186 L203.233533,74.7005988 L203.233533,74.7005988 Z M203.233533,74.7005988 L203.413174,74.7005988 L203.383234,74.9101796 L203.233533,74.7005988 L203.233533,74.7005988 Z M203.143713,74.6706587 L202.784431,74.9101796 L202.724551,75.0299401 L202.724551,75.0299401 L202.724551,74.9700599 L202.39521,75.1497006 L202.185629,74.7904192 L202.305389,74.6706587 L202.125749,74.4311377 L202.335329,74.5508982 L202.51497,74.4610778 L203.023952,74.6706587 L203.143713,74.6706587 Z M202.724551,75.1197605 L202.694611,75.0598802 L202.724551,75.0299401 L202.724551,75.0299401 L202.724551,75.1197605 Z M202.724551,75.1197605 L202.904192,75.4191617 L202.724551,75.3892216 L202.724551,75.1197605 Z M203.473054,74.0718563 L203.682635,73.9520958 L203.652695,74.251497 L203.592814,74.0718563 L203.473054,74.0718563 Z M197.035928,73.4431138 L197.005988,73.3532934 L197.005988,73.3532934 L197.005988,73.3532934 L197.035928,73.3532934 L197.035928,73.4431138 Z M197.035928,73.4431138 L197.125749,73.8622754 L196.886228,73.8323353 L197.065868,73.6526946 L197.035928,73.4431138 Z M184.431138,74.9101796 L184.760479,75.239521 L184.700599,75.4491018 L185.239521,75.6287425 L185.389222,75.8982036 L186.137725,76.0479042 L186.197605,76.2874251 L185.958084,76.3173653 L186.287425,76.6467066 L186.556886,77.4251497 L186.736527,77.5748503 L186.646707,77.2754491 L186.886228,76.9760479 L187.185629,77.6047904 L187.185629,78.0239521 L187.39521,78.0838323 L187.54491,78.3832335 L187.724551,78.3832335 L188.233533,79.1317365 L188.443114,79.1616766 L188.622754,78.9820359 L188.443114,79.4610778 L188.532934,80.2095808 L188.712575,80.4491018 L188.682635,80.8383234 L188.772455,81.3173653 L188.413174,82.4850299 L188.383234,82.9341317 L188.143713,83.3832335 L188.143713,83.5628743 L187.754491,83.8023952 L187.245509,84.7305389 L187.155689,85.2994012 L186.796407,85.748503 L186.646707,86.4071856 L186.706587,86.7964072 L186.407186,86.9760479 L185.748503,87.005988 L185.329341,87.1856287 L184.94012,87.5449102 L184.700599,87.6347305 L184.670659,87.8742515 L184.341317,87.5449102 L183.832335,87.4550898 L183.862275,87.0658683 L183.053892,87.6946108 L182.39521,87.3652695 L181.976048,87.3952096 L181.227545,87.0359281 L180.868263,86.5868263 L180.958084,86.2275449 L180.598802,85.6287425 L180.449102,85.5389222 L180,85.5988024 L180.209581,85 L179.94012,84.6107784 L179.700599,85.2994012 L179.221557,85.3293413 L178.532934,85.0898204 L178.293413,84.4610778 L178.083832,84.1317365 L177.784431,84.011976 L177.784431,83.7125749 L177.42515,83.3233533 L177.39521,83.4730539 L176.946108,83.2335329 L176.616766,83.2934132 L176.017964,82.9341317 L174.760479,83.0838323 L173.802395,83.4431138 L173.173653,83.4131737 L172.005988,83.9820359 L171.916168,84.251497 L171.676647,84.491018 L170.538922,84.4311377 L169.670659,84.491018 L169.251497,84.8802395 L169.011976,84.8203593 L168.742515,85.1197605 L168.353293,85.2095808 L167.754491,85.2095808 L167.39521,85.0598802 L167.185629,84.8203593 L166.886228,84.760479 L166.826347,84.2215569 L166.976048,84.3113772 L167.215569,84.0718563 L167.215569,83.0538922 L166.916168,82.5449102 L166.826347,82.1556886 L166.826347,81.7065868 L166.556886,81.1077844 L166.347305,80.8682635 L166.107784,81.0479042 L166.347305,80.5988024 L166.257485,80.3892216 L165.868263,79.8203593 L165.658683,79.3413174 L165.778443,78.8622754 L165.928144,78.6826347 L165.928144,78.4131737 L166.107784,78.0838323 L166.047904,77.5149701 L166.257485,77.0958084 L166.347305,77.4850299 L166.616766,77.0958084 L167.155689,76.7964072 L167.065868,76.4071856 L167.365269,76.6167665 L167.874251,76.3173653 L168.173653,76.4371257 L168.592814,76.2275449 L169.011976,76.1676647 L169.221557,75.988024 L169.431138,76.0479042 L170.209581,75.7784431 L170.538922,75.4491018 L170.688623,75.0898204 L170.988024,74.9101796 L170.898204,74.4011976 L171.347305,74.011976 L171.676647,74.5508982 L171.646707,74.0419162 L171.796407,73.8323353 L172.155689,73.8622754 L172.185629,73.2335329 L172.45509,73.2934132 L172.51497,73.0838323 L172.754491,73.1137725 L172.57485,72.7844311 L173.113772,72.8143713 L173.622754,72.3652695 L173.832335,72.4550898 L174.311377,72.9041916 L174.251497,73.1736527 L174.520958,72.9640719 L175.239521,73.0239521 L174.97006,72.754491 L175.179641,72.5149701 L175.299401,72.1856287 L175.479042,72.0958084 L175.419162,71.9161677 L175.928144,71.4670659 L176.497006,71.5568862 L176.856287,71.4371257 L176.886228,71.1676647 L176.347305,70.9580838 L176.826347,70.8083832 L177.155689,71.1976048 L177.51497,71.1976048 L177.874251,71.4071856 L178.053892,71.3473054 L178.233533,71.5269461 L178.712575,71.3473054 L179.011976,71.1077844 L179.011976,71.3473054 L179.281437,71.5568862 L178.832335,72.0958084 L178.862275,72.3353293 L179.281437,72.3952096 L179.011976,72.6347305 L179.011976,72.3952096 L178.712575,72.4850299 L178.443114,73.0538922 L179.101796,73.502994 L179.760479,73.8023952 L180,74.0718563 L180.479042,74.1916168 L181.017964,74.6706587 L181.497006,74.5209581 L181.856287,73.7125749 L181.976048,73.0838323 L181.886228,72.7844311 L181.946108,71.6766467 L182.125749,71.4371257 L182.245509,70.988024 L182.275449,70.3592814 L182.51497,70.6586826 L182.664671,71.2874251 L182.844311,71.3473054 L182.784431,71.5568862 L182.994012,71.7065868 L183.023952,72.3652695 L183.263473,72.8143713 L183.562874,72.6047904 L183.682635,72.8443114 L184.071856,73.0538922 L184.011976,73.4131737 L184.101796,73.9221557 L184.520958,74.6107784 L184.431138,74.9101796 Z M183.652695,89.1017964 L183.712575,88.7724551 L183.952096,88.9820359 L184.670659,89.2215569 L185.479042,89.0419162 L185.628743,88.8323353 L185.449102,88.3532934 L185.748503,88.4131737 L185.838323,88.742515 L185.718563,88.7724551 L185.748503,90 L185.568862,90 L185.568862,90.6287425 L185.329341,90.4491018 L184.91018,90.9281437 L184.461078,90.8682635 L184.011976,90.2095808 L183.982036,89.760479 L183.832335,89.5808383 L183.652695,89.1017964 Z M187.39521,67.3652695 L187.664671,67.2754491 L187.57485,66.9161677 L188.083832,66.9161677 L188.023952,67.3353293 L187.844311,67.3652695 L187.904192,67.6347305 L187.57485,67.754491 L186.976048,68.1137725 L186.497006,68.1137725 L186.317365,67.994012 L185.808383,67.8143713 L185.658683,67.6347305 L186.137725,67.6646707 L186.227545,67.3353293 L186.467066,67.1856287 L186.736527,67.3952096 L186.796407,67.6946108 L187.305389,67.6047904 L187.39521,67.3652695 Z M197.874251,92.994012 L197.275449,93.1437126 L197.095808,92.9341317 L196.916168,93.0538922 L197.095808,93.3233533 L196.616766,93.4431138 L196.826347,93.2035928 L196.766467,92.6946108 L196.227545,92.7245509 L196.077844,92.5748503 L196.347305,91.9760479 L197.155689,91.1976048 L197.934132,90.8682635 L198.712575,90.2095808 L198.922156,89.6706587 L199.251497,89.4011976 L199.281437,89.0419162 L199.580838,88.7724551 L199.790419,88.9820359 L199.850299,89.3113772 L200.209581,89.0718563 L200.239521,89.3113772 L200.449102,89.1017964 L200.389222,89.4610778 L200.508982,89.6107784 L200.08982,90.1197605 L199.94012,90.4491018 L199.610778,90.748503 L199.820359,91.0778443 L199.431138,91.0778443 L198.832335,91.3473054 L198.742515,91.7964072 L198.443114,92.3652695 L198.473054,92.5149701 L197.874251,92.994012 Z M201.107784,89.5209581 L200.688623,89.3113772 L200.868263,89.1017964 L201.047904,88.6227545 L200.898204,88.3832335 L200.209581,88.0538922 L200.209581,87.9041916 L200.688623,87.6646707 L200.838323,86.9760479 L200.538922,86.2275449 L200.538922,85.9580838 L200.359281,85.988024 L199.820359,85.3293413 L199.88024,85.2095808 L199.580838,84.8502994 L199.820359,84.7904192 L199.88024,85.0598802 L200.269461,85.1796407 L200.658683,85.5688623 L200.628743,85.8083832 L200.958084,85.9580838 L201.227545,85.9281437 L201.377246,86.2275449 L201.467066,86.8862275 L202.305389,87.0958084 L202.60479,86.8263473 L202.934132,86.9461078 L202.784431,87.4850299 L202.54491,87.8443114 L202.275449,87.8443114 L202.005988,88.0838323 L201.946108,88.5628743 L201.467066,89.2814371 L201.107784,89.5209581 Z M191.137725,68.742515 L190.748503,68.7125749 L190.389222,68.3532934 L190.718563,68.4730539 L191.107784,68.742515 L191.137725,68.742515 Z M203.473054,74.0718563 L203.353293,74.0718563 L203.023952,74.251497 L202.964072,74.011976 L203.413174,73.8622754 L203.652695,73.8323353 L203.473054,74.0718563 L203.473054,74.0718563 Z M197.005988,73.3532934 L196.856287,73.3532934 L197.005988,73.3233533 L197.005988,73.3532934 L197.005988,73.3532934 Z" id="OC" stroke="#FFFFFF" stroke-width="0.4" fill-rule="nonzero" opacity="0.200000003"></path>
|
|
15
|
+
<path d="M91.3473054,48.0538922 L91.4071856,47.8742515 L91.7664671,48.2634731 L91.8862275,48.1137725 L92.3353293,47.994012 L92.7245509,48.2335329 L92.6347305,48.502994 L92.5149701,48.3233533 L92.1556886,48.2335329 L91.7065868,48.3233533 L91.3473054,48.0538922 Z M98.4131737,43.3532934 L98.4131737,43.3532934 L98.4131737,43.3532934 L98.7724551,43.8023952 L99.0419162,43.8323353 L99.0419162,43.8323353 L99.0419162,43.8323353 L99.8203593,43.742515 L100.02994,43.8922156 L100.479042,43.8622754 L100.808383,43.5928144 L102.095808,42.994012 L102.994012,42.9041916 L103.143713,42.7844311 L104.221557,42.7245509 L104.461078,42.8742515 L105,42.7245509 L105.419162,42.7245509 L105.688623,42.6047904 L105.988024,42.754491 L106.497006,42.6646707 L107.095808,42.4550898 L107.42515,42.8443114 L107.754491,42.6047904 L107.814371,42.754491 L107.45509,43.0838323 L107.51497,43.4131737 L107.784431,43.5628743 L107.844311,43.8023952 L107.51497,44.251497 L107.245509,44.3712575 L107.365269,44.7904192 L107.784431,44.7305389 L107.844311,45.0898204 L108.502994,45.3293413 L109.071856,45.2994012 L110.11976,45.5988024 L110.299401,46.0778443 L110.598802,46.3173653 L111.347305,46.4371257 L111.826347,46.6167665 L112.275449,46.9161677 L112.48503,46.9161677 L112.874251,46.5868263 L112.934132,46.3473054 L112.814371,46.0179641 L112.904192,45.748503 L113.173653,45.508982 L113.772455,45.2694611 L114.071856,45.2694611 L114.610778,45.4491018 L114.610778,45.6586826 L115.179641,45.8383234 L115.688623,45.8682635 L115.808383,46.1377246 L116.167665,46.1077844 L117.035928,46.257485 L117.994012,46.5868263 L118.263473,46.497006 L118.742515,46.1676647 L119.610778,46.1377246 L119.730539,46.4371257 L119.850299,46.3173653 L120.299401,46.4371257 L120.928144,46.2874251 L120.928144,46.2874251 L120.928144,46.2874251 L121.077844,46.7065868 L121.287425,47.245509 L121.317365,47.4251497 L120.718563,48.8622754 L120.808383,49.1616766 L121.676647,50.7784431 L121.766467,51.3772455 L122.45509,51.9161677 L122.45509,52.1556886 L122.664671,52.6347305 L122.60479,52.9041916 L122.694611,53.6227545 L122.904192,53.8622754 L123.383234,54.2215569 L123.592814,54.6407186 L123.772455,55.3892216 L124.041916,55.8682635 L124.281437,55.4491018 L124.221557,55.8982036 L124.371257,56.0778443 L124.88024,56.2275449 L125.179641,56.6467066 L125.508982,56.8562874 L125.778443,57.2754491 L126.107784,57.4850299 L126.137725,57.754491 L125.778443,57.9341317 L126.197605,58.1137725 L126.377246,58.4431138 L126.646707,58.6526946 L127.035928,58.6526946 L127.51497,58.4131737 L127.874251,58.502994 L128.413174,58.2335329 L129.281437,58.1736527 L130.05988,57.994012 L130.359281,57.754491 L130.628743,57.8443114 L130.508982,58.2335329 L130.568862,58.5928144 L130.419162,58.7125749 L130.359281,59.2215569 L130.05988,59.760479 L129.820359,60.0598802 L129.341317,61.0778443 L128.742515,62.0359281 L127.634731,63.1736527 L126.796407,63.6826347 L126.197605,64.2215569 L125.389222,65.0598802 L125.149701,65.4491018 L124.341317,66.257485 L123.712575,67.4550898 L123.532934,67.9640719 L123.682635,68.2335329 L123.832335,67.7844311 L123.982036,68.2035928 L123.802395,68.3532934 L123.952096,68.5928144 L123.832335,68.9820359 L124.161677,68.9520958 L123.802395,69.251497 L124.011976,69.760479 L124.041916,70.2095808 L124.461078,70.4191617 L124.580838,70.7185629 L124.461078,71.1676647 L124.550898,71.9161677 L124.520958,72.3053892 L124.700599,72.7844311 L124.550898,73.3532934 L124.161677,73.9221557 L123.712575,74.1616766 L123.023952,74.4610778 L122.54491,74.760479 L122.215569,75.1796407 L121.227545,75.9281437 L121.197605,76.257485 L121.377246,76.4371257 L121.467066,76.8562874 L121.646707,77.0658683 L121.676647,77.4251497 L121.586826,78.2934132 L121.646707,78.4431138 L121.437126,78.742515 L120.658683,79.0419162 L120.179641,79.3113772 L120.179641,80.0898204 L119.88024,81.1377246 L119.520958,81.3772455 L119.221557,81.7664671 L118.742515,82.5449102 L117.904192,83.4431138 L117.335329,83.9221557 L116.556886,84.3712575 L116.077844,84.4011976 L116.107784,84.5508982 L115.658683,84.5209581 L115.598802,84.6407186 L114.91018,84.5209581 L114.790419,84.6107784 L114.311377,84.5209581 L113.832335,84.7904192 L113.383234,84.760479 L112.814371,85.0598802 L112.215569,84.6407186 L111.886228,84.6407186 L112.005988,84.4610778 L111.616766,83.7724551 L111.856287,83.6826347 L111.826347,83.0538922 L111.317365,82.245509 L111.047904,81.4670659 L110.389222,80.748503 L110.179641,80.3892216 L109.91018,79.4311377 L109.88024,78.8622754 L109.700599,78.4730539 L109.760479,77.6946108 L109.670659,77.3353293 L109.431138,77.0658683 L109.101796,76.497006 L108.952096,76.1077844 L108.473054,75.239521 L108.233533,74.9101796 L108.143713,74.5808383 L108.203593,73.9520958 L108.173653,73.5628743 L108.293413,73.4431138 L108.473054,72.9341317 L108.592814,72.1856287 L109.251497,71.497006 L109.341317,70.8682635 L109.311377,70.5988024 L108.982036,70.0598802 L108.862275,69.7005988 L109.101796,69.5209581 L109.071856,69.2814371 L108.802395,68.6826347 L108.772455,68.4730539 L108.473054,68.0239521 L108.383234,67.4850299 L108.203593,67.1556886 L107.125749,66.0778443 L106.766467,65.6287425 L106.796407,65.3293413 L106.616766,65.2994012 L106.526946,65.0299401 L106.766467,64.7904192 L106.796407,63.8922156 L107.065868,63.502994 L107.155689,62.8143713 L106.946108,62.3353293 L106.586826,62.5149701 L106.556886,62.005988 L104.88024,62.1257485 L104.670659,61.9461078 L104.520958,61.5568862 L104.251497,61.1676647 L103.982036,60.9580838 L103.682635,60.9281437 L102.57485,61.0179641 L102.155689,61.1077844 L102.065868,61.257485 L101.676647,61.2874251 L101.047904,61.6167665 L100.299401,61.8862275 L100.149701,61.7964072 L99.2215569,61.6167665 L98.1736527,61.7065868 L97.245509,62.0958084 L96.7964072,61.9760479 L96.2275449,61.6467066 L95.5688623,61.0778443 L95.0299401,60.7784431 L94.760479,60.508982 L94.1317365,60.2694611 L94.3413174,60.2694611 L94.1317365,59.8802395 L94.011976,59.9401198 L93.8922156,59.2814371 L93.7724551,59.0419162 L93.2634731,58.7724551 L93.0838323,58.3532934 L92.7245509,58.2335329 L92.6946108,58.0538922 L92.3652695,58.2335329 L92.3053892,58.0538922 L92.5449102,58.0838323 L92.754491,57.7844311 L92.3053892,57.8742515 L91.9760479,57.5748503 L91.9161677,56.9760479 L92.0658683,56.8562874 L91.7365269,56.2275449 L92.0958084,55.5688623 L92.1257485,55.0898204 L92.3952096,54.3113772 L92.2754491,53.7125749 L92.0958084,53.4730539 L92.2754491,52.994012 L91.8862275,52.4251497 L91.8562874,52.0658683 L92.0958084,51.7664671 L92.5449102,50.8383234 L93.0239521,50.3293413 L93.0838323,49.8802395 L93.2934132,49.4011976 L93.742515,49.1317365 L94.1317365,48.3832335 L94.9700599,48.1437126 L95.4790419,47.7245509 L96.0179641,47.0359281 L95.8682635,46.6766467 L95.8982036,46.2275449 L96.1676647,45.8383234 L96.2275449,45.4790419 L96.6467066,45.0598802 L97.2155689,44.8203593 L97.6047904,44.5508982 L97.9041916,44.0419162 L98.1437126,43.4431138 L98.4131737,43.3532934 Z M129.520958,75.0898204 L129.371257,75.4491018 L128.862275,77.0658683 L128.742515,77.3952096 L128.502994,78.2934132 L128.263473,78.9221557 L127.754491,79.1017964 L127.335329,79.3113772 L127.125749,79.3413174 L126.497006,78.9820359 L126.317365,78.6227545 L126.347305,78.0538922 L126.107784,77.6646707 L126.047904,77.3353293 L126.197605,76.7664671 L126.437126,76.5269461 L126.766467,75.9580838 L126.766467,75.7185629 L126.526946,75.0898204 L126.467066,74.5209581 L126.736527,74.0718563 L126.736527,73.7724551 L126.976048,73.8023952 L127.215569,73.6227545 L127.754491,73.502994 L128.173653,73.2035928 L128.802395,72.5748503 L128.682635,72.3952096 L128.892216,72.1556886 L129.191617,72.1856287 L129.251497,71.6766467 L129.491018,71.3473054 L129.640719,71.7065868 L129.850299,71.9461078 L129.97006,72.3952096 L130.02994,72.9341317 L130.179641,73.3532934 L130.02994,73.6526946 L129.850299,73.3233533 L129.700599,73.4131737 L129.820359,73.9820359 L129.580838,74.4011976 L129.520958,75.0898204 Z" id="AF" stroke="#FFFFFF" stroke-width="0.4" fill-rule="nonzero" opacity="0.400000006"></path>
|
|
16
|
+
<path d="M204.461078,14.8203593 L205.179641,15.1796407 L204.91018,15.3892216 L204.101796,15.5389222 L203.742515,15.4491018 L203.742515,15.4491018 L203.083832,15.6287425 L203.143713,15.1796407 L203.742515,14.8802395 L203.742515,14.8802395 L203.742515,14.8802395 L203.742515,14.8802395 L203.742515,14.8802395 L204.461078,14.8203593 Z M203.922156,21.1676647 L203.742515,21.257485 L203.742515,21.257485 L203.473054,21.4670659 L202.754491,21.6167665 L202.215569,21.4670659 L201.706587,21.4371257 L201.886228,21.7065868 L202.335329,21.5269461 L202.305389,21.8562874 L202.60479,22.0359281 L202.784431,21.9161677 L202.994012,22.2754491 L202.964072,22.754491 L203.353293,22.9341317 L203.532934,23.3832335 L203.143713,23.6826347 L202.215569,23.502994 L201.077844,23.9221557 L200.628743,24.1916168 L200.359281,24.1916168 L199.221557,25 L198.532934,25.2994012 L198.293413,25.7784431 L198.053892,25.6886228 L197.634731,25.2694611 L197.005988,25.2694611 L196.407186,25.4790419 L195.868263,25.8982036 L196.017964,25.3293413 L195.299401,25.6586826 L195.11976,25.9281437 L194.94012,25.6586826 L194.461078,25.7185629 L194.191617,26.1676647 L194.251497,26.5269461 L194.520958,26.7065868 L194.97006,26.3772455 L195.02994,26.7065868 L194.760479,26.7365269 L194.371257,27.0359281 L194.131737,26.5868263 L193.772455,26.8862275 L193.532934,27.3353293 L193.832335,27.6347305 L193.922156,27.4550898 L194.281437,27.6646707 L194.011976,27.9341317 L193.982036,28.4131737 L194.221557,28.4431138 L194.311377,28.8922156 L194.131737,29.0419162 L193.862275,28.8323353 L193.622754,28.9520958 L193.413174,29.3413174 L193.622754,29.9700599 L193.383234,30.2095808 L192.814371,30.2095808 L192.42515,30.4790419 L192.305389,30.988024 L192.42515,31.3173653 L192.185629,31.1976048 L191.616766,31.4670659 L191.407186,32.1856287 L190.538922,32.994012 L190.359281,32.005988 L190.179641,31.4371257 L189.850299,29.6107784 L189.91018,29.1017964 L190.149701,28.4131737 L190.508982,28.2035928 L190.688623,27.9041916 L190.568862,27.6047904 L190.958084,27.5748503 L191.826347,27.0658683 L192.305389,26.4670659 L193.473054,25.5688623 L193.502994,25.3892216 L194.371257,24.8802395 L194.670659,24.5808383 L194.730539,23.7724551 L194.97006,23.6227545 L195.359281,23.6826347 L195,23.4131737 L194.251497,23.5628743 L194.131737,24.4311377 L193.772455,24.3113772 L193.532934,24.5508982 L192.48503,25.239521 L192.634731,24.8502994 L192.305389,24.9401198 L192.275449,24.6706587 L192.54491,24.4011976 L192.57485,24.0718563 L192.125749,24.3113772 L192.035928,24.1017964 L190.958084,24.2215569 L190.508982,24.4311377 L190.508982,24.7005988 L189.520958,25.4191617 L189.101796,25.8682635 L189.011976,26.1676647 L189.520958,26.1676647 L189.850299,26.3173653 L189.011976,26.5568862 L188.622754,26.3772455 L188.353293,26.6467066 L188.053892,26.5269461 L187.48503,26.7065868 L187.095808,26.4670659 L186.976048,26.0778443 L186.497006,25.9580838 L186.047904,26.1377246 L186.227545,26.4071856 L185.538922,26.257485 L185.329341,26.3772455 L184.610778,26.257485 L183.233533,26.2275449 L182.305389,26.497006 L181.916168,26.9161677 L181.556886,27.0958084 L181.317365,27.5449102 L180.269461,28.2634731 L179.850299,28.742515 L179.191617,29.3113772 L178.323353,29.9101796 L178.622754,30.1796407 L179.251497,30.1497006 L179.131737,30.7784431 L179.401198,30.7784431 L179.371257,30.508982 L179.760479,30.6586826 L179.520958,30.988024 L179.850299,30.9281437 L180.209581,30.6287425 L180.299401,30.3892216 L180.928144,30.3892216 L181.167665,30.7185629 L181.856287,31.2874251 L181.676647,31.4071856 L181.856287,32.2155689 L181.556886,32.4550898 L181.287425,33.2634731 L181.407186,33.6227545 L181.137725,34.7904192 L180.688623,35.1796407 L180.209581,35.8682635 L179.94012,36.4071856 L178.682635,37.6646707 L178.263473,38.2934132 L177.57485,38.742515 L177.155689,38.8622754 L176.646707,38.742515 L176.646707,38.4431138 L176.137725,38.7125749 L175.748503,39.1317365 L175.568862,39.1017964 L175.149701,39.6407186 L175.179641,40.1197605 L174.91018,40.2095808 L174.580838,40.5389222 L173.952096,40.8383234 L173.892216,41.2275449 L174.431138,41.5868263 L174.97006,42.4850299 L175.08982,43.2634731 L174.88024,43.8622754 L174.550898,44.1017964 L174.251497,43.9221557 L173.862275,44.1017964 L173.922156,44.2814371 L173.473054,44.4011976 L173.562874,45.0299401 L173.173653,45.0598802 L173.443114,44.5209581 L173.113772,44.4011976 L173.023952,44.1317365 L173.532934,43.3832335 L173.263473,42.9341317 L173.383234,42.6347305 L173.592814,42.6946108 L173.353293,42.3053892 L173.053892,42.0658683 L172.634731,42.1856287 L172.57485,41.9760479 L172.335329,41.9161677 L172.694611,41.5269461 L172.754491,41.1377246 L172.245509,40.8083832 L171.586826,40.8083832 L171.017964,41.0778443 L171.137725,41.1676647 L170.329341,41.5269461 L170.688623,41.1077844 L170.389222,41.0778443 L170.538922,40.7784431 L170.988024,40.3293413 L170.718563,40.1197605 L170.329341,40.0598802 L169.91018,40.5389222 L169.401198,40.748503 L169.101796,41.2275449 L168.832335,41.4071856 L168.562874,41.1976048 L168.263473,41.5868263 L168.592814,41.9161677 L169.011976,41.9161677 L169.071856,42.4850299 L169.341317,42.5748503 L170.08982,42.0658683 L170.568862,42.3952096 L170.868263,42.3053892 L171.197605,42.3952096 L170.988024,42.7844311 L170.838323,42.6646707 L170.08982,43.0239521 L170.05988,43.2035928 L169.461078,43.5628743 L169.221557,43.9221557 L169.461078,44.251497 L169.820359,44.4011976 L170.179641,45.2095808 L170.149701,45.4191617 L170.688623,45.8982036 L170.778443,46.1377246 L170.658683,46.3173653 L170.778443,46.5269461 L170.209581,46.7664671 L170.08982,46.9461078 L170.449102,46.8862275 L170.628743,47.0958084 L170.898204,47.0359281 L171.047904,46.6766467 L171.017964,47.1856287 L170.808383,47.0958084 L170.778443,47.6646707 L170.568862,47.5449102 L170.598802,48.1137725 L170.209581,48.3532934 L169.88024,48.9520958 L169.401198,49.1017964 L169.431138,49.7305389 L169.251497,50.0299401 L168.772455,50.508982 L168.383234,50.7185629 L168.293413,50.8982036 L167.904192,50.9580838 L167.664671,51.3772455 L167.305389,51.497006 L166.706587,51.4670659 L166.556886,51.6766467 L166.197605,51.8263473 L166.107784,51.497006 L165.988024,51.8562874 L165.748503,51.8263473 L165.568862,52.1856287 L165.359281,52.0359281 L165.11976,52.1856287 L164.371257,52.3353293 L164.131737,52.5449102 L164.281437,52.8443114 L163.922156,52.9640719 L163.802395,52.5748503 L163.832335,52.245509 L163.113772,52.005988 L162.844311,52.3053892 L162.48503,52.3652695 L162.634731,52.4550898 L162.005988,52.8143713 L162.035928,52.994012 L161.736527,53.1137725 L161.497006,53.7125749 L161.766467,54.1317365 L161.946108,54.2215569 L162.065868,54.6107784 L162.784431,55.2994012 L162.964072,55.3293413 L163.293413,55.8083832 L163.592814,56.6766467 L163.562874,56.9461078 L163.682635,57.3952096 L163.532934,57.3952096 L163.562874,57.9041916 L163.413174,58.1137725 L162.42515,58.6826347 L162.215569,58.6826347 L161.976048,59.1616766 L161.437126,59.4011976 L161.197605,59.6706587 L161.017964,59.5808383 L161.077844,58.9820359 L160.718563,58.5628743 L160.179641,58.5628743 L159.88024,57.7245509 L159.610778,57.6347305 L159.341317,57.3652695 L158.772455,57.3652695 L158.862275,56.9161677 L158.323353,56.9461078 L158.323353,57.6347305 L158.233533,57.7844311 L157.814371,58.8323353 L157.874251,59.3413174 L158.233533,59.3113772 L158.293413,59.6706587 L158.443114,59.8502994 L158.413174,60.2994012 L158.862275,60.6886228 L159.191617,60.6886228 L160.08982,61.5269461 L160.269461,61.8562874 L160.209581,62.4550898 L160.269461,62.9041916 L160.449102,63.0838323 L160.688623,63.0239521 L160.538922,63.2335329 L160.748503,63.742515 L160.299401,63.8323353 L160.209581,63.6826347 L159.041916,62.9640719 L159.041916,62.7245509 L158.712575,62.3652695 L158.622754,61.8263473 L158.502994,61.6766467 L158.502994,61.1676647 L158.383234,60.9281437 L158.083832,60.8383234 L158.173653,60.5389222 L157.694611,60 L157.48503,59.9700599 L157.335329,60.1796407 L157.305389,59.3712575 L157.48503,58.9221557 L157.275449,58.8622754 L157.305389,58.4131737 L157.48503,58.4730539 L157.60479,58.1736527 L157.39521,57.9640719 L156.976048,57.8143713 L157.48503,57.8742515 L157.57485,57.6047904 L157.245509,57.6047904 L157.335329,57.1257485 L157.48503,57.0658683 L157.305389,56.7664671 L157.035928,56.1077844 L157.005988,55.508982 L156.556886,54.6706587 L156.377246,55.1497006 L155.958084,55.2994012 L155.718563,55.5988024 L155.02994,55.4491018 L155.239521,54.5508982 L154.97006,53.8023952 L154.700599,53.7724551 L154.610778,53.5329341 L154.88024,53.4730539 L154.550898,53.0838323 L154.341317,53.2335329 L153.682635,52.245509 L153.742515,52.0658683 L153.443114,51.4670659 L153.263473,51.6467066 L152.994012,51.4670659 L153.083832,51.8562874 L152.934132,52.005988 L152.664671,51.9461078 L152.185629,52.1556886 L151.616766,52.2155689 L151.467066,52.0359281 L151.017964,52.2155689 L150.838323,52.4251497 L150.928144,52.7245509 L150.568862,53.1437126 L150.02994,53.3233533 L149.700599,53.5928144 L149.251497,54.1317365 L148.772455,54.5209581 L148.233533,54.8502994 L148.263473,55.1197605 L147.664671,55.2694611 L147.48503,55.5988024 L147.095808,55.6287425 L146.976048,56.0179641 L147.125749,56.9760479 L147.035928,57.4850299 L146.856287,57.754491 L146.856287,58.742515 L146.586826,58.7125749 L146.317365,59.1916168 L146.407186,59.2814371 L145.928144,59.491018 L145.838323,59.8203593 L145.538922,60 L145.239521,59.8203593 L145,59.5209581 L144.820359,58.9221557 L144.401198,57.9341317 L144.221557,57.754491 L143.982036,57.2754491 L143.862275,56.6766467 L143.682635,56.1976048 L143.203593,55.4191617 L142.964072,54.251497 L142.754491,53.2035928 L142.904192,52.8143713 L142.694611,52.1257485 L142.694611,51.8562874 L142.45509,51.9461078 L142.57485,52.1556886 L142.45509,52.4251497 L141.826347,52.6946108 L141.287425,52.4550898 L140.658683,51.7664671 L141.347305,51.6167665 L141.497006,51.3772455 L141.107784,51.497006 L140.479042,51.2275449 L140.299401,50.988024 L139.760479,50.7185629 L139.640719,50.3592814 L139.371257,50.239521 L139.221557,49.7904192 L138.802395,49.9401198 L138.143713,49.9700599 L137.60479,49.9401198 L137.57485,50.0299401 L136.976048,50 L136.556886,50.1197605 L134.91018,49.8203593 L134.550898,49.8203593 L134.071856,49.6706587 L133.892216,49.0419162 L133.772455,48.8622754 L133.532934,49.0419162 L133.113772,48.9520958 L132.45509,49.4011976 L132.335329,49.1017964 L132.155689,49.251497 L131.826347,48.9520958 L131.347305,48.7125749 L131.287425,48.5329341 L130.688623,48.3233533 L130.359281,47.6347305 L130.05988,47.5748503 L130.269461,47.4550898 L129.94012,46.9760479 L129.670659,47.0958084 L129.311377,46.8562874 L129.281437,47.0359281 L128.892216,47.0958084 L128.982036,47.4550898 L128.742515,47.3652695 L128.862275,47.6946108 L129.520958,48.8023952 L129.850299,49.011976 L130,49.4311377 L130.239521,49.4311377 L130.209581,49.6706587 L130.598802,49.4610778 L130.778443,49.6107784 L130.808383,50.1796407 L130.628743,50.5688623 L130.898204,50.5688623 L130.928144,50.748503 L131.347305,50.6586826 L132.095808,50.7185629 L132.784431,50.1497006 L133.323353,49.6107784 L133.502994,49.3113772 L133.532934,50.1497006 L133.652695,50.4491018 L133.952096,50.7784431 L134.88024,51.0479042 L135.449102,51.8263473 L135.209581,52.2754491 L134.820359,52.6347305 L134.97006,52.8143713 L134.820359,52.9041916 L134.491018,52.7844311 L134.281437,53.2634731 L134.341317,53.7125749 L133.832335,53.8323353 L133.622754,54.1916168 L133.413174,54.3113772 L133.323353,54.5808383 L133.113772,54.3413174 L132.874251,54.5808383 L132.754491,54.8802395 L132.185629,54.8802395 L131.377246,55.1796407 L131.107784,55.4790419 L131.167665,55.6886228 L130.658683,55.8982036 L130.209581,56.0179641 L129.371257,56.3173653 L129.161677,56.5868263 L128.772455,56.5868263 L128.413174,56.7964072 L128.023952,56.9461078 L127.42515,56.9760479 L126.976048,57.3353293 L126.467066,57.4251497 L126.047904,57.0658683 L125.988024,56.5568862 L125.748503,56.6167665 L125.928144,56.2874251 L125.748503,55.6287425 L125.838323,55.4191617 L125.658683,54.9401198 L125.329341,55.0598802 L125.269461,54.9401198 L125.538922,54.760479 L125.508982,54.6107784 L125.179641,54.3413174 L124.91018,53.8922156 L124.760479,53.4131737 L124.520958,53.1437126 L124.011976,52.8443114 L123.682635,52.3353293 L123.622754,51.9760479 L123.682635,51.6167665 L123.323353,50.8682635 L122.814371,50.5988024 L122.60479,50.239521 L122.51497,49.9101796 L122.215569,49.760479 L122.335329,49.5209581 L121.706587,48.6526946 L121.497006,48.2934132 L121.167665,48.2634731 L121.377246,47.3952096 L121.317365,47.4251497 L121.287425,47.245509 L120.928144,46.2874251 L120.928144,46.2874251 L121.197605,45.8982036 L121.347305,45.3293413 L121.946108,44.251497 L121.916168,43.2934132 L121.826347,43.1137725 L122.035928,42.9041916 L121.946108,42.6946108 L121.586826,42.9640719 L121.107784,42.8143713 L120.628743,43.2035928 L120.11976,43.2934132 L119.670659,42.9640719 L118.922156,42.7245509 L118.772455,43.1437126 L118.353293,43.2335329 L118.053892,43.0838323 L117.934132,42.8143713 L117.54491,42.754491 L117.57485,42.6347305 L116.976048,42.6946108 L117.185629,42.4850299 L116.946108,42.4251497 L116.976048,42.005988 L116.407186,41.8263473 L116.796407,41.7065868 L116.676647,41.5269461 L116.856287,41.3772455 L116.616766,41.1676647 L116.766467,40.9580838 L116.317365,41.0179641 L116.137725,40.6287425 L116.347305,40.7185629 L116.616766,40.4491018 L116.676647,40.4191617 L116.706587,40.4191617 L118.053892,40.3892216 L118.173653,40.1796407 L118.083832,39.8502994 L119.221557,39.9401198 L119.820359,39.5209581 L120.419162,39.3113772 L121.197605,39.3712575 L121.347305,39.251497 L121.676647,39.5808383 L121.916168,39.5209581 L122.185629,39.8502994 L122.305389,39.760479 L122.844311,39.9700599 L123.263473,40.0598802 L123.892216,39.9401198 L124.281437,40.0598802 L125,39.760479 L125.209581,39.4610778 L125.05988,38.8922156 L124.700599,38.5928144 L124.221557,38.3832335 L124.221557,38.3832335 L124.221557,38.3832335 L124.251497,38.2934132 L124.580838,38.2634731 L125.08982,38.502994 L125.598802,38.502994 L126.377246,38.8323353 L126.467066,38.9520958 L126.976048,38.8023952 L127.45509,38.9820359 L127.39521,39.1916168 L127.964072,39.491018 L128.353293,39.7904192 L128.682635,39.8802395 L129.101796,39.4311377 L129.670659,40.2694611 L130.08982,40.3592814 L129.580838,40.6287425 L129.431138,41.3473054 L129.251497,41.4371257 L129.281437,42.0658683 L129.401198,42.245509 L129.97006,42.3952096 L130.508982,42.8443114 L130.988024,42.9341317 L131.886228,42.7245509 L132.185629,42.7844311 L132.065868,42.1856287 L132.155689,41.4071856 L131.946108,41.1377246 L131.916168,40.7185629 L131.467066,40.6586826 L131.556886,40.0299401 L132.005988,40.2694611 L132.365269,40.2095808 L132.57485,39.9401198 L132.215569,39.7005988 L132.095808,39.2814371 L131.706587,39.251497 L131.347305,39.6706587 L131.257485,39.2814371 L131.437126,38.8323353 L130.988024,38.7724551 L130.658683,38.3532934 L130.389222,37.8143713 L130.02994,37.6946108 L129.91018,37.2155689 L130.269461,37.3053892 L130.688623,37.0359281 L131.377246,36.9760479 L131.646707,36.5269461 L131.706587,36.0479042 L131.287425,35.8383234 L131.167665,35.988024 L130.598802,35.748503 L130.269461,35.8682635 L130.299401,35.4790419 L130.538922,34.7005988 L130.748503,34.3413174 L130.808383,33.8323353 L131.047904,33.4431138 L131.736527,32.8143713 L132.215569,32.7245509 L132.964072,32.754491 L133.592814,32.8742515 L134.401198,32.8143713 L135.299401,33.0538922 L136.167665,33.0239521 L136.317365,32.7245509 L135.628743,32.2754491 L135.479042,31.5568862 L135.508982,31.1077844 L135.838323,30.8982036 L135.718563,30.5389222 L135.209581,30.0898204 L135.269461,29.6107784 L135.808383,29.251497 L135.988024,28.3832335 L136.227545,28.3832335 L136.676647,27.2155689 L137.185629,26.0778443 L137.60479,24.8203593 L137.844311,23.7724551 L137.994012,22.3652695 L138.023952,21.3173653 L139.071856,19.9401198 L139.491018,19.251497 L140,17.9640719 L140.299401,18.2934132 L140.748503,17.5449102 L140.389222,17.5149701 L140.149701,16.9760479 L139.610778,16.7664671 L139.431138,16.8562874 L139.730539,15.7185629 L139.251497,15.7784431 L139.520958,15.1197605 L140.08982,14.8802395 L140.389222,14.5508982 L140.688623,13.6227545 L141.017964,13.4431138 L142.155689,13.4131737 L142.874251,13.6227545 L142.874251,14.1017964 L142.51497,14.7904192 L142.305389,14.8802395 L142.784431,15.3293413 L142.844311,16.0479042 L142.634731,16.1976048 L142.724551,17.5449102 L143.323353,17.9640719 L143.023952,18.2634731 L143.053892,18.7125749 L142.754491,18.8323353 L142.51497,19.2814371 L142.125749,19.5508982 L142.155689,19.760479 L141.646707,19.9101796 L141.167665,19.6107784 L140.658683,19.6107784 L140.898204,19.9101796 L140.958084,19.6407186 L141.317365,19.7305389 L141.197605,20 L142.39521,20.1796407 L142.664671,19.7904192 L143.233533,19.6107784 L143.473054,19.1616766 L143.952096,18.7724551 L143.922156,18.2934132 L143.712575,18.0838323 L143.802395,17.7844311 L144.88024,17.4850299 L145.419162,17.9341317 L145.299401,18.6826347 L145.838323,18.9221557 L146.347305,18.8323353 L145.508982,18.7125749 L145.538922,18.3233533 L145.898204,18.2035928 L145.628743,17.6047904 L145.08982,17.3652695 L144.401198,17.2155689 L144.161677,17.3652695 L143.383234,17.3053892 L143.473054,17.0658683 L143.263473,16.7365269 L143.383234,16.2874251 L143.712575,15.9281437 L143.293413,15.1796407 L142.994012,14.9700599 L143.263473,14.5808383 L144.071856,14.2814371 L144.101796,13.6826347 L143.592814,13.2934132 L144.011976,13.2035928 L144.491018,13.8023952 L144.520958,14.1317365 L144.251497,14.4311377 L144.401198,14.8802395 L144.221557,15.0299401 L144.670659,15.1796407 L145.688623,15.2994012 L146.077844,15.5389222 L145.958084,15.1796407 L144.850299,14.8502994 L144.670659,14.491018 L145.209581,14.3413174 L145.568862,14.5808383 L145.868263,14.5209581 L145.688623,14.0718563 L145.179641,14.0718563 L145.568862,13.7125749 L146.017964,13.8622754 L146.137725,13.4730539 L146.467066,13.2035928 L146.676647,13.3832335 L146.586826,13.9820359 L147.934132,14.7005988 L148.562874,14.6107784 L148.832335,14.7305389 L148.682635,15 L148.233533,15.1497006 L148.323353,15.6586826 L148.562874,15.4491018 L148.922156,15.7185629 L148.742515,16.0778443 L149.071856,15.988024 L148.742515,15.1796407 L149.011976,14.7904192 L148.862275,14.5508982 L148.173653,14.2814371 L148.173653,14.0718563 L147.634731,14.011976 L147.335329,13.8023952 L147.42515,13.3832335 L147.095808,12.9640719 L147.42515,12.6946108 L148.053892,12.5748503 L148.922156,12.6047904 L148.742515,12.0359281 L149.401198,12.1856287 L149.431138,12.5449102 L150.11976,12.3952096 L151.047904,12.3652695 L150.479042,11.7365269 L149.88024,11.6167665 L149.850299,11.3473054 L150.209581,11.497006 L150.928144,11.1077844 L150.958084,11.2275449 L152.125749,10.5688623 L152.60479,10.4191617 L154.640719,10.0898204 L154.341317,9.8502994 L154.730539,9.76047904 L154.820359,9.25149701 L155.08982,9.25149701 L155.11976,9.67065868 L155.928144,9.58083832 L155.958084,9.19161677 L155.389222,9.19161677 L155.598802,8.74251497 L156.317365,8.50299401 L155.838323,8.80239521 L155.808383,9.13173653 L156.287425,9.10179641 L156.197605,9.58083832 L156.616766,9.64071856 L155.958084,9.76047904 L156.047904,9.94011976 L157.57485,9.7005988 L158.173653,9.88023952 L157.664671,9.31137725 L158.772455,9.28143713 L159.011976,9.01197605 L158.832335,8.77245509 L159.520958,8.26347305 L160.149701,7.93413174 L161.017964,7.90419162 L161.646707,8.05389222 L161.946108,8.35329341 L161.886228,8.68263473 L162.54491,8.86227545 L161.976048,9.34131737 L162.754491,9.31137725 L162.814371,9.07185629 L164.011976,9.10179641 L164.640719,9.04191617 L164.820359,9.22155689 L165.419162,9.19161677 L165.479042,9.67065868 L165.928144,9.52095808 L166.017964,10.0598802 L166.197605,10.0898204 L166.047904,10.748503 L163.952096,11.8263473 L162.874251,12.6047904 L162.365269,12.6347305 L162.065868,12.9640719 L161.856287,12.9640719 L161.407186,13.5628743 L161.826347,13.3233533 L161.916168,13.1137725 L162.694611,13.1137725 L164.491018,12.5449102 L163.712575,12.4550898 L164.011976,12.1856287 L165.329341,12.5449102 L165.748503,12.3353293 L165.958084,12.754491 L167.065868,12.5449102 L168.772455,12.6646707 L168.802395,13.0838323 L169.550898,13.2934132 L171.347305,13.4431138 L171.676647,13.0838323 L171.526946,12.8742515 L171.706587,12.5149701 L171.916168,12.6347305 L172.275449,12.3053892 L172.814371,12.8443114 L173.203593,12.6946108 L174.221557,12.7844311 L174.191617,12.9341317 L175.02994,13.2934132 L174.850299,13.8622754 L175.08982,14.1317365 L174.730539,14.3113772 L174.131737,13.9221557 L175.209581,15.2994012 L175.838323,15.6586826 L176.227545,15.5688623 L176.796407,14.5209581 L177.42515,14.9700599 L177.904192,15.0598802 L178.742515,14.760479 L179.94012,15.2095808 L179.850299,15 L179.341317,14.8802395 L180.329341,14.760479 L180.568862,15 L181.047904,14.9401198 L180.778443,14.4610778 L180.958084,14.1916168 L180.568862,14.2215569 L180.778443,13.8622754 L181.646707,13.7724551 L181.377246,13.4131737 L181.916168,13.5628743 L184.101796,13.8023952 L184.88024,14.0419162 L183.832335,13.9221557 L183.922156,14.1017964 L184.97006,14.0419162 L184.431138,14.5508982 L183.982036,14.5508982 L184.071856,14.7305389 L184.520958,14.5808383 L185.11976,14.0419162 L185.808383,14.0419162 L186.497006,14.2215569 L186.736527,14.4610778 L186.347305,14.491018 L186.137725,14.7005988 L186.676647,14.7305389 L186.646707,14.9700599 L187.065868,14.9101796 L187.634731,15.1197605 L187.964072,15.5688623 L188.802395,15.5688623 L190.08982,15.3293413 L191.017964,15.3592814 L191.556886,15.4790419 L192.215569,15.7784431 L192.45509,16.1976048 L192.215569,16.5868263 L192.994012,17.0359281 L193.473054,16.8263473 L194.670659,16.7065868 L195.149701,16.9161677 L196.347305,16.9760479 L196.826347,16.7065868 L197.095808,17.245509 L197.664671,17.3652695 L197.874251,17.6946108 L198.592814,17.4850299 L198.413174,16.8862275 L198.413174,16.3473054 L200.359281,16.5868263 L201.227545,16.6167665 L202.814371,16.9760479 L203.742515,17.4850299 L203.742515,17.4850299 L204.371257,17.7245509 L204.461078,17.9341317 L205.02994,18.1137725 L205.718563,18.5628743 L206.407186,18.7724551 L206.467066,19.1017964 L206.886228,19.8802395 L207.125749,19.9401198 L207.125749,19.4610778 L206.826347,19.3413174 L208.443114,19.4610778 L208.622754,19.7305389 L209.341317,20.239521 L209.580838,20.239521 L209.131737,20.508982 L209.101796,20.7185629 L208.173653,20.8083832 L208.233533,21.257485 L208.023952,21.4670659 L208.143713,21.8562874 L207.365269,21.9161677 L206.736527,21.497006 L206.347305,21.5269461 L206.077844,21.3173653 L206.047904,20.9281437 L205.449102,20.748503 L205.209581,20.8982036 L204.550898,20.8383234 L204.311377,20.3293413 L203.862275,20.2694611 L203.892216,20.5688623 L204.131737,20.7185629 L203.922156,21.1676647 Z M167.155689,69.4610778 L166.946108,69.5508982 L166.526946,69.1317365 L166.946108,69.1317365 L167.245509,69.3113772 L167.155689,69.4610778 Z M180.299401,69.1916168 L180.389222,69.3113772 L179.700599,69.3413174 L179.91018,68.8622754 L180.359281,68.742515 L180.508982,68.8323353 L180.299401,69.1916168 Z M176.227545,68.3832335 L176.437126,68.5928144 L176.017964,69.1616766 L175.838323,68.8023952 L176.107784,68.7724551 L176.227545,68.3832335 Z M166.437126,68.5329341 L165.988024,68.6526946 L165.538922,68.6227545 L165.598802,68.4730539 L166.257485,68.4431138 L166.437126,68.5329341 Z M171.107784,67.6347305 L170.778443,67.6646707 L170.688623,67.5449102 L171.017964,67.4251497 L171.047904,67.245509 L171.317365,67.0958084 L171.467066,67.1556886 L171.347305,67.4850299 L171.736527,67.6047904 L171.107784,67.6347305 Z M173.772455,66.7065868 L173.502994,66.7365269 L173.173653,66.5868263 L173.083832,66.4071856 L173.473054,66.2874251 L173.802395,66.4670659 L173.772455,66.7065868 Z M162.57485,66.1976048 L162.664671,66.0179641 L162.994012,66.1077844 L162.964072,66.3473054 L162.634731,66.3772455 L162.57485,66.1976048 Z M172.754491,65.5688623 L173.263473,65.5988024 L172.994012,65.748503 L172.42515,65.6287425 L172.155689,65.6886228 L172.155689,65.508982 L172.754491,65.5688623 Z M162.305389,66.1976048 L162.125749,66.3173653 L161.706587,66.1676647 L161.586826,65.7784431 L161.227545,65.6586826 L161.467066,65.4191617 L161.736527,65.4491018 L161.916168,65.9580838 L162.185629,66.0179641 L162.065868,66.2275449 L162.305389,66.1976048 Z M158.083832,65.6886228 L158.622754,66.3473054 L158.323353,66.1676647 L158.023952,65.7784431 L157.664671,65.508982 L157.51497,65.239521 L157.694611,65.0898204 L157.874251,65.5688623 L158.083832,65.6886228 Z M173.802395,64.8203593 L174.011976,64.7904192 L174.161677,65 L174.011976,65.2994012 L174.281437,65.4491018 L173.952096,65.5389222 L173.802395,65.3592814 L173.952096,65.2095808 L173.802395,64.8203593 Z M156.407186,63.3832335 L155.868263,62.994012 L155.988024,62.9341317 L156.407186,63.3832335 L156.766467,63.3233533 L156.886228,63.742515 L157.125749,64.011976 L157.005988,64.251497 L156.646707,63.7724551 L156.826347,63.7125749 L156.796407,63.4131737 L156.407186,63.3832335 Z M177.874251,68.1137725 L178.023952,68.2335329 L177.724551,68.4730539 L177.664671,68.3832335 L177.724551,67.8143713 L177.904192,67.6347305 L178.053892,67.754491 L178.023952,68.1437126 L177.874251,68.1137725 Z M167.724551,69.6107784 L167.39521,69.6107784 L167.39521,69.3413174 L167.60479,69.1916168 L167.874251,69.3712575 L168.203593,69.3712575 L168.233533,69.1916168 L168.592814,69.1616766 L169.101796,69.251497 L169.221557,69.4311377 L168.802395,69.5808383 L167.964072,69.7305389 L167.724551,69.6107784 Z M174.131737,66.2874251 L174.311377,66.1676647 L174.850299,66.2275449 L175.02994,66.1377246 L175.688623,66.3173653 L176.047904,66.7964072 L175.08982,66.4371257 L175.05988,66.5269461 L174.610778,66.497006 L174.311377,66.2874251 L174.161677,66.4371257 L173.922156,66.4071856 L174.131737,66.2874251 Z M189.850299,33.0538922 L190.05988,33.1437126 L190.359281,33.0239521 L190.05988,33.4730539 L189.491018,33.9221557 L189.461078,34.1317365 L189.011976,34.5808383 L189.341317,34.1317365 L189.191617,33.8323353 L189.670659,33.6227545 L189.670659,33.4431138 L189.97006,33.3532934 L189.850299,33.0538922 Z M179.341317,29.9101796 L179.670659,29.6706587 L179.88024,30 L179.730539,30.3293413 L179.610778,29.9401198 L179.341317,29.9101796 Z M170.598802,60.8383234 L170.838323,60.748503 L170.778443,61.1676647 L170.299401,61.2874251 L170,60.9580838 L170.479042,61.1676647 L170.688623,61.1377246 L170.598802,60.8383234 Z M197.754491,16.7065868 L197.42515,16.9161677 L196.796407,16.6467066 L197.095808,16.4371257 L197.754491,16.5868263 L197.754491,16.7065868 Z M171.796407,58.2634731 L171.976048,58.3832335 L171.916168,58.7125749 L171.736527,58.8922156 L171.556886,59.2814371 L171.736527,59.4011976 L171.377246,59.4610778 L171.017964,58.9820359 L171.287425,58.8323353 L171.377246,58.3832335 L171.706587,58.4431138 L171.616766,58.8922156 L171.916168,58.3532934 L171.796407,58.2634731 Z M141.916168,12.9341317 L142.215569,13.0538922 L141.197605,13.2634731 L141.227545,12.8742515 L141.796407,12.754491 L141.916168,12.9341317 Z M169.820359,56.7664671 L170.359281,56.9161677 L170.538922,57.3952096 L170.359281,57.6347305 L169.820359,56.7664671 Z M165.898204,11.8263473 L165.568862,12.1257485 L164.820359,11.8263473 L165.11976,11.6167665 L165.868263,11.6766467 L165.898204,11.8263473 Z M170.748503,57.5748503 L170.988024,57.4850299 L170.778443,57.7844311 L171.137725,58.0239521 L171.467066,58.0538922 L171.437126,58.2335329 L171.137725,58.502994 L170.778443,58.6526946 L170.868263,57.9640719 L170.718563,57.9041916 L170.748503,57.5748503 Z M169.431138,51.0179641 L169.670659,51.0778443 L170.269461,50.1197605 L170.568862,50 L170.808383,50.1497006 L170.688623,50.2694611 L170.449102,51.257485 L170.209581,51.6167665 L170.149701,52.005988 L169.820359,51.5568862 L169.730539,51.1377246 L169.431138,51.0179641 Z M153.263473,5.5988024 L153.083832,5.56886228 L153.263473,4.94011976 L153.622754,4.91017964 L154.730539,5.08982036 L154.101796,5.41916168 L153.802395,5.23952096 L153.233533,5.17964072 L153.263473,5.5988024 Z M181.347305,12.3053892 L181.167665,11.9760479 L181.526946,11.9161677 L181.676647,12.3353293 L182.185629,12.3053892 L182.964072,12.7245509 L183.053892,13.0538922 L182.844311,13.1137725 L181.467066,12.8742515 L181.017964,12.9640719 L180.988024,12.7844311 L181.407186,12.6646707 L181.347305,12.3053892 Z M185.05988,11.0778443 L184.491018,10.8083832 L184.670659,10.4191617 L184.88024,10.6586826 L185.808383,10.5988024 L185.928144,10.8383234 L186.227545,10.7784431 L187.185629,10.9281437 L187.065868,11.1976048 L186.257485,11.3473054 L185.658683,11.3173653 L185.05988,11.0778443 Z M146.886228,59.0718563 L147.005988,59.011976 L147.365269,59.251497 L147.724551,59.760479 L148.023952,60.4191617 L147.904192,60.8982036 L147.275449,61.2275449 L147.035928,61.1377246 L146.856287,60.7185629 L146.796407,60.0299401 L146.976048,59.251497 L146.886228,59.0718563 Z M177.994012,44.4011976 L178.053892,44.7005988 L177.724551,45.0598802 L177.57485,44.9101796 L177.215569,45 L177.035928,45.3293413 L176.796407,45.3892216 L176.706587,44.9401198 L177.005988,44.491018 L177.335329,44.6107784 L177.45509,44.3413174 L177.994012,44.4011976 Z M154.311377,56.7964072 L154.281437,57.1556886 L154.371257,57.6646707 L154.101796,58.1137725 L154.071856,57.9041916 L154.311377,56.7964072 Z M164.371257,53.4730539 L164.251497,53.8323353 L163.742515,54.1916168 L163.233533,54.011976 L163.203593,53.5329341 L163.832335,53.1137725 L164.520958,53.1137725 L164.550898,53.2934132 L164.371257,53.4730539 Z M169.670659,69.8502994 L170.149701,70.2694611 L169.91018,70.3892216 L169.640719,70.2095808 L169.071856,69.9700599 L169.191617,69.8802395 L169.670659,69.8502994 Z M181.586826,66.0179641 L181.586826,68.4730539 L181.586826,69.7305389 L180.988024,69.1616766 L180.359281,69.1616766 L180.508982,68.8323353 L180.209581,68.4730539 L179.94012,67.6347305 L178.742515,67.1257485 L178.323353,67.0958084 L177.814371,66.7365269 L177.814371,66.8263473 L177.39521,66.5868263 L177.215569,66.8562874 L177.035928,66.8862275 L176.796407,66.3173653 L176.467066,66.1976048 L176.586826,66.0778443 L176.916168,66.1377246 L177.065868,65.9580838 L177.51497,66.0479042 L177.60479,65.9281437 L177.215569,65.8083832 L176.886228,65.8682635 L176.526946,65.748503 L176.377246,65.4191617 L175.898204,65.3892216 L175.598802,65.0598802 L175.329341,65.239521 L175.598802,65.5988024 L175.479042,65.7185629 L175.179641,65.6287425 L175.359281,65.5389222 L175.209581,65.239521 L175.598802,65.0299401 L175.598802,64.8502994 L175.299401,64.8502994 L175.508982,64.6107784 L175.808383,64.5508982 L176.077844,64.6407186 L176.047904,64.7904192 L175.718563,64.8502994 L175.808383,65.0598802 L176.047904,65.0299401 L176.886228,64.760479 L177.275449,64.9700599 L177.60479,64.9700599 L177.784431,65.3293413 L177.664671,65.508982 L177.964072,65.8682635 L178.023952,66.2275449 L178.173653,66.4371257 L178.443114,66.4670659 L178.922156,66.0179641 L178.922156,65.6287425 L178.233533,65.4191617 L178.712575,65.4790419 L178.682635,64.9700599 L178.862275,65.1497006 L178.862275,65.508982 L179.401198,65.5688623 L179.790419,65.3892216 L180.958084,65.8982036 L181.137725,65.8682635 L181.586826,66.0179641 Z M120.628743,43.9820359 L120.568862,44.0718563 L120.239521,44.1916168 L120.149701,44.1317365 L120.08982,44.1616766 L119.820359,43.8922156 L120.149701,43.8622754 L120.179641,43.6826347 L120.479042,43.742515 L121.137725,43.5329341 L120.748503,43.7724551 L120.748503,43.9221557 L120.748503,43.9221557 L120.748503,43.9221557 L120.748503,43.9221557 L120.748503,43.9221557 L120.658683,43.9221557 L120.628743,43.9221557 L120.628743,43.9221557 L120.628743,43.9221557 L120.628743,43.9820359 Z M120.748503,43.9820359 L120.688623,43.9221557 L120.748503,43.9221557 L120.748503,43.9221557 L120.748503,43.9221557 L120.748503,43.9820359 Z M160.838323,64.4311377 L160.808383,64.4011976 L160.778443,64.2814371 L160.778443,64.2814371 L160.838323,64.4311377 L160.838323,64.4311377 Z M120.658683,43.9520958 L120.688623,43.9520958 L120.688623,43.9520958 L120.688623,43.9520958 L120.688623,43.9520958 L120.688623,43.9520958 L120.658683,43.9520958 Z M168.982036,64.1017964 L168.413174,64.1017964 L168.233533,64.491018 L168.203593,64.8502994 L167.964072,65.239521 L167.60479,65.5688623 L167.724551,65.8083832 L167.45509,66.257485 L167.634731,66.497006 L167.45509,66.8263473 L167.365269,66.5868263 L166.616766,66.9161677 L166.526946,66.5269461 L166.047904,66.5269461 L165.718563,66.1976048 L165.479042,66.497006 L165.299401,66.4371257 L165.02994,66.5568862 L164.97006,66.1377246 L164.371257,66.2874251 L164.131737,66.257485 L163.952096,65.1796407 L163.562874,65.239521 L163.832335,65.0898204 L163.562874,65.0299401 L163.443114,64.7005988 L163.592814,64.5508982 L163.383234,64.3712575 L163.323353,64.1017964 L163.473054,63.6826347 L163.772455,63.3832335 L163.952096,63.5928144 L164.550898,63.6826347 L164.730539,62.994012 L165.688623,62.7844311 L166.227545,62.1556886 L166.257485,61.9760479 L166.556886,61.9161677 L167.155689,61.3772455 L167.305389,61.4071856 L167.45509,61.1077844 L167.694611,60.8982036 L167.904192,60.4790419 L168.143713,60.8083832 L168.383234,60.9580838 L168.413174,61.2275449 L168.532934,61.1377246 L169.071856,61.5269461 L169.221557,61.497006 L169.341317,61.7964072 L169.790419,61.5269461 L169.371257,61.9161677 L169.191617,61.6766467 L168.622754,61.7964072 L168.952096,62.0359281 L168.173653,62.2155689 L168.443114,62.5449102 L168.173653,62.754491 L168.323353,62.8143713 L168.592814,63.2934132 L168.443114,63.502994 L169.101796,64.011976 L168.982036,64.1017964 Z M159.730539,63.9221557 L160.239521,64.0419162 L160.209581,64.251497 L160.449102,64.4311377 L160.209581,64.9700599 L160.479042,65.1497006 L160.778443,65.1497006 L160.868263,65.5988024 L161.077844,65.8383234 L161.497006,65.9281437 L161.766467,66.4071856 L161.676647,66.7365269 L161.586826,67.8443114 L161.317365,67.6646707 L161.257485,67.8143713 L160.988024,67.9041916 L160.748503,67.754491 L160.389222,67.3652695 L159.610778,66.8263473 L159.580838,66.6167665 L159.221557,66.4071856 L158.922156,66.0179641 L158.532934,65.2694611 L158.473054,65.0299401 L158.173653,64.5808383 L157.814371,64.4011976 L157.784431,64.2215569 L157.48503,63.4730539 L156.976048,63.2035928 L156.946108,62.9341317 L156.467066,62.4550898 L156.287425,62.3952096 L155.718563,61.8263473 L155.508982,61.3772455 L155.628743,61.257485 L156.107784,61.5868263 L156.886228,61.5868263 L157.335329,62.0658683 L157.335329,62.245509 L158.173653,62.754491 L158.622754,63.3532934 L158.892216,63.2634731 L159.251497,63.3532934 L159.221557,63.6227545 L159.730539,63.7125749 L159.730539,63.9221557 Z M170.628743,69.2814371 L170.958084,69.4610778 L171.227545,69.2814371 L171.826347,69.1916168 L171.946108,69.3413174 L172.095808,69.1916168 L172.57485,69.1916168 L172.57485,69.2814371 L172.035928,69.4011976 L171.826347,69.251497 L171.676647,69.4011976 L171.467066,69.3413174 L170.688623,69.5808383 L169.610778,69.5808383 L169.311377,69.491018 L169.790419,69.251497 L170.209581,69.2814371 L170.538922,69.4311377 L170.628743,69.2814371 Z M161.736527,67.8742515 L162.275449,67.994012 L162.305389,67.9041916 L162.904192,68.1437126 L163.053892,68.0838323 L163.203593,68.3832335 L164.251497,68.502994 L164.520958,68.1736527 L165.149701,68.4730539 L165.479042,68.4730539 L165.568862,68.8323353 L165.868263,68.9520958 L166.257485,68.8622754 L166.526946,68.9820359 L166.467066,69.3113772 L166.586826,69.5209581 L165.928144,69.3413174 L165.808383,69.251497 L165.508982,69.3413174 L165,69.2215569 L164.94012,69.2814371 L164.251497,69.1616766 L163.622754,68.9221557 L163.023952,68.9820359 L162.51497,68.8023952 L162.005988,68.742515 L162.005988,68.502994 L161.407186,68.4131737 L161.616766,68.2035928 L161.736527,67.8742515 Z M170.598802,64.6407186 L170.928144,65 L171.616766,65 L171.497006,65.2095808 L171.646707,65.508982 L171.287425,65.4491018 L171.257485,65.0898204 L171.017964,65.4191617 L170.628743,65.6287425 L170.419162,65.5688623 L170.988024,66.2275449 L170.928144,66.5568862 L171.317365,66.9461078 L171.407186,66.5868263 L171.526946,66.8862275 L171.227545,67.0958084 L170.868263,67.1257485 L170.808383,67.3053892 L170.508982,67.1856287 L170.598802,66.8562874 L170.179641,66.5568862 L170.269461,66.1077844 L170.11976,66.0479042 L169.790419,66.2275449 L169.88024,66.3772455 L169.91018,67.1856287 L169.850299,67.6646707 L169.431138,67.754491 L169.311377,67.5748503 L169.461078,67.005988 L169.281437,66.497006 L169.041916,66.5868263 L168.982036,66.1676647 L169.281437,65.6886228 L169.281437,65.239521 L169.520958,64.9101796 L169.550898,64.4311377 L169.700599,64.1317365 L170,64.1317365 L170.179641,63.8023952 L170.508982,63.9221557 L171.856287,64.1017964 L172.275449,63.8922156 L172.245509,63.8023952 L172.694611,63.3832335 L172.45509,64.011976 L172.125749,64.3413174 L171.497006,64.3712575 L171.407186,64.2814371 L170.688623,64.3113772 L169.88024,64.2814371 L169.670659,64.6706587 L169.730539,64.9401198 L170.05988,65.3592814 L170.269461,65.3592814 L170.598802,65.0299401 L170.598802,64.6407186 Z M173.892216,64.5808383 L173.832335,64.3712575 L173.982036,63.5628743 L174.311377,63.2035928 L174.610778,63.1736527 L174.371257,63.4131737 L174.281437,63.2335329 L174.131737,63.5329341 L174.221557,63.6826347 L174.011976,64.011976 L174.101796,64.1017964 L174.461078,63.6826347 L174.610778,63.6826347 L174.610778,63.9520958 L174.401198,64.0419162 L174.700599,64.4311377 L174.191617,64.2814371 L174.161677,64.5808383 L174.431138,65.1497006 L173.892216,64.5808383 Z M172.125749,57.9341317 L172.305389,58.1437126 L172.42515,58.0239521 L172.45509,57.9041916 L172.095808,57.4550898 L172.60479,57.4251497 L172.784431,57.6047904 L172.814371,58.1736527 L172.51497,58.1736527 L172.634731,58.8323353 L172.275449,58.8323353 L172.095808,59.1317365 L171.856287,59.1017964 L172.035928,58.8323353 L172.365269,58.6826347 L172.305389,58.3233533 L172.185629,58.502994 L172.125749,57.9341317 Z M171.976048,60.9281437 L171.946108,60.5389222 L172.065868,60.3892216 L171.766467,60.1497006 L171.257485,60.4491018 L171.257485,60.1796407 L171.107784,60.2095808 L170.868263,60.6586826 L170.778443,60.6287425 L170.958084,60.0299401 L171.317365,59.9401198 L171.407186,59.7305389 L171.796407,59.7005988 L171.856287,59.9401198 L172.065868,59.9101796 L172.155689,59.7005988 L172.365269,59.760479 L172.39521,59.4311377 L172.57485,59.5808383 L172.814371,59.4610778 L172.724551,59.0718563 L172.904192,58.4730539 L172.904192,58.9820359 L173.143713,58.9820359 L173.023952,59.1916168 L173.353293,59.9101796 L173.413174,60.4491018 L173.233533,60.748503 L173.203593,60.988024 L172.964072,60.4191617 L172.784431,60.5988024 L172.874251,61.1976048 L172.694611,61.5269461 L172.60479,61.2874251 L172.065868,61.0778443 L171.976048,60.9281437 Z M169.371257,58.0838323 L169.550898,58.0538922 L169.640719,57.6047904 L169.850299,57.754491 L169.431138,58.1736527 L169.520958,58.5928144 L168.982036,59.0419162 L168.742515,59.3712575 L168.143713,59.7904192 L168.323353,59.4311377 L168.532934,59.3413174 L169.011976,58.8023952 L169.251497,58.6227545 L169.221557,58.3532934 L169.371257,58.0838323 Z M171.946108,56.7964072 L172.005988,56.5868263 L172.185629,56.6766467 L171.856287,57.0958084 L171.826347,57.6646707 L172.035928,57.7245509 L171.976048,57.9041916 L171.616766,57.6347305 L171.467066,57.7844311 L171.556886,57.1856287 L171.467066,56.9161677 L171.107784,56.6467066 L171.137725,57.0958084 L170.988024,56.8562874 L170.808383,57.0658683 L170.868263,56.7664671 L170.658683,56.6167665 L170.299401,56.8862275 L170,56.497006 L170.209581,56.3173653 L169.97006,56.1377246 L170,56.3173653 L169.700599,56.1377246 L169.550898,55.508982 L169.550898,55.239521 L169.850299,55.4491018 L169.850299,54.5508982 L170,53.9820359 L170.389222,53.7724551 L170.419162,53.502994 L170.748503,53.3832335 L170.718563,53.8023952 L170.299401,53.9221557 L170.778443,54.1317365 L170.928144,53.9820359 L170.898204,54.5209581 L171.107784,54.8203593 L170.928144,55.2694611 L170.568862,55.508982 L170.449102,55.8682635 L170.658683,56.1976048 L170.718563,56.0179641 L171.017964,56.1976048 L171.077844,56.4071856 L171.407186,56.6167665 L171.766467,56.6467066 L171.946108,56.7964072 Z M182.934132,31.6167665 L182.814371,32.245509 L183.053892,32.7245509 L183.173653,33.4431138 L183.473054,34.2215569 L182.874251,34.1017964 L182.48503,35.1197605 L182.48503,35.2994012 L182.754491,35.6586826 L182.964072,36.1676647 L182.42515,36.1077844 L182.215569,36.6167665 L182.065868,36.1377246 L182.185629,35.8083832 L182.155689,35.4191617 L182.245509,34.8802395 L182.095808,34.5508982 L182.245509,33.8922156 L182.185629,33.2634731 L182.305389,32.8443114 L181.976048,32.3652695 L181.976048,31.8562874 L182.125749,31.3772455 L182.035928,31.1077844 L182.335329,31.1077844 L182.634731,30.8682635 L182.365269,30.4191617 L182.57485,30.2994012 L182.724551,30.508982 L182.664671,30.7784431 L182.904192,31.2874251 L182.934132,31.6167665 Z M184.071856,10.508982 L183.502994,11.0179641 L182.664671,10.9281437 L182.45509,10.6586826 L182.724551,10.2694611 L182.365269,10.239521 L182.215569,10.4790419 L182.51497,10.988024 L183.143713,11.1377246 L182.365269,11.2874251 L182.065868,11.0778443 L181.077844,11.2874251 L180.748503,11.1377246 L180.479042,11.4670659 L179.820359,11.257485 L179.251497,10.6586826 L179.550898,10.6886228 L179.401198,10.3293413 L179.730539,10.1796407 L179.580838,9.97005988 L180.389222,9.67065868 L180.898204,10.0598802 L181.586826,10.3592814 L181.616766,9.88023952 L181.796407,9.73053892 L182.48503,10.0898204 L183.263473,10.1197605 L184.071856,10.508982 Z M159.610778,5.71856287 L159.97006,5.92814371 L159.94012,6.22754491 L160.479042,6.07784431 L160.868263,6.46706587 L161.257485,6.52694611 L161.347305,6.91616766 L161.017964,7.1257485 L160.419162,7.21556886 L158.982036,7.30538922 L158.323353,7.5748503 L157.874251,7.48502994 L158.892216,6.10778443 L159.610778,5.71856287 Z M153.892216,5.80838323 L155,5.2994012 L155.449102,4.88023952 L156.946108,4.76047904 L157.39521,5.1497006 L157.48503,4.91017964 L157.844311,4.94011976 L158.353293,5.41916168 L158.053892,5.92814371 L157.784431,5.92814371 L158.263473,6.31736527 L157.964072,6.49700599 L157.035928,6.52694611 L156.497006,6.28742515 L155.479042,6.22754491 L155.08982,5.98802395 L154.820359,5.50898204 L154.221557,5.80838323 L154.131737,6.16766467 L153.892216,5.80838323 Z M156.586826,3.80239521 L157.125749,4.07185629 L156.706587,4.16167665 L156.706587,4.7005988 L155.209581,4.82035928 L155.02994,4.94011976 L154.730539,5 L153.502994,4.61077844 L153.712575,4.37125749 L154.191617,4.34131737 L154.491018,3.95209581 L154.041916,3.98203593 L154.371257,3.68263473 L155.389222,3.47305389 L155.898204,3.29341317 L156.586826,3.80239521 Z M173.023952,69.3712575 L173.383234,69.3712575 L173.772455,69.1616766 L174.041916,69.1616766 L173.652695,69.4610778 L172.844311,69.760479 L172.54491,69.9401198 L172.185629,70.3293413 L171.646707,70.4191617 L171.616766,70.5988024 L171.287425,70.748503 L171.586826,70.4790419 L171.766467,70 L172.45509,69.6407186 L172.874251,69.1616766 L173.023952,69.3712575 Z M182.215569,40.988024 L182.065868,41.3173653 L181.856287,41.5568862 L181.886228,41.8263473 L181.646707,41.7664671 L181.556886,42.0658683 L181.616766,42.4251497 L181.347305,43.1137725 L181.526946,43.4730539 L181.317365,43.5928144 L181.257485,43.8323353 L180.988024,44.011976 L180.898204,43.5329341 L180.658683,44.0718563 L180.359281,44.2215569 L180.359281,43.8622754 L180.02994,44.1317365 L179.281437,44.251497 L179.281437,44.4011976 L178.892216,44.5508982 L178.742515,44.8502994 L178.443114,44.8802395 L178.233533,44.6706587 L178.323353,44.1616766 L177.844311,44.1317365 L177.155689,44.4011976 L176.796407,44.4610778 L176.616766,44.7305389 L176.347305,44.5508982 L176.077844,44.6407186 L175.838323,44.5209581 L175.898204,44.3413174 L176.137725,44.3113772 L177.095808,43.5628743 L177.275449,43.6526946 L177.934132,43.5329341 L178.652695,43.6227545 L178.742515,43.3233533 L179.191617,42.754491 L179.191617,42.4251497 L179.491018,42.3053892 L179.311377,42.754491 L180.02994,42.5449102 L180.329341,42.245509 L180.179641,42.0658683 L180.179641,41.7964072 L180.389222,42.1257485 L180.718563,41.8862275 L181.047904,41.0179641 L180.898204,40.7784431 L181.047904,40.4491018 L180.958084,40.2994012 L181.197605,40.0898204 L181.227545,39.8203593 L181.407186,40.0898204 L181.646707,40.0898204 L181.676647,39.8203593 L181.497006,39.9101796 L181.556886,39.6407186 L181.766467,39.760479 L181.856287,40.239521 L182.005988,40.4191617 L182.215569,40.988024 Z M175.538922,46.0778443 L175.239521,45.9580838 L175.449102,45.3592814 L175.02994,45 L175.149701,44.760479 L174.88024,44.5209581 L175.209581,44.7005988 L175.359281,44.9401198 L175.628743,44.6706587 L175.928144,44.6107784 L175.958084,44.8203593 L176.317365,44.8502994 L176.197605,45.0598802 L176.437126,45.0598802 L176.497006,45.2694611 L176.317365,45.508982 L176.107784,46.257485 L175.868263,46.4071856 L175.898204,46.8562874 L175.598802,46.9461078 L175.808383,46.257485 L175.479042,46.3173653 L175.538922,46.0778443 Z M185.928144,36.9161677 L186.047904,37.0359281 L185.419162,37.245509 L184.97006,37.6646707 L184.94012,38.0538922 L184.161677,38.5329341 L183.712575,38.7125749 L183.413174,38.6526946 L183.083832,38.8922156 L182.874251,39.3712575 L182.005988,38.9221557 L181.586826,39.1017964 L181.437126,38.9520958 L181.197605,39.1616766 L181.706587,39.4610778 L181.437126,39.4610778 L181.137725,39.7305389 L180.688623,39.6706587 L180.718563,39.2814371 L180.898204,39.1616766 L180.958084,38.8922156 L181.317365,38.6526946 L181.317365,38.3832335 L181.706587,38.5628743 L181.856287,38.4131737 L181.796407,38.1437126 L181.976048,37.994012 L182.005988,37.3053892 L181.736527,37.1856287 L182.155689,36.9161677 L182.724551,37.5449102 L182.964072,37.7245509 L183.772455,37.994012 L184.071856,37.7245509 L183.922156,38.1437126 L184.101796,38.0838323 L184.071856,38.4431138 L184.221557,38.4431138 L184.790419,38.0838323 L184.94012,37.6047904 L185.508982,37.0958084 L185.928144,36.9161677 Z M160.778443,64.2814371 L160.688623,64.1017964 L160.479042,63.9820359 L160.898204,63.8922156 L161.047904,64.011976 L160.718563,64.0718563 L160.778443,64.2814371 Z M160.838323,64.4311377 L161.137725,64.7305389 L160.868263,64.7305389 L160.898204,64.5508982 L160.838323,64.4311377 L160.838323,64.4311377 Z" id="AS" stroke="#FFFFFF" stroke-width="0.4" fill-rule="nonzero" opacity="0.400000006"></path>
|
|
17
|
+
<path d="M86.2874251,14.8802395 L86.257485,14.8502994 L86.257485,14.8502994 L86.257485,14.8502994 L86.257485,14.8502994 L85.6586826,14.4011976 L85.3293413,14.4610778 L85.9580838,14.6706587 L85.7784431,14.7904192 L86.257485,14.8502994 L86.257485,14.8502994 L86.257485,14.8502994 L86.257485,14.8502994 L86.257485,14.8802395 L86.2874251,14.8802395 Z M88.2934132,13.2335329 L89.0419162,13.4131737 L89.0419162,13.6526946 L88.6227545,13.6526946 L88.3233533,13.4431138 L87.5449102,13.4131737 L87.5449102,13.3233533 L88.2934132,13.2335329 Z M89.5808383,11.7365269 L90.0299401,12.0359281 L89.4011976,12.1257485 L89.0718563,11.8263473 L89.5808383,11.7365269 Z M91.6467066,5.02994012 L91.3473054,5.32934132 L90.988024,5.41916168 L90.4790419,5.17964072 L91.4071856,4.88023952 L91.6467066,5.02994012 Z M70.2694611,16.0778443 L71.2275449,16.257485 L71.5269461,16.5269461 L71.9461078,16.6766467 L71.8562874,17.005988 L71.0479042,17.245509 L70.6886228,17.0359281 L71.1377246,17.0359281 L70.239521,16.7664671 L70.3892216,16.4371257 L70.2694611,16.0778443 Z M87.9041916,13.8922156 L87.5748503,13.502994 L88.3532934,13.4730539 L89.011976,13.9820359 L88.8622754,14.251497 L87.9041916,13.8922156 Z M88.2634731,13.0838323 L87.3053892,12.9640719 L88.4431138,13.2035928 L87.5748503,13.2634731 L86.8862275,13.1137725 L87.1556886,12.8742515 L87.6047904,12.8443114 L88.2634731,13.0838323 Z M64.6107784,54.0718563 L64.4011976,54.1317365 L64.6407186,54.4610778 L64.2215569,54.1616766 L64.1017964,54.2814371 L63.3532934,54.3113772 L63.2634731,54.0718563 L63.4131737,54.011976 L64.6107784,54.0718563 Z M1.40718563,32.1556886 L1.52694611,32.2754491 L0.988023952,32.4550898 L0.838323353,32.3652695 L0.299401198,32.4251497 L9.47390314e-14,32.3353293 L9.47390314e-14,32.3053892 L0.389221557,32.2155689 L1.07784431,32.3353293 L1.40718563,32.1556886 Z M26.7065868,29.6107784 L26.6766467,29.1616766 L26.9461078,29.0718563 L27.0658683,29.2814371 L26.9461078,29.9101796 L26.7065868,29.8203593 L26.7065868,29.6107784 Z M25.5389222,28.5628743 L25.2095808,29.1916168 L25.2095808,28.2934132 L25.3592814,28.1736527 L25.8682635,28.2335329 L26.1976048,28.5628743 L25.5389222,28.6826347 L25.5389222,28.5628743 Z M7.1257485,25.4191617 L7.36526946,25.4790419 L7.4251497,25.8083832 L6.82634731,25.8682635 L6.34730539,25.5688623 L7.1257485,25.4191617 Z M7.09580838,30.5389222 L7.03592814,30.8682635 L6.34730539,31.1377246 L6.13772455,31.1077844 L5.4491018,31.497006 L5.83832335,31.0479042 L6.52694611,31.0179641 L6.58682635,30.6586826 L7.09580838,30.5389222 Z M14.760479,26.9760479 L15.2095808,27.2754491 L14.760479,27.3652695 L14.9401198,27.4850299 L15,27.9341317 L14.491018,27.9640719 L14.011976,28.4431138 L14.1017964,28.1137725 L13.8622754,28.3233533 L13.5928144,27.8742515 L14.4610778,27.3353293 L14.760479,26.9760479 Z M24.1616766,27.2155689 L24.8203593,27.3952096 L24.8802395,27.8443114 L24.3413174,27.6047904 L24.4610778,27.8742515 L24.8502994,27.9640719 L25,28.4431138 L25,28.8922156 L24.5808383,28.3832335 L24.7005988,28.2035928 L24.4610778,28.0538922 L24.3113772,28.2335329 L24.251497,27.7245509 L23.8922156,27.3952096 L24.1616766,27.2155689 Z M25.5688623,29.1017964 L25.4191617,29.1616766 L25.5688623,28.7724551 L25.8083832,28.7724551 L26.4371257,29.6107784 L26.5269461,30 L26.257485,29.8203593 L26.0179641,30.0898204 L25.7784431,29.6706587 L25.6287425,30 L25.7784431,29.3712575 L25.5688623,29.1017964 Z M65.0598802,33.6826347 L65.4790419,33.7724551 L66.3173653,34.1317365 L66.4371257,34.3113772 L66.1377246,34.3413174 L65.3592814,34.1017964 L64.8802395,33.8023952 L65.0598802,33.6826347 Z M55.239521,31.2275449 L55.3892216,31.2275449 L55.6287425,31.6167665 L54.8802395,31.3772455 L55.239521,31.2275449 Z M27.1856287,30.3293413 L27.994012,31.1077844 L27.6946108,31.0179641 L27.6646707,31.257485 L27.3353293,30.9580838 L27.3952096,30.8682635 L27.1856287,30.3293413 Z M56.3473054,23.6826347 L56.4071856,24.0419162 L56.1676647,24.3712575 L55.9281437,24.2215569 L55.9281437,23.8922156 L56.1377246,23.6526946 L56.3473054,23.6826347 Z M54.8502994,23.1736527 L54.9401198,23.3832335 L54.251497,23.8622754 L53.9520958,23.8922156 L53.8323353,23.5928144 L54.1616766,23.2035928 L54.8502994,23.1736527 Z M57.4550898,22.8742515 L57.2155689,23.0538922 L56.8862275,22.7844311 L57.3652695,22.7245509 L57.5149701,22.5149701 L57.9041916,22.6347305 L57.4550898,22.8742515 Z M58.5329341,18.1437126 L58.8023952,18.2335329 L58.8323353,18.8922156 L58.3832335,19.1916168 L57.754491,19.1916168 L57.5449102,18.742515 L57.9041916,18.2035928 L58.5329341,18.1437126 Z M56.6766467,16.9760479 L57.0658683,17.1856287 L56.7065868,17.5449102 L56.7065868,18.1736527 L56.3772455,17.5449102 L56.7664671,17.1556886 L56.6766467,16.9760479 Z M42.0658683,12.9640719 L41.6766467,13.4730539 L40.988024,12.8443114 L40.6886228,12.7844311 L40.9281437,12.5449102 L41.7365269,12.4850299 L42.1257485,12.6946108 L42.0658683,12.9640719 Z M42.1856287,9.5508982 L42.0359281,9.22155689 L42.3952096,9.13173653 L43.1137725,9.5508982 L43.3233533,9.91017964 L42.5748503,10.0598802 L42.5149701,10.6586826 L42.6347305,10.8682635 L42.2754491,11.0778443 L41.8862275,10.9281437 L42.3353293,10.5988024 L42.4251497,10 L42.1856287,9.5508982 Z M34.6407186,9.79041916 L34.491018,10.239521 L34.1017964,10.508982 L33.6526946,10.3892216 L34.1017964,10.0299401 L34.6407186,9.79041916 Z M50.1796407,7.99401198 L50.508982,8.20359281 L50.2994012,8.50299401 L49.6706587,8.26347305 L49.7005988,7.99401198 L50.1796407,7.99401198 Z M41.8263473,8.23353293 L42.1556886,8.38323353 L41.9760479,8.62275449 L41.5269461,8.38323353 L41.2275449,7.84431138 L41.5568862,7.8742515 L41.8263473,8.23353293 Z M47.2754491,7.81437126 L48.5329341,7.8742515 L48.3532934,8.17365269 L46.9461078,8.17365269 L46.8263473,7.90419162 L47.2754491,7.81437126 Z M45,4.8502994 L45.4191617,5.02994012 L45.3592814,5.41916168 L44.5508982,4.97005988 L45,4.8502994 Z M56.1377246,27.7844311 L56.1676647,28.2934132 L56.5868263,28.6826347 L56.7365269,28.502994 L56.7964072,28.8922156 L56.5269461,28.8622754 L56.3473054,29.1317365 L56.0179641,28.8023952 L56.2275449,28.742515 L56.1377246,28.3832335 L56.1377246,27.7844311 Z M28.1137725,31.3173653 L28.4131737,31.2874251 L28.4730539,31.8263473 L28.2035928,31.8263473 L28.1137725,31.3173653 Z M67.5748503,36.5269461 L67.1856287,36.7964072 L66.6467066,36.8562874 L66.5269461,36.5269461 L67.0658683,35.8083832 L67.2155689,36.1077844 L66.8862275,36.6467066 L67.245509,36.3173653 L67.5748503,36.5269461 Z M66.2874251,36.2275449 L65.7784431,36.4670659 L65.3293413,36.4071856 L64.8802395,36.0778443 L65.0898204,35.988024 L65.2994012,36.2275449 L66.2874251,36.2275449 Z M55.9580838,13.0538922 L55.5988024,12.994012 L55.5688623,12.5149701 L56.3473054,12.6047904 L57.0958084,12.5748503 L57.6347305,12.754491 L58.1736527,13.2035928 L58.1437126,13.502994 L57.0658683,13.4131737 L56.497006,13.5628743 L56.0778443,13.4730539 L55.9580838,13.0538922 Z M47.6047904,10.1497006 L47.7844311,9.94011976 L47.8742515,10.3892216 L48.3532934,10.7784431 L48.2934132,11.4670659 L47.6646707,11.497006 L47.3353293,11.3173653 L47.3053892,11.6467066 L47.0359281,11.5568862 L47.005988,11.2874251 L46.5868263,11.1077844 L46.8263473,10.5688623 L46.3473054,10.508982 L46.7964072,10.3293413 L47.0658683,10.508982 L47.5748503,10.3293413 L47.6047904,10.1497006 Z M38.1736527,7.18562874 L37.754491,7.06586826 L37.1856287,7.18562874 L37.1556886,7.03592814 L38.742515,6.58682635 L39.2814371,6.79640719 L39.3113772,7.15568862 L38.3233533,7.03592814 L38.1736527,7.18562874 Z M46.4670659,7.36526946 L45.8982036,7.24550898 L45.5688623,6.91616766 L45.7185629,6.49700599 L46.8562874,6.76646707 L47.6047904,7.09580838 L47.3053892,7.21556886 L47.4850299,7.5748503 L46.5269461,7.69461078 L45.9281437,7.48502994 L46.4670659,7.36526946 Z M66.1976048,55.0598802 L66.3473054,54.8802395 L66.3772455,54.4610778 L66.4371257,54.8502994 L66.7365269,55.2994012 L66.6766467,55.8682635 L66.9461078,56.3473054 L66.8562874,56.5568862 L66.4071856,55.239521 L66.1976048,55.0598802 Z M57.4850299,54.011976 L57.8143713,54.0419162 L58.2035928,54.3413174 L57.8143713,54.3113772 L57.6047904,54.4610778 L57.3353293,54.3712575 L56.9760479,54.1317365 L57.2155689,53.9820359 L57.4850299,54.011976 Z M57.245509,49.6706587 L57.1856287,50.1497006 L57.3353293,50.3293413 L57.3952096,50.8982036 L57.0958084,50.4491018 L56.9161677,50.3892216 L57.1856287,50.0598802 L57.245509,49.6706587 Z M57.245509,49.1916168 L56.7664671,49.1916168 L56.8862275,49.1017964 L57.4550898,49.011976 L57.6946108,49.2215569 L57.4251497,49.3712575 L57.245509,49.1916168 Z M4.28143713,22.6047904 L4.73053892,22.5149701 L4.8502994,22.6946108 L5.62874251,22.8443114 L5.02994012,23.1736527 L4.43113772,22.7245509 L4.10179641,22.8443114 L3.86227545,22.6646707 L3.92215569,22.4251497 L4.28143713,22.6047904 Z M57.5149701,59.6706587 L57.6347305,60.0898204 L57.245509,60.4790419 L56.9161677,60 L57.1257485,59.760479 L56.5269461,59.9101796 L56.8263473,59.6706587 L56.5568862,59.4610778 L56.1976048,59.5508982 L56.1676647,59.7005988 L55.7784431,59.9101796 L56.0479042,60.3293413 L55.5688623,60.4790419 L55.508982,60.2994012 L55,60.4790419 L55.1796407,60.2095808 L55.0898204,60 L54.760479,59.8502994 L54.3413174,59.9101796 L53.8323353,59.6407186 L53.9820359,59.4610778 L53.3832335,59.1017964 L53.3532934,58.9221557 L53.1437126,59.1616766 L52.8443114,58.9520958 L52.6946108,58.6826347 L52.7844311,58.2934132 L52.3353293,57.9041916 L52.1856287,57.6347305 L51.7065868,57.245509 L51.8862275,57.1856287 L51.6467066,56.9760479 L51.5269461,57.0958084 L51.0479042,57.0359281 L50.4790419,56.8862275 L49.9401198,56.6467066 L49.6107784,56.6467066 L49.0718563,56.2874251 L48.742515,55.9281437 L48.1437126,55.3892216 L47.6946108,55.3293413 L47.6047904,55.2095808 L47.2754491,55.4790419 L46.6167665,55.6586826 L45.9281437,55.4790419 L45.3293413,55.1497006 L44.8203593,55.0299401 L44.0718563,54.7305389 L43.6526946,54.3712575 L42.6946108,54.1017964 L42.4251497,53.7724551 L41.8263473,53.502994 L41.4371257,52.8742515 L41.7065868,52.754491 L41.5868263,52.6047904 L41.7065868,52.245509 L41.4670659,51.9760479 L41.3772455,51.5568862 L40.6886228,50.748503 L40.1197605,50.3592814 L39.9700599,50.0898204 L39.3113772,49.6706587 L39.4311377,49.3413174 L39.251497,49.1017964 L38.6526946,48.742515 L38.6526946,48.4431138 L38.2934132,48.2934132 L37.754491,47.6946108 L37.2155689,46.5868263 L37.2754491,46.3772455 L36.7664671,46.1077844 L36.3473054,46.0179641 L36.2275449,46.3772455 L36.3473054,46.9760479 L36.9461078,47.5748503 L37.1856287,47.5449102 L37.2155689,48.0239521 L37.3652695,47.9341317 L37.4251497,48.4131737 L37.8443114,48.9520958 L38.1137725,49.1317365 L38.4730539,50.0598802 L38.6826347,50.2095808 L38.5628743,50.4191617 L39.0419162,50.6287425 L39.2814371,51.0179641 L39.251497,51.2874251 L39.0419162,51.4071856 L38.8323353,51.0179641 L38.1437126,50.5389222 L38.0239521,50.5688623 L37.7844311,50.239521 L37.8143713,49.760479 L37.754491,49.5508982 L37.1257485,49.1017964 L36.4371257,48.8023952 L36.4371257,48.6826347 L36.1377246,48.4131737 L36.1377246,48.4131737 L36.4371257,48.4730539 L36.6167665,48.3532934 L36.7065868,48.0538922 L36.1676647,47.4850299 L35.748503,47.245509 L35.5389222,46.5868263 L35.2095808,46.1377246 L35.239521,45.9281437 L34.8802395,45.5988024 L34.8203593,45.1497006 L34.4011976,44.760479 L34.251497,44.9700599 L34.251497,45.3293413 L34.1017964,45.2095808 L34.2215569,44.7005988 L33.7724551,44.491018 L33.2634731,44.6706587 L33.3832335,44.3413174 L32.9341317,44.2215569 L32.9341317,43.8622754 L32.5748503,43.5329341 L32.1856287,42.9341317 L32.3053892,42.7844311 L31.9461078,42.5449102 L31.8862275,42.1556886 L32.1556886,42.3652695 L31.8862275,41.9161677 L31.8862275,42.1257485 L31.1976048,41.4071856 L31.1077844,40.7784431 L30.8083832,40.3892216 L31.0179641,39.7005988 L30.7185629,38.742515 L30.9580838,38.0538922 L31.1077844,36.8562874 L30.9580838,35.9281437 L30.8083832,35.2994012 L30.6287425,35 L30.7185629,34.8502994 L31.0179641,35 L31.7664671,35.0598802 L31.9161677,34.7005988 L31.5269461,34.251497 L30.6586826,33.8323353 L30.6886228,33.4730539 L30.4491018,33.2934132 L29.5508982,33.2634731 L29.491018,33.0838323 L28.8922156,32.7245509 L28.8323353,32.0958084 L29.3113772,31.9161677 L29.1616766,31.7964072 L28.8323353,32.005988 L28.7125749,32.5449102 L28.5628743,32.0359281 L28.6526946,31.7964072 L28.4431138,31.2874251 L27.994012,31.0778443 L27.3652695,30.3892216 L27.3652695,30.0598802 L27.0958084,30 L27.0359281,29.6706587 L27.1257485,29.2814371 L26.9461078,29.0718563 L26.6467066,29.1317365 L26.5269461,29.4311377 L26.5269461,28.9221557 L26.3173653,29.1017964 L26.1077844,28.9520958 L26.3173653,28.5329341 L25.8083832,28.0838323 L25.3293413,27.3652695 L25.239521,27.3353293 L25.4191617,27.5748503 L25.3892216,27.994012 L25.239521,28.0838323 L25,28.2335329 L25.0898204,27.9041916 L24.9101796,27.3353293 L25.2095808,27.3053892 L25,27.2155689 L24.5808383,26.3473054 L24.760479,27.1257485 L24.4011976,27.1556886 L24.1616766,26.6766467 L23.8922156,26.7065868 L24.1916168,27.0958084 L23.8323353,27.2155689 L23.2634731,26.8862275 L22.9341317,26.5269461 L22.0359281,26.1377246 L22.1556886,25.8383234 L21.7664671,25.988024 L20.3592814,25.6586826 L19.491018,25.748503 L19.2215569,25.4790419 L18.5628743,25.3592814 L18.2035928,25.5389222 L18.3832335,25.1796407 L18.0838323,25.0299401 L18.2035928,24.760479 L17.6946108,25.2095808 L17.7844311,25 L17.3353293,25.0598802 L17.5748503,25.748503 L16.4670659,25.8383234 L15.8682635,26.3173653 L15.4491018,26.4670659 L15.1497006,26.3173653 L15.4191617,26.1976048 L15.2095808,25.9281437 L15.5389222,25.2994012 L15.4491018,25.1197605 L16.2275449,24.760479 L15.9580838,24.5808383 L15.2095808,25.0898204 L15.1197605,25.4491018 L14.7904192,25.5389222 L14.7005988,25.8083832 L14.3712575,26.0479042 L14.3413174,26.3173653 L13.9221557,26.257485 L13.8922156,26.5568862 L14.4011976,26.7065868 L13.9520958,27.005988 L13.6526946,27.3952096 L13.4131737,27.3952096 L12.994012,27.7844311 L12.8443114,27.754491 L12.5449102,28.2634731 L12.1856287,28.4131737 L12.3952096,28.8922156 L11.8562874,28.502994 L11.4371257,28.7724551 L11.3473054,29.0718563 L10.6886228,29.1616766 L10.1197605,29.7305389 L10.2095808,29.4610778 L9.8502994,29.5508982 L9.67065868,29.3413174 L9.58083832,29.7904192 L8.77245509,29.9700599 L9.10179641,30.2694611 L8.68263473,30.0299401 L8.08383234,30.2694611 L7.75449102,30.1497006 L7.99401198,29.9401198 L8.56287425,29.7904192 L8.71257485,29.9401198 L8.77245509,29.5209581 L9.07185629,29.5508982 L9.5508982,29.1317365 L10.2694611,29.0419162 L10.3892216,28.8323353 L11.1976048,28.3532934 L11.5568862,27.994012 L11.9161677,27.754491 L12.005988,27.0359281 L12.245509,26.6766467 L11.6467066,26.9161677 L11.1976048,26.7664671 L11.1377246,27.0658683 L10.8083832,26.6766467 L10.4191617,26.8862275 L10.3892216,26.5269461 L9.97005988,26.9760479 L9.61077844,26.7964072 L9.43113772,26.3473054 L9.61077844,26.1676647 L9.28143713,25.6586826 L8.53293413,25.9281437 L7.51497006,25.2694611 L7.93413174,25.0299401 L7.66467066,24.9401198 L7.06586826,24.3712575 L7.1257485,24.1616766 L7.66467066,23.5628743 L7.96407186,23.0239521 L8.23353293,22.9041916 L8.68263473,23.1137725 L9.10179641,22.8742515 L9.07185629,22.5748503 L9.91017964,22.6646707 L10.1497006,22.4550898 L10.0299401,22.005988 L9.76047904,21.8263473 L10.1197605,21.6467066 L9.91017964,21.3772455 L8.80239521,21.8562874 L8.56287425,21.7065868 L7.7245509,21.8263473 L7.06586826,21.7065868 L6.61676647,21.1676647 L7.09580838,21.0479042 L6.37724551,20.9580838 L6.01796407,21.3473054 L5.98802395,20.7784431 L7.00598802,20.2095808 L7.90419162,19.8502994 L8.47305389,19.8203593 L8.50299401,20.2994012 L9.34131737,20.2994012 L10.0299401,20.1497006 L9.52095808,19.9401198 L9.10179641,19.5209581 L9.25149701,19.4610778 L9.67065868,19.9401198 L10.1497006,20.0299401 L10.4491018,19.8802395 L10.0898204,19.760479 L9.73053892,19.8802395 L9.52095808,19.7005988 L9.5508982,19.3712575 L9.19161677,19.4311377 L8.50299401,19.3413174 L8.23353293,18.8323353 L6.85628743,18.1137725 L7.03592814,17.6047904 L8.11377246,17.5449102 L8.80239521,17.0958084 L8.89221557,16.6167665 L9.49101796,16.1377246 L10.0898204,16.1077844 L10.7784431,15.6287425 L11.7065868,15.5988024 L12.3952096,15.1197605 L13.0838323,15.239521 L12.8143713,15.4790419 L13.1137725,15.5988024 L13.2934132,15.2994012 L13.9221557,15.6586826 L14.4011976,15.508982 L15,15.6287425 L14.760479,15.8982036 L15.1497006,16.0179641 L16.7065868,15.8982036 L17.1856287,16.1377246 L17.9041916,16.2874251 L18.6227545,16.2874251 L19.3413174,16.497006 L20.0598802,16.3473054 L20.4790419,16.4670659 L21.1377246,16.8263473 L22.005988,16.8562874 L22.4251497,16.9461078 L23.0239521,17.3353293 L23.8323353,17.6047904 L24.1916168,17.6047904 L24.3113772,17.1556886 L24.9101796,16.9760479 L25.1796407,16.7365269 L25.4790419,16.9760479 L25.2095808,17.245509 L25.8083832,17.0658683 L25.988024,16.8263473 L26.9461078,16.6467066 L27.2754491,16.3173653 L27.8443114,16.4670659 L27.0359281,16.8263473 L26.497006,16.9461078 L25.7185629,17.6347305 L26.0778443,17.6946108 L25.988024,17.4251497 L26.5568862,17.1856287 L26.7065868,17.005988 L27.0958084,17.2155689 L27.4251497,16.7664671 L28.1437126,16.6167665 L28.2035928,16.7964072 L28.7125749,16.2874251 L28.6227545,15.8083832 L29.251497,16.1976048 L29.491018,16.7065868 L29.9401198,17.0658683 L30.2095808,16.9461078 L30.5389222,16.5269461 L30.4191617,16.2874251 L30.8083832,16.3173653 L30.7784431,16.7664671 L30.988024,16.7365269 L30.7784431,17.0958084 L31.497006,16.9760479 L31.6467066,16.6467066 L32.5149701,16.7065868 L33.1437126,17.0658683 L34.0718563,17.245509 L34.4311377,17.4550898 L35.5988024,17.6646707 L35.6287425,17.4850299 L36.7365269,17.8742515 L36.7065868,18.2035928 L36.1676647,18.1736527 L35.8383234,18.5329341 L36.497006,18.7125749 L37.0958084,18.742515 L37.3652695,18.2934132 L37.2754491,18.7724551 L38.5329341,18.6526946 L39.1916168,18.2335329 L39.7005988,18.8622754 L40.1197605,19.1616766 L40.0598802,18.8922156 L40.2095808,18.3832335 L40.8383234,18.3532934 L41.0179641,18.1137725 L41.4071856,18.0538922 L41.4670659,17.8443114 L40.9580838,17.9341317 L40.3293413,18.2934132 L39.6706587,18.2035928 L39.9700599,17.8443114 L41.1077844,17.5748503 L41.5568862,17.754491 L41.5269461,18.0538922 L42.1257485,17.9640719 L42.1257485,18.4431138 L42.6646707,18.3832335 L43.3532934,18.742515 L43.8023952,18.7724551 L44.2814371,18.6227545 L45.5988024,18.6526946 L45.2095808,18.4131737 L45.4790419,18.3832335 L46.0479042,18.8622754 L46.3173653,18.6826347 L45.988024,18.4431138 L45.7784431,18.5329341 L45.3892216,18.1137725 L46.2275449,17.994012 L46.3473054,18.2035928 L47.005988,18.1736527 L46.6766467,18.9820359 L47.0958084,19.0718563 L47.3353293,19.5209581 L47.4251497,19.1616766 L47.1257485,18.742515 L47.245509,18.3832335 L47.6047904,18.4431138 L48.2335329,17.8742515 L47.7245509,17.7245509 L47.994012,17.4251497 L47.9041916,17.0359281 L46.8263473,16.6167665 L46.6167665,16.1377246 L46.8263473,15.8383234 L46.5868263,15.6287425 L46.7065868,15.1197605 L47.245509,14.9401198 L46.9760479,14.8502994 L47.3952096,14.4311377 L47.7245509,14.4011976 L47.4251497,14.4311377 L47.3952096,13.8323353 L47.1257485,13.502994 L47.0958084,12.6047904 L47.3652695,12.4850299 L47.3652695,12.1856287 L48.2634731,12.005988 L49.0718563,12.2155689 L49.4610778,12.1856287 L50.239521,12.3053892 L49.3113772,13.4730539 L49.011976,13.6227545 L47.994012,13.5628743 L48.3832335,13.8922156 L48.0239521,14.3712575 L47.7844311,14.3712575 L48.6526946,15.0598802 L48.6826347,15.6287425 L48.9820359,15.7784431 L49.251497,16.1976048 L49.2814371,16.6167665 L49.5209581,16.6467066 L49.7305389,16.9760479 L50.239521,17.0658683 L49.9101796,17.3652695 L50.1197605,17.6047904 L50,18.0239521 L50.2095808,18.2335329 L50.508982,17.8143713 L50.5389222,17.4251497 L50.9580838,17.245509 L51.4670659,17.6646707 L51.6167665,18.1437126 L51.257485,18.2035928 L51.3473054,18.6826347 L51.8562874,19.1916168 L52.3353293,19.0718563 L52.3652695,18.8622754 L52.0658683,18.3832335 L52.245509,18.1736527 L52.4251497,18.5329341 L52.6946108,18.4131737 L52.8143713,17.754491 L53.4730539,17.4550898 L52.994012,17.2754491 L52.8742515,16.8263473 L53.0239521,16.6167665 L53.8323353,16.6467066 L54.5508982,16.8263473 L54.8203593,17.1856287 L55.1796407,17.0658683 L55.2994012,17.3952096 L55,17.5748503 L55.3293413,17.6946108 L54.7005988,18.2934132 L55.3293413,18.9820359 L55.1796407,19.4311377 L54.9401198,19.4610778 L54.251497,20.0898204 L54.011976,20.0598802 L53.9520958,20.4491018 L54.1317365,20.748503 L53.6826347,20.5988024 L53.5628743,20.2095808 L53.0538922,20.1197605 L52.9640719,19.8502994 L52.1856287,19.9700599 L52.7245509,20.239521 L52.3652695,20.6287425 L51.8562874,21.0179641 L51.5269461,21.0179641 L50.9281437,20.6586826 L50.8982036,21.0179641 L52.0359281,21.1077844 L52.0958084,21.1976048 L51.497006,22.0658683 L50.8982036,22.2754491 L50.4790419,22.005988 L50.2095808,22.5748503 L49.7904192,22.6047904 L50,23.0838323 L49.760479,23.4131737 L48.8023952,23.6227545 L48.7125749,24.0718563 L48.0838323,24.491018 L48.1736527,24.6107784 L47.8742515,25 L47.6047904,25.7784431 L47.6347305,26.5868263 L47.9640719,26.7365269 L48.5628743,26.7964072 L48.9820359,27.9341317 L48.8323353,28.2634731 L49.760479,28.0239521 L50.4491018,28.2634731 L50.988024,28.3532934 L51.497006,28.6826347 L51.7365269,29.011976 L52.8143713,29.3712575 L53.4131737,29.6407186 L53.8023952,29.5808383 L54.760479,29.7305389 L54.6706587,30.4491018 L54.8203593,30.7784431 L54.7305389,31.4071856 L55.1497006,31.8263473 L55.2694611,32.0658683 L55.6886228,32.3652695 L55.8083832,32.6347305 L56.1976048,32.8143713 L56.4071856,32.4251497 L56.1377246,31.3173653 L55.988024,31.1377246 L56.1676647,30.988024 L56.0778443,30.6886228 L56.3772455,30.4790419 L56.1676647,30.1197605 L56.2275449,29.9401198 L56.6167665,29.9401198 L57.3053892,29.6107784 L57.9341317,28.9820359 L58.0239521,28.4131737 L57.6946108,27.4550898 L56.7664671,26.7664671 L57.2754491,26.3473054 L57.2754491,26.0179641 L57.6047904,25.748503 L57.3353293,25.3892216 L57.3952096,25.0898204 L57.0359281,25.0299401 L57.4251497,24.4610778 L57.1257485,24.1017964 L57.1257485,23.502994 L57.754491,23.5329341 L59.011976,23.8922156 L59.2215569,23.8023952 L59.2215569,23.4431138 L59.4311377,23.4131737 L59.9700599,23.8622754 L60.239521,23.9221557 L60.7784431,24.3113772 L60.9281437,24.760479 L61.6467066,24.8502994 L61.7664671,25.0299401 L61.9760479,24.8203593 L62.0658683,25.0598802 L61.8263473,25.2994012 L61.9461078,25.5389222 L61.8862275,26.1077844 L62.245509,26.5868263 L63.1736527,27.1856287 L63.9221557,26.7664671 L64.3413174,26.3473054 L64.251497,25.9580838 L64.5209581,25.748503 L64.7904192,25.1497006 L64.9401198,25.6886228 L65.7784431,26.8562874 L65.8982036,27.2754491 L66.4670659,27.6047904 L66.257485,28.0239521 L66.6167665,28.1437126 L66.5568862,28.4131737 L66.7065868,28.6826347 L66.2874251,28.8622754 L66.7664671,28.8922156 L66.7964072,29.1616766 L67.2155689,29.2215569 L67.2754491,29.491018 L67.005988,29.8203593 L67.5149701,29.5808383 L67.5149701,29.760479 L67.9640719,29.7005988 L68.0239521,29.9401198 L68.9520958,30.1796407 L68.8323353,30.4790419 L69.0419162,30.8083832 L69.8203593,31.0179641 L69.8502994,32.0658683 L69.1317365,32.6047904 L68.7125749,32.5449102 L67.994012,32.9041916 L67.754491,33.2634731 L67.3353293,33.502994 L66.9161677,33.4730539 L66.4371257,33.5928144 L66.3473054,33.502994 L65.5988024,33.4431138 L65.2095808,33.502994 L64.4011976,33.4131737 L63.742515,33.4730539 L63.3532934,33.7724551 L63.2035928,34.1616766 L62.8143713,34.1916168 L62.245509,34.5808383 L62.3652695,34.8203593 L63.6526946,34.3113772 L64.251497,34.1916168 L64.8203593,34.3113772 L65.0299401,34.5808383 L64.9101796,34.8203593 L64.3113772,35.1197605 L64.0419162,34.9700599 L63.7125749,35.0598802 L64.1916168,35.3592814 L64.8502994,35.2095808 L64.3413174,35.7784431 L64.6107784,35.9281437 L64.8502994,36.3772455 L65.0898204,36.5269461 L65.988024,36.8263473 L66.3173653,36.6467066 L66.8263473,37.0359281 L65.3892216,37.6347305 L64.9401198,37.5748503 L64.6407186,38.0838323 L64.1616766,38.2934132 L63.9221557,38.1437126 L63.8323353,37.754491 L63.9820359,37.5449102 L64.9401198,37.0359281 L64.9101796,37.1856287 L65.3592814,36.9760479 L64.6107784,36.9461078 L64.8502994,36.7365269 L64.0419162,37.1257485 L63.4730539,37.2155689 L63.2335329,37.5449102 L62.9341317,37.5748503 L62.4850299,37.9341317 L62.3353293,37.7245509 L62.1257485,37.994012 L61.7365269,38.0538922 L61.3772455,38.4730539 L61.3173653,38.8922156 L61.1377246,39.1317365 L61.6167665,39.5508982 L60.9281437,39.7005988 L60.8083832,39.9101796 L60.5988024,39.7904192 L60.0898204,39.8502994 L59.6407186,40 L59.8802395,40.0598802 L60.3892216,39.9101796 L60.508982,40 L59.9401198,40.239521 L59.2814371,40.3592814 L59.4610778,40.4491018 L59.4011976,40.8682635 L58.9520958,41.3772455 L58.5628743,41.0179641 L58.8323353,41.4670659 L58.7724551,41.9461078 L58.3832335,42.4251497 L58.5329341,42.0359281 L58.1736527,42.0658683 L58.1437126,42.6646707 L58.3233533,42.7245509 L58.5628743,43.3832335 L58.2634731,43.7125749 L58.3233533,43.8622754 L57.994012,44.1616766 L57.6646707,44.1616766 L57.3652695,44.3413174 L57.1856287,44.7005988 L56.7365269,44.7305389 L56.4071856,45.2095808 L55.5389222,45.8083832 L55.1796407,46.5568862 L55.3293413,47.2754491 L55.6886228,47.9640719 L55.6586826,48.1736527 L55.988024,48.9520958 L55.9281437,49.8802395 L55.8383234,50 L55.4191617,50.0898204 L55.2994012,49.6706587 L55.0598802,49.6407186 L54.491018,48.6526946 L54.6706587,48.4431138 L54.4311377,48.4431138 L54.5508982,47.7844311 L53.9520958,47.1556886 L53.742515,47.0359281 L53.2035928,47.3353293 L52.5149701,46.7964072 L51.6766467,46.9461078 L51.4670659,46.6467066 L51.4371257,46.9461078 L51.1377246,46.8562874 L50.748503,46.9161677 L50.748503,47.245509 L50.5389222,47.2754491 L50.8383234,47.6946108 L50.4491018,47.5149701 L50.239521,47.6646707 L49.8502994,47.6946108 L49.4011976,47.245509 L49.0718563,47.3952096 L48.5329341,47.245509 L48.0538922,47.3053892 L47.1856287,47.8742515 L46.5868263,47.9640719 L46.7365269,48.0838323 L46.3772455,48.4131737 L46.1377246,48.7724551 L46.2874251,49.7005988 L46.0179641,50.4491018 L45.8682635,51.5868263 L46.0179641,52.1556886 L46.2874251,52.754491 L46.6766467,53.2035928 L46.7964072,53.5329341 L47.0658683,53.8622754 L47.3952096,53.8922156 L47.8143713,54.2215569 L48.8323353,53.9221557 L49.3113772,53.8922156 L49.8203593,53.6227545 L50.0898204,53.1736527 L50.1796407,52.5149701 L50.4790419,52.3652695 L51.4071856,52.1556886 L52.2155689,52.3952096 L52.2155689,52.7844311 L52.0658683,52.9640719 L51.9161677,52.8443114 L51.6467066,53.3532934 L51.8263473,53.4131737 L51.6467066,53.8922156 L51.8562874,54.0718563 L51.4371257,54.2215569 L51.5568862,54.6407186 L51.3473054,54.5808383 L51.3772455,54.9101796 L51.1976048,55.2994012 L50.9580838,55.4790419 L51.4071856,55.6287425 L51.7664671,55.5688623 L52.4550898,55.2095808 L52.6946108,55.2095808 L52.6646707,55.4491018 L53.2035928,55.4491018 L53.5928144,55.5688623 L53.7125749,55.8383234 L54.1317365,55.8982036 L54.251497,56.0479042 L54.2215569,56.3772455 L54.011976,57.005988 L54.0419162,57.5149701 L53.8323353,58.1137725 L54.0718563,58.6227545 L54.4610778,59.1017964 L54.8502994,59.3113772 L54.8502994,59.5209581 L55.1796407,59.4311377 L55.1497006,59.5808383 L55.5688623,59.5209581 L56.3173653,59.1017964 L57.1556886,59.3413174 L57.5149701,59.6706587 Z M36.0479042,48.3532934 L36.1377246,48.4131737 L36.1377246,48.4131737 L36.0479042,48.4131737 L36.0479042,48.3532934 L36.0479042,48.3532934 Z M26.3173653,31.257485 L26.0778443,31.1976048 L25.8383234,30.6886228 L25.8682635,30.4491018 L26.4071856,30.5988024 L26.6766467,30.508982 L26.5269461,31.1377246 L26.4071856,31.2275449 L26.6167665,31.1976048 L26.9161677,32.0658683 L26.3173653,31.4071856 L26.1676647,31.2874251 L26.3173653,31.257485 Z M55.1796407,51.9760479 L55.1197605,51.8862275 L55.1197605,51.8862275 L55.1197605,51.8862275 L55.1497006,51.9161677 L55.1796407,51.9760479 Z M58.8922156,51.257485 L58.8323353,51.257485 L58.8323353,51.1976048 L58.8323353,51.1976048 L58.8922156,51.257485 L58.8922156,51.257485 Z M58.8922156,51.257485 L59.2814371,51.497006 L59.760479,51.5868263 L59.251497,51.6167665 L58.9820359,51.4371257 L58.8922156,51.257485 L58.8922156,51.257485 Z M66.8562874,58.4131737 L66.8263473,58.502994 L66.8263473,58.8323353 L66.3173653,58.8622754 L66.5868263,58.742515 L66.4670659,58.502994 L66.8562874,58.4131737 L66.8562874,58.4131737 Z M55.1796407,52.1556886 L54.2814371,52.245509 L54.2814371,52.0359281 L54.5209581,51.9760479 L54.9101796,52.1556886 L55.1796407,52.1556886 Z M55.1796407,52.1556886 L55.1796407,51.9760479 L55.1796407,51.9760479 L55.239521,52.1257485 L55.1796407,52.1556886 L55.1796407,52.1556886 Z M29.7904192,34.1916168 L28.4131737,33.0838323 L28.8323353,32.994012 L29.2215569,33.2035928 L30.0299401,33.3532934 L30.2694611,33.3233533 L30.3592814,33.7125749 L30.7185629,34.1317365 L31.1976048,34.2814371 L31.4670659,34.5209581 L31.2874251,34.9101796 L30.6586826,34.7005988 L29.7904192,34.1916168 Z M62.4850299,16.3173653 L62.005988,16.6467066 L62.754491,16.3473054 L62.8143713,16.1377246 L63.2934132,16.5269461 L63.1137725,16.8562874 L63.6227545,17.3053892 L63.0239521,17.3053892 L62.2754491,17.1257485 L62.994012,17.4251497 L62.9041916,17.754491 L62.6347305,17.8742515 L63.4730539,18.0538922 L64.011976,18.4431138 L64.7305389,18.4730539 L64.491018,18.6227545 L64.9101796,18.6826347 L65.3592814,19.1017964 L65.7185629,19.2215569 L66.0778443,19.7005988 L66.1077844,19.4011976 L66.6467066,19.7305389 L66.5568862,20.0299401 L65.9580838,20.1796407 L66.2874251,20.3592814 L66.0179641,20.3892216 L66.1976048,20.6886228 L65.5988024,20.7185629 L65.3293413,20.8682635 L65.508982,21.1077844 L65.3892216,21.4071856 L65.239521,21.1676647 L64.8203593,21.2275449 L64.1317365,20.5988024 L64.011976,20.2694611 L63.502994,19.8802395 L63.2035928,19.8502994 L63.3532934,20.0898204 L62.9341317,19.9401198 L63.3832335,20.3892216 L62.9041916,20.4790419 L62.5449102,20.1796407 L62.9341317,20.7185629 L63.1736527,20.6287425 L63.5928144,21.2874251 L64.4311377,21.6467066 L64.6107784,22.005988 L64.4610778,22.2155689 L64.760479,22.245509 L65.0898204,22.6646707 L64.8203593,22.9041916 L64.491018,22.6347305 L64.760479,23.2035928 L64.4011976,23.1437126 L64.4311377,23.3233533 L63.5628743,23.0538922 L62.9640719,22.5449102 L62.994012,22.8143713 L62.4550898,22.4251497 L62.3652695,22.5748503 L63.1137725,23.0838323 L64.0419162,23.8323353 L64.3113772,24.3113772 L64.760479,24.3712575 L64.6407186,24.6107784 L64.011976,24.1017964 L63.8323353,24.1317365 L63.2335329,23.8922156 L62.5449102,23.8023952 L61.9461078,23.4431138 L61.4371257,23.3532934 L61.2874251,23.5329341 L61.0778443,23.1437126 L60.748503,22.9640719 L60.988024,22.6347305 L60.5688623,22.5149701 L60.4491018,22.2754491 L60.1497006,22.5149701 L60.0598802,22.0958084 L59.4311377,21.5568862 L59.0718563,21.8862275 L58.4131737,21.6766467 L58.2035928,21.9461078 L57.6646707,21.9461078 L57.1856287,22.2754491 L57.245509,21.8862275 L57.0658683,21.6467066 L57.0958084,21.3473054 L57.5748503,21.1377246 L57.4850299,20.8982036 L58.4431138,21.1077844 L58.6526946,21.5568862 L58.6826347,21.3173653 L58.3532934,21.0179641 L58.742515,21.0778443 L59.4311377,20.8083832 L59.7305389,20.8982036 L59.6407186,20.6586826 L59.1916168,20.239521 L60.3892216,19.3113772 L60.239521,18.6526946 L60.0299401,18.2335329 L59.491018,18.0538922 L59.2814371,18.3832335 L59.7904192,18.502994 L59.7904192,18.6826347 L59.2215569,18.6826347 L59.011976,18.4131737 L59.3413174,18.2335329 L59.3113772,17.9640719 L59.011976,17.9041916 L58.9820359,18.1437126 L58.6526946,17.9640719 L59.0718563,17.6047904 L58.5928144,17.4550898 L57.9640719,17.7844311 L57.9341317,17.4550898 L58.5329341,17.3952096 L58.4730539,17.1856287 L57.9640719,16.9161677 L57.7844311,17.3353293 L57.5149701,17.2155689 L57.8143713,16.6766467 L57.3652695,16.6467066 L57.3652695,16.2874251 L56.9461078,16.257485 L56.5568862,15.9281437 L56.2874251,16.0778443 L56.6167665,16.1377246 L56.7964072,16.4670659 L56.2275449,16.6167665 L56.4071856,16.7664671 L56.0778443,16.8562874 L55.988024,17.0958084 L55.748503,16.7964072 L55.1197605,16.497006 L54.4311377,16.6766467 L54.3113772,16.4670659 L53.9520958,16.5269461 L52.754491,16.3772455 L52.3053892,16.2275449 L52.3652695,16.4371257 L52.005988,16.4670659 L52.0658683,16.1676647 L51.1077844,15.988024 L50.5988024,15.3293413 L51.3173653,15.4790419 L51.8862275,15.4191617 L51.4670659,15.2095808 L50.4491018,15.0898204 L50.4790419,14.6407186 L50.2994012,14.4610778 L50.5988024,14.2215569 L50.3892216,14.1017964 L50.5988024,13.5329341 L50.748503,13.5928144 L50.8982036,13.0239521 L51.6167665,12.5149701 L52.2155689,12.3952096 L53.1437126,12.4251497 L53.2335329,12.5748503 L52.6047904,12.994012 L52.245509,13.502994 L52.4850299,13.9520958 L52.3652695,14.1616766 L52.5449102,14.6107784 L53.2634731,15.1497006 L52.6347305,15.2694611 L53.2634731,15.2694611 L53.4730539,14.9401198 L53.0538922,14.7305389 L52.6347305,14.3413174 L53.1736527,14.1017964 L52.7844311,13.7125749 L52.8742515,13.3233533 L53.3832335,12.8742515 L54.4311377,12.5149701 L55.1796407,12.5149701 L55.3892216,13.0538922 L55.6586826,13.1137725 L55.8982036,13.5928144 L55.748503,14.1916168 L56.1377246,13.8323353 L56.6467066,14.1017964 L56.4670659,14.4011976 L56.7664671,14.4610778 L56.6766467,14.1317365 L56.9161677,13.7724551 L57.3952096,13.5628743 L58.7724551,13.8622754 L58.8323353,14.251497 L59.3113772,14.3113772 L59.0718563,14.760479 L59.6706587,14.6407186 L59.4311377,14.9401198 L60,15.1497006 L60,15 L59.8203593,14.8802395 L60.2994012,14.760479 L60.8083832,14.9101796 L61.0778443,15.1497006 L60.9580838,15.5688623 L61.257485,15.3293413 L61.4371257,15.508982 L61.1676647,15.8083832 L61.7664671,15.5688623 L62.6347305,15.8682635 L62.5748503,16.0778443 L61.8862275,16.3173653 L62.4850299,16.3173653 Z M71.0778443,35.4491018 L71.2275449,35.1197605 L71.4371257,35.0598802 L71.2275449,35.3892216 L71.497006,35.2694611 L71.5868263,35.4790419 L71.4071856,35.988024 L71.0479042,36.1077844 L71.0479042,35.7185629 L70.6886228,35.9281437 L70.8682635,35.5688623 L70.8083832,35.2694611 L70.7185629,35.5988024 L70.3293413,35.5389222 L70.0898204,35.8982036 L69.7005988,35.8982036 L69.7305389,35.508982 L69.5808383,35.3892216 L69.1916168,35.4491018 L68.502994,35.3293413 L67.9041916,35.4491018 L67.754491,35.2095808 L68.2934132,34.760479 L68.1437126,34.7005988 L68.3233533,34.2814371 L68.502994,34.4011976 L68.4431138,34.0718563 L68.9520958,33.0239521 L69.251497,32.6646707 L69.760479,32.4550898 L70.0299401,32.1856287 L69.8203593,32.8742515 L69.251497,33.6526946 L69.1916168,33.9820359 L69.5808383,33.5329341 L69.8502994,33.502994 L69.8802395,33.9221557 L70.3592814,34.1916168 L70.508982,33.9221557 L71.1077844,34.2215569 L70.8682635,34.4011976 L70.8682635,34.7005988 L71.1676647,34.8502994 L70.8982036,35.3293413 L71.0778443,35.4491018 Z M44.1317365,17.005988 L43.8323353,16.5868263 L43.7125749,16.8263473 L43.2035928,16.7365269 L43.0538922,17.0958084 L43.4431138,17.1257485 L43.742515,17.3952096 L43.6227545,17.9041916 L43.2335329,17.6047904 L42.7245509,17.6946108 L41.8862275,17.4251497 L41.0179641,17.2754491 L40.9281437,16.9760479 L40.508982,17.4550898 L39.8203593,17.5149701 L39.5808383,17.7245509 L38.8622754,17.8443114 L38.1137725,18.1437126 L38.1137725,17.9341317 L37.4251497,18.0239521 L36.9161677,17.6646707 L36.8862275,17.2754491 L36.497006,17.1856287 L35.5988024,17.1856287 L35.239521,17.005988 L34.760479,16.4670659 L35.0299401,16.3473054 L36.6167665,16.1377246 L37.3053892,16.1676647 L37.3652695,15.8982036 L37.005988,15.7784431 L35.6886228,15.8682635 L35.1497006,15.988024 L34.6706587,15.8383234 L34.2215569,15.4191617 L35.5389222,15.0598802 L35.6886228,14.8502994 L34.7005988,15.0598802 L34.2814371,14.9401198 L34.4011976,14.7305389 L33.8622754,14.7904192 L33.8622754,14.4610778 L34.3712575,14.1317365 L34.1017964,13.9221557 L34.8203593,13.4131737 L36.3772455,12.9041916 L36.7365269,13.1736527 L36.7065868,13.5329341 L36.3772455,13.742515 L36.8862275,13.742515 L37.2754491,13.2934132 L38.2934132,13.6227545 L37.9341317,13.9820359 L38.0538922,14.0718563 L38.5928144,13.7724551 L39.1017964,13.8622754 L38.5928144,13.2934132 L38.9520958,13.3233533 L39.760479,13.7724551 L39.760479,14.011976 L40.2994012,14.760479 L40.5389222,14.491018 L40.2694611,14.2215569 L40.0299401,12.9640719 L40.1197605,12.7245509 L40.5988024,13.1137725 L40.7784431,12.9640719 L41.6167665,13.5329341 L41.8263473,14.251497 L42.245509,15.0598802 L42.0359281,15.2994012 L42.4251497,15.6886228 L43.0538922,15.9281437 L43.8023952,16.3473054 L44.1916168,16.1377246 L44.1317365,17.005988 Z M53.9520958,22.4550898 L53.5329341,22.6347305 L53.4431138,22.8443114 L53.0538922,23.0239521 L52.8443114,22.9041916 L52.754491,22.4850299 L51.9461078,22.6047904 L52.1257485,22.3053892 L52.5149701,22.1257485 L52.3952096,21.6766467 L52.5449102,21.3772455 L52.6646707,20.5988024 L53.1437126,20.3293413 L53.4431138,20.8682635 L53.7125749,21.1077844 L54.1017964,21.1976048 L54.2215569,21.3772455 L55.0299401,21.7664671 L55.1197605,22.1257485 L55.748503,22.245509 L55.9281437,22.3952096 L55.4491018,22.7245509 L54.6407186,22.5149701 L54.6107784,22.245509 L54.3113772,22.2754491 L54.3113772,22.0658683 L53.9520958,22.2155689 L53.9520958,22.4550898 Z M44.3113772,17.4850299 L44.9101796,17.4550898 L45.5988024,17.1556886 L45.4790419,17.0359281 L45.8682635,16.5868263 L46.1077844,16.5568862 L46.4371257,16.9760479 L47.1257485,16.8562874 L46.9161677,17.245509 L47.0359281,17.5748503 L47.3952096,17.6347305 L46.6467066,18.0239521 L46.1077844,17.9341317 L44.6706587,17.5149701 L44.6407186,18.1137725 L44.3113772,17.4850299 Z M45.1197605,15.0598802 L44.760479,14.5508982 L43.9820359,14.0419162 L43.6227545,14.0419162 L43.2035928,13.6826347 L43.2634731,13.2634731 L43.502994,13.2335329 L43.9520958,13.6227545 L44.4311377,13.5928144 L44.6407186,13.3532934 L43.742515,12.7844311 L44.1616766,12.6646707 L44.1616766,12.3952096 L44.6706587,12.4850299 L44.5508982,12.3053892 L45,12.3053892 L45.9580838,12.0658683 L45.988024,11.7065868 L46.2275449,11.5269461 L45.8682635,12.3053892 L46.2275449,12.3652695 L46.2874251,12.8742515 L45.5988024,13.2634731 L46.2275449,13.3532934 L46.497006,13.1137725 L46.7664671,13.9221557 L46.6167665,14.5508982 L45.7784431,14.8802395 L45.3892216,15.1497006 L45.1197605,15.0598802 Z M33.8023952,11.9760479 L34.4011976,11.8862275 L35.0898204,12.1257485 L35.9580838,12.7844311 L35.3293413,13.0239521 L33.7724551,13.7125749 L33.6826347,14.011976 L33.1736527,14.1317365 L33.0239521,14.8802395 L31.5568862,15.3592814 L30.988024,14.7005988 L30.3293413,14.4311377 L29.9401198,14.4311377 L30.2994012,13.8622754 L30.4191617,13.4431138 L31.1676647,12.4850299 L30.9580838,12.3652695 L30.5988024,11.8263473 L32.4251497,11.5868263 L33.2335329,11.8862275 L33.8023952,11.9760479 Z M44.6407186,10.5688623 L44.760479,10.3293413 L43.8622754,10.3892216 L43.1736527,10.508982 L42.9341317,10.0299401 L43.4131737,9.94011976 L43.8922156,10.1796407 L43.4730539,9.67065868 L43.9221557,9.28143713 L44.3113772,9.04191617 L44.8802395,9.19161677 L45.1497006,9.4011976 L45.2994012,9.19161677 L45.988024,9.37125749 L46.1676647,10.2994012 L45.7185629,10.6886228 L46.0479042,10.9281437 L45.7784431,11.0479042 L44.491018,11.0778443 L44.2215569,10.6886228 L44.6407186,10.5688623 Z M38.7724551,9.58083832 L39.2814371,9.07185629 L39.7005988,8.92215569 L39.7005988,9.16167665 L40.0898204,9.58083832 L39.8502994,9.88023952 L40.6586826,10.0598802 L40.9281437,9.8502994 L41.4071856,9.94011976 L41.6167665,10.3293413 L41.257485,11.0179641 L39.8802395,11.1676647 L39.6706587,10.988024 L39.2215569,11.257485 L38.0538922,11.6467066 L37.2754491,11.7664671 L36.8862275,11.7065868 L36.4670659,11.4371257 L37.3952096,11.1077844 L38.1137725,11.0778443 L38.4431138,10.8083832 L37.6646707,10.9580838 L36.7365269,10.988024 L36.7065868,10.6586826 L36.4670659,11.0179641 L36.1676647,11.1077844 L36.0179641,10.8982036 L35.748503,11.1077844 L34.7305389,10.8682635 L35.0898204,10.1796407 L36.2275449,10.0898204 L35.1796407,10.0598802 L35.1796407,9.8502994 L35.7185629,9.64071856 L35.8682635,9.4011976 L36.4670659,9.34131737 L36.4670659,9.07185629 L36.4670659,8.89221557 L37.0359281,9.01197605 L37.0958084,9.61077844 L37.6047904,9.73053892 L38.1736527,10.1197605 L38.2934132,10.4790419 L38.7125749,10.4191617 L39.6107784,10.508982 L39.491018,10.2095808 L38.9520958,10.0598802 L39.4011976,9.82035928 L38.7724551,9.58083832 Z M56.3772455,11.2275449 L55.8982036,11.3473054 L55.9580838,11.497006 L55.0299401,11.7065868 L54.3712575,11.5868263 L54.251497,11.2874251 L54.0419162,11.5568862 L53.6227545,11.6467066 L52.2754491,11.6766467 L51.1976048,11.6467066 L51.1976048,11.1976048 L50.988024,11.4670659 L50.3892216,11.6167665 L49.2215569,11.3473054 L49.1616766,10.9281437 L48.9520958,10.8383234 L49.2215569,10.3892216 L49.1017964,10.0598802 L48.5928144,9.49101796 L48.0538922,9.64071856 L47.0359281,9.46107784 L46.497006,8.77245509 L47.0658683,8.65269461 L48.2634731,8.83233533 L48.5928144,9.19161677 L49.5508982,9.10179641 L50.0299401,9.25149701 L50.0898204,9.46107784 L50.748503,9.58083832 L50.7185629,9.7005988 L49.6407186,9.73053892 L50.239521,9.8502994 L50.8083832,10.1796407 L50.9580838,10.5988024 L51.1676647,10.3293413 L51.3772455,10.5389222 L51.6467066,10.4191617 L52.3952096,10.5988024 L53.1736527,10.3293413 L53.4431138,10.3592814 L53.9221557,10.1197605 L54.2814371,10.239521 L54.7005988,10.1197605 L55.4191617,10.1796407 L56.2275449,10.5389222 L56.257485,10.8682635 L55.7784431,11.0479042 L56.257485,11.0479042 L56.3772455,11.2275449 Z M35.9281437,8.38323353 L35.3592814,8.59281437 L35.7185629,8.80239521 L35.6586826,9.10179641 L34.9700599,9.31137725 L34.8203593,9.61077844 L34.4311377,9.46107784 L34.6107784,9.01197605 L34.1616766,9.07185629 L34.2814371,9.25149701 L33.8922156,9.34131737 L34.1317365,9.52095808 L33.3832335,10.0898204 L32.8143713,10 L32.2754491,9.88023952 L31.9461078,10 L31.7065868,9.64071856 L31.9461078,9.46107784 L32.4251497,9.43113772 L32.6946108,9.13173653 L33.9820359,8.32335329 L34.5209581,8.26347305 L34.8802395,8.41317365 L34.9401198,8.20359281 L35.3592814,8.05389222 L35.9281437,8.38323353 Z M38.8622754,8.14371257 L37.7844311,8.35329341 L37.1856287,8.11377246 L36.9461078,7.75449102 L36.6167665,7.90419162 L36.0778443,7.5748503 L36.5269461,7.4251497 L36.8562874,7.66467066 L38.5928144,7.39520958 L39.1616766,7.4251497 L39.1616766,7.5748503 L38.502994,7.69461078 L38.9221557,7.81437126 L38.8622754,8.14371257 Z M42.5748503,5.80838323 L43.0239521,5.98802395 L43.2934132,6.25748503 L43.742515,6.16766467 L44.9401198,6.79640719 L44.760479,6.9760479 L45.2095808,7.4251497 L45.239521,7.66467066 L44.7005988,7.78443114 L44.3413174,7.69461078 L43.6526946,7.93413174 L43.2934132,7.84431138 L43.2335329,7.24550898 L43.0838323,7.2754491 L43.1137725,7.06586826 L42.1257485,7.18562874 L41.7964072,6.91616766 L42.0359281,6.79640719 L42.6946108,6.91616766 L42.6946108,6.55688623 L42.2754491,6.55688623 L42.3652695,6.28742515 L41.8263473,6.49700599 L42.005988,6.25748503 L41.5269461,6.25748503 L41.6167665,5.86826347 L42.5748503,5.80838323 Z M50.8982036,4.76047904 L51.4071856,4.88023952 L51.0778443,4.61077844 L51.2275449,4.43113772 L51.6766467,4.46107784 L52.0958084,5.11976048 L51.9760479,5.53892216 L52.2754491,5.4491018 L52.8742515,5.53892216 L53.2335329,5.89820359 L52.3353293,6.19760479 L51.7664671,6.70658683 L51.3772455,6.34730539 L51.3772455,6.9760479 L50.8982036,7.30538922 L50.3592814,6.76646707 L50.6586826,7.33532934 L50.2694611,7.1257485 L50.1497006,7.36526946 L49.2215569,7.2754491 L47.9341317,6.31736527 L48.5329341,6.07784431 L49.2814371,6.07784431 L48.8622754,5.71856287 L48.1137725,5.95808383 L47.0958084,5.77844311 L47.1556886,5.56886228 L47.9041916,5.2994012 L47.0359281,5.4491018 L46.5868263,5.1497006 L46.5568862,4.82035928 L47.6047904,4.94011976 L48.0239521,4.76047904 L47.2754491,4.82035928 L46.6167665,4.64071856 L46.9760479,4.49101796 L46.9461078,4.22155689 L47.4850299,4.10179641 L47.245509,3.80239521 L47.6047904,3.59281437 L48.5628743,3.53293413 L48.5329341,3.38323353 L47.8443114,3.32335329 L48.502994,3.17365269 L49.3113772,3.47305389 L49.9401198,4.25149701 L50.748503,4.28143713 L50.8982036,4.76047904 Z M55.5988024,8.35329341 L56.6167665,8.62275449 L56.4071856,8.83233533 L57.2155689,8.77245509 L57.3053892,9.16167665 L56.5868263,9.43113772 L56.5269461,9.94011976 L56.1976048,10.0898204 L56.2874251,9.5508982 L55.6586826,9.73053892 L55.2694611,9.7005988 L55.4790419,9.37125749 L54.4610778,9.46107784 L53.8023952,9.37125749 L53.2335329,9.43113772 L53.5329341,9.58083832 L51.8263473,9.4011976 L51.257485,9.46107784 L51.1976048,8.95209581 L50.988024,9.46107784 L50.6586826,9.25149701 L50.3293413,9.37125749 L50.0299401,9.07185629 L51.3173653,8.59281437 L51.7065868,8.62275449 L52.0958084,8.41317365 L51.6766467,8.32335329 L51.3772455,7.78443114 L51.9461078,7.63473054 L52.5149701,7.78443114 L52.754491,8.14371257 L54.0718563,8.32335329 L54.1017964,8.14371257 L54.6107784,7.5748503 L54.4610778,7.51497006 L54.1017964,8.0239521 L53.8023952,8.14371257 L52.8742515,8.08383234 L53.1137725,7.75449102 L52.8143713,7.60479042 L53.1736527,7.45508982 L53.3233533,7.09580838 L52.9341317,7.39520958 L52.4850299,7.45508982 L51.7964072,7.36526946 L51.7964072,6.9760479 L52.2754491,6.52694611 L53.0538922,6.37724551 L53.9221557,6.49700599 L55.0299401,6.46706587 L55.2095808,6.22754491 L54.6107784,6.43712575 L53.5928144,6.34730539 L53.5928144,6.04790419 L53.1736527,5.50898204 L52.3652695,5.2994012 L52.3652695,4.58083832 L53.8922156,4.67065868 L54.7904192,5.17964072 L55.0898204,5.53892216 L55.6886228,5.50898204 L55.1796407,5.35928144 L55.0898204,5.11976048 L54.2215569,4.58083832 L57.1556886,4.22155689 L56.0479042,4.19161677 L56.8862275,3.98203593 L57.9640719,3.80239521 L56.7065868,3.86227545 L56.6766467,3.65269461 L57.3952096,3.23353293 L57.0658683,3.26347305 L56.4071856,3.68263473 L56.257485,3.92215569 L55.3592814,4.16167665 L54.3712575,4.28143713 L54.1616766,4.07185629 L53.5329341,4.34131737 L52.2155689,4.19161677 L52.754491,3.74251497 L52.5748503,3.68263473 L51.9161677,4.16167665 L50.7185629,3.83233533 L51.257485,3.68263473 L52.245509,3.68263473 L53.3532934,3.29341317 L52.3353293,3.50299401 L50.4491018,3.65269461 L50.1497006,3.44311377 L50.7185629,3.35329341 L50.3892216,3.20359281 L51.257485,2.8742515 L50.0898204,3.17365269 L49.8802395,3.05389222 L50.5988024,2.81437126 L49.9700599,2.75449102 L49.5508982,2.93413174 L49.251497,2.81437126 L49.7904192,2.54491018 L50.4790419,2.4251497 L50.7185629,2.5748503 L51.1077844,2.24550898 L51.497006,2.18562874 L52.7844311,2.33532934 L53.3233533,2.33532934 L52.2155689,2.1257485 L52.1556886,2.00598802 L52.994012,1.91616766 L52.754491,1.67664671 L53.9520958,1.82634731 L54.5808383,2.18562874 L54.3413174,1.91616766 L56.0179641,2.36526946 L54.491018,1.79640719 L54.8502994,1.37724551 L55.6886228,1.52694611 L55.1497006,1.19760479 L56.1077844,1.25748503 L55.9580838,0.988023952 L57.6646707,1.10778443 L58.3832335,1.49700599 L57.9341317,1.07784431 L57.5149701,0.928143713 L58.2335329,0.838323353 L59.3413174,0.898203593 L59.5508982,1.10778443 L60.0299401,0.808383234 L61.8862275,0.748502994 L61.9461078,0.928143713 L62.754491,0.928143713 L63.7724551,1.07784431 L62.5149701,1.43712575 L63.1736527,1.40718563 L64.7305389,1.04790419 L65.7784431,1.58682635 L66.497006,1.64670659 L66.6467066,2.03592814 L64.9101796,2.69461078 L62.7245509,2.90419162 L63.6227545,2.99401198 L61.6766467,3.47305389 L64.1317365,3.0239521 L64.8203593,2.93413174 L64.7305389,3.14371257 L64.011976,3.38323353 L62.6946108,4.01197605 L61.7365269,4.67065868 L60.4790419,4.94011976 L61.3473054,4.82035928 L60.8682635,5.32934132 L60.4491018,5.4491018 L59.7904192,5.2994012 L59.9101796,5.5988024 L59.4311377,5.71856287 L58.8323353,5.65868263 L58.8622754,5.80838323 L58.2035928,5.65868263 L58.3532934,5.83832335 L57.5149701,5.71856287 L57.5449102,5.95808383 L59.1916168,5.98802395 L59.1017964,6.55688623 L58.9820359,6.79640719 L58.0239521,6.85628743 L58.8023952,7.06586826 L58.5329341,7.39520958 L57.8143713,7.63473054 L57.0658683,7.5748503 L57.3353293,8.0239521 L57.005988,8.29341317 L56.5269461,8.38323353 L55.5988024,8.35329341 Z M55.1197605,51.8862275 L54.8203593,51.6766467 L54.9700599,51.5269461 L54.4610778,51.5269461 L54.011976,51.9760479 L53.8023952,51.8263473 L53.4730539,52.0658683 L53.502994,51.8263473 L53.7125749,51.5568862 L54.1916168,51.3473054 L54.7904192,51.2275449 L55.6586826,51.2275449 L55.988024,51.3173653 L56.3173653,51.497006 L56.4670659,51.7065868 L56.7365269,51.7065868 L57.1257485,51.8862275 L56.9760479,51.6167665 L57.4550898,52.0359281 L57.9341317,52.3353293 L58.5628743,52.5149701 L58.5628743,52.6646707 L59.011976,52.754491 L59.3113772,52.9341317 L59.2814371,53.0838323 L58.5329341,53.1736527 L58.1736527,53.1137725 L57.3353293,53.2035928 L57.6946108,52.8443114 L57.5748503,52.6946108 L56.9161677,52.6946108 L56.8263473,52.245509 L56.1077844,52.1257485 L55.7784431,51.8862275 L55.0898204,51.8263473 L55.1197605,51.8862275 L55.1197605,51.8862275 Z M60.9281437,54.5209581 L60.5389222,54.1616766 L60.0898204,54.2215569 L59.6407186,54.1317365 L59.5209581,54.2814371 L59.1616766,54.0419162 L59.3413174,53.9221557 L60.1497006,54.0419162 L60.1796407,53.4431138 L59.7904192,53.3233533 L60.0299401,53.0838323 L60.5688623,53.2934132 L61.1377246,53.1736527 L61.7664671,53.3233533 L61.9461078,53.6526946 L62.4251497,53.742515 L62.9341317,54.251497 L62.5149701,54.0718563 L61.7964072,54.011976 L61.4071856,54.1616766 L61.3173653,54.0419162 L60.9281437,54.5209581 Z M58.8323353,51.1976048 L58.8023952,51.1377246 L58.5628743,51.0778443 L58.8023952,50.8682635 L58.4431138,50.3592814 L58.2035928,50.3592814 L58.0239521,50.5988024 L57.8742515,50.4191617 L58.1736527,50.2694611 L58.2035928,50.0598802 L58.5329341,50.3592814 L58.8023952,50.8383234 L58.8323353,51.1976048 Z M36.0479042,48.3532934 L35.8083832,48.1437126 L36.0479042,48.1736527 L36.0479042,48.3532934 L36.0479042,48.3532934 Z M66.8562874,58.4131737 L66.9461078,58.2335329 L66.8862275,58.4131737 L66.8562874,58.4131737 L66.8562874,58.4131737 Z" id="NA" stroke="#FFFFFF" stroke-width="0.4" fill-rule="nonzero" opacity="0.781664894"></path>
|
|
18
|
+
<path d="M58.742515,94.0419162 L59.0419162,94.0718563 L59.1616766,94.491018 L58.8323353,94.5209581 L58.7125749,94.7904192 L58.502994,94.7005988 L58.5329341,94.0718563 L58.742515,94.0419162 Z M59.011976,91.6167665 L59.251497,91.7664671 L59.6407186,91.5568862 L59.5209581,92.1556886 L59.011976,91.6167665 Z M59.7305389,98.1736527 L59.5209581,98.0838323 L60.0598802,98.0538922 L60.508982,98.3532934 L60.0898204,98.5928144 L59.7305389,98.1736527 Z M59.9401198,89.9700599 L59.6706587,90.0898204 L59.7904192,90.4491018 L59.6107784,90.748503 L59.2215569,90.6586826 L59.3712575,90.239521 L59.4011976,89.6706587 L59.7005988,89.6407186 L59.9401198,89.9700599 Z M73.0838323,64.5808383 L72.7245509,64.5209581 L73.2934132,64.3413174 L73.1736527,64.6107784 L73.3832335,64.5209581 L73.5329341,64.6407186 L74.011976,64.7305389 L73.742515,65.3892216 L73.1736527,65.5988024 L72.7245509,65.5688623 L72.6347305,65.1796407 L72.4550898,65.0299401 L72.7245509,64.7005988 L73.0838323,64.5808383 Z M50.0598802,64.4011976 L50.0299401,64.7305389 L50.2095808,64.8502994 L50.0598802,65.2994012 L50.0598802,64.9401198 L49.8203593,65.1197605 L49.5508982,65.1497006 L49.7305389,64.8802395 L49.4311377,64.5508982 L49.5808383,64.4610778 L49.8203593,64.7904192 L50.0598802,64.4011976 Z M79.8502994,98.502994 L80.6586826,98.5928144 L81.1676647,99.1017964 L80.988024,99.1916168 L80.7784431,98.9221557 L80.1197605,98.5329341 L79.8502994,98.502994 Z M66.7964072,96.257485 L67.245509,96.497006 L67.8143713,96.497006 L67.4850299,96.9161677 L67.0658683,97.1556886 L66.8263473,97.005988 L67.3053892,96.7065868 L66.7964072,96.257485 Z M67.5748503,96.9461078 L67.9640719,96.7065868 L67.994012,96.4071856 L68.3233533,96.5868263 L68.5928144,96.497006 L68.6826347,96.7365269 L68.2934132,96.8862275 L68.2934132,97.0359281 L67.8443114,96.9760479 L67.5449102,97.245509 L67.5748503,96.9461078 Z M63.3832335,99.3113772 L63.4730539,99.5508982 L63.2035928,99.5209581 L63.0838323,99.7005988 L63.2634731,99.9101796 L63.0538922,100 L63.0538922,99.491018 L62.8143713,99.4610778 L62.6646707,99.2215569 L63.3832335,99.3113772 Z M57.245509,60.4790419 L57.6347305,60.0898204 L57.5149701,59.6706587 L57.8443114,59.9700599 L57.7844311,59.7305389 L58.1736527,59.4610778 L58.4730539,59.0718563 L58.5928144,58.5628743 L58.9520958,58.2634731 L59.251497,58.4431138 L59.3413174,58.1437126 L59.8502994,58.1736527 L60.4191617,57.8143713 L60.4790419,57.6347305 L60.748503,57.4850299 L61.0778443,57.6946108 L60.9281437,57.9041916 L60.5988024,57.994012 L60.8383234,58.502994 L60.508982,59.011976 L60.8682635,59.4311377 L61.1077844,59.251497 L61.1377246,59.0419162 L60.8083832,58.4431138 L61.7365269,58.0239521 L61.5568862,57.8443114 L61.7964072,57.5149701 L61.9461078,58.0538922 L62.3652695,58.0838323 L62.6347305,58.2634731 L62.7245509,58.5628743 L62.8742515,58.6227545 L63.8622754,58.5329341 L64.1017964,58.7724551 L64.5209581,58.8622754 L65.0598802,58.6227545 L65.1796407,58.4730539 L65.8682635,58.4730539 L66.2874251,58.5329341 L65.748503,58.5928144 L66.3473054,59.011976 L66.4670659,58.9520958 L66.9461078,59.2814371 L67.005988,59.7005988 L67.3952096,59.7305389 L67.8742515,60 L68.2634731,60.4191617 L68.2934132,60.6586826 L68.502994,60.7185629 L69.011976,61.1377246 L69.7005988,61.2874251 L69.760479,61.1976048 L70.3592814,61.1676647 L70.7784431,61.257485 L71.3772455,61.4670659 L71.9461078,61.9461078 L72.1556886,62.1856287 L72.3952096,62.2155689 L72.4251497,62.5149701 L72.6946108,63.3233533 L73.1437126,63.6227545 L73.1437126,63.8922156 L72.6347305,64.4610778 L72.3652695,64.6407186 L72.3652695,65.1497006 L72.0658683,65.3892216 L71.8263473,65.3293413 L71.5568862,65.4790419 L72.005988,65.4491018 L72.5449102,65.2095808 L72.6946108,65.5688623 L73.5329341,65.6586826 L74.011976,65.2994012 L74.1916168,64.9401198 L74.8802395,64.9700599 L75.0898204,65.1497006 L75.2694611,65.0898204 L75.748503,65.5389222 L75.9281437,65.2694611 L76.1976048,65.5988024 L76.2874251,65.988024 L76.4670659,66.1377246 L76.6766467,65.8383234 L77.4850299,66.1676647 L77.4850299,66.0778443 L77.994012,66.1976048 L78.7724551,66.1676647 L79.5209581,66.6467066 L80.3592814,67.3353293 L80.7185629,67.4550898 L81.3173653,67.4550898 L81.4670659,67.6646707 L81.7065868,68.6227545 L81.7065868,69.0419162 L81.4371257,69.760479 L80.8083832,70.508982 L80.508982,70.6586826 L80.0898204,71.4071856 L79.7305389,71.9161677 L79.3712575,72.1556886 L79.2814371,72.9041916 L79.4011976,73.5928144 L79.2215569,74.3413174 L79.251497,74.6407186 L78.9221557,75.1497006 L78.9221557,75.6586826 L78.5628743,76.2874251 L78.3532934,76.497006 L78.1437126,76.8862275 L78.2035928,77.1556886 L77.6347305,77.5149701 L77.6047904,77.754491 L76.1077844,77.8443114 L75.6886228,78.1736527 L75.4191617,78.2335329 L74.8203593,78.5628743 L74.3113772,78.9221557 L73.8922156,79.491018 L73.8323353,80 L74.011976,80.4491018 L73.742515,81.1676647 L73.2035928,81.6766467 L72.9041916,82.3053892 L72.4251497,82.9341317 L72.4251497,82.6946108 L72.6646707,82.5149701 L72.6946108,82.245509 L72.3652695,82.1257485 L72.2754491,82.6946108 L71.9760479,82.8443114 L71.8263473,83.1137725 L71.7964072,83.4431138 L71.5868263,83.9520958 L71.1676647,84.3712575 L70.9281437,84.7904192 L70.2694611,85.1497006 L69.7904192,85.0299401 L69.491018,85.1197605 L69.0419162,84.8203593 L68.6227545,84.8203593 L68.3233533,84.491018 L68.3233533,83.9520958 L68.2035928,84.7305389 L68.4431138,85 L68.8023952,85.1796407 L69.011976,85.4790419 L68.9520958,85.9281437 L69.2814371,86.0778443 L69.2814371,86.3772455 L68.8023952,87.0359281 L68.7724551,87.2155689 L67.9341317,87.5748503 L66.9161677,87.754491 L66.257485,87.7245509 L66.0778443,88.3233533 L66.0778443,89.0419162 L65.6287425,89.2215569 L65.239521,89.2215569 L64.6107784,88.9221557 L64.4610778,89.1317365 L64.5209581,89.7904192 L64.8502994,89.9700599 L65.239521,89.8502994 L65.3293413,90.2994012 L65.0598802,90.3892216 L64.8802395,90.1497006 L64.5508982,90.3293413 L64.8802395,90.4491018 L64.3712575,90.9281437 L64.4311377,91.4071856 L64.1616766,91.6766467 L64.2215569,91.8862275 L63.8922156,91.8562874 L63.502994,92.0359281 L63.2335329,92.3053892 L63.0838323,92.6946108 L63.1736527,92.9640719 L63.5329341,93.2934132 L64.011976,93.3233533 L64.1317365,93.6526946 L64.011976,94.0419162 L63.1137725,94.7305389 L62.9640719,95.4191617 L62.3652695,95.7185629 L62.1856287,96.1976048 L62.3353293,96.7065868 L62.6347305,97.1856287 L62.0359281,97.1556886 L61.3173653,97.5149701 L61.1377246,98.3532934 L60.7784431,98.3532934 L60.4191617,98.1736527 L60.4191617,97.9041916 L60.9281437,97.8143713 L61.0479042,97.5748503 L60.3293413,97.8742515 L60.3892216,98.1437126 L59.9101796,97.9041916 L60.1796407,97.6347305 L60.8383234,97.3952096 L60.3892216,97.3652695 L59.7305389,97.8443114 L59.5209581,97.7245509 L59.6706587,97.5449102 L59.3712575,97.5149701 L59.4610778,97.1856287 L59.7005988,97.2155689 L59.1916168,96.8562874 L59.491018,96.7065868 L59.5209581,96.4071856 L59.1916168,96.3772455 L58.7125749,96.6766467 L58.8922156,96.2874251 L58.8023952,95.988024 L59.251497,96.1077844 L59.011976,95.8383234 L59.3113772,95.7784431 L59.0718563,95.6287425 L59.251497,95.5389222 L59.1916168,95.1197605 L59.1916168,95.3592814 L58.6227545,96.0179641 L58.6526946,95.5988024 L58.8023952,95.3592814 L58.5329341,95.2095808 L58.6826347,94.9101796 L58.9221557,94.9401198 L58.8323353,94.6107784 L59.1616766,94.5209581 L59.1916168,95.0898204 L59.2215569,94.4311377 L58.9221557,93.8323353 L59.3712575,93.2634731 L58.8323353,93.0239521 L58.5628743,93.2335329 L58.4730539,93.0239521 L58.9221557,92.6347305 L58.8622754,92.4850299 L59.2814371,92.005988 L59.2814371,92.3053892 L59.7305389,92.1856287 L59.8502994,91.8263473 L59.760479,91.6167665 L59.9401198,91.2874251 L59.2814371,91.2874251 L59.3413174,91.0778443 L59.9700599,91.1077844 L59.9401198,90.8083832 L60.1497006,90.4790419 L60.0598802,90.2994012 L60.239521,89.8203593 L60.0299401,89.4311377 L59.9700599,89.6107784 L59.5808383,89.6107784 L59.491018,89.1017964 L59.6107784,88.4431138 L59.8802395,88.1137725 L59.7005988,87.3952096 L59.4610778,87.3353293 L59.760479,87.1856287 L59.6407186,86.7065868 L59.9101796,86.5568862 L60.2095808,85.5389222 L60.4491018,85.239521 L60.5688623,84.6407186 L60.8083832,84.251497 L60.9281437,83.502994 L60.7784431,82.754491 L60.7784431,82.1856287 L60.988024,81.9760479 L60.8682635,81.3772455 L61.1976048,80.5688623 L61.4670659,79.1916168 L61.3772455,78.8023952 L61.4371257,78.2335329 L61.3772455,77.8443114 L61.5568862,77.7245509 L61.6766467,76.8562874 L61.6167665,76.497006 L61.6467066,76.0479042 L61.5269461,75.2694611 L61.5568862,75.0898204 L60.9281437,74.6407186 L60.8682635,74.4011976 L60.3892216,74.1017964 L59.6107784,73.8023952 L58.7724551,73.2934132 L58.3532934,72.9041916 L58.0538922,72.4251497 L58.1736527,72.1556886 L57.6347305,71.4071856 L57.6347305,71.2275449 L57.3652695,70.9580838 L56.6167665,69.2215569 L56.3473054,68.9221557 L56.0479042,68.4131737 L55.5988024,68.1137725 L55.3892216,67.8742515 L55.5389222,67.754491 L55.3592814,67.5149701 L55.3293413,66.9461078 L55.5988024,66.6467066 L56.0778443,66.3772455 L56.1976048,66.0179641 L55.9580838,66.257485 L55.9281437,66.1077844 L55.508982,65.8682635 L55.6287425,65.748503 L55.508982,65.1497006 L55.7185629,65.0598802 L55.748503,64.7904192 L55.988024,64.5209581 L56.0179641,64.1017964 L56.6167665,63.9221557 L56.5868263,63.6526946 L56.8562874,63.5628743 L56.7664671,63.3233533 L56.9760479,63.0538922 L57.3053892,63.1137725 L57.3353293,62.8742515 L57.6347305,62.4550898 L57.4251497,62.1856287 L57.5748503,62.005988 L57.5149701,61.4670659 L57.6047904,61.2874251 L57.4550898,61.0778443 L57.5449102,60.8682635 L57.245509,60.4790419 Z M61.8263473,99.1916168 L61.497006,99.1616766 L61.1976048,99.3413174 L60.9281437,99.011976 L60.5988024,99.1017964 L60.5688623,98.8622754 L61.1676647,98.8622754 L60.7185629,98.5329341 L60.6586826,98.7724551 L60.4491018,98.4431138 L60.6586826,98.4131737 L61.0179641,98.6227545 L61.257485,98.5928144 L61.2275449,98.3832335 L61.4670659,98.1736527 L61.5868263,98.6826347 L62.3053892,98.8323353 L61.6766467,98.5628743 L61.6167665,98.3532934 L62.0958084,98.1437126 L62.0958084,97.994012 L61.5868263,98.0838323 L61.4670659,97.7245509 L61.8562874,97.5449102 L62.0359281,97.3053892 L62.2155689,97.4850299 L62.4251497,97.3952096 L62.6946108,97.6946108 L62.6047904,97.9640719 L63.2634731,98.5329341 L64.0718563,99.011976 L64.4610778,99.011976 L64.7305389,99.2215569 L63.9820359,99.251497 L63.6526946,99.5209581 L63.6826347,99.3413174 L63.4131737,99.2215569 L62.6946108,99.1317365 L62.3353293,99.2215569 L62.6047904,99.251497 L62.5149701,99.4011976 L62.7245509,99.7005988 L62.3053892,99.6407186 L62.3952096,99.4311377 L61.8263473,99.6107784 L61.7664671,99.3113772 L61.8263473,99.1916168 Z" id="SA" stroke="#FFFFFF" stroke-width="0.4" fill-rule="nonzero" opacity="0.400000006"></path>
|
|
19
|
+
<polygon id="NA-path" opacity="0.300000012" points="86.2874251 14.8802395 86.8862275 14.9401198 86.9461078 15.239521 86.3173653 15.508982 86.8862275 15.3592814 87.1257485 15.8083832 86.6467066 15.9281437 85.5389222 16.0179641 86.0479042 15.5988024 85.7784431 15.7185629 85.6287425 15.5688623 85.4491018 16.0778443 86.2874251 15.9580838 85.6287425 16.3772455 85.988024 16.4670659 86.2275449 16.1976048 86.5269461 16.257485 87.1257485 16.0479042 88.1137725 16.3473054 88.7724551 16.3473054 88.2934132 16.8263473 87.7844311 16.9461078 87.5149701 17.1856287 86.5568862 17.7844311 86.0179641 17.9341317 85.5688623 17.9041916 84.7904192 18.2634731 83.8622754 18.4131737 83.4730539 18.3532934 83.0838323 17.8443114 83.3233533 18.4131737 82.6047904 18.9221557 82.5149701 19.2814371 81.7964072 20.0299401 81.3173653 20.2095808 80.3592814 20.8083832 79.9101796 20.6586826 80 20.3293413 80.3592814 20.0598802 79.9101796 20.1497006 79.9101796 20.4191617 79.6107784 20.6886228 78.6826347 20.8982036 79.0419162 21.0179641 78.6227545 21.3173653 78.3832335 21.1976048 78.3532934 22.0359281 78.4730539 22.4850299 78.0538922 22.7844311 78.1437126 22.9341317 77.3952096 23.502994 77.5449102 24.1916168 77.3053892 24.251497 77.3053892 24.7305389 76.9461078 24.7005988 77.245509 25 77.1556886 25.2095808 76.8263473 25.3293413 76.9760479 25.748503 76.5269461 25.9281437 76.3473054 25.6586826 75.9281437 25.7185629 75.6886228 25.5688623 75.748503 25.3592814 75.239521 25.1197605 74.3712575 25.1197605 74.0718563 25.0299401 74.1017964 24.7305389 73.7125749 24.6706587 73.4431138 24.2215569 73.4730539 23.8922156 72.9041916 23.5928144 72.994012 23.1736527 72.5149701 22.994012 72.2155689 22.5149701 72.2754491 22.1556886 71.8862275 22.1257485 71.8562874 21.497006 71.9461078 21.3473054 71.4670659 20.7185629 71.0179641 20.2694611 71.0179641 19.9101796 71.257485 19.6706587 71.7664671 19.491018 71.0179641 19.5209581 70.8383234 19.3712575 71.8562874 19.0718563 70.8682635 19.2215569 70.988024 18.6526946 71.2874251 18.5628743 71.2874251 18.2634731 71.9760479 18.4131737 72.2754491 18.2634731 71.7065868 18.2934132 71.6167665 18.1137725 71.1976048 18.2035928 71.3772455 17.8443114 71.8562874 17.7844311 71.9760479 17.9341317 72.4251497 17.9041916 72.4550898 17.3353293 72.994012 17.4550898 72.8143713 17.1856287 72.5748503 17.3053892 72.6047904 16.8562874 72.3353293 16.7365269 72.5449102 16.497006 71.7664671 16.4071856 71.257485 16.1077844 70.8982036 16.0778443 70.4790419 15.748503 70.8083832 15.6287425 71.0179641 15.0898204 71.1377246 15.6886228 71.6766467 15.748503 72.2155689 16.0179641 72.0359281 15.3592814 71.4071856 15.2694611 71.2874251 15.0898204 71.5568862 14.8802395 72.0658683 14.8203593 71.5568862 14.7305389 71.3173653 14.8802395 70.748503 14.7005988 70.8383234 14.9700599 70.0898204 15.0299401 69.7305389 14.7305389 70 14.5808383 69.8802395 13.6826347 69.5508982 13.6227545 70.3293413 13.3532934 69.8502994 13.3233533 70.1197605 13.0538922 69.6407186 12.6047904 69.6107784 11.8862275 69.2814371 11.8263473 69.0718563 11.1676647 68.4431138 11.0179641 68.1736527 10.6586826 68.4131737 10.5988024 68.2934132 10.239521 66.9161677 9.73053892 65.4191617 9.49101796 65.1197605 9.76047904 63.8622754 9.61077844 63.742515 9.82035928 63.2634731 9.73053892 63.7125749 10 62.6047904 9.8502994 61.9161677 9.49101796 61.6467066 8.98203593 60.9580838 8.74251497 61.1976048 8.50299401 61.1976048 8.17365269 62.005988 7.90419162 61.3473054 7.8742515 61.6766467 7.69461078 60.988024 7.81437126 60.0598802 7.33532934 60.239521 6.88622754 62.0958084 6.52694611 62.2754491 6.31736527 62.8443114 6.19760479 64.011976 6.13772455 64.6407186 5.62874251 64.5209581 4.97005988 63.742515 4.8502994 63.3832335 4.91017964 63.1736527 4.5508982 63.5329341 4.4011976 63.8323353 3.92215569 63.9520958 4.13173653 64.491018 3.98203593 64.6706587 3.68263473 65.7185629 3.38323353 66.5269461 3.59281437 66.8562874 3.44311377 66.6766467 3.17365269 66.9461078 2.99401198 66.5868263 2.66467066 67.3652695 2.39520958 68.2634731 2.48502994 67.6946108 2.30538922 68.2035928 2.18562874 70.5688623 1.79640719 71.0479042 2.15568862 70.9281437 2.93413174 71.4071856 2.51497006 71.1976048 1.94610778 73.1736527 2.48502994 73.3832335 2.39520958 72.754491 2.09580838 72.4550898 1.61676647 73.6526946 1.67664671 73.8023952 1.82634731 75.3592814 2.2754491 75.8383234 2.60479042 76.3473054 2.54491018 75.9580838 2.24550898 76.0778443 2.18562874 74.8502994 1.82634731 74.4011976 1.40718563 74.491018 1.22754491 75.748503 1.52694611 76.257485 1.79640719 75.8682635 2.00598802 76.0778443 2.18562874 76.6467066 1.76646707 75.508982 1.22754491 77.6047904 1.25748503 77.7844311 1.64670659 77.8742515 1.28742515 78.6227545 1.52694611 78.8023952 1.34730539 78.2035928 1.22754491 75.5688623 1.07784431 74.8802395 0.958083832 75.3293413 0.778443114 75.8682635 0.928143713 76.1377246 0.658682635 77.5748503 0.568862275 78.3532934 0.868263473 77.9640719 0.658682635 78.7724551 0.688622754 78.4730539 0.389221557 79.5209581 0.748502994 79.5209581 0.299401198 80.6287425 0.149700599 81.4670659 0.149700599 83.0239521 4.34220561e-14 84.0718563 0.0598802395 86.9161677 0.479041916 86.6766467 0.628742515 84.011976 0.718562874 81.6467066 1.04790419 83.4131737 0.928143713 84.4011976 0.718562874 85.9281437 0.838323353 87.1556886 0.688622754 87.5748503 1.04790419 88.6227545 1.19760479 89.3712575 1.43712575 88.742515 1.85628743 87.9041916 1.91616766 84.5209581 2.1257485 82.8742515 2.54491018 83.2335329 2.75449102 83.502994 2.54491018 85.7185629 2.24550898 87.5149701 2.33532934 87.4550898 2.60479042 86.5269461 2.84431138 86.497006 3.11377246 87.994012 2.66467066 88.3233533 2.2754491 89.3413174 2.21556886 89.5508982 2.63473054 89.4011976 2.99401198 88.3532934 3.77245509 89.011976 3.65269461 90.8982036 2.5748503 90.8982036 2.99401198 91.3772455 3.11377246 91.3772455 2.66467066 91.7065868 3.0239521 92.5149701 2.54491018 93.5928144 2.5748503 94.6706587 2.81437126 95 3.05389222 93.8922156 3.65269461 93.2335329 3.68263473 93.3532934 3.95209581 92.7245509 4.16167665 91.7964072 4.13173653 90.9281437 4.25149701 91.2275449 4.34131737 91.8862275 4.22155689 92.5149701 4.46107784 92.1556886 4.7005988 90.8982036 4.73053892 90.3293413 4.97005988 90.4191617 4.67065868 89.9401198 5.1497006 90.1497006 5.41916168 90.5688623 5.38922156 90.3592814 5.77844311 90.7185629 5.95808383 90.5988024 6.55688623 89.5808383 6.55688623 89.6107784 6.76646707 89.011976 7.93413174 89.3712575 7.93413174 89.3413174 7.63473054 89.7005988 7.5748503 90.4790419 7.66467066 90.508982 7.09580838 91.0479042 6.73652695 90.748503 7.1257485 90.748503 7.48502994 90.4790419 8.11377246 90.1197605 7.90419162 89.6706587 7.96407186 89.8502994 8.29341317 90.6586826 8.53293413 90.9281437 8.41317365 91.3173653 7.69461078 91.4670659 7.81437126 91.0778443 8.50299401 91.1077844 8.83233533 90.8383234 9.34131737 90.9580838 10 90.6287425 9.37125749 90.6586826 8.95209581 89.8203593 8.80239521 89.1317365 9.16167665 88.8323353 8.92215569 88.5628743 9.10179641 89.1616766 9.31137725 89.1616766 9.64071856 90.1497006 9.64071856 89.9700599 9.94011976 90.508982 10.239521 90.4491018 10.8383234 89.760479 10.748503 89.1916168 10.3892216 89.3712575 10.6586826 90.2694611 11.2275449 90 11.4371257 90.748503 11.4670659 90.7784431 10.748503 91.1976048 10.5988024 91.1377246 10.8083832 91.6167665 11.0479042 91.0179641 11.1077844 90.9281437 11.4071856 90.4790419 11.9161677 90 11.8862275 89.9101796 11.7065868 89.1317365 11.7065868 88.8622754 12.0958084 89.7305389 12.3353293 89.8203593 12.8143713 89.4011976 12.8143713 88.8023952 13.0239521 87.8742515 12.6646707 87.1257485 12.7844311 86.6467066 13.0538922 87.245509 13.2335329 87.5449102 13.9221557 88.7125749 14.491018 88.3832335 14.7005988 89.0419162 14.6706587 88.742515 14.8203593 88.8023952 15.1497006 89.1017964 15.1497006 89.2814371 15.8982036 88.2335329 16.0179641 87.9041916 15.8383234 87.6946108 15.3592814 86.7964072 14.8502994"></polygon>
|
|
20
|
+
</g>
|
|
21
|
+
<path d="M14.5,97 L56.5,97 C57.3284271,97 58,97.6715729 58,98.5 C58,99.3284271 57.3284271,100 56.5,100 L14.5,100 C13.6715729,100 13,99.3284271 13,98.5 C13,97.6715729 13.6715729,97 14.5,97 Z" id="Rectangle-8-Copy-37" fill="url(#linearGradient-1)"></path>
|
|
22
|
+
</g>
|
|
23
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="255px" height="110px" viewBox="0 0 255 110" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>Cards / Elements / Line</title>
|
|
4
|
+
<g id="Cards-/-Elements-/-Line" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<rect id="Rectangle" x="0" y="0" width="255" height="110"></rect>
|
|
6
|
+
<path d="M103.5,97 C104.880712,97 106,98.1192881 106,99.5 C106,100.880712 104.880712,102 103.5,102 C102.119288,102 101,100.880712 101,99.5 C101,98.1192881 102.119288,97 103.5,97 Z" id="Rectangle-8-Copy-37" fill="#FF70A6" opacity="0.899999976"></path>
|
|
7
|
+
<path d="M186.071429,97 C187.45214,97 188.571429,98.1192881 188.571429,99.5 C188.571429,100.880712 187.45214,102 186.071429,102 C184.690717,102 183.571429,100.880712 183.571429,99.5 C183.571429,98.1192881 184.690717,97 186.071429,97 Z" id="Rectangle-8-Copy-37" fill="#FFCB7D" opacity="0.899999976"></path>
|
|
8
|
+
<path d="M46.5,97 L82.5,97 C83.8807119,97 85,98.1192881 85,99.5 C85,100.880712 83.8807119,102 82.5,102 L46.5,102 C45.1192881,102 44,100.880712 44,99.5 C44,98.1192881 45.1192881,97 46.5,97 Z" id="Rectangle-8-Copy-37" fill="#B1AABD" opacity="0.3"></path>
|
|
9
|
+
<path d="M116.5,97 L165.071429,97 C166.45214,97 167.571429,98.1192881 167.571429,99.5 C167.571429,100.880712 166.45214,102 165.071429,102 L116.5,102 C115.119288,102 114,100.880712 114,99.5 C114,98.1192881 115.119288,97 116.5,97 Z" id="Rectangle-8-Copy-37" fill="#B1AABD" opacity="0.3"></path>
|
|
10
|
+
<path d="M199.071429,97 L222.071429,97 C223.45214,97 224.571429,98.1192881 224.571429,99.5 C224.571429,100.880712 223.45214,102 222.071429,102 L199.071429,102 C197.690717,102 196.571429,100.880712 196.571429,99.5 C196.571429,98.1192881 197.690717,97 199.071429,97 Z" id="Rectangle-8-Copy-37" fill="#B1AABD" opacity="0.3"></path>
|
|
11
|
+
<path d="M33.5,97 C34.8807119,97 36,98.1192881 36,99.5 C36,100.880712 34.8807119,102 33.5,102 C32.1192881,102 31,100.880712 31,99.5 C31,98.1192881 32.1192881,97 33.5,97 Z" id="Rectangle-8-Copy-37" fill="#C26CD0" opacity="0.899999976"></path>
|
|
12
|
+
<polyline id="Path" stroke="#FF7DAF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" points="12.2297025 59.5486152 45.5694607 39.6130438 78.4492625 51.8066546 111.559042 46.1937128 144.669282 53.3550276 178.008764 25.87106 211.119004 49.0969898 243.999541 51.0324441"></polyline>
|
|
13
|
+
<polyline id="Path" stroke="#FFD089" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" points="12 80.9477548 45.5697822 74.6602782 78.4497219 80.9477548 111.559502 83.7420611 144.669282 82.8108174 178.009224 49.7420611 211.119004 77.6875392 244 57.4268058"></polyline>
|
|
14
|
+
<polyline id="Path" stroke="#C87AD4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" points="12 72.3227284 45.5697822 77.548828 78.4497219 72.3227284 111.559502 69.6131115 144.669282 77.548828 178.009224 10 211.119004 81.419641 243.999541 77.3547375"></polyline>
|
|
15
|
+
</g>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="255px" height="110px" viewBox="0 0 255 110" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>Cards / Elements / Pie</title>
|
|
4
|
+
<defs>
|
|
5
|
+
<circle id="path-1" cx="43.5" cy="43.5" r="43.5"></circle>
|
|
6
|
+
</defs>
|
|
7
|
+
<g id="Cards-/-Elements-/-Pie" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
8
|
+
<rect id="Rectangle" x="0" y="0" width="255" height="110"></rect>
|
|
9
|
+
<g id="Group-6" transform="translate(24.528302, 11.113208)">
|
|
10
|
+
<mask id="mask-2" fill="white">
|
|
11
|
+
<use xlink:href="#path-1"></use>
|
|
12
|
+
</mask>
|
|
13
|
+
<use id="Oval-5" fill="#F5E6F0" xlink:href="#path-1"></use>
|
|
14
|
+
<polygon id="Rectangle" fill="#F7AACE" mask="url(#mask-2)" points="44 0 88 0 88 30.7878782 44 44"></polygon>
|
|
15
|
+
<polygon id="Rectangle" fill="#B49EFB" mask="url(#mask-2)" points="88 57.074144 88 30.7878782 44 44"></polygon>
|
|
16
|
+
<polygon id="Rectangle" fill="#C9C0E6" mask="url(#mask-2)" points="88 57.074144 88 73.978568 44 44"></polygon>
|
|
17
|
+
</g>
|
|
18
|
+
<path d="M142.5,36 C143.880712,36 145,37.1192881 145,38.5 C145,39.8807119 143.880712,41 142.5,41 C141.119288,41 140,39.8807119 140,38.5 C140,37.1192881 141.119288,36 142.5,36 Z" id="Rectangle-8-Copy-37" fill="#F7AACE" opacity="0.899999976"></path>
|
|
19
|
+
<path d="M142.5,47 C143.880712,47 145,48.1192881 145,49.5 C145,50.8807119 143.880712,52 142.5,52 C141.119288,52 140,50.8807119 140,49.5 C140,48.1192881 141.119288,47 142.5,47 Z" id="Rectangle-8-Copy-37" fill="#B49EFB" opacity="0.899999976"></path>
|
|
20
|
+
<path d="M142.5,58 C143.880712,58 145,59.1192881 145,60.5 C145,61.8807119 143.880712,63 142.5,63 C141.119288,63 140,61.8807119 140,60.5 C140,59.1192881 141.119288,58 142.5,58 Z" id="Rectangle-8-Copy-37" fill="#C9C0E6" opacity="0.899999976"></path>
|
|
21
|
+
<path d="M142.5,69 C143.880712,69 145,70.1192881 145,71.5 C145,72.8807119 143.880712,74 142.5,74 C141.119288,74 140,72.8807119 140,71.5 C140,70.1192881 141.119288,69 142.5,69 Z" id="Rectangle-8-Copy-37" fill="#F5E6F0" opacity="0.899999976"></path>
|
|
22
|
+
<path d="M154.5,36 L192.357143,36 C193.737855,36 194.857143,37.1192881 194.857143,38.5 C194.857143,39.8807119 193.737855,41 192.357143,41 L154.5,41 C153.119288,41 152,39.8807119 152,38.5 C152,37.1192881 153.119288,36 154.5,36 Z" id="Rectangle-8-Copy-37" fill="#B1AABD" opacity="0.3"></path>
|
|
23
|
+
<path d="M154.5,47 L213.785714,47 C215.166426,47 216.285714,48.1192881 216.285714,49.5 C216.285714,50.8807119 215.166426,52 213.785714,52 L154.5,52 C153.119288,52 152,50.8807119 152,49.5 C152,48.1192881 153.119288,47 154.5,47 Z" id="Rectangle-8-Copy-37" fill="#B1AABD" opacity="0.3"></path>
|
|
24
|
+
<path d="M154.5,58 L203.071429,58 C204.45214,58 205.571429,59.1192881 205.571429,60.5 C205.571429,61.8807119 204.45214,63 203.071429,63 L154.5,63 C153.119288,63 152,61.8807119 152,60.5 C152,59.1192881 153.119288,58 154.5,58 Z" id="Rectangle-8-Copy-37" fill="#B1AABD" opacity="0.3"></path>
|
|
25
|
+
<path d="M154.5,69 L224.5,69 C225.880712,69 227,70.1192881 227,71.5 C227,72.8807119 225.880712,74 224.5,74 L154.5,74 C153.119288,74 152,72.8807119 152,71.5 C152,70.1192881 153.119288,69 154.5,69 Z" id="Rectangle-8-Copy-37" fill="#B1AABD" opacity="0.3"></path>
|
|
26
|
+
</g>
|
|
27
|
+
</svg>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="255px" height="110px" viewBox="0 0 255 110" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>Cards / Elements / Table with bars</title>
|
|
4
|
+
<g id="Cards-/-Elements-/-Table-with-bars" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<rect id="Rectangle" x="0" y="0" width="255" height="110"></rect>
|
|
6
|
+
<g id="Group-4" transform="translate(20.000000, 15.000000)" fill="#B1AABD" opacity="0.429999977">
|
|
7
|
+
<path d="M2.5,0 L44.5,0 C45.8807119,-2.53632657e-16 47,1.11928813 47,2.5 C47,3.88071187 45.8807119,5 44.5,5 L2.5,5 C1.11928813,5 9.0966379e-13,3.88071187 9.09494702e-13,2.5 C9.09325613e-13,1.11928813 1.11928813,2.53632657e-16 2.5,0 Z" id="Rectangle-8-Copy-37"></path>
|
|
8
|
+
<path d="M2.5,11 L67.5,11 C68.8807119,11 70,12.1192881 70,13.5 C70,14.8807119 68.8807119,16 67.5,16 L2.5,16 C1.11928813,16 9.0966379e-13,14.8807119 9.09494702e-13,13.5 C9.09325613e-13,12.1192881 1.11928813,11 2.5,11 Z" id="Rectangle-8-Copy-37"></path>
|
|
9
|
+
<path d="M2.5,22 L56.5,22 C57.8807119,22 59,23.1192881 59,24.5 C59,25.8807119 57.8807119,27 56.5,27 L2.5,27 C1.11928813,27 9.0966379e-13,25.8807119 9.09494702e-13,24.5 C9.09325613e-13,23.1192881 1.11928813,22 2.5,22 Z" id="Rectangle-8-Copy-37"></path>
|
|
10
|
+
<path d="M2.5,33 L79.5,33 C80.8807119,33 82,34.1192881 82,35.5 C82,36.8807119 80.8807119,38 79.5,38 L2.5,38 C1.11928813,38 9.0966379e-13,36.8807119 9.09494702e-13,35.5 C9.09325613e-13,34.1192881 1.11928813,33 2.5,33 Z" id="Rectangle-8-Copy-37"></path>
|
|
11
|
+
<path d="M2.5,44 L44.5,44 C45.8807119,44 47,45.1192881 47,46.5 C47,47.8807119 45.8807119,49 44.5,49 L2.5,49 C1.11928813,49 9.0966379e-13,47.8807119 9.09494702e-13,46.5 C9.09325613e-13,45.1192881 1.11928813,44 2.5,44 Z" id="Rectangle-8-Copy-37"></path>
|
|
12
|
+
<path d="M2.5,55 L67.5,55 C68.8807119,55 70,56.1192881 70,57.5 C70,58.8807119 68.8807119,60 67.5,60 L2.5,60 C1.11928813,60 9.0966379e-13,58.8807119 9.09494702e-13,57.5 C9.09325613e-13,56.1192881 1.11928813,55 2.5,55 Z" id="Rectangle-8-Copy-37"></path>
|
|
13
|
+
<path d="M2.5,66 L56.5,66 C57.8807119,66 59,67.1192881 59,68.5 C59,69.8807119 57.8807119,71 56.5,71 L2.5,71 C1.11928813,71 9.0966379e-13,69.8807119 9.09494702e-13,68.5 C9.09325613e-13,67.1192881 1.11928813,66 2.5,66 Z" id="Rectangle-8-Copy-37"></path>
|
|
14
|
+
<path d="M2.5,77 L79.5,77 C80.8807119,77 82,78.1192881 82,79.5 C82,80.8807119 80.8807119,82 79.5,82 L2.5,82 C1.11928813,82 9.0966379e-13,80.8807119 9.09494702e-13,79.5 C9.09325613e-13,78.1192881 1.11928813,77 2.5,77 Z" id="Rectangle-8-Copy-37"></path>
|
|
15
|
+
</g>
|
|
16
|
+
<g id="Group-4" transform="translate(128.000000, 15.000000)" fill="#97C1EE">
|
|
17
|
+
<path d="M0,0 L110.5,0 C111.880712,-2.53632657e-16 113,1.11928813 113,2.5 C113,3.88071187 111.880712,5 110.5,5 L0,5 L0,5 L0,0 Z" id="Rectangle-8-Copy-37"></path>
|
|
18
|
+
<path d="M0,11 L96.5,11 C97.8807119,11 99,12.1192881 99,13.5 C99,14.8807119 97.8807119,16 96.5,16 L0,16 L0,16 L0,11 Z" id="Rectangle-8-Copy-37"></path>
|
|
19
|
+
<path d="M0,22 L76.5,22 C77.8807119,22 79,23.1192881 79,24.5 C79,25.8807119 77.8807119,27 76.5,27 L0,27 L0,27 L0,22 Z" id="Rectangle-8-Copy-37"></path>
|
|
20
|
+
<path d="M0,33 L67.5,33 C68.8807119,33 70,34.1192881 70,35.5 C70,36.8807119 68.8807119,38 67.5,38 L0,38 L0,38 L0,33 Z" id="Rectangle-8-Copy-37"></path>
|
|
21
|
+
<path d="M0,44 L60.5,44 C61.8807119,44 63,45.1192881 63,46.5 C63,47.8807119 61.8807119,49 60.5,49 L0,49 L0,49 L0,44 Z" id="Rectangle-8-Copy-37"></path>
|
|
22
|
+
<path d="M0,55 L54.5,55 C55.8807119,55 57,56.1192881 57,57.5 C57,58.8807119 55.8807119,60 54.5,60 L0,60 L0,60 L0,55 Z" id="Rectangle-8-Copy-37"></path>
|
|
23
|
+
<path d="M0,66 L50.5,66 C51.8807119,66 53,67.1192881 53,68.5 C53,69.8807119 51.8807119,71 50.5,71 L0,71 L0,71 L0,66 Z" id="Rectangle-8-Copy-37"></path>
|
|
24
|
+
<path d="M0,77 L45.5,77 C46.8807119,77 48,78.1192881 48,79.5 C48,80.8807119 46.8807119,82 45.5,82 L0,82 L0,82 L0,77 Z" id="Rectangle-8-Copy-37"></path>
|
|
25
|
+
</g>
|
|
26
|
+
</g>
|
|
27
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="255px" height="110px" viewBox="0 0 255 110" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>Cards / Elements / Treemap</title>
|
|
4
|
+
<g id="Cards-/-Elements-/-Treemap" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<rect id="Rectangle" x="0" y="0" width="255" height="110"></rect>
|
|
6
|
+
<g id="Group" transform="translate(20.000000, 10.000000)" fill="#2C81BF" stroke="#FFFFFF">
|
|
7
|
+
<rect id="Rectangle-10" x="0.5" y="0.5" width="102" height="89"></rect>
|
|
8
|
+
<path d="M154.5,0.5 L154.5,44.5 L103.5,44.5 L103.5,0.5 L154.5,0.5 Z" id="Rectangle-10-Copy-2" opacity="0.800000012"></path>
|
|
9
|
+
<path d="M154.5,45.5 L154.5,89.5 L103.5,89.5 L103.5,45.5 L154.5,45.5 Z" id="Rectangle-10-Copy-3" opacity="0.600000024"></path>
|
|
10
|
+
<path d="M214.5,0.5 L214.5,44.5 L183.5,44.5 L183.5,0.5 L214.5,0.5 Z" id="Rectangle-10-Copy-5" opacity="0.300000012"></path>
|
|
11
|
+
<path d="M214.5,45.5 L214.5,89.5 L183.5,89.5 L183.5,45.5 L214.5,45.5 Z" id="Rectangle-10-Copy-6" opacity="0.200000003"></path>
|
|
12
|
+
<path d="M182.5,0.5 L182.5,89.5 L155.5,89.5 L155.5,0.5 L182.5,0.5 Z" id="Rectangle-10-Copy-4" opacity="0.5"></path>
|
|
13
|
+
</g>
|
|
14
|
+
</g>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="255px" height="110px" viewBox="0 0 255 110" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>Cards / Elements / Word cloud</title>
|
|
4
|
+
<g id="Cards-/-Elements-/-Word-cloud" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<rect id="Rectangle" x="0" y="0" width="255" height="110"></rect>
|
|
6
|
+
<g id="Group-3" transform="translate(28.000000, 20.000000)">
|
|
7
|
+
<path d="M44.051938,47 L87.9882919,47 C91.330685,47 94.0402299,49.7095449 94.0402299,53.051938 C94.0402299,56.394331 91.330685,59.103876 87.9882919,59.103876 L44.051938,59.103876 C40.7095449,59.103876 38,56.394331 38,53.051938 C38,49.7095449 40.7095449,47 44.051938,47 Z" id="Rectangle-8-Copy-11" fill="#C9C0E6" opacity="0.600000024"></path>
|
|
8
|
+
<path d="M117.051938,58 L141.545763,58 C144.888156,58 147.597701,60.7095449 147.597701,64.051938 C147.597701,67.394331 144.888156,70.103876 141.545763,70.103876 L117.051938,70.103876 C113.709545,70.103876 111,67.394331 111,64.051938 C111,60.7095449 113.709545,58 117.051938,58 Z" id="Rectangle-8-Copy-27" fill="#FBCBA1" opacity="0.699999988"></path>
|
|
9
|
+
<path d="M73.051938,29 L116.988292,29 C120.330685,29 123.04023,31.7095449 123.04023,35.051938 C123.04023,38.394331 120.330685,41.103876 116.988292,41.103876 L73.051938,41.103876 C69.7095449,41.103876 67,38.394331 67,35.051938 C67,31.7095449 69.7095449,29 73.051938,29 Z" id="Rectangle-8-Copy-16" fill="#C9C0E6"></path>
|
|
10
|
+
<path d="M162.051938,29 L181.971051,29 C185.313444,29 188.022989,31.7095449 188.022989,35.051938 C188.022989,38.394331 185.313444,41.103876 181.971051,41.103876 L162.051938,41.103876 C158.709545,41.103876 156,38.394331 156,35.051938 C156,31.7095449 158.709545,29 162.051938,29 Z" id="Rectangle-8-Copy-29" fill="#E6C0D9"></path>
|
|
11
|
+
<path d="M12.077907,26 L47.6749666,26 C52.6885562,26 56.7528736,30.0643174 56.7528736,35.077907 C56.7528736,40.0914965 52.6885562,44.1558139 47.6749666,44.1558139 L12.077907,44.1558139 C7.06431739,44.1558139 3,40.0914965 3,35.077907 C3,30.0643174 7.06431739,26 12.077907,26 Z" id="Rectangle-8-Copy-18" fill="#E6C0D9" opacity="0.400000006"></path>
|
|
12
|
+
<path d="M100.051938,-5.15143483e-14 L130.264154,-5.15143483e-14 C133.606547,-5.03519791e-14 136.316092,2.70954492 136.316092,6.05193798 C136.316092,9.39433103 133.606547,12.103876 130.264154,12.103876 L100.051938,12.103876 C96.7095449,12.103876 94,9.39433103 94,6.05193798 C94,2.70954492 96.7095449,-5.09003607e-14 100.051938,-5.15143483e-14 Z" id="Rectangle-8-Copy-25" fill="#FBCBA1"></path>
|
|
13
|
+
<path d="M27.2363566,11 L74.8038733,11 C77.1435484,11 79.0402299,12.8966814 79.0402299,15.2363566 C79.0402299,17.5760317 77.1435484,19.4727132 74.8038733,19.4727132 L27.2363566,19.4727132 C24.8966814,19.4727132 23,17.5760317 23,15.2363566 C23,12.8966814 24.8966814,11 27.2363566,11 Z" id="Rectangle-8-Copy-17" fill="#C9C0E6" opacity="0.200000003"></path>
|
|
14
|
+
<rect id="Rectangle-8-Copy-15" fill="#E6C0D9" x="70" y="66" width="28.591954" height="4.84155038" rx="2.42077519"></rect>
|
|
15
|
+
<path d="M54.4207752,66 L58.7286501,66 C60.0656073,66 61.1494253,67.083818 61.1494253,68.4207752 C61.1494253,69.7577324 60.0656073,70.8415504 58.7286501,70.8415504 L54.4207752,70.8415504 C53.083818,70.8415504 52,69.7577324 52,68.4207752 C52,67.083818 53.083818,66 54.4207752,66 Z" id="Rectangle-8-Copy-23" fill="#C9C0E6"></path>
|
|
16
|
+
<path d="M2.42077519,12 L6.7286501,12 C8.06560732,12 9.14942529,13.083818 9.14942529,14.4207752 C9.14942529,15.7577324 8.06560732,16.8415504 6.7286501,16.8415504 L2.42077519,16.8415504 C1.08381797,16.8415504 -2.02643736e-14,15.7577324 -2.04281037e-14,14.4207752 C-2.05918337e-14,13.083818 1.08381797,12 2.42077519,12 Z" id="Rectangle-8-Copy-24" fill="#FBCBA1"></path>
|
|
17
|
+
<path d="M157.420775,47 L161.72865,47 C163.065607,47 164.149425,48.083818 164.149425,49.4207752 C164.149425,50.7577324 163.065607,51.8415504 161.72865,51.8415504 L157.420775,51.8415504 C156.083818,51.8415504 155,50.7577324 155,49.4207752 C155,48.083818 156.083818,47 157.420775,47 Z" id="Rectangle-8-Copy-30" fill="#E6C0D9"></path>
|
|
18
|
+
<path d="M147.420775,6 L162.021754,6 C163.358711,6 164.442529,7.08381797 164.442529,8.42077519 C164.442529,9.75773241 163.358711,10.8415504 162.021754,10.8415504 L147.420775,10.8415504 C146.083818,10.8415504 145,9.75773241 145,8.42077519 C145,7.08381797 146.083818,6 147.420775,6 Z" id="Rectangle-8-Copy-31" fill="#FBCBA1" opacity="0.5"></path>
|
|
19
|
+
<rect id="Rectangle-8-Copy-20" fill="#E6C0D9" x="1.65201186e-13" y="49" width="28.591954" height="4.84155038" rx="2.42077519"></rect>
|
|
20
|
+
<path d="M86.4207752,20 L101.021754,20 C102.358711,20 103.442529,21.083818 103.442529,22.4207752 C103.442529,23.7577324 102.358711,24.8415504 101.021754,24.8415504 L86.4207752,24.8415504 C85.083818,24.8415504 84,23.7577324 84,22.4207752 C84,21.083818 85.083818,20 86.4207752,20 Z" id="Rectangle-8-Copy-19" fill="#E6C0D9"></path>
|
|
21
|
+
<path d="M131.420775,33 L146.021754,33 C147.358711,33 148.442529,34.083818 148.442529,35.4207752 C148.442529,36.7577324 147.358711,37.8415504 146.021754,37.8415504 L131.420775,37.8415504 C130.083818,37.8415504 129,36.7577324 129,35.4207752 C129,34.083818 130.083818,33 131.420775,33 Z" id="Rectangle-8-Copy-28" fill="#E6C0D9"></path>
|
|
22
|
+
<path d="M102.420775,47 L145.613708,47 C146.950665,47 148.034483,48.083818 148.034483,49.4207752 C148.034483,50.7577324 146.950665,51.8415504 145.613708,51.8415504 L102.420775,51.8415504 C101.083818,51.8415504 100,50.7577324 100,49.4207752 C100,48.083818 101.083818,47 102.420775,47 Z" id="Rectangle-8-Copy-22" fill="#C9C0E6"></path>
|
|
23
|
+
<path d="M113.420775,18 L196.642443,18 C197.9794,18 199.063218,19.083818 199.063218,20.4207752 C199.063218,21.7577324 197.9794,22.8415504 196.642443,22.8415504 L113.420775,22.8415504 C112.083818,22.8415504 111,21.7577324 111,20.4207752 C111,19.083818 112.083818,18 113.420775,18 Z" id="Rectangle-8-Copy-26" fill="#E6C0D9" opacity="0.5"></path>
|
|
24
|
+
<path d="M69.4207752,-4.26325641e-14 L84.0217535,-4.26325641e-14 C85.3587108,-4.28781592e-14 86.4425287,1.08381797 86.4425287,2.42077519 C86.4425287,3.75773241 85.3587108,4.84155038 84.0217535,4.84155038 L69.4207752,4.84155038 C68.083818,4.84155038 67,3.75773241 67,2.42077519 C67,1.08381797 68.083818,-4.23869691e-14 69.4207752,-4.26325641e-14 Z" id="Rectangle-8-Copy-21" fill="#E6C0D9" opacity="0.600000024"></path>
|
|
25
|
+
</g>
|
|
26
|
+
</g>
|
|
27
|
+
</svg>
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import {makeStyles} from '@mui/styles';
|
|
2
|
+
|
|
3
|
+
export const useStyles = makeStyles({
|
|
4
|
+
config: {
|
|
5
|
+
width: '215px'
|
|
6
|
+
},
|
|
7
|
+
noBoxShadow: {
|
|
8
|
+
boxShadow: 'none'
|
|
9
|
+
},
|
|
10
|
+
viewContent: {
|
|
11
|
+
padding: '0 !important',
|
|
12
|
+
position: 'relative'
|
|
13
|
+
},
|
|
14
|
+
addedChart: {
|
|
15
|
+
backgroundColor: 'rgb(244,244,244)'
|
|
16
|
+
},
|
|
17
|
+
chartIcon: {
|
|
18
|
+
width: '100%'
|
|
19
|
+
},
|
|
20
|
+
previewChartTitle: {
|
|
21
|
+
display: 'flex',
|
|
22
|
+
alignItems: 'center',
|
|
23
|
+
position: 'relative',
|
|
24
|
+
zIndex: 1000
|
|
25
|
+
},
|
|
26
|
+
newChartChip: {
|
|
27
|
+
height: 20,
|
|
28
|
+
fontSize: '10px',
|
|
29
|
+
marginRight: 5,
|
|
30
|
+
color: '#fff',
|
|
31
|
+
backgroundColor: 'rgba(140,193,82,255)'
|
|
32
|
+
},
|
|
33
|
+
backdrop: {
|
|
34
|
+
position: 'absolute',
|
|
35
|
+
zIndex: 1,
|
|
36
|
+
backgroundColor: 'rgba(0, 0, 0, 0)'
|
|
37
|
+
},
|
|
38
|
+
backdropRemoved: {
|
|
39
|
+
backgroundColor: 'rgba(255, 255, 255, 0.5)'
|
|
40
|
+
},
|
|
41
|
+
backdropAdded: {
|
|
42
|
+
backgroundColor: 'rgba(230, 230, 230, 0.5)'
|
|
43
|
+
},
|
|
44
|
+
button: {
|
|
45
|
+
border: '1px solid grey'
|
|
46
|
+
},
|
|
47
|
+
chartTitle: {
|
|
48
|
+
fontSize: '14px',
|
|
49
|
+
lineHeight: 'inherit',
|
|
50
|
+
whiteSpace: 'nowrap',
|
|
51
|
+
overflow: 'hidden',
|
|
52
|
+
textOverflow: 'ellipsis',
|
|
53
|
+
fontWeight: 500,
|
|
54
|
+
padding: '10px'
|
|
55
|
+
}
|
|
56
|
+
});
|