@govtechsg/oobee 0.10.20
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/.dockerignore +22 -0
- package/.github/pull_request_template.md +11 -0
- package/.github/workflows/docker-test.yml +54 -0
- package/.github/workflows/image.yml +107 -0
- package/.github/workflows/publish.yml +18 -0
- package/.idea/modules.xml +8 -0
- package/.idea/purple-a11y.iml +9 -0
- package/.idea/vcs.xml +6 -0
- package/.prettierrc.json +12 -0
- package/.vscode/extensions.json +5 -0
- package/.vscode/settings.json +10 -0
- package/CODE_OF_CONDUCT.md +128 -0
- package/DETAILS.md +163 -0
- package/Dockerfile +60 -0
- package/INSTALLATION.md +146 -0
- package/INTEGRATION.md +785 -0
- package/LICENSE +22 -0
- package/README.md +587 -0
- package/SECURITY.md +5 -0
- package/__mocks__/mock-report.html +1431 -0
- package/__mocks__/mockFunctions.ts +32 -0
- package/__mocks__/mockIssues.ts +64 -0
- package/__mocks__/mock_all_issues/000000001.json +64 -0
- package/__mocks__/mock_all_issues/000000002.json +53 -0
- package/__mocks__/mock_all_issues/fake-file.txt +0 -0
- package/__tests__/logs.test.ts +25 -0
- package/__tests__/mergeAxeResults.test.ts +278 -0
- package/__tests__/utils.test.ts +118 -0
- package/a11y-scan-results.zip +0 -0
- package/eslint.config.js +53 -0
- package/exclusions.txt +2 -0
- package/gitlab-pipeline-template.yml +54 -0
- package/jest.config.js +1 -0
- package/package.json +96 -0
- package/scripts/copyFiles.js +44 -0
- package/scripts/install_oobee_dependencies.cmd +13 -0
- package/scripts/install_oobee_dependencies.command +101 -0
- package/scripts/install_oobee_dependencies.ps1 +110 -0
- package/scripts/oobee_shell.cmd +13 -0
- package/scripts/oobee_shell.command +11 -0
- package/scripts/oobee_shell.sh +55 -0
- package/scripts/oobee_shell_ps.ps1 +54 -0
- package/src/cli.ts +401 -0
- package/src/combine.ts +240 -0
- package/src/constants/__tests__/common.test.ts +44 -0
- package/src/constants/cliFunctions.ts +305 -0
- package/src/constants/common.ts +1840 -0
- package/src/constants/constants.ts +443 -0
- package/src/constants/errorMeta.json +319 -0
- package/src/constants/itemTypeDescription.ts +11 -0
- package/src/constants/oobeeAi.ts +141 -0
- package/src/constants/questions.ts +181 -0
- package/src/constants/sampleData.ts +187 -0
- package/src/crawlers/__tests__/commonCrawlerFunc.test.ts +51 -0
- package/src/crawlers/commonCrawlerFunc.ts +656 -0
- package/src/crawlers/crawlDomain.ts +877 -0
- package/src/crawlers/crawlIntelligentSitemap.ts +156 -0
- package/src/crawlers/crawlLocalFile.ts +193 -0
- package/src/crawlers/crawlSitemap.ts +356 -0
- package/src/crawlers/custom/extractAndGradeText.ts +57 -0
- package/src/crawlers/custom/flagUnlabelledClickableElements.ts +964 -0
- package/src/crawlers/custom/utils.ts +486 -0
- package/src/crawlers/customAxeFunctions.ts +82 -0
- package/src/crawlers/pdfScanFunc.ts +468 -0
- package/src/crawlers/runCustom.ts +117 -0
- package/src/index.ts +173 -0
- package/src/logs.ts +66 -0
- package/src/mergeAxeResults.ts +964 -0
- package/src/npmIndex.ts +284 -0
- package/src/screenshotFunc/htmlScreenshotFunc.ts +411 -0
- package/src/screenshotFunc/pdfScreenshotFunc.ts +762 -0
- package/src/static/ejs/partials/components/categorySelector.ejs +4 -0
- package/src/static/ejs/partials/components/categorySelectorDropdown.ejs +57 -0
- package/src/static/ejs/partials/components/pagesScannedModal.ejs +70 -0
- package/src/static/ejs/partials/components/reportSearch.ejs +47 -0
- package/src/static/ejs/partials/components/ruleOffcanvas.ejs +105 -0
- package/src/static/ejs/partials/components/scanAbout.ejs +263 -0
- package/src/static/ejs/partials/components/screenshotLightbox.ejs +13 -0
- package/src/static/ejs/partials/components/summaryScanAbout.ejs +141 -0
- package/src/static/ejs/partials/components/summaryScanResults.ejs +16 -0
- package/src/static/ejs/partials/components/summaryTable.ejs +20 -0
- package/src/static/ejs/partials/components/summaryWcagCompliance.ejs +94 -0
- package/src/static/ejs/partials/components/topFive.ejs +6 -0
- package/src/static/ejs/partials/components/wcagCompliance.ejs +70 -0
- package/src/static/ejs/partials/footer.ejs +21 -0
- package/src/static/ejs/partials/header.ejs +230 -0
- package/src/static/ejs/partials/main.ejs +40 -0
- package/src/static/ejs/partials/scripts/bootstrap.ejs +8 -0
- package/src/static/ejs/partials/scripts/categorySelectorDropdownScript.ejs +190 -0
- package/src/static/ejs/partials/scripts/categorySummary.ejs +141 -0
- package/src/static/ejs/partials/scripts/highlightjs.ejs +335 -0
- package/src/static/ejs/partials/scripts/popper.ejs +7 -0
- package/src/static/ejs/partials/scripts/reportSearch.ejs +248 -0
- package/src/static/ejs/partials/scripts/ruleOffcanvas.ejs +801 -0
- package/src/static/ejs/partials/scripts/screenshotLightbox.ejs +71 -0
- package/src/static/ejs/partials/scripts/summaryScanResults.ejs +14 -0
- package/src/static/ejs/partials/scripts/summaryTable.ejs +78 -0
- package/src/static/ejs/partials/scripts/utils.ejs +441 -0
- package/src/static/ejs/partials/styles/bootstrap.ejs +12375 -0
- package/src/static/ejs/partials/styles/highlightjs.ejs +54 -0
- package/src/static/ejs/partials/styles/styles.ejs +1843 -0
- package/src/static/ejs/partials/styles/summaryBootstrap.ejs +12458 -0
- package/src/static/ejs/partials/summaryHeader.ejs +70 -0
- package/src/static/ejs/partials/summaryMain.ejs +75 -0
- package/src/static/ejs/report.ejs +420 -0
- package/src/static/ejs/summary.ejs +47 -0
- package/src/static/mustache/.prettierrc +4 -0
- package/src/static/mustache/Attention Deficit.mustache +11 -0
- package/src/static/mustache/Blind.mustache +11 -0
- package/src/static/mustache/Cognitive.mustache +7 -0
- package/src/static/mustache/Colorblindness.mustache +20 -0
- package/src/static/mustache/Deaf.mustache +12 -0
- package/src/static/mustache/Deafblind.mustache +7 -0
- package/src/static/mustache/Dyslexia.mustache +14 -0
- package/src/static/mustache/Low Vision.mustache +7 -0
- package/src/static/mustache/Mobility.mustache +15 -0
- package/src/static/mustache/Sighted Keyboard Users.mustache +42 -0
- package/src/static/mustache/report.mustache +1709 -0
- package/src/types/print-message.d.ts +28 -0
- package/src/types/types.ts +46 -0
- package/src/types/xpath-to-css.d.ts +3 -0
- package/src/utils.ts +332 -0
- package/tsconfig.json +15 -0
@@ -0,0 +1,7 @@
|
|
1
|
+
<svg data-toggle="tooltip" title="Cognitive" width="16px" height="14px" viewBox="0 0 16 14">
|
2
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
3
|
+
<g class="{{impact}}-fill-icon" transform="translate(-37.000000, -104.000000)" fill-rule="nonzero">
|
4
|
+
<path d="M52.2568421,109.785263 C52.2568421,109.044211 51.8189474,108.370526 51.1452632,108.067368 C50.9768421,107.023158 50.1178947,106.214737 49.0736842,106.130526 C48.7873684,105.541053 48.1810526,105.153684 47.5073684,105.153684 C47.5073684,105.153684 47.5073684,105.153684 47.5073684,105.153684 C47.5073684,105.153684 47.5073684,105.153684 47.5073684,105.153684 C47.4231579,105.153684 47.3389474,105.170526 47.2547368,105.170526 C47.2547368,105.170526 47.2378947,105.170526 47.2378947,105.170526 C47.1536842,105.187368 47.0526316,105.204211 46.9684211,105.237895 C46.6315789,104.968421 46.2105263,104.8 45.7726316,104.8 C45.4189474,104.8 45.0652632,104.901053 44.7789474,105.103158 C44.4757895,104.968421 44.1389474,104.901053 43.7852632,104.901053 C43.0947368,104.901053 42.4378947,105.187368 41.9831579,105.709474 C41.8315789,105.675789 41.6968421,105.658947 41.5452632,105.658947 C40.9389474,105.658947 40.3831579,105.962105 40.0631579,106.484211 C40.0463158,106.484211 40.0126316,106.484211 39.9957895,106.484211 C39.9621053,106.484211 39.9284211,106.484211 39.9115789,106.484211 C39.8778947,106.484211 39.8442105,106.501053 39.8105263,106.501053 C39.7768421,106.501053 39.76,106.517895 39.7263158,106.517895 C39.6926316,106.517895 39.6589474,106.534737 39.6252632,106.551579 C39.5915789,106.551579 39.5747368,106.568421 39.5410526,106.568421 C39.5073684,106.585263 39.4736842,106.585263 39.4568421,106.602105 C39.4231579,106.618947 39.3894737,106.618947 39.3726316,106.635789 C39.3557895,106.652632 39.3221053,106.652632 39.3052632,106.669474 C39.2715789,106.686316 39.2378947,106.703158 39.2042105,106.72 C39.2042105,106.72 39.2042105,106.72 39.2042105,106.72 C38.6147368,107.04 38.2105263,107.663158 38.16,108.370526 C38.16,108.370526 38.16,108.387368 38.16,108.387368 C37.6210526,108.892632 37.3178947,109.616842 37.3178947,110.357895 C37.3178947,111.856842 38.5473684,113.086316 40.0463158,113.086316 C40.1978947,113.086316 40.3663158,113.069474 40.5178947,113.052632 C40.72,113.12 40.9389474,113.153684 41.1578947,113.170526 C41.5957895,114.248421 42.4715789,114.821053 43.6673684,114.821053 C44.8126316,114.821053 46.1936842,115.983158 46.1936842,117.347368 L46.1936842,117.6 L48.1136842,117.6 L47.8947368,116.033684 C49.2252632,116.168421 50.4884211,115.309474 50.8252632,113.978947 C50.8757895,113.743158 50.9094737,113.507368 50.9094737,113.288421 C51.7010526,113.002105 52.2568421,112.244211 52.2568421,111.385263 C52.2568421,111.098947 52.2063158,110.829474 52.0884211,110.576842 C52.1894737,110.324211 52.2568421,110.054737 52.2568421,109.785263 Z M51.5326316,110.694737 C51.6505263,110.913684 51.7010526,111.132632 51.7010526,111.385263 C51.7010526,111.957895 51.3642105,112.48 50.8421053,112.715789 C50.6231579,111.722105 49.8484211,110.913684 48.8547368,110.661053 C48.7031579,110.627368 48.5515789,110.711579 48.5178947,110.863158 C48.4842105,111.014737 48.5684211,111.166316 48.72,111.2 C49.6126316,111.418947 50.2694737,112.176842 50.3536842,113.086316 C50.3873684,113.338947 50.3536842,113.591579 50.3031579,113.844211 C50,115.023158 48.8210526,115.730526 47.6421053,115.427368 L47.2547368,115.326316 L47.4905263,117.044211 L46.7157895,117.044211 C46.5473684,115.461053 44.9642105,114.231579 43.6505263,114.231579 C42.7410526,114.231579 42.1010526,113.861053 41.7305263,113.12 C41.7305263,113.103158 41.7305263,113.086316 41.7136842,113.069474 C41.4273684,112.48 41.68,111.755789 42.2863158,111.469474 C42.4210526,111.402105 42.4884211,111.233684 42.4210526,111.098947 C42.3536842,110.964211 42.1852632,110.896842 42.0505263,110.964211 C41.4105263,111.267368 41.0568421,111.907368 41.0568421,112.564211 C40.9052632,112.547368 40.7536842,112.513684 40.6189474,112.463158 L40.5515789,112.429474 L40.4842105,112.446316 C40.3494737,112.48 40.1978947,112.496842 40.0463158,112.496842 C38.8505263,112.496842 37.8568421,111.52 37.8568421,110.307368 C37.8568421,109.869474 37.9915789,109.431579 38.2442105,109.077895 C38.4463158,109.717895 38.9852632,110.223158 39.6421053,110.391579 C39.5915789,110.475789 39.5578947,110.56 39.5410526,110.644211 C39.4736842,110.947368 39.5073684,111.250526 39.6757895,111.52 C39.7263158,111.604211 39.8105263,111.654737 39.9115789,111.654737 C39.9621053,111.654737 40.0126316,111.637895 40.0463158,111.621053 C40.1810526,111.536842 40.2147368,111.368421 40.1473684,111.250526 C40.0631579,111.115789 40.0463158,110.947368 40.08,110.795789 C40.1136842,110.644211 40.2147368,110.509474 40.3494737,110.425263 C40.4842105,110.341053 40.5178947,110.172632 40.4505263,110.054737 C40.3831579,109.953684 40.2652632,109.903158 40.1473684,109.936842 C39.3557895,109.92 38.6989474,109.263158 38.6989474,108.471579 C38.6989474,107.663158 39.3557895,107.006316 40.1642105,107.006316 C40.1810526,107.006316 40.1810526,107.006316 40.1978947,107.006316 L40.4168421,107.023158 L40.5010526,106.854737 C40.7031579,106.433684 41.1242105,106.181053 41.5789474,106.181053 C41.7305263,106.181053 41.8652632,106.214737 42.0168421,106.265263 L42.2021053,106.332632 L42.32,106.164211 C42.6736842,105.692632 43.2294737,105.423158 43.8189474,105.423158 C44.1221053,105.423158 44.4421053,105.507368 44.7115789,105.642105 L44.88,105.726316 L45.0147368,105.608421 C45.2336842,105.423158 45.5031579,105.322105 45.7894737,105.322105 C46.0252632,105.322105 46.2610526,105.389474 46.4463158,105.524211 C46.0421053,105.844211 45.7726316,106.332632 45.7726316,106.888421 C45.7726316,107.04 45.8905263,107.157895 46.0421053,107.157895 C46.1936842,107.157895 46.3115789,107.04 46.3115789,106.888421 C46.3115789,106.433684 46.5642105,106.046316 46.9178947,105.844211 L47.0021053,105.810526 C47.1705263,105.743158 47.3389474,105.692632 47.5073684,105.692632 C48.0126316,105.692632 48.4505263,106.012632 48.6357895,106.484211 L48.7031579,106.669474 L48.8884211,106.669474 C49.7978947,106.669474 50.5557895,107.393684 50.6231579,108.286316 L50.64,108.471579 L50.8084211,108.522105 C51.3473684,108.707368 51.7178947,109.212632 51.7178947,109.785263 C51.7178947,110.004211 51.6673684,110.24 51.5494737,110.425263 L51.4821053,110.56 L51.5326316,110.694737 Z M45.7389474,112.092632 C45.7389474,111.587368 45.4863158,111.115789 45.0652632,110.829474 C45.0652632,110.829474 45.0652632,110.829474 45.0652632,110.829474 C44.3410526,110.492632 43.8357895,109.802105 43.7347368,109.010526 C43.7178947,108.892632 43.8021053,108.774737 43.92,108.757895 C44.0378947,108.741053 44.1557895,108.825263 44.1726316,108.943158 C44.2736842,109.667368 44.7621053,110.273684 45.4526316,110.509474 C45.9410526,110.677895 46.4631579,110.644211 46.9347368,110.425263 C47.4063158,110.206316 47.7431579,109.802105 47.9115789,109.313684 C47.9452632,109.195789 48.08,109.145263 48.1978947,109.178947 C48.3157895,109.212632 48.3663158,109.347368 48.3326316,109.465263 C48.1305263,110.071579 47.6926316,110.543158 47.12,110.812632 C46.8,110.964211 46.4463158,111.048421 46.0926316,111.048421 C46.0252632,111.048421 45.9578947,111.048421 45.8736842,111.031579 C46.0589474,111.334737 46.1768421,111.688421 46.1768421,112.075789 C46.1768421,112.193684 46.0757895,112.294737 45.9578947,112.294737 C45.84,112.294737 45.7389474,112.210526 45.7389474,112.092632 Z M49.8989474,109.566316 C49.8989474,109.684211 49.7978947,109.785263 49.68,109.785263 C49.5621053,109.785263 49.4610526,109.684211 49.4610526,109.566316 C49.4610526,108.572632 48.6526316,107.764211 47.6589474,107.764211 C47.5410526,107.764211 47.44,107.663158 47.44,107.545263 C47.44,107.427368 47.5410526,107.326316 47.6589474,107.326316 C48.8884211,107.326316 49.8989474,108.336842 49.8989474,109.566316 Z M44.1052632,107.309474 C44.1052632,107.191579 44.2063158,107.090526 44.3242105,107.090526 C45.2842105,107.090526 46.0757895,107.865263 46.0757895,108.842105 C46.0757895,108.96 45.9747368,109.061053 45.8568421,109.061053 C45.7389474,109.061053 45.6378947,108.96 45.6378947,108.842105 C45.6378947,108.117895 45.0484211,107.528421 44.3242105,107.528421 C44.2063158,107.528421 44.1052632,107.427368 44.1052632,107.309474 Z M43.5831579,112.311579 C43.5494737,112.378947 43.4652632,112.412632 43.3978947,112.412632 C43.3642105,112.412632 43.3136842,112.395789 43.28,112.378947 C43.1789474,112.311579 43.1452632,112.176842 43.2126316,112.075789 C43.5831579,111.486316 43.3978947,110.711579 42.8084211,110.341053 C42.7073684,110.273684 42.6736842,110.138947 42.7410526,110.037895 C42.8084211,109.936842 42.9431579,109.903158 43.0442105,109.970526 C43.8357895,110.475789 44.0715789,111.52 43.5831579,112.311579 Z M43.3810526,108.437895 C43.0442105,108.437895 42.7410526,108.286316 42.5052632,108.067368 C42.1178947,108.623158 41.4778947,108.926316 40.8378947,108.926316 C40.5010526,108.926316 40.1473684,108.842105 39.8273684,108.656842 C39.7263158,108.589474 39.6926316,108.454737 39.7431579,108.353684 C39.8105263,108.252632 39.9452632,108.218947 40.0463158,108.269474 C40.8042105,108.707368 41.7810526,108.454737 42.2357895,107.68 C42.1515789,107.494737 42.1010526,107.292632 42.1010526,107.090526 C42.1010526,106.972632 42.2021053,106.871579 42.32,106.871579 C42.4378947,106.871579 42.5389474,106.972632 42.5389474,107.090526 C42.5221053,107.562105 42.9094737,107.966316 43.3810526,107.983158 C43.4989474,107.983158 43.6,108.084211 43.6,108.202105 C43.6,108.353684 43.4989474,108.437895 43.3810526,108.437895 C43.3810526,108.437895 43.3810526,108.437895 43.3810526,108.437895 Z M48.5178947,112.715789 C48.6189474,112.783158 48.6357895,112.917895 48.5684211,113.018947 C48.1473684,113.625263 47.4736842,113.962105 46.7831579,113.962105 C46.3621053,113.962105 45.9410526,113.844211 45.5705263,113.591579 C45.4694737,113.524211 45.4526316,113.389474 45.52,113.288421 C45.5873684,113.187368 45.7221053,113.170526 45.8231579,113.237895 C46.2105263,113.490526 46.6652632,113.591579 47.12,113.507368 C47.5747368,113.423158 47.9621053,113.170526 48.2315789,112.783158 C48.2821053,112.682105 48.4168421,112.648421 48.5178947,112.715789 Z"></path>
|
5
|
+
</g>
|
6
|
+
</g>
|
7
|
+
</svg>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<svg data-toggle="tooltip" title="Colorblindness" width="15px" height="14px" viewBox="0 0 413.8 413.8">
|
2
|
+
<g class="{{impact}}-fill-icon">
|
3
|
+
<path d="M363.1,50.9c-17.1-25.9-44.2-42-80.7-48C270.5,1,258.7,0,247.3,0C187.2,0,134.4,26.5,94.4,76.7
|
4
|
+
c-25.9,32.6-44.9,73.5-54.9,118.4c-9.6,42.9-10.1,87.1-1.5,124.5l0.1,0.3c7.5,30.1,34.7,72.4,71.6,72.4c11.3,0,28-4.2,43.9-24.3
|
5
|
+
c6.6-8.2,11.9-16.5,16.7-23.8c12.6-19.4,18.4-26.8,29.1-26.8c2.5,0,5.4,0.4,8.6,1.1c8.9-26.4,17.5-51.7,20.5-58.9
|
6
|
+
c2.9-7.2,8.4-17.2,16.3-29.6c-0.6-1.6-1.2-3.2-1.6-4.8c-4-14.4-2.1-31.7,5.3-49.8c7.3-17.8,18.7-32.7,33-43.2
|
7
|
+
c13-9.5,27.6-14.7,41.2-14.9h0.2c2.4,0,4.7,0.5,6.9,1.4c3.8,1.6,7,4.4,9,8c3.2,5.8,3,13-0.6,18.6c-2,3.2-1.7,5.4,2.4,16.4
|
8
|
+
c4.8,12.6,11.3,29.8,3.2,52c-9.5,26.1-24.5,37.4-35.5,42.3c-3.2,14.4-6.3,25.4-9.2,32.6c-0.9,2.1-2.5,5.8-4.7,10.5
|
9
|
+
c13.4-10.2,26.3-23.4,38.1-39.4c27.2-36.7,45.5-83.5,48.9-125.2C384,102,377.7,73.1,363.1,50.9z M102.2,244.8
|
10
|
+
c-16.6,0-30-13.4-30-30c0-16.6,13.4-30,30-30c16.6,0,30,13.4,30,30C132.2,231.3,118.8,244.8,102.2,244.8z M135.6,164.8
|
11
|
+
c-16.6,0-30-13.4-30-30s13.4-30,30-30c16.6,0,30,13.4,30,30S152.1,164.8,135.6,164.8z M195.5,104.8c-16.6,0-30-13.4-30-30
|
12
|
+
c0-16.6,13.4-30,30-30s30,13.4,30,30C225.5,91.3,212.1,104.8,195.5,104.8z M288.3,98.3c-16.6,0-30-13.4-30-30s13.4-30,30-30
|
13
|
+
c16.6,0,30,13.4,30,30S304.8,98.3,288.3,98.3z"/>
|
14
|
+
<path d="M324.9,133.9c-0.4-0.6-0.9-1.1-1.6-1.4c-0.4-0.2-0.8-0.2-1.2-0.2c-19.6,0.2-46.9,15.6-60.5,48.7
|
15
|
+
c-6.2,15.1-7.8,29-4.7,40.2c0.8,2.9,1.9,5.6,3.3,8.1l35.9,14.9c1.8-0.5,3.5-1.1,5.3-1.8c8.3-3.7,19.9-12.5,27.7-33.9
|
16
|
+
c6.2-16.9,1.2-30-3.1-41.5c-4.2-11-7.5-19.7-1.1-29.8C325.4,136.2,325.4,134.9,324.9,133.9z"/>
|
17
|
+
<path d="M241.6,265.3c-6.3,15.5-42.3,124.5-43.8,129.1c-2.4,7.4,1.3,15.4,8.4,18.3c7.2,2.9,15.4-0.2,18.9-7.1
|
18
|
+
c2.2-4.4,53.1-107.4,59.4-122.7c3.1-7.7,6.2-19.8,8.6-30.9l-35.9-14.9C251.1,246.7,244.8,257.5,241.6,265.3z"/>
|
19
|
+
</g>
|
20
|
+
</svg>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<svg data-toggle="tooltip" title="Deaf" width="13px" height="14px" viewBox="0 0 13 14">
|
2
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="square">
|
3
|
+
<g class="{{impact}}-stroke-icon" transform="translate(-74.000000, -86.000000)">
|
4
|
+
<g transform="translate(74.800000, 86.800000)">
|
5
|
+
<path d="M7.33662609,4.90685217 C7.45127744,4.67945349 7.5116633,4.42857594 7.51304348,4.17391304 C7.51304348,3.25183764 6.76555367,2.50434783 5.84347826,2.50434783 C4.92140285,2.50434783 4.17391304,3.25183764 4.17391304,4.17391304"></path>
|
6
|
+
<line x1="10.8521739" y1="1.39130435" x2="11.4086957" y2="0.834782609"></line>
|
7
|
+
<path d="M3.35693913,12.0353391 C3.74638057,12.3485102 4.23069704,12.5200226 4.73043478,12.5217391 L4.72097391,12.5217391 C5.95088696,12.5217391 6.7021913,11.5005217 6.94706087,10.2956522 C7.51304348,7.51304348 9.73913043,7.51304348 9.73913043,4.17391304 C9.73913043,2.02240378 7.99498752,0.278260928 5.84347826,0.278260928 C3.691969,0.278260928 1.94782609,2.02240378 1.94782609,4.17391304"></path>
|
8
|
+
<line x1="0.27826087" y1="11.9652174" x2="5.84347826" y2="6.4"></line>
|
9
|
+
</g>
|
10
|
+
</g>
|
11
|
+
</g>
|
12
|
+
</svg>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<svg data-toggle="tooltip" title="Deafblind" width="15px" height="14px" viewBox="0 0 10 14">
|
2
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
3
|
+
<g class="{{impact}}-fill-icon" transform="translate(-37.000000, -86.000000)" fill-rule="nonzero">
|
4
|
+
<path d="M45.6648623,92.2682793 C45.4764355,92.2682793 45.2960951,92.3209167 45.140624,92.4193258 L45.140624,92.3390728 C45.1394034,91.7977464 44.6990798,91.3575754 44.1594317,91.3575754 L44.1576008,91.3575754 C43.917452,91.3575754 43.6969851,91.4442364 43.5261042,91.5882646 C43.4798748,91.498247 43.4196087,91.4149425 43.3459163,91.3414027 C43.1606936,91.1560274 42.9144419,91.0539565 42.6520176,91.0539565 L42.6512547,91.0539565 C42.4584034,91.0541091 42.2789784,91.1110186 42.1268638,91.2075968 L42.1268638,89.587737 C42.1268638,89.0459529 41.68593,88.6053241 41.1441458,88.6053241 C40.6026668,88.6053241 40.1621907,89.0459529 40.1621907,89.587737 L40.1621907,92.1494255 C39.8596399,92.0282831 39.5384752,92.0145516 39.297411,92.1314219 C39.0784698,92.2374597 38.9530554,92.4394654 38.9530554,92.6854119 L38.9535131,95.5488883 C38.953208,96.5761574 39.3532525,97.5420925 40.0799542,98.2689468 C40.8065034,98.9954959 41.7724385,99.395693 42.799555,99.3959982 C44.9206147,99.395693 46.6465123,97.6697955 46.6468174,95.5485831 L46.6468174,93.250387 C46.6468174,92.7087554 46.2061887,92.2682793 45.6648623,92.2682793 Z M46,95.5192361 C45.9997074,97.3112094 44.5416076,98.7693092 42.7496342,98.7696018 C41.8818849,98.7693092 41.0659284,98.4311927 40.4521687,97.8174331 C39.8382628,97.2035271 39.5002926,96.3874243 39.5004389,95.5193824 L39.5,92.7734846 C39.5,92.7053053 39.5239944,92.6658023 39.58281,92.6372724 C39.7200464,92.5705562 39.9833997,92.5987935 40.2204178,92.7490513 L40.2204178,94.8475387 C40.2204178,94.9688275 40.3187364,95.0669998 40.4398789,95.0669998 C40.5610215,95.0669998 40.65934,94.9688275 40.65934,94.8475387 L40.65934,89.8031512 C40.65934,89.5257524 40.8847998,89.3 41.1620524,89.3 C41.4395975,89.3 41.6654962,89.5256061 41.6654962,89.8031512 L41.6654962,92.1512391 L41.6652036,93.4514732 C41.6652036,93.5726158 41.7633759,93.6709343 41.8846647,93.6709343 L41.8849573,93.6709343 C42.0060999,93.6709343 42.1044185,93.5727621 42.1044185,93.4514732 L42.1044185,92.1513854 C42.1044185,91.8741328 42.3301708,91.6483805 42.6075697,91.6482342 L42.6080086,91.6482342 C42.7420262,91.6482342 42.8679969,91.7004659 42.9628042,91.7951268 C43.0576114,91.8900804 43.1098431,92.01649 43.1096968,92.1515317 L43.110282,93.4514732 C43.110282,93.5727621 43.2086006,93.670788 43.3297432,93.670788 L43.3298895,93.670788 C43.451032,93.670788 43.5492043,93.5724694 43.5492043,93.4513269 L43.5487654,92.4318568 C43.554764,92.159286 43.7780291,91.939386 44.0517703,91.939386 L44.0527945,91.939386 C44.3293155,91.939386 44.5546289,92.164992 44.5552142,92.441952 L44.5546289,93.9221442 C44.5546289,94.0432867 44.6528012,94.1416053 44.7739438,94.1417516 C44.7740901,94.1417516 44.7740901,94.1417516 44.7740901,94.1417516 C44.8952326,94.1417516 44.9935512,94.043433 44.9935512,93.9222905 L44.9938438,93.3156999 C44.9936975,93.181536 45.0456367,93.0552727 45.1405902,92.9603192 C45.2355437,92.8652193 45.3622459,92.812695 45.4968488,92.812695 C45.7741013,92.812695 45.9998537,93.038301 45.9998537,93.3155536 L45.9998537,95.5192361 L46,95.5192361 Z M44.945484,89.4311979 C45.1561863,89.4311979 45.3272198,89.2603169 45.3272198,89.0499197 C45.3272198,88.8392174 45.1561863,88.6683365 44.945484,88.6683365 C44.7347817,88.6683365 44.5640533,88.8392174 44.5640533,89.0499197 C44.5640533,89.2603169 44.7347817,89.4311979 44.945484,89.4311979 Z M39.4357941,89.0499197 C39.4357941,88.8392174 39.2647606,88.6683365 39.0540583,88.6683365 C38.843356,88.6683365 38.6726276,88.8392174 38.6726276,89.0499197 C38.6726276,89.2603169 38.843356,89.4311979 39.0540583,89.4311979 C39.2647606,89.4311979 39.4357941,89.2603169 39.4357941,89.0499197 Z M46.4182642,88.6683365 C46.2075619,88.6683365 46.0368335,88.8392174 46.0368335,89.0499197 C46.0368335,89.2603169 46.2075619,89.4311979 46.4182642,89.4311979 C46.6289665,89.4311979 46.8,89.2603169 46.8,89.0499197 C46.8,88.8392174 46.6289665,88.6683365 46.4182642,88.6683365 Z M41.9997711,88.0969533 C42.2104735,88.0969533 42.381507,87.9260724 42.381507,87.7156752 C42.381507,87.5049729 42.2104735,87.334092 41.9997711,87.334092 C41.7890688,87.334092 41.6183405,87.5049729 41.6183405,87.7156752 C41.6183405,87.9260724 41.7890688,88.0969533 41.9997711,88.0969533 Z M43.4725513,88.0969533 C43.6832536,88.0969533 43.8542871,87.9260724 43.8542871,87.7156752 C43.8542871,87.5049729 43.6832536,87.334092 43.4725513,87.334092 C43.261849,87.334092 43.0911206,87.5049729 43.0911206,87.7156752 C43.0911206,87.9260724 43.261849,88.0969533 43.4725513,88.0969533 Z M37.5814307,87.334092 C37.3707284,87.334092 37.2,87.5049729 37.2,87.7156752 C37.2,87.9260724 37.3707284,88.0969533 37.5814307,88.0969533 C37.792133,88.0969533 37.9630139,87.9260724 37.9630139,87.7156752 C37.9630139,87.5049729 37.792133,87.334092 37.5814307,87.334092 Z M46.4182642,88.0969533 C46.6289665,88.0969533 46.8,87.9260724 46.8,87.7156752 C46.8,87.5049729 46.6289665,87.334092 46.4182642,87.334092 C46.2075619,87.334092 46.0368335,87.5049729 46.0368335,87.7156752 C46.0368335,87.9260724 46.2075619,88.0969533 46.4182642,88.0969533 Z M39.0540583,88.0969533 C39.2647606,88.0969533 39.4357941,87.9260724 39.4357941,87.7156752 C39.4357941,87.5049729 39.2647606,87.334092 39.0540583,87.334092 C38.843356,87.334092 38.6726276,87.5049729 38.6726276,87.7156752 C38.6726276,87.9260724 38.8435085,88.0969533 39.0540583,88.0969533 Z M40.526991,88.0969533 C40.7376933,88.0969533 40.9087268,87.9260724 40.9087268,87.7156752 C40.9087268,87.5049729 40.7376933,87.334092 40.526991,87.334092 C40.3162887,87.334092 40.1455603,87.5049729 40.1455603,87.7156752 C40.1455603,87.9260724 40.3162887,88.0969533 40.526991,88.0969533 Z M43.4725513,89.4319607 C43.6832536,89.4319607 43.8542871,89.2610798 43.8542871,89.0506826 C43.8542871,88.8399803 43.6832536,88.6690993 43.4725513,88.6690993 C43.261849,88.6690993 43.0911206,88.8399803 43.0911206,89.0506826 C43.0911206,89.2610798 43.261849,89.4319607 43.4725513,89.4319607 Z M44.945484,86.7628614 C45.1561863,86.7628614 45.3272198,86.5919804 45.3272198,86.3815833 C45.3272198,86.1708809 45.1561863,86 44.945484,86 C44.7347817,86 44.5640533,86.1708809 44.5640533,86.3815833 C44.5640533,86.5919804 44.7347817,86.7628614 44.945484,86.7628614 Z M43.4725513,86.7628614 C43.6832536,86.7628614 43.8542871,86.5919804 43.8542871,86.3815833 C43.8542871,86.1708809 43.6832536,86 43.4725513,86 C43.261849,86 43.0911206,86.1708809 43.0911206,86.3815833 C43.0911206,86.5919804 43.261849,86.7628614 43.4725513,86.7628614 Z M40.526991,86.7628614 C40.7376933,86.7628614 40.9087268,86.5919804 40.9087268,86.3815833 C40.9087268,86.1708809 40.7376933,86 40.526991,86 C40.3162887,86 40.1455603,86.1708809 40.1455603,86.3815833 C40.1455603,86.5919804 40.3162887,86.7628614 40.526991,86.7628614 Z M39.0540583,86.7628614 C39.2647606,86.7628614 39.4357941,86.5919804 39.4357941,86.3815833 C39.4357941,86.1708809 39.2647606,86 39.0540583,86 C38.843356,86 38.6726276,86.1708809 38.6726276,86.3815833 C38.6726276,86.5919804 38.8435085,86.7628614 39.0540583,86.7628614 Z"></path>
|
5
|
+
</g>
|
6
|
+
</g>
|
7
|
+
</svg>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<svg data-toggle="tooltip" title="Dyslexia" width="12px" height="15px" viewBox="0 0 12 15">
|
2
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" font-family="GillSans-Italic, Gill Sans" font-size="14" font-style="italic" font-weight="normal">
|
3
|
+
<g class="{{impact}}-fill-icon" transform="translate(-56.000000, -103.000000)">
|
4
|
+
<g transform="translate(56.400000, 99.400000)">
|
5
|
+
<text id="d">
|
6
|
+
<tspan x="0" y="13.5">d</tspan>
|
7
|
+
</text>
|
8
|
+
<text id="b">
|
9
|
+
<tspan x="4.8" y="17.5">b</tspan>
|
10
|
+
</text>
|
11
|
+
</g>
|
12
|
+
</g>
|
13
|
+
</g>
|
14
|
+
</svg>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<svg data-toggle="tooltip" title="Low Vision" width="16px" height="10px" viewBox="0 0 16 10">
|
2
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
3
|
+
<g class="{{impact}}-fill-icon" transform="translate(-53.000000, -88.000000)" fill-rule="nonzero">
|
4
|
+
<path d="M66.4874045,89.0308794 C66.3639863,88.6959597 66.0677827,88.4577457 65.7140966,88.4092237 C65.3604105,88.3600255 65.0109511,88.5101561 64.8019855,88.799428 L64.280755,89.5203255 C64.1713693,89.6718086 64.2053515,89.8831411 64.3566656,89.9925268 C64.5081488,90.1019125 64.7193122,90.0680993 64.8286979,89.9166162 L65.3499284,89.1957188 C65.441224,89.0695955 65.5708977,89.0721315 65.6219556,89.0794014 C65.6733517,89.0865021 65.7987986,89.1186247 65.8520544,89.2633452 L67.1486216,92.8365552 C66.9839513,92.7863426 66.8096443,92.7589539 66.6289127,92.7589539 L64.014476,92.7589539 C62.7287291,92.7589539 61.931921,93.2805225 61.5667384,93.9315957 C61.0903104,93.6913529 60.52563,93.6913529 60.049202,93.9315957 C59.6840194,93.2803534 58.8872113,92.7589539 57.6014644,92.7589539 L54.9868586,92.7589539 C54.806127,92.7589539 54.6316509,92.7863426 54.4671497,92.8365552 L55.7632097,89.2648668 C55.8171417,89.1187937 55.9425887,89.0865021 55.9939848,89.0794014 C56.0450427,89.0719624 56.1747163,89.0694265 56.266012,89.1957188 L56.7872425,89.9166162 C56.8967972,90.0680993 57.1082988,90.1020816 57.2592748,89.9925268 C57.4105888,89.8831411 57.4445711,89.6718086 57.3351854,89.5203255 L56.8139549,88.799428 C56.6049893,88.5103252 56.2551918,88.3601946 55.9018438,88.4092237 C55.5483268,88.4577457 55.2519541,88.6957906 55.1280287,89.032401 L53.466448,93.6115537 C53.2985655,93.8835809 53.2,94.2027775 53.2,94.5453053 L53.2,95.7387422 C53.2,97.0914393 54.4514266,98 55.6203489,98 L56.3038828,98 C57.3864124,98 58.5333562,97.4961833 59.3719236,96.6520367 C59.9565538,96.0636871 60.2896138,95.3908044 60.2857253,94.8065122 C60.2852181,94.7331376 60.2786245,94.6592558 60.2688187,94.5853739 C60.5979902,94.3765774 61.0181192,94.3765774 61.3471217,94.5853739 C61.3373159,94.6592558 61.3307223,94.7329685 61.3302151,94.8065122 C61.3264956,95.3908044 61.6595557,96.0636871 62.2440168,96.6520367 C63.0825842,97.4960142 64.229528,98 65.3120576,98 L65.9955915,98 C67.1645138,98 68.4159404,97.0914393 68.4159404,95.7387422 L68.4159404,94.5453053 C68.4159404,94.2027775 68.3173749,93.8835809 68.1494924,93.6115537 L66.4874045,89.0308794 Z M58.8921142,96.1754397 C58.1884615,96.8836572 57.1967203,97.323736 56.3038828,97.323736 L55.6203489,97.323736 C54.9075666,97.323736 53.876264,96.7592246 53.876264,95.7387422 L53.876264,94.5453053 C53.876264,93.9331173 54.3745015,93.4350488 54.9868586,93.4350488 L57.6014644,93.4350488 C58.9751256,93.4350488 59.6052346,94.1483383 59.6094815,94.810908 C59.6121663,95.21058 59.3438586,95.7204831 58.8921142,96.1754397 Z M67.7396764,95.7387422 C67.7396764,96.7592246 66.7083737,97.323736 65.9955915,97.323736 L65.3120576,97.323736 C64.41922,97.323736 63.4274789,96.8836572 62.7238262,96.1754397 C62.2720818,95.7206521 62.003774,95.21058 62.0064588,94.810908 C62.0107057,94.1483383 62.6409838,93.4350488 64.014476,93.4350488 L66.6290818,93.4350488 C67.2414389,93.4350488 67.7396764,93.9331173 67.7396764,94.5453053 L67.7396764,95.7387422 Z"></path>
|
5
|
+
</g>
|
6
|
+
</g>
|
7
|
+
</svg>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<svg data-toggle="tooltip" title="Mobility" width="15px" height="14px" viewBox="0 0 15 14">
|
2
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
3
|
+
<g class="{{impact}}-stroke-icon" transform="translate(-17.000000, -104.000000)" stroke-width="0.8">
|
4
|
+
<g transform="translate(18.000000, 104.800000)">
|
5
|
+
<path d="M4.01860465,4.27371163 L2.96424186,1.37704186 C2.82367897,0.990699412 3.02292267,0.56355824 3.40926512,0.422995349 C3.79560756,0.282432458 4.22274874,0.481676156 4.36331163,0.868018605 L5.41082791,3.74593488"></path>
|
6
|
+
<path d="M5.41053023,3.74593488 L4.46511628,1.14783256 C4.37418802,0.897912813 4.42349745,0.618467798 4.59447017,0.414761749 C4.7654429,0.2110557 5.03210409,0.114036413 5.29400507,0.160250117 C5.55590604,0.20646382 5.77325781,0.388889552 5.86418605,0.638809302 L7.19181395,4.28859535"></path>
|
7
|
+
<path d="M4.01860465,4.27371163 L3.38604651,2.53588837 C3.25905127,2.16487397 2.87463643,1.94747369 2.49123721,2.02984186 C2.28676487,2.08109759 2.11362261,2.21666518 2.01481522,2.40287255 C1.91600783,2.58907993 1.90080619,2.80845569 1.97298605,3.00651163 L3.5176186,7.25015814 C3.52862406,7.28035064 3.51900582,7.31419706 3.49376744,7.33409005 C3.46852906,7.35398304 3.43337225,7.35542847 3.40658605,7.33767442 L1.73276279,6.23270698 L1.26987907,5.92729302 C0.93541684,5.72950626 0.50503358,5.8229564 0.282713487,6.14163863 C0.0603933944,6.46032086 0.121293752,6.89650181 0.4224,7.14210233 L4.2903814,10.6347163 C4.30466977,10.6463256 4.32014884,10.6564465 4.33533023,10.6671628"></path>
|
8
|
+
<path d="M8.12651163,2.51832558 L7.78567442,1.56814884 C7.65866657,1.19699898 7.27406573,0.979565849 6.89056744,1.06210233 C6.68616851,1.11336956 6.51308765,1.24889066 6.41428883,1.43502513 C6.31549001,1.62115961 6.30023708,1.84045462 6.37231628,2.03847442 L7.19181395,4.28978605"></path>
|
9
|
+
<path d="M7.98273488,5.97700465 L10.0000744,2.16111628 C10.1942079,1.801824 10.6416188,1.66610425 11.0026463,1.8569914 C11.3636738,2.04787855 11.5034207,2.49404806 11.3157953,2.8567814 L9.29845581,6.67266977" stroke-linecap="square"></path>
|
10
|
+
<path d="M9.29845581,6.67266977 L11.1767814,3.11992558 C11.3709148,2.7606333 11.8183258,2.62491355 12.1793533,2.8158007 C12.5403808,3.00668785 12.6801277,3.45285736 12.4925023,3.8155907 L10.6141767,7.36833488" stroke-linecap="square"></path>
|
11
|
+
<path d="M10.6141767,7.36833488 L11.7968372,5.1316093 C11.8952967,4.94531139 12.0681187,4.8094866 12.2724089,4.75784658 C12.4766992,4.70620655 12.693305,4.74359262 12.8684651,4.86072558 C13.1868324,5.09011106 13.2831554,5.52145403 13.092614,5.86448372 L10.4692093,10.8273116 C9.7438665,12.1961976 8.19016144,12.9079875 6.67980305,12.5633302 C5.16944466,12.218673 4.07831926,10.9033443 4.01860465,9.35531163 L4.01860465,4.14422326 C4.00569292,3.75983408 4.28781104,3.42893042 4.66940409,3.38088368 C5.05099715,3.33283694 5.40633804,3.58347755 5.48911628,3.95906977 L5.57306047,4.5067907 L5.8775814,6.48870698 C5.88246275,6.52041397 5.90711357,6.5454242 5.93874659,6.55076396 C5.97037962,6.55610372 6.00187422,6.54057104 6.01689302,6.51222326 L8.12651163,2.51832558 C8.22497112,2.33202767 8.39779315,2.19620288 8.60208336,2.14456285 C8.80637357,2.09292283 9.02297946,2.1303089 9.19813953,2.24744186 C9.51667033,2.47685414 9.6130097,2.90839822 9.42228837,3.25149767 L7.98124651,5.97700465" id="Path" stroke-linecap="square"></path>
|
12
|
+
</g>
|
13
|
+
</g>
|
14
|
+
</g>
|
15
|
+
</svg>
|
@@ -0,0 +1,42 @@
|
|
1
|
+
<svg data-toggle="tooltip" title="Sighted Keyboard Users" width="16px" height="8px" viewBox="0 0 16 8" style="margin-right: 5px;">>
|
2
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
3
|
+
<g class="{{impact}}-fill-icon" transform="translate(-94.000000, -107.000000)" fill-rule="nonzero">
|
4
|
+
<g transform="translate(94.000000, 107.400000)">
|
5
|
+
<g transform="translate(-0.000000, 6.124077)">
|
6
|
+
<rect x="0" y="0" width="2.74527589" height="1.47822548"></rect>
|
7
|
+
<rect x="3.16762602" y="0" width="9.29170301" height="1.47822548"></rect>
|
8
|
+
<rect x="12.8816792" y="0" width="2.74527589" height="1.47822548"></rect>
|
9
|
+
</g>
|
10
|
+
<g transform="translate(-0.000000, 2.111751)">
|
11
|
+
<rect x="3.16762602" y="0" width="1.47822548" height="1.47822548"></rect>
|
12
|
+
<rect x="0" y="0" width="2.74527589" height="1.47822548"></rect>
|
13
|
+
<rect x="12.8816792" y="0" width="2.74527589" height="1.47822548"></rect>
|
14
|
+
<rect x="5.06820164" y="0" width="1.47822548" height="1.47822548"></rect>
|
15
|
+
<rect x="6.96877725" y="0" width="1.47822548" height="1.47822548"></rect>
|
16
|
+
<rect x="8.86935287" y="0" width="1.68940055" height="1.47822548"></rect>
|
17
|
+
<rect x="10.9811036" y="0" width="1.47822548" height="1.47822548"></rect>
|
18
|
+
</g>
|
19
|
+
<g transform="translate(-0.000000, 0.000000)">
|
20
|
+
<rect x="0" y="0" width="1.47822548" height="1.68940055"></rect>
|
21
|
+
<rect x="1.90057561" y="0" width="1.68940055" height="1.68940055"></rect>
|
22
|
+
<rect x="4.0123263" y="0" width="1.47822548" height="1.68940055"></rect>
|
23
|
+
<rect x="5.91290191" y="0" width="1.68940055" height="1.68940055"></rect>
|
24
|
+
<rect x="8.0246526" y="0" width="1.68940055" height="1.68940055"></rect>
|
25
|
+
<rect x="10.1364033" y="0" width="1.47822548" height="1.68940055"></rect>
|
26
|
+
<rect x="12.0369789" y="0" width="1.68940055" height="1.68940055"></rect>
|
27
|
+
<rect x="14.1487296" y="0" width="1.47822548" height="1.68940055"></rect>
|
28
|
+
</g>
|
29
|
+
<g transform="translate(-0.000000, 4.012326)">
|
30
|
+
<rect x="0" y="0" width="1.47822548" height="1.68940055"></rect>
|
31
|
+
<rect x="1.90057561" y="0" width="1.68940055" height="1.68940055"></rect>
|
32
|
+
<rect x="4.0123263" y="0" width="1.47822548" height="1.68940055"></rect>
|
33
|
+
<rect x="5.91290191" y="0" width="1.68940055" height="1.68940055"></rect>
|
34
|
+
<rect x="8.0246526" y="0" width="1.68940055" height="1.68940055"></rect>
|
35
|
+
<rect x="10.1364033" y="0" width="1.47822548" height="1.68940055"></rect>
|
36
|
+
<rect x="12.0369789" y="0" width="1.68940055" height="1.68940055"></rect>
|
37
|
+
<rect x="14.1487296" y="0" width="1.47822548" height="1.68940055"></rect>
|
38
|
+
</g>
|
39
|
+
</g>
|
40
|
+
</g>
|
41
|
+
</g>
|
42
|
+
</svg>
|