@abqm-ds/icons 1.0.14 → 1.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (115) hide show
  1. package/.turbo/turbo-build.log +9 -9
  2. package/CHANGELOG.md +12 -0
  3. package/README.md +13 -7
  4. package/dist/index.cjs +1108 -464
  5. package/dist/index.d.cts +56 -10
  6. package/dist/index.d.ts +56 -10
  7. package/dist/index.js +1084 -463
  8. package/package.json +10 -7
  9. package/scripts/move-icons.js +11 -6
  10. package/scripts/process.js +8 -2
  11. package/scripts/updateIndex.js +16 -6
  12. package/src/components/ApartacaoIconSEQM.tsx +20 -0
  13. package/src/components/BreakawayRopingIconSEQM.tsx +20 -0
  14. package/src/components/BulldogIconSEQM.tsx +20 -0
  15. package/src/components/CincoTamboresIconSEQM.tsx +20 -0
  16. package/src/components/ConformacaoIconSEQM.tsx +20 -0
  17. package/src/components/LacoCabecaIconSEQM.tsx +20 -0
  18. package/src/components/LacoCompridoIconSEQM.tsx +20 -0
  19. package/src/components/LacoCompridoTecnicoIconSEQM.tsx +20 -0
  20. package/src/components/LacoEmDuplaIconSEQM.tsx +20 -0
  21. package/src/components/LacoIndividualIconSEQM.tsx +20 -0
  22. package/src/components/LacoIndividualTecnicoIconSEQM.tsx +20 -0
  23. package/src/components/LacoPeIconSEQM.tsx +20 -0
  24. package/src/components/ManeabilidadeEVelocidadeIconSEQM.tsx +20 -0
  25. package/src/components/PerformanceHalterIconSEQM.tsx +20 -0
  26. package/src/components/RanchSortingIconSEQM.tsx +20 -0
  27. package/src/components/RedeasIconSEQM.tsx +20 -0
  28. package/src/components/SeisBalizasIconSEQM.tsx +20 -0
  29. package/src/components/TeamPenningIconSEQM.tsx +20 -0
  30. package/src/components/TresTamboresIconSEQM.tsx +20 -0
  31. package/src/components/VaquejadaIconSEQM.tsx +20 -0
  32. package/src/components/WesternPleasureIconSEQM.tsx +20 -0
  33. package/src/components/WorkingCowHorseIconSEQM.tsx +20 -0
  34. package/src/components/icons/AppleIcon.tsx +22 -0
  35. package/src/components/icons/ArrowDownShortIcon.tsx +19 -0
  36. package/src/components/icons/AwardFillIcon.tsx +21 -0
  37. package/src/components/icons/BarChartIcon.tsx +17 -0
  38. package/src/components/icons/BoxArrowInLeftIcon.tsx +25 -0
  39. package/src/components/icons/BroadcastIcon.tsx +24 -0
  40. package/src/components/icons/CaretDownFillIcon.tsx +17 -0
  41. package/src/components/icons/CaretLeftFillIcon.tsx +17 -0
  42. package/src/components/icons/CaretRightFillIcon.tsx +17 -0
  43. package/src/components/icons/CircleIcon.tsx +24 -0
  44. package/src/components/icons/FacebookIcon.tsx +24 -0
  45. package/src/components/icons/FileEarmarkTextIcon.tsx +21 -0
  46. package/src/components/icons/FileTextIcon.tsx +21 -0
  47. package/src/components/icons/FilterIcon.tsx +17 -0
  48. package/src/components/icons/GoogleColorIcon.tsx +28 -0
  49. package/src/components/icons/GoogleIcon.tsx +24 -0
  50. package/src/components/icons/InstagramIcon.tsx +24 -0
  51. package/src/components/icons/ListIcon.tsx +19 -0
  52. package/src/components/icons/ListOlIcon.tsx +23 -0
  53. package/src/components/icons/PencilSquareIcon.tsx +23 -0
  54. package/src/components/icons/PersonCircleIcon.tsx +26 -0
  55. package/src/components/icons/PlusIcon.tsx +17 -0
  56. package/src/components/icons/PrinterIcon.tsx +18 -0
  57. package/src/components/icons/SearchIcon.tsx +24 -0
  58. package/src/components/icons/SpinnerRingResizeIcon.tsx +37 -0
  59. package/src/components/icons/StarIcon.tsx +24 -0
  60. package/src/components/icons/XIcon.tsx +17 -0
  61. package/src/components/icons/YoutubeIcon.tsx +17 -0
  62. package/src/components/icons/index.ts +28 -0
  63. package/src/components/iconsSEQM/ApartacaoIconSEQM.tsx +20 -0
  64. package/src/components/iconsSEQM/BreakawayRopingIconSEQM.tsx +20 -0
  65. package/src/components/iconsSEQM/BulldogIconSEQM.tsx +20 -0
  66. package/src/components/iconsSEQM/CincoTamboresIconSEQM.tsx +20 -0
  67. package/src/components/iconsSEQM/ConformacaoIconSEQM.tsx +20 -0
  68. package/src/components/iconsSEQM/LacoCabecaIconSEQM.tsx +20 -0
  69. package/src/components/iconsSEQM/LacoCompridoIconSEQM.tsx +20 -0
  70. package/src/components/iconsSEQM/LacoCompridoTecnicoIconSEQM.tsx +20 -0
  71. package/src/components/iconsSEQM/LacoEmDuplaIconSEQM.tsx +20 -0
  72. package/src/components/iconsSEQM/LacoIndividualIconSEQM.tsx +20 -0
  73. package/src/components/iconsSEQM/LacoIndividualTecnicoIconSEQM.tsx +20 -0
  74. package/src/components/iconsSEQM/LacoPeIconSEQM.tsx +20 -0
  75. package/src/components/iconsSEQM/ManeabilidadeEVelocidadeIconSEQM.tsx +20 -0
  76. package/src/components/iconsSEQM/PerformanceHalterIconSEQM.tsx +20 -0
  77. package/src/components/iconsSEQM/RanchSortingIconSEQM.tsx +20 -0
  78. package/src/components/iconsSEQM/RedeasIconSEQM.tsx +20 -0
  79. package/src/components/iconsSEQM/SeisBalizasIconSEQM.tsx +20 -0
  80. package/src/components/iconsSEQM/TeamPenningIconSEQM.tsx +20 -0
  81. package/src/components/iconsSEQM/TresTamboresIconSEQM.tsx +20 -0
  82. package/src/components/iconsSEQM/VaquejadaIconSEQM.tsx +20 -0
  83. package/src/components/iconsSEQM/WesternPleasureIconSEQM.tsx +20 -0
  84. package/src/components/iconsSEQM/WorkingCowHorseIconSEQM.tsx +20 -0
  85. package/src/components/iconsSEQM/index.ts +22 -0
  86. package/src/{_logos/LogoPadrao.tsx → components/logos/LogoPadraoIcon.tsx} +6 -7
  87. package/src/{_logos/LogoSeqmBlackGreen.tsx → components/logos/LogoSeqmBlackGreenIcon.tsx} +13 -14
  88. package/src/{_logos/LogoSeqm.tsx → components/logos/LogoSeqmIcon.tsx} +13 -14
  89. package/src/{_logos/LogoSeqmMobile.tsx → components/logos/LogoSeqmMobileIcon.tsx} +7 -8
  90. package/src/components/logos/index.ts +4 -0
  91. package/src/icons/google-color.svg +1 -0
  92. package/src/icons/google.svg +10 -0
  93. package/src/iconsSEQM/apartacao.svg +3 -0
  94. package/src/iconsSEQM/breakaway-roping.svg +3 -0
  95. package/src/iconsSEQM/bulldog.svg +3 -0
  96. package/src/iconsSEQM/cinco-tambores.svg +3 -0
  97. package/src/iconsSEQM/conformacao.svg +3 -0
  98. package/src/iconsSEQM/laco-cabeca.svg +3 -0
  99. package/src/iconsSEQM/laco-comprido-tecnico.svg +3 -0
  100. package/src/iconsSEQM/laco-comprido.svg +3 -0
  101. package/src/iconsSEQM/laco-em-dupla.svg +3 -0
  102. package/src/iconsSEQM/laco-individual-tecnico.svg +3 -0
  103. package/src/iconsSEQM/laco-individual.svg +3 -0
  104. package/src/iconsSEQM/laco-pe.svg +3 -0
  105. package/src/iconsSEQM/maneabilidade-e-velocidade.svg +6 -0
  106. package/src/iconsSEQM/performance-halter.svg +3 -0
  107. package/src/iconsSEQM/ranch-sorting.svg +3 -0
  108. package/src/iconsSEQM/redeas.svg +3 -0
  109. package/src/iconsSEQM/seis-balizas.svg +3 -0
  110. package/src/iconsSEQM/team-penning.svg +3 -0
  111. package/src/iconsSEQM/tres-tambores.svg +3 -0
  112. package/src/iconsSEQM/vaquejada.svg +4 -0
  113. package/src/iconsSEQM/western-pleasure.svg +3 -0
  114. package/src/iconsSEQM/working-cow-horse.svg +3 -0
  115. package/src/index.ts +3 -31
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abqm-ds/icons",
3
- "version": "1.0.14",
3
+ "version": "1.0.16",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
@@ -13,7 +13,10 @@
13
13
  "build": "tsup --dts",
14
14
  "dev": "tsup --dts --watch",
15
15
  "lint": "eslint src/**/*.ts* --fix",
16
- "generate:icons": "npx @svgr/cli src/icons/*.svg --out-dir src/_temp --icon --typescript && npx @svgr/cli src/logos/*.svg --out-dir src/_logos --icon --typescript && npm run move:icons",
16
+ "folder:icons": "npx @svgr/cli src/icons/*.svg --out-dir src/_icons --icon --typescript",
17
+ "folder:logos": "npx @svgr/cli src/logos/*.svg --out-dir src/_logos --icon --typescript",
18
+ "folder:icons:seqm": "npx @svgr/cli src/iconsSEQM/*.svg --out-dir src/_iconsSEQM --icon --typescript",
19
+ "generate:icons": "npm run folder:icons && npm run folder:logos && npm run folder:icons:seqm && npm run move:icons",
17
20
  "move:icons": "node scripts/move-icons.js",
18
21
  "clean": "rimraf dist"
19
22
  },
@@ -23,10 +26,10 @@
23
26
  "description": "",
24
27
  "devDependencies": {
25
28
  "@abqm-ds/ts-config": "*",
26
- "@types/react": "^19.1.2",
27
- "@types/react-dom": "^19.1.3",
28
- "react": "^19.1.0",
29
- "tsup": "^8.4.0",
30
- "typescript": "^5.8.3"
29
+ "@types/react": "19.1.8",
30
+ "@types/react-dom": "19.1.6",
31
+ "react": "19.1.0",
32
+ "tsup": "8.4.0",
33
+ "typescript": "5.8.3"
31
34
  }
32
35
  }
@@ -1,7 +1,6 @@
1
1
  import fs from 'fs';
2
2
  import path from 'path';
3
3
  import { fileURLToPath } from 'url';
4
- import { toPascalCase } from './utils.js';
5
4
  import { processSourceDir } from './process.js';
6
5
  import { updateIndexFile } from './updateIndex.js';
7
6
 
@@ -10,15 +9,20 @@ const __filename = fileURLToPath(import.meta.url);
10
9
  const __dirname = path.dirname(__filename);
11
10
 
12
11
  // Caminhos
13
- const tempDir = path.resolve(__dirname, '../src/_temp');
12
+ const iconsDir = path.resolve(__dirname, '../src/_icons');
14
13
  const logosDir = path.resolve(__dirname, '../src/_logos');
14
+ const iconsSeqmDir = path.resolve(__dirname, '../src/_iconsSEQM');
15
15
  const finalDir = path.resolve(__dirname, '../src/components');
16
16
  const indexFile = path.resolve(__dirname, '../src/index.ts');
17
17
 
18
18
  // Verifica se as pastas temporárias existem
19
- if (!fs.existsSync(tempDir) && !fs.existsSync(logosDir)) {
19
+ if (
20
+ !fs.existsSync(iconsDir) &&
21
+ !fs.existsSync(logosDir) &&
22
+ !fs.existsSync(iconsSeqmDir)
23
+ ) {
20
24
  console.log(
21
- '⚠️ Nenhuma pasta src/_temp ou src/_logos existe. Rode "npm run generate" antes.'
25
+ '⚠️ Nenhuma pasta src/_icons, src/_logos ou src/iconsSEQM existe. Rode "npm run generate" antes.'
22
26
  );
23
27
  process.exit(0);
24
28
  }
@@ -29,8 +33,9 @@ if (!fs.existsSync(finalDir)) {
29
33
  }
30
34
 
31
35
  // Processa os diretórios de origem normalmente
32
- processSourceDir(tempDir, finalDir);
33
- processSourceDir(logosDir, finalDir, /^svg/i);
36
+ processSourceDir(iconsDir, finalDir + '/icons');
37
+ processSourceDir(logosDir, finalDir + '/logos', /^svg/i);
38
+ processSourceDir(iconsSeqmDir, finalDir + '/iconsSEQM', /^svg/i, 'SEQM');
34
39
 
35
40
  // Atualiza index.ts para garantir que todos os componentes estejam exportados
36
41
  updateIndexFile(finalDir, indexFile);
@@ -3,16 +3,22 @@ import path from 'path';
3
3
  import { toPascalCase } from './utils.js';
4
4
 
5
5
  // Função para processar arquivos de uma pasta e gerar componentes
6
- function processSourceDir(sourceDir, finalDir, prefixToRemove = /^svg/i) {
6
+ function processSourceDir(sourceDir, finalDir, prefixToRemove = /^svg/i, postfix = '') {
7
7
  if (!fs.existsSync(sourceDir)) return [];
8
8
  const files = fs.readdirSync(sourceDir).filter((f) => f.endsWith('.tsx'));
9
9
  const exports = [];
10
10
 
11
+ // Garante que o diretório de destino existe
12
+ if (!fs.existsSync(finalDir)) {
13
+ fs.mkdirSync(finalDir, { recursive: true });
14
+ }
15
+
11
16
  for (const file of files) {
12
17
  const baseName = path.basename(file, '.tsx');
13
18
  const cleanedName = baseName.replace(prefixToRemove, '');
14
19
  const pascalName = toPascalCase(cleanedName);
15
- const componentName = `${pascalName}Icon`;
20
+ // Adiciona o sufixo SEQM se postfix for passado
21
+ const componentName = `${pascalName}Icon${postfix}`;
16
22
 
17
23
  const fromPath = path.join(sourceDir, file);
18
24
  const toPath = path.join(finalDir, `${componentName}.tsx`);
@@ -1,15 +1,25 @@
1
1
  import fs from 'fs';
2
2
  import path from 'path';
3
3
 
4
- // Atualiza index.ts para garantir que todos os componentes estejam exportados
5
- function updateIndexFile(finalDir, indexFile) {
6
- const componentFiles = fs.readdirSync(finalDir).filter((f) => f.endsWith('.tsx'));
7
- const exportLines = componentFiles.map((f) => {
4
+ // Gera um index.ts numa pasta, exportando todos os arquivos .tsx dela
5
+ function writeIndexForDir(dir) {
6
+ if (!fs.existsSync(dir)) return;
7
+ const files = fs.readdirSync(dir).filter((f) => f.endsWith('.tsx'));
8
+ const exportLines = files.map((f) => {
8
9
  const name = path.basename(f, '.tsx');
9
- return `export { default as ${name} } from './components/${name}';`;
10
+ return `export { default as ${name} } from './${name}';`;
10
11
  });
11
- fs.writeFileSync(indexFile, exportLines.join('\n') + '\n');
12
+ fs.writeFileSync(path.join(dir, 'index.ts'), exportLines.join('\n') + '\n');
13
+ }
12
14
 
15
+ // Atualiza index.ts principal para reexportar os sub-indexes
16
+ function updateIndexFile(finalDir, indexFile) {
17
+ const subdirs = ['icons', 'logos', 'iconsSEQM'];
18
+ subdirs.forEach((sub) => {
19
+ writeIndexForDir(path.join(finalDir, sub));
20
+ });
21
+ const exportLines = subdirs.map((sub) => `export * from './components/${sub}';`);
22
+ fs.writeFileSync(indexFile, exportLines.join('\n') + '\n');
13
23
  console.log('📦 index.ts atualizado com todos os componentes.');
14
24
  }
15
25
 
@@ -0,0 +1,20 @@
1
+ import type { SVGProps } from 'react';
2
+ const ApartacaoIconSEQM = (props: SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="1em"
6
+ height="1em"
7
+ fill="none"
8
+ viewBox="0 0 100 80"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill={props?.fill ? props.fill : '#fff'}
13
+ fillOpacity={0.85}
14
+ fillRule="evenodd"
15
+ d="M63.56 15.035c-.011.006-.023.006-.028.017s-.023.012-.029.017l-.222.074c-.182.051-.694.034-.928.023-.13-.006-.244.006-.341-.034h-.046c-.256.023-.563.04-.774.25l-.028.034c-.006.006-.012.018-.012.018a.04.04 0 0 0-.011.022l-.176.313c-.177.126-.006-.096-.109.302-.062.24.012.546-.022.797l-.035.37c-.045.245-.113.29-.233.404l-.09.091c0 .006-.012.012-.012.017-.103.12.057-.062-.04.052l-.142.13-.018.018-.034.034-.074.074-.017.017-.062.062-.017.017c-.006 0-.012.012-.018.018l-.13.125c-.006.005-.023.011-.023.017-.006.006-.017.011-.023.017l-.091.09-.091.092-.091.091-.091.091-.091.091-.091.091-.183.182-.182.183c-.096.068-.045-.006-.136.307-.017.057-.006 0-.017.085l-.012.24c.023.256.444.244.62.33h.046c.114-.046.023-.046.137 0h.136c.114.045.023.045.137 0h.045c.114.045.023.045.137 0h.137l1.053-.091c0 .108-.012.227-.023.261-.028.148-.125.285.04.399l.12.068.46.296s.035.034.04.046l.074.096c.171.222.12.12.137.24 0 .01.006.056.006.068.017.057-.006-.006.028.068.063.125.029-.006.051.114.051.256.034.592.444.563.103-.005.148.017.262-.028h.046c.159-.108.142-.16.41-.182h.045v.045c.04.097.011 0 .006.08l-.12.546c-.045.217-.097.194-.097.387 0 .092.017.08-.034.211-.045.131-.006-.017-.045.108-.017.063 0 .017-.012.091 0 .012-.005.035-.005.046l-.2.546c-.096.285-.085.057-.068.439.023.518.097.745.091 1.297 0 .2.034.177.074.393l.097.393c.125.398.102.523.125.586.29.791-.068.626-.375 1.23l-.103.136c-.051.063.085-.034-.068.08l-.091.091-.052.034c-.125.114-.028.029-.08.16-.09.216-.016.073-.233.176h-.045c-.114.046-.023.046-.137 0h-.045c-.16.063-.444-.034-.638.091-.08.051-.108.08-.188.131l-.085.051c-.006 0-.097.08-.102.08l-.36.284-.227.183-.057.034c-.205.125-.393.341-.42.546-.047.33-.194.103-.183.433.006.125.006.085-.051.279l-.125.398c-.023.097.022.006-.029.131l-.108.262c-.006.011-.023.034-.023.045l-.068.137-.051.08c-.086.13-.092.193-.217.284l-.307.194h-.046c-.08.04-.148.051-.227.091h-.046c-.114.046-.586.04-.683 0h-.045c-.114.046-.023.046-.137 0h-.046c-.113.046-.022.046-.136 0h-.046c-.16.074-.41.063-.5.319h-.228c-.086-.365-.29-.182-.091-.58 0-.007.074-.024 0-.194-.097.045-.063.017-.143.04l-.136.05c-.484.325-.188.103-.399.376-.068.086-.085.08-.148.171l-.096.114c-.131.17-.006.165-.36.21-.136.018-.153.012-.233.04h-.045l-.5.183h-.046l-.32.182c-.01.005-.022 0-.028.017l-.279.222c-.108.114-.17.222-.33.262-.279-.188.04-.314-.478-.53-.182-.074-.125-.017-.25-.068h-.046c-.182-.102-.25.358-.358.58-.046.097-.012.012-.063.114l-.148.257c0 .005-.011.01-.011.017 0 .005-.012.011-.012.017-.25.336-.154.205-.415.387-.063.04-.074.062-.131.097-.074.045-.114.05-.188.085l-.177.102c-.068.034-.125.051-.193.086l-.501.273-.404.233c-.074.034-.114.057-.216.108l-.177.097a.1.1 0 0 1-.028.017c-.063.04-.074.063-.131.097-.074.046-.114.051-.188.085h-.046c-.062.04-.074.063-.13.097-.075.046-.114.051-.188.086l-.143.085c-.108.04.006.063-.13.006-.109-.262.102-.461-.137-.82l-.29-.188c-.171-.068-.223-.097-.353-.045l-.012.17c0 .006.006.018.006.023.045.256.08.512-.086.763l-.182.182-.182.182-.17.188c0 .006-.012.017-.012.017 0 .006-.011.011-.011.017l-.029.029-.29.284-.034.034-.017.018-.302.324-.182.182-.182.182-.182.182c-.074.143-.097.217-.126.308 0 .011-.011.034-.011.045l-.04.114c0 .006-.005.017-.005.023-.046.176-.012.37-.36.603-.005.006-.022.006-.022.017l-.205.165c-.136.091-.188.194-.313.28-.108.073-.074.022-.2.119-.084.068-.073.085-.17.148-.085.13-.068.074-.227.205l-.092.068-.09.091-.638.455c-.137.057-.023.035-.131-.005l-.057-.029c-.08-.045-.051-.028-.085-.057-.103-.068-.126-.12-.222-.187-.069-.046-.074-.04-.148-.086-.057-.034-.074-.057-.131-.097l-.137-.09-.091-.092c-.194-.13-.057-.114-.404-.284l-.154-.074-.239-.08c-.023-.006-.085-.034-.102-.04-.182-.057-.234-.028-.336-.068h-.046c-.193-.091-.597-.034-.683 0h-.045l-.177.142c.12.182.04.068.114.279 0 .006.006.017.011.023.092.233.148.222.245.387l.285.467c.125.193.193.284.296.483.108.091.017.137-.046.228a.44.44 0 0 1-.319 0h-.045c-.068-.034-.165-.068-.24-.102l-.716-.359h-.046c-.08-.04-.148-.051-.227-.091l-.057-.034c-.314-.131-.501-.217-.604.017l.023.336c.046.108.011.034.046.085l.404.763c.04.09.011.023.045.09 0 .007.006.018.012.024l.102.205c.091.193.114.136.21.284.245.165.291.359.069.484-.268.16-.427.091-.723.011-.006 0-.017-.005-.023-.005-.085-.023-.136-.029-.239-.074h-.045l-.382-.126c-.199.029-.113-.045-.085.109l.324.546c.091.148.25.313.404.393.188.097.353.21.558.125h.183l-.046.046h-.091c-.046.034.017 0-.085.05l-.097.04h-.046l-.273.092-.814.142q-.017.01-.034.011l-.068.029a.8.8 0 0 0-.194.17c-.17.217.097.035-.125.194l.205.575c.085.12.068.114.205.154l.136-.137c.484-.324.228-.142.7-.256l.091-.028c.006 0 .017-.006.023-.006.091-.023.222-.023.33-.074.04.09.097.017-.176.375-.097.131-.063.04-.086.166-.017.108-.01.21-.01.33v.045l.096.393c.063.16-.046.023.074.256.051.103.028.029.04.114.023.148-.029.114.16.24.102-.16.181-.291.21-.445 0-.017.011-.051.017-.074.085-.245.057-.313.319-.49l.244.946c0 .005.006.017.012.022l.136.245c.035.051.04.063.069.102l.022.04.012.017.028.035c.006.005.017.01.023.017.006.005.017.011.023.017.142.114.671.58.734.734l.108.319c.034.096.057.136.074.222l.091.962c0 .113-.011.279.006.37.097.523.085.011.085.814 0 .142.006.233 0 .364l-.096.655c-.057.227.056.05-.074.495l-.052.182.803.552c.176.142.262.507.956.717.08.023.074.023.12.04l.074.034c.005 0 .017.006.023.012.176.068.33.045.523-.018q.01-.001.029-.01c.005 0 .017-.007.028-.012l.461-.126c.16-.022.188-.01.268-.045h.136c.097-.046.194-.085.28-.131.119-.063.198-.091.312-.142h.046c.068-.046.074-.063.148-.097.148-.074-.023.057.136-.068q.161-.13.262-.285c.12-.085.04-.034.063-.08.153-.25.034-.136.153-.381l.228-.455c.2-.228.416-.217.626-.342q.01-.008.029-.017l.136-.091.16-.114c.085-.068.097-.074.17-.148.12-.114.2-.205.32-.319l.569-.751c.05-.063.102-.114.136-.17l.091-.154c.051-.069.012-.006.063-.069.102-.13.017-.09.16-.25l.38-.49c.143-.102-.022.017.211-.284l.108-.148c0-.006.012-.017.012-.017.011-.023.017-.057.034-.097.09-.057.085-.046.148-.148l.353-.495c.068-.097.096-.103.165-.194l.074-.13c.102-.16.09-.063.25-.325.034-.057-.074.017.063-.08l.045-.091c.177-.12.12-.114.182-.21.063-.103.143-.154.217-.257l.512-.751c.046-.085.023-.034.085-.114l.422-.58.261-.467c.069-.086.086-.074.148-.171.109.046.148.011.32.091h.045c.393.165-.034-.063.381.262l.171.102.137.091.29.165a.1.1 0 0 0 .028.018l.103.08c-.103.073-.108.102-.217.164l-.25.16-.137.09-.455.274-.637.638c-.16.113-.006.005-.069.08l-.165.193c-.005.005-.017.011-.023.017l-.347.387-.023.023-.022.022-.32.342c-.198.313-.187.2-.318.393-.262.176-.307.335-.427.45-.182.176-.051.142-.256.278l-.319.421c-.096.148-.279.268-.392.41l-.2.24c0 .005-.011.01-.011.016l-1.161 1.39c-.04.056-.017.033-.034.068-.108.227-.108.113-.28.364 0 .006-.01.017-.01.017l-.245.324a.04.04 0 0 1-.012.023.04.04 0 0 1-.011.023c-.165.336-.438.37-.65 1.155-.039.143-.028.074-.05.143l-.16.54c-.034.086-.04.126-.05.171-.04.137-.07.108-.086.273l-.051.183c-.04.074-.018.017-.035.068l-.028.165c-.085.239-.24.814-.342.973l-.205.393c-.028.051-.017.034-.045.08l-.114.125c-.137.08-.102.051-.256.068-.205.017-.262 0-.364.046h-.046c-.114-.046-.023-.046-.136 0h-.04c-.114.045-.023.045-.137 0h-.045c-.12.051-.376.023-.513.023-.125 0-.415.028-.535-.023h-.045c-.114-.046-.023-.046-.137 0h-.045c-.063-.029-.023-.04-.097-.034-.097.005-.034 0-.086.034-.296-.142-.62-.029-.774-.091h-.045c-.479-.04-.57-.04-1.048 0h-.045c-.114.045-.023.045-.137 0h-.045c-.097.04-.137.023-.222.028-.171.006-.143 0-.33.012l-.638.05c-.114-.045-.023-.045-.137 0h-.045c-.114-.045-.023-.045-.137 0h-.045c-.114-.045-.023-.045-.137 0h-.045l-.32.103c-.17.051-.278.046-.37.08h-.045c-.08-.034-.256-.034-.5-.051-.194-.012-.382-.012-.462-.04h-.045c-.086-.034-.182-.023-.37-.046-.21-.022-.325-.011-.41-.045h-.228c-.17-.074-1.895-.103-2.146 0h-.045c-.114-.046-.023-.046-.137 0h-.045c-.08.034-.626.062-.769.068-.028 0-.097 0-.17.006l-1.338.085c-.16.006-.467-.034-.603.023h-.046c-.114-.046-.023-.046-.137 0h-.045c-.114-.046-.023-.046-.137 0h-.045c-.114-.046-.023-.046-.137 0h-.045c-.114-.046-.023-.046-.137 0h-.046c-.113-.046-.022-.046-.136 0h-.41c-.114.045-.023.045-.137 0h-.045c-.137.057-.57-.011-.95.097-.149.04-.291 0-.467.085h-.046c-.125.063-.057.034-.228.051-.165.017-.142.029-.227-.005.028-.063.005-.04.017-.08l.723-.985.022-.045c.035-.057-.074.017.063-.08l.182-.364c.108-.268.029-.638-.057-.922-.057-.182.063 0-.085-.274-.063-.12.04-.034-.086-.125l-.136-.09-.131-.098.313-.313.091-.09.626-.473c.091-.074.097-.103.2-.165l.09-.091.422-.353c.022-.023.13-.103.153-.12.234-.154.444-.239.712-.182l.068.023c.006 0 .063.017.069.017.085.011.17-.006.273 0 .313.023.279.097.5.17l.217.08.136.091h.046l.137.091h.091c.09.137.045.086.205.165.108.052.165.069.256.114h.045c.08.04.148.052.228.091.205.143.58.205.729.274h.045c.222.108.53.216.717.37l.7.267h.046c.13.063.074.069.239.017.108-.034-.08-.005.137-.051l.455-.028c.342-.029.547-.211.746-.507.045-.068.028-.034.04-.085 0 0 .005-.08.01-.086l.035-.114c.097-.318.063-.148 0-.244l-.028-.035c-.006-.005-.018-.034-.023-.04l-.717-1.593c-.006-.012-.012-.04-.017-.051l-.183-.518c0-.006-.005-.017-.005-.023l-.091-.307c-.097-.439-.103-.274 0-.638l.09-.216c0-.006.006-.017.012-.023l.023-.046c.045-.085.017-.028.051-.09.125-.251.177-.513.074-.763l-.085-.194c-.006-.006-.012-.023-.017-.028s-.012-.023-.017-.029c-.166-.398-.017-.057-.188-.336-.08-.13.045.069-.034-.062-.109-.188-.296-.205-.342-.325-.017-.04 0-.09-.017-.16l-.08-.102a.1.1 0 0 0-.028-.017l-.091-.09c-.256-.172-.24-.376-.25-.445l-.063-.136c0-.006-.012-.017-.012-.023-.12-.245-.108-.137-.222-.308-.136-.096-.023-.022-.097-.113-.119-.154-.165-.274-.41-.439-.01-.005-.022-.028-.028-.017-.005.012-.028-.017-.057-.034-.017-.011-.062-.034-.09-.051a3 3 0 0 0-.2-.091c-.165-.051-.262.04-.404-.17-.091-.046-.148-.063-.25-.115-.98-.495-1.02.017-1.173.2-.16.193-.222.159-.398.278-.348.234.01.217-.274.41-.136-.034-.12-.068-.336-.21-.204-.137-.318-.302-.62-.541l-.034-.029-.017-.017c-.006-.005-.017-.011-.017-.017-.006-.005-.017-.011-.023-.017l-.051-.034-.456-.273c-.062-.04-.074-.063-.13-.097-.075-.046-.115-.051-.189-.085h-.045l-.347.432c-.091.165-.057.142.006.421.01.046.017.046.05.114l.024.046c.05.114-.018-.046.028.074l.08.273c0 .011 0 .034.005.046l-.005.296c-.006.125.04.244-.148.21l-.097-.023c-.148-.028-.16-.005-.279-.062h-.046c-.096-.046-.233-.057-.364-.097-.074-.023-.051-.023-.165-.051-.125-.034-.028.017-.16-.034h-.04c-.079-.04-.147-.052-.227-.091h-.045c-.091-.046-.177-.052-.28-.086l-.216-.057c-.005 0-.108-.023-.108-.023-.005 0-.017-.005-.023-.005s-.017-.006-.022-.006l-.308-.097h-.045c-.114-.045-.023-.045-.137 0-.011-.005-.023-.028-.028-.017l-.114-.045c-.108-.034.04.04-.131-.029h-.046l-.535-.108s-.096-.023-.108-.023c-.142-.028-.13-.011-.222-.05h-.045c-.154-.064-.165.028-.41-.092h-.046c-.096-.04-.313-.051-.41-.091h-.045c-.097-.04-.154-.023-.29-.04l-.177-.023c-.096-.011.023.012-.09-.011-.086-.017-.024.011-.086-.023-.108.046-.194-.028-.54-.142l-.046-.051c-.012-.006-.035-.012-.046-.017l-.046-.017c-.005 0-.017-.006-.022-.006l-1.27-.353h-.045l-.501-.182h-.046c-.08-.04-.148-.051-.227-.091h-.046l-.239-.08a.1.1 0 0 1-.034-.011c-.177-.074-.006.011-.16-.035l-.142-.056a.04.04 0 0 1-.022-.012c-.006 0-.018-.005-.023-.005a23 23 0 0 0-.416-.126l-.546-.182c-.171-.057-.029.023-.188-.045h-.046c-.09-.046-.153-.052-.216-.069l-.54-.182a.1.1 0 0 0-.035-.011.1.1 0 0 1-.034-.012c-.097-.045-.233-.056-.364-.096-.074-.023-.051-.023-.165-.052-.125-.034-.029.017-.16-.034h-.045c-.08-.04-.148-.051-.228-.09h-.046l-.239-.08a.1.1 0 0 1-.034-.012l-1.144-.182h-.045c-.148-.068-.131-.006-.228-.125l-.142-.296c-.137-.256-.012-.126-.086-.308l-.09-.05c-.006.187 0 .141-.092.233-.097.04 0 .028-.074 0-.068-.029-.21-.308-.256-.427-.04-.103.028-.063-.13-.171.312-.467-.07-.103.193-.399.068-.08.068-.056.13-.148-.119-.05-.364-.045-.546.046h-.045c-.131.085-.359.296-.433.444l-.045.091c-.103.2-.029.154-.092.267-.057.103-.017.075-.12.109h-.045c-.08-.035-.205-.046-.41-.046l.183.638-.57.205c-.102.05-.165.074-.25.113l-.455.274h-.046l-.404.233c-.074.034-.114.057-.216.108l-.091.046c-.012.005-.046.028-.057.034l-.057.034-.217.097c-.005 0-.017.005-.022.005l-.683.228c-.006 0-.018.006-.023.006s-.017.005-.023.005l-.045.018c-.086.028 0 0-.097.022-.068.017-.125.029-.216.069h-.046c-.08.04-.148.05-.228.09h-.045c-.137.069-.125 0-.524.206l-.245.12-.205.113a.1.1 0 0 1-.028.017l-.091.091-.769.695-.022.022-.376.484c-.051.063.085-.034-.068.08-.057.085-.012.006-.057.08l-.057.108a.04.04 0 0 1-.012.023l-.022.045c-.091.176-.069.108-.08.415l.028.792c.035.165.086-.034.012.148l.142.512c0 .006.006.017.012.023.05.114.074.216.165.284.017.194-.017.063.102.245l.068.085c.399.513.25.2.69.644.067.068.09.09.164.153l.131.097c.006.006.023.012.029.017l.056.034 1.27.564c.222.04.54.028.626.102.233.183-.028.108.16.25a.5.5 0 0 1 .028.103l.267.547c.029.16-.068.011.069.216v.046c.056.649.193.375.04 1.132-.023.108-.006.08-.035.171l-.455 1.076c-.097.125-.194.176-.285.313-.04.068-.011-.011-.04.102-.068.256.029.108-.085.28-.057.09-.068.079-.108.193-.068.188.085.034-.085.154-.012.153-.074.444.136.592l.182.182.091.09.774.672.422.587a.04.04 0 0 1 .011.022l.33.433c0 .006.012.011.012.017v.16c-.097.04-.137.04-.228 0h-.137c-.12-.057-.387-.057-.49-.069a.57.57 0 0 0-.375.068h-.045c-.427.205-.256.228-.478.405l-.205.142-.137.09c-.16.11-.085.115-.302.2-.148.063-.256.103-.381.165H10.1l-.37.154c-.25.068-.205.04-.353.313-.102.188-.13.598-.01.746l.25.466c.01.023.01.017.034.069.057.12.022.113.176.216l.091.091c.012.006.023 0 .029.017l.085.051c.085.057.04.035.102.08.137.102.097.057.24.125.04.029.011.012.085.051l.592.183c.011.005.023.005.034.011l.063.029h.091l.58.187c.006 0 .017.006.023.006s.017.006.023.006c.085.023.136.028.239.074h.046c.108.045.147.011.318.09h.046c.165.08.381.04.5.092h.137c.126.051.302.034.45.08l1.423.466h.046l.352.08c.006 0 .018.006.023.006.342.102.94.05 1.31.034l.147-.006c.069 0 .16.006.234-.011l.233-.046c.068-.005.262-.045.308-.062h.136c.097-.046.495-.086.592-.092h.046c.113-.045.022-.045.136 0h.046c.17-.08 1.036-.153 1.224-.164.256-.012.42-.006.654.017.142.01.564.068.678.142.113-.046.045-.006.307.068.006 0 .017.006.023.006l.387.125c.028.006.097.023.17.034l.16.046c.045.017.142.062.188.08h.045l.54.08c.149 0 .445 0 .604-.08h.137c.17-.08.21-.046.319-.092h.045c.114-.045.074-.005.234-.045.33-.074.074-.131.267-.046h.046l.096-.04c.086-.045.04-.022.086-.05h.091c.028-.012.08-.035.097-.04.085-.046.04-.023.085-.052.188-.125.068-.028.228-.09h.045c.114.045.023.045.137 0h.045c.114.045.023.045.137 0h.046c.113.045.022.045.136 0h.046c.176-.075 1.03-.177 1.047-.183h.137c.056-.023.278-.046.5-.046.285-.005 1.179-.022 1.39.029.005 0 .016.006.022.006l.342.085c.005 0 .022.006.034.017.108.046.148.011.319.091h.045l.097.04c.085.045.04.023.085.051.171.08.21.046.319.091l.13.051a.1.1 0 0 0 .035.012q.018.01.034.011c.006 0 .023.006.034.012.103-.04.24.017.416.04l.302.04c.153.028-.035.085.148.005h.045c.085.04.16.034.222.034.16 0 .131-.005.25.006.262.017.473.011.581.057h.046l.683.182h.136c.177.085.45.034.627.08.01 0 .034.011.045.011l.91.063c.211 0 1.06-.035 1.202.022h.045c.114-.045.023-.045.137 0h.045c.114-.045.023-.045.137 0h.046c.113-.045.022-.045.136 0h.046c.114-.045.023-.045.136 0h.046c.114-.045.023-.045.136 0h.046c.114-.045.023-.045.137 0h.045c.114-.045.023-.045.137 0h.045c.114-.045.023-.045.137 0h.045c.114-.045.023-.045.137 0h.046c.113-.045.022-.045.136 0h.046l4.024-.153c.421 0 1.28-.103 1.56.233.074.085.034.063.05.091l.103.16c.188.204.183.153.37.204.108.035.052.029.228.063.13.023.091-.006.2.034h.045c.114.046.256.023.364.091.222-.09-.097-.017.262.023.08.011.279.046.33.068h.137c.165.08.381.04.5.091h.046c.16-.068.046-.005.177.012l.085.005 2.26.052c.096.005.148-.023.262.022h.045c.114-.045.023-.045.137 0h.136c.114.046.023.046.137 0h.045c.114.046.023.046.137 0h.046c.12.046.062.012.17.023.074.006.091.017.2.04.08.011.09 0 .165.006.102.005.011-.006.09.011l.092.029c.102.022.216 0 .324.011l2.647-.028c.085-.012-.068-.069.102 0h.046c.114-.046.023-.046.137 0h.045c.108-.046.308-.023.473-.035.148-.011.25-.022.33-.022.136 0 .16.005.244-.029h.046c.21.086.017-.085.228 0h.045c.114-.045.774-.045 1.048-.062.08-.006.074-.012.13-.023.16-.034-.04-.086.148-.012h.046c.194-.09 2.209-.034 2.658-.028.125 0 .535-.028.632.028a.44.44 0 0 1 .319 0h.045a.44.44 0 0 1 .32 0h.045a.44.44 0 0 1 .318 0h.046c.108-.045.524-.022.683-.09h.045c.091.034.086-.023.353-.023.103 0 .245-.017.478-.04.154-.017.28.011.484-.034.006 0 .017-.006.023-.006l.262.011h.045a.44.44 0 0 1 .32 0h.045a.44.44 0 0 1 .319 0h.045c.307-.148.717-.028.865-.09h.137c.114-.046.023-.046.136 0h.046c.13-.052.882-.04 1.184-.075.347-.04 1.634-.085 1.878-.199h.046c.068-.028.205-.04.307-.068.006 0 .017-.006.023-.006.302-.085.404-.034.615-.08l1.235-.319c.102-.022.267-.045.33-.068h.046c.096-.04.068-.017.193-.04l.678-.142h.136c.165-.08.382-.04.501-.091h.045c.99-.085 1.259-.063 2.272-.068l.666.068c.12.023-.057.074.125 0h.045c.217.102.837.006 1.048.091h.045c.182-.074 0-.023.126 0 .005 0 .017.006.022.006l.774.08c.126.022-.062.08.126 0h.045c.114.045.023.045.137 0h.045c.154.062 1.395.062 1.651.062.16 0 1.372.029 1.588-.063h.046c.17-.01.563-.04.683-.09h.045c.222-.109.7-.023.865-.092h.046c.102.04.193.023.37.029.102.006.444 0 .546.062h.091c.148.063.552.052.74.069.012 0 .035.005.046.005.125.023.006.086.17.017l.069.029c.006 0 .023.011.034.011.194.057.148 0 .478.069l.757.074c.103.028-.034.011.114.028l1.133.04c.273 0 .262.023.512-.063l.051-.017c.046-.011.194-.028.29-.045l.866-.21h.137l1.138-.377c.017-.005.006-.011.091-.04.165-.056.046.029.182-.056.524-.32.029-.518.313-.82l.188-.074c.154-.046.188-.046.148-.205-.108-.455-.683-.336-1.133-.376l-.466-.114h-.046l-.091-.09c-.21-.143-.268-.422-.205-.66l.023-.058c.057-.165-.006-.182.04-.472.028-.16.056-.205.005-.285-.074-.125-.125-.085-.267-.13a.1.1 0 0 1-.029-.012.1.1 0 0 1-.028-.012c-.194-.074-.302-.153-.45-.375-.136-.097-.045-.131-.068-.29-.011-.08-.034-.126-.068-.2l-.029-.074c-.148-.398-.535-.33-.797-.438h-.045c-.086-.034-.171-.023-.325-.04-.267-.028-.233-.034-.45-.051h-.045c-.085-.034-.216-.04-.433-.063-.142-.011-.222.017-.347-.028h-.045c-.086-.034-.183-.023-.37-.046-.21-.022-.325-.011-.41-.045h-.046c-.08-.034-.256-.034-.5-.051-.194-.012-.382-.012-.462-.04h-.045c-.12-.052-.61-.023-.774-.091h-.046c-.188.08.012.023-.148-.012l-.558-.05c-.187-.018-.478.028-.62-.035h-.046l-.09-.091c-.365-.245-.268-.342-.433-.478-.012-.006-.04-.023-.046-.034l-.034-.035c-.12-.136.006-.182-.353-.37l-.057-.034c-.17-.108.086.074-.057-.034-.09-.068-.05-.028-.114-.114l-.182-.182-.182-.182c-.148-.108-.142-.148-.182-.279l-.313-1.144c-.029-.137-.023-.057-.029-.165-.028-.53.04-.364.086-.61.028-.13-.029-.141.074-.358v-.045l.017-.222c.011-.137-.063-.046.074-.143.028.023.068.063.17.057l.2-.057c0-.37.028-.478.017-.631-.034-.348.046-.313.148-.473.04-.057.023-.04.034-.068.006-.011.017-.034.017-.046l.057-.114c.2-.37.142-.13.404-.762.108-.08.103-.217.342-.387l.068-.046.017-.017.069-.102c.08-.148.05-.177.187-.268.023-.057.012-.045.017-.074l.712-1.019c.136-.33.006-.034.205-.341l.068-.114c.046-.068.057-.074.103-.148.08-.137-.04.057.034-.063.08-.13.222-.358.324-.427.228-.546-.205.228.165-.284.04-.057.125-.268.273-.393.228-.2.37-.455.524-.723l.023-.045c0-.006.011-.018.011-.023l.12-.347c.028-.154-.046-.017.08-.25 0-.006.01-.018.01-.024 0-.005.007-.017.012-.022l.097-.211c.034-.273-.063-.928-.176-1.247l-.16-.318a.3.3 0 0 0-.028-.046l-.091-.182a.04.04 0 0 0-.012-.023.04.04 0 0 0-.011-.022l-.353-.797c0-.006-.023-.092-.04-.143l-.108-.25c0-.006-.011-.017-.011-.023l-.797-1.195-.393-.325-.12-.096-.017-.018-.062-.05c-.006-.007-.017-.012-.023-.018-.2-.136-.17-.21-.518-.438l-.347-.29-.182-.183c-.063-.136-.052-.148-.137-.273-.108-.08-.046-.04-.063-.08-.096-.176-.056-.301-.165-.375-.193-.461-.307-.547-.296-.808.006-.2.006-.103-.113-.285-.262-.188.125.006-.137-.182-.034-.046-.051-.063-.074-.103-.006-.011-.017-.04-.023-.045-.13-.262-.097-.12-.222-.308l-.148-.216c-.17-.2-.421-.46-.626-.603l-.182-.182-.2-.165c-.005-.006-.022-.012-.028-.017-.136-.092-.188-.194-.313-.28-.108-.073-.074-.022-.199-.119-.085-.068-.074-.085-.17-.148l-.137-.091-.091-.091c-.097-.063-.086-.08-.171-.148l-.558-.398c-.063-.04-.074-.063-.131-.097-.074-.046-.114-.052-.188-.086h-.045c-.074-.034-.12-.04-.188-.085-.074-.051-.097-.097-.165-.154-.12-.102-.28-.148-.422-.216h-.045a1.7 1.7 0 0 0-.41-.091H75.4c-.08-.04-.148-.051-.228-.091h-.046c-.108-.046-.25-.017-.41-.091h-.045c-.097-.046-.233-.052-.307-.069l-2.067-.159.063-.763c0-.005.006-.017.006-.022.074-.257.051-.257-.069-.444-.12-.08-.074-.092-.216-.143-.057-.023-.154-.028-.285-.04h-.045c-.512-.244-.097-.102-.307-.643a.1.1 0 0 0-.012-.028l-.153-.325c0-.005-.035-.062-.035-.068l-.267-.216h-.046c-.017-.006-.09-.04-.096-.04-.399-.188-.769-.097-1.196-.023-.125.023-.324.034-.398.068h-.046c-.085.04-.057.035-.182.046.08-.188-.057-.097.091-.319v-.045c.12-.29-.04-.666-.062-.763-.046-.188-.029-.307-.166-.677-.017-.046-.01-.035-.022-.08a1 1 0 0 0-.046-.142c-.051-.131-.023-.017-.045-.131l-.017-.137c0-.006-.006-.017-.006-.023-.006-.068-.085-.017.063-.08.01-.005.005.018.068-.034.102-.08.17-.54.17-.683 0-.836-.307-.495-.221-1.28.022-.222.028-.256.034-.37 0-.017 0-.108.011-.171.017-.131.068-.034.011-.177v-.045c.035-.08.029-.102.029-.17l-.029-.183c0-.011.006-.034.006-.046v-.022l-.011-.12c-.029-.262.028-.222-.069-.466l-.05-.12c-.166-.325-.03-.125-.08-.313l-.097-.296c0-.006-.006-.017-.006-.023-.13-.415-.045-.057-.074-.46l-.08-.388c0-.006-.005-.017-.005-.023l-.057-.114a.04.04 0 0 1-.011-.022l-.023-.046a.5.5 0 0 0-.029-.102c-.097-.069-.04-.018-.09-.154l-.268-.61c-.154-.38.011-.398-.205-.676-.069-.091-.103-.097-.171-.2-.063-.04-.074-.062-.13-.096-.075-.046-.115-.052-.189-.086l-.057-.034c-.017-.011-.085-.029-.17-.148a1 1 0 0 1-.177-.142l-.023-.023-.484-.381c-.01-.006-.022-.023-.028-.018-.017.035-.598-.483-.649-.654-.028-.097-.017-.023-.011-.091 0-.006.051-.177.068-.228l.046-.142c0-.012.005-.034.005-.046l.04-.096c.006-.006.017-.012.023-.017s.023-.012.023-.018a.1.1 0 0 1 .028-.017l.774-.284a.1.1 0 0 1 .029-.012l.16-.068h.045c.045-.023.142-.063.187-.085l.678-.28c.114-.17.307-.34.245-.597-.052-.21-.103-.17-.245-.267-.313-.211-.046-.285-.433-.479-.262-.13-.051-.068-.438-.25l-.091-.091h-.046c-.125-.085-.148-.148-.279-.222l-1.087-.416c-.165-.108-.136-.13-.176-.216-.046-.097-.006-.011-.057-.102-.006-.006-.011-.023-.017-.029-.319-.54-.04.029-.29-.603 0-.006-.046-.103-.046-.108-.057-.109-.046-.091-.108-.188l-.131-.125-.137-.091h-.074a.5.5 0 0 0-.227-.046c-.217-.011-.439.08-.547.034m-3.654 17.617c-.074-.182-.023-.006 0-.125l.028-.103c.006-.028.017-.12.029-.148.08-.21.074.029.199-.233 0-.006.006-.017.011-.023 0-.006.006-.017.012-.023l.045-.09c0-.006.006-.018.012-.023 0-.006.005-.017.011-.023 0-.006.006-.017.011-.023l.057-.102c.24 0 .069 0 .137.045.154.103.057.069.279.063.381-.006.87.034 1.099-.103l.085-.05c.188-.126.068-.03.227-.092.046.108.052.034-.142.359l-.051.085c-.347.62-.017.398-.61.45-.272.022-.238.017-.426.113-.239.126-.94.075-1.013.046M39.864 44.56c.063-.046-.097-.046.137-.046-.057.046.051.029-.137.046m11.965.592-.825 1.087-.023.023c-.023.028-.023.023-.04.051l-.188.279c0 .006-.011.017-.011.017 0 .006-.012.011-.012.017s-.011.011-.011.017l-.347.512c-.154.114-.017.012-.069.08l-.848 1.167c-.057.085-.114.12-.182.216-.154.114-.017.012-.068.08l-.103.137c-.04.062-.04.056-.085.12l-.29.392-.547.728-.13.16c-.058.08-.03.097-.188.205l-.41.364c-.08.057-.006.011-.08.057-.074.051-.051.034-.114.068-.085.046-.028.012-.114.069-.051.034-.051.04-.102.08h-.046c-.182.124-.273.261-.467.3-.239.052-.273-.073-.21-.295.023-.068.023-.063.051-.165l.12-.376c0-.006.005-.017.011-.023l.41-1.218c.051-.12 0-.068.068-.25.006-.012.017-.046.023-.057l.051-.12s.04-.074.046-.074v-.045c.097-.233-.069-.689.068-.894l.165-.256c.029-.062.006-.006.034-.068l.285-.478c.068-.126-.046.022.074-.137.216-.302.057-.091.154-.307l.193-.393c.017-.029.011-.006.034-.068.108-.29.046-.644.177-.911.04-.08.057-.148.165-.228.108-.085.04-.023.114-.062.13-.063.153-.126.466-.268.154-.068.023-.017.154-.051.12-.029.091-.017.188-.063h.045c.257-.12.348-.125.655-.182.006 0 .017-.006.023-.006h.33c.114-.045.023-.045.136 0h.046c.2.017.16.017.359.046.12.017.114.023.176.034.154.034-.04.085.148.006h.046c.17.08.21.045.318.09h.137c.17.08.239.012.41.092.045.114.045.023 0 .136zm-40.772 5.111h-.046l-.136-.09h-.046c-.5-.337-.814-.348-1.11-.718l-.307-.5a.04.04 0 0 0-.012-.024l-.034-.096c-.154-.382-.142-.7.017-1.07 0-.006.006-.018.012-.023 0-.006.005-.017.01-.023.092-.228.086-.205.251-.364.16-.154.29-.313.461-.45a.3.3 0 0 1 .052-.04l.575-.296h.045c.177-.12.08-.137.547-.137-.052.126 0 .109-.035.217-.04.125 0-.017-.045.108l-.091.319c-.029.08-.012.017-.029.074l-.045.267c-.177.706.051 1.526.04 2.311 0 .091-.012-.028 0 .091l.045.205c.017.205.012.296-.12.24m57.023 3.29v.046c-.137.21-.08.387-.217.609l-.335.626c-.171.12-.018-.029-.086.154-.045.125-.045.13-.13.222-.12.136-.234.205-.33.353-.149.096-.189.199-.343.296l-.386.25c-.126.085-.24.256-.353.296-.097.034-.422.023-.61.023-.404 0-1.092.028-1.28-.046h-.046c-.102-.04-.438-.028-.592-.09h-.045c-.182.073.006.028-.148-.012-.063-.017-.08-.023-.222-.034-.678-.046-.74-.012-1.412.045H61.5c-.296.143-.62.029-.775.091h-.045l-1.013.12c-.342.051-1.543.062-1.81.017-.108-.017-.137-.04-.205-.12-.114-.136-.051-.341 0-.483.09-.257-.006-.2.062-.336.035-.069.074.005.069-.28 0-.09-.012-.068.034-.187l.245-.956c.005-.023.005-.034.022-.069.046-.096 0 .035.052-.09l.108-.365c.017-.137-.046 0 .068-.17v-.052c.034-.08.023-.17.12-.376l.165-.387c.028-.068.062-.148.09-.21l.263-.581c.017-.034.028-.102.028-.102l.034-.069c0-.005.012-.017.012-.023a1 1 0 0 0 .045-.09l.165-.325c.222-.336.421-.41.575-.706.086-.165.063-.011.285-.387.028-.045.028-.034.068-.097.068-.096.006-.005.074-.114q.009-.017.017-.028l.137-.262c.125-.239.176-.21.279-.45l.21-.347c.057-.102-.08.006.074-.102.063-.148-.011-.023.046-.114l.05-.063c0-.005.012-.011.012-.017l.16-.307c.205 0 .495.068.637.137h.046c.051.034.062.05.102.074l.188.096c.33.182.091-.022.319.137l.262.148h.045c.063.04.074.063.131.097.074.045.114.05.188.085h.045c.035.023.086.068.103.074.125.074-.011.006.125.046.233.068.063-.029.137.153.114.165-.006.086.142.421l.04.126c.455.307-.029.279.814.205.136-.012.04 0 .154-.034.427-.12.631 0 .54-.217v-.045c-.04-.49-.05-.234.126-.74.034-.097.062-.063.08-.188.01-.086-.012-.2.005-.302.04-.341.045-.711.16-.933a.2.2 0 0 1 .022-.04c.023-.04-.023.005.034-.046.268-.233.25-.148.308-.125h.045c.114-.045.023-.045.137 0h.045c.114-.045.023-.045.137 0h.045c.114-.045.023-.045.137 0h.046c.113-.045.022-.045.136 0h.046c.114-.045.022-.045.136 0h.046c.13-.051.569-.017.717-.023.313-.005.279-.022.302 1.008.017.717-.029 1.127.12 1.81.033.16.016.102.022.21.017.188.074.16.091.456.034.592.114.136.057 1.036-.028.484.006.802-.068 1.224-.012.074-.017.085-.034.142zm-11.458-1.645-.046.148c-.029.091-.04.08-.063.234-.045.307.006.341-.176.768l-.029.068c0 .006-.01.018-.01.023l-.086.216c-.114.086-.023-.005-.143.24l-.08.159c0 .006-.01.017-.01.023l-.183.46a.04.04 0 0 1-.011.023l-.046.092c-.017.028-.011.01-.034.068l-.267.615a.04.04 0 0 1-.012.022l-.051.114c-.068.108-.148.228-.21.325l-.188.239c-.137.205-.393.46-.496.671-.114.24-.267.177-.42.24h-.046a.44.44 0 0 0-.32 0h-.045c-.114-.046-.023-.046-.136 0h-.046c-.114-.046-.023-.046-.137 0h-.045l-1.873.09h-.045l-.552.04c-.035 0-.097.006-.131.012l-.143.04c-.113-.046-.022-.046-.136 0h-.046c-.114-.046-.023-.046-.136 0h-.046c-.182-.086-.33-.023-.472-.217-.091-.13-.143-.609-.143-.802 0-.16-.011-.325 0-.478l.16-.61v-.045c.051-.125.005-.04.028-.13l.439-1.384c.045-.154-.035-.08.08-.194l.261-.256.017-.017.051-.045c.137-.108.091-.029.183-.16l.09-.09.092-.092.182-.182.182-.182c.16-.108.233-.245.381-.353l.444-.29.091-.092.32-.273.09-.09c.012-.006.023-.023.029-.018l.045-.034c.08-.074-.011-.046.114-.13l.842-.712c.086-.052.092-.063.16-.114l.114-.069c.08-.05.062-.05.125-.096l.216-.108h.046c.108-.052.16-.052.239-.075.045-.01.011.006.102-.04l.114-.068h.091l1.372-.444a.1.1 0 0 0 .028-.011l.052-.017.25-.085c.057-.017.148-.029.262-.08h.045c.035-.017.183-.086.217-.097.085-.034.09-.04.193.006.046.09.034.17.029.239-.017.245-.012-.051-.103.364l-.028.074c0 .006-.012.023-.012.029l-.04.114a.2.2 0 0 0-.01.05c0 .006-.007.018-.007.023a.04.04 0 0 1-.01.023c-.382 1.036-.206.797-.246 1.708-.011.21-.017-.011-.102.279-.046.142-.057.267-.16.341m16.94 2.01c-.263.187.124-.006-.138.182-.626.939-.153.353-.444 1.098-.028.069-.022.046-.034.097l-.176.706a1.5 1.5 0 0 1-.12.285c-.262.187.126-.006-.136.182-.143.216-.188.512-.547.364h-.045c-.114-.046-.023-.046-.137 0h-.045c-.12-.051-.61-.023-.774-.091h-.046c-.245-.023-.2-.023-.416-.04-.256-.017-.438-.006-.546-.051h-.046c-.113-.046-.022-.046-.136 0h-.046c-.085-.04-.057-.034-.182-.046l.091-.307c0-.006.006-.017.012-.023l.45-1.081v-.046l.466-1.326c0-.006.006-.017.011-.023l.017-.051c0-.006.006-.017.012-.023.023-.057.063-.165.091-.222.011-.028.04-.091.04-.091l.028-.074c0-.006.006-.017.006-.023l.114-.319c0-.005.011-.017.011-.022l.49-1.161c.04-.08-.012-.006.045-.092.046-.068.086-.09.131-.159l.08-.16c0-.005.011-.016.011-.022.126-.233.336-.467.575-.586l.427-.211c.455-.228.791-.267 1.013-.359h.046c.125-.05.125-.045.245.444l.05.171c0 .006.012.017.012.023l.188.461c.063.16.188 1.053.137 1.28 0 .006-.006.018-.006.024l-.114.25a.2.2 0 0 1-.04.046c-.04.056-.023.034-.034.068-.108.222-.142.154-.239.296l-.205.347c-.062.091-.097.188-.148.285m-54.246.592h.045c.131.056.416.005.547.09.114-.045.022-.045.136 0h.046l1.6.365h.045c.17.12-.04-.068.216.552l.165.438c.114.228 0 .114.091.273l.45.962c.063.131.091.092.142.205l.035.183c.017.045.062.193.073.227.08.222.069-.011.109.444l-.091-.045h-.046c-.2.08-.296-.051-.592.09h-.046l-.38.115c-.006 0-.058.011-.115.022l-.108.023-.353.108h-.045c-.08.04-.148.052-.228.091h-.051c-.216.103-.484.086-.683.183h-.046l-1.098.136c-.154 0-.262-.017-.348-.017-.284-.011-.677-.023-.888-.12h-.045c-.205-.096-.347-.159-.507-.426l-.182-.422c-.04-.113.006 0-.034-.102l-.114-.228c-.028-.045-.04-.051-.074-.102-.262-.188.125.005-.136-.182-.023-.256 0-.04-.052-.177-.017-.045-.034-.08-.05-.148l-.058-.142c0-.006-.011-.017-.011-.023s-.012-.017-.012-.023a.04.04 0 0 0-.01-.022l-.212-.558-.05-.08c-.126-.256-.132-.245-.058-.472l.154-.854c.245-.177.011-.689.512-.808l.046-.012c.097-.017-.029-.011.068-.006l1.77.365c.171.034.416.074.473.097m5.026 1.001.085.052c.108.068.285.301.797.13.08-.028-.017.006.091-.034l.58-.153h.046l.222-.148q.019-.01.029-.017l.307-.148c.17-.057.097-.006.222-.057h.046c.233.096.136-.108.45.239.113.125.073.085.08.205.005.09.01.222.067.336v.045c-.102.25-.005.495-.125.734l-.313.598c-.034.057.074-.017-.062.08-.04.057-.023.045-.086.096a.1.1 0 0 1-.028.017l-.086.052-.034.017c-.233.097-.421.051-.603.074l-1.013.08c-.183.01-.433-.006-.524.034-.051-.126-.006-.114-.029-.222-.04-.194-.062-.108-.085-.245-.034-.21.057-.034-.114-.444-.176-.125.006.108-.142-.45l-.04-.46c-.034-.052-.023.005-.057-.115-.034-.114-.006-.011-.011-.125-.006-.091-.006-.13-.069-.262v-.045l.046-.091c.091.005.074.022.085.028l.04.023a.2.2 0 0 0 .04.028 1 1 0 0 0 .188.148m-8.493 2.465.194.33c0 .006.034.24.034.399-.154-.063-1.036.017-1.19-.046h-.136c-.319-.21-.097.08-.473-.341l-.512-.763a.04.04 0 0 0-.011-.023l-.103-.205c-.205-.5-.182-.94-.057-1.366 0-.006.006-.017.006-.023l.057-.114c.045-.096.193-.375.45-.444l.278.382c0 .005.006.017.012.023 0 .005.006.017.011.022.171.308.404.518.45.615l.08.16c0 .005.011.017.011.022l.051.069c0 .005.012.01.012.017l.085.12c.057.073.091.09.154.17 0 0 .04.057.045.068 0 .006.012.017.012.023s.011.017.011.023l.023.045c.034.063.005.006.045.091l.342.592c.13.171-.029.046.12.154m62.277 5.612.011.012c0 .005-.017-.006-.01-.012"
16
+ clipRule="evenodd"
17
+ />
18
+ </svg>
19
+ );
20
+ export default ApartacaoIconSEQM;
@@ -0,0 +1,20 @@
1
+ import type { SVGProps } from 'react';
2
+ const BreakawayRopingIconSEQM = (props: SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="1em"
6
+ height="1em"
7
+ fill="none"
8
+ viewBox="0 0 100 80"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill={props?.fill ? props.fill : '#fff'}
13
+ fillOpacity={0.85}
14
+ fillRule="evenodd"
15
+ d="M30.715 33.028c-.09-.22-.037-.168.068-.374l.184-.457c.395-.974.374-.432.527-.853.042.032.195.021.084.479-.063.274-.026.095-.121.258-.005.01-.016.02-.021.031-.005.006-.01.021-.016.032-.005.005-.01.021-.016.032l-.158.331c-.02.047-.02.037-.047.09l-.053.078c-.273.39-.147.216-.431.353m41.726 4.505h.058c.163.068.363.02.532.037l1.931.084h.058c.2.094.042.031.247.042.285.016.721.005.895.074h.058c.147-.064.031-.064.179 0h.058c.168-.069-.006-.006.315-.006l2.042.106c.006 0 .021.005.032.01.005 0 .026.005.031.01.169.032-.079.106.169.006h.058c.136.058.252.032.484.042.137.005.531.01.779.021l.615.058h.032c.332.005.153.063.316-.005h.058c.147.063.031.063.178 0h.058c.148.063.032.063.18 0h.057c.147.063.032.063.18 0h.057c.147.063.032.063.179 0h.058c.147.063.031.063.179 0h.058c.147.063.031.063.179 0h.057c.148.063.032.063.18 0h.057c.148.063.032.063.18 0h.057c.147.063.032.063.179 0h.058c.147.063 1.779.058 2.226.105.184.021.358.063.474.01h.057c.232.095 1.337 0 1.621.121h.058c.148-.063.032-.063.18 0h.057c.295-.12-.168 0 .463.027.395.016 1.537 0 1.758.095h.058c.205-.085.068.005.31.031l.642.074c.363.1 1.91.12 2.231.252h.058c.148-.063.337.032.605.058.453.048.39 0 .669.074l1.31.226h.058c.174.084.248.037.421.121h.058c.168.016.347.048.568.074.158.021.085.005.21.058.064.026.185.079.248.11-.094.127-.016.063-.168.127-.09.036-.053.015-.11.026l-.253.063c-.153.042-.127.026-.248.084h-.058c-.41.2-2.078.132-2.341.242h-.295c-.147.063-.032.063-.179 0h-.058c-.216.09-4.247.085-4.678.053a4 4 0 0 1-.29-.026l-.09-.021-.03-.006c-.111-.015.089-.09-.138.006h-.057c-.242-.116-2.137-.095-2.416-.09s-.137.005-.474-.142c-.226-.1-.21-.042-.563-.22l-.568-.275h-.058c-.105-.052-.195-.068-.3-.12-.063-.043.021 0-.116-.069l-.126-.053h-.174c-.147-.063-.031-.063-.178 0h-.174c-.032.016-.105.042-.126.053-.111.058-.053.026-.111.068-.31.227.042-.02-.121.195l-.195.147q-.017.008-.042.021c-.19.09-.31.1-.542.121h-.058c-.131.053-.526.053-.663 0h-.058l-.884-.12c-.11-.016.09-.09-.137.005h-.057c-.164-.08-.385-.085-.469-.09-.131-.005-.31-.052-.426-.068-.437-.058-.984.01-1.21-.08h-.058c-.148.064-.032.064-.18 0h-.057l-.948-.104c-.331-.084-.678-.037-.915-.137h-.058l-1.979-.358h-.058c-.142-.058-.331-.021-.542-.121h-.058l-.963-.242-.515-.142a1 1 0 0 1-.085-.037c-.12-.058-.052-.021-.115-.063-.18-.09-.348-.137-.521-.258l-.206-.147c-.12-.095-.031.005-.115-.195l.858.063h.031c.31.005.121.069.305-.005M33.3 42.822c-.105-.248.173-.437-.037-.8-.132-.227-.168-.137-.184-.295-.021-.2.1-.153.131-.39l.316-1.41c.132-.3-.079-.094.132-.41v-.058c.031-.08.073-.337.12-.542h.422c.137.59.09.21.09.973 0 .095.015.385 0 .453-.017.068-.006.031-.053.121l-.037.616c.068.379-.069.415-.269.826-.11.232.042-.047-.042.09-.031.052-.047.063-.094.126-.011.01-.085.115-.09.12-.095.153.032-.02-.058.111zm55.593-2.047c-.105.289-.4.242-.658.242-.005-.006-.01-.032-.01-.022-.022.1.042-.02-.195-.21l-.095-.068c.432 0 .842.01.958.058m.358 0h.173l.058.057h-.231l-.116.063-.063-.126c.147-.058.037-.058.179.006m-74.744 7.809.18.121c.2.379.02 1.121-.227 1.458l-.142.231s-.09.121-.095.121l-.494.29-.648.437-.037.02c-.005.006-.026.016-.036.022-.132.09-.237.184-.348.316l-.052.057c-.053.074-.027.048-.048.09l-.037.095c-.084.205-.136.273-.042.51.058.153.01.005.048.11l.063.274c.2.416.026.3-.032.721-.031.21.053.5-.031.705l-.242-.242c-.174-.116-.248-.29-.469-.368-.02-.005-.515-.1-.673-.116h-.058c-.106-.053-.195-.068-.3-.121h-.058l-.937-.447a1.3 1.3 0 0 0-.568-.1c-.237.005-.263.015-.469.142l-.073.047c-.274.184-.358.421-.684.58-.18.083-.28.104-.527.104-.147 0-.342-.068-.531-.084H6.88c-.337-.163-.295.026-.6-.3.2-.3.21-.116.41-.526.048-.1.074-.105.132-.195l.479-.479.179-.12.121-.122.179-.242c.237-.158.142-.2.437-.337.042-.02.01.006.09-.047l.425-.626.032-.058c.147-.295-.037-.11.158-.253.174-.263.116-.095.342-.258l.5-.431c.116-.121.074-.174.305-.326l.08-.043c.01-.005.025-.01.036-.02l.179-.122.152-.09c.043-.025.143-.094.174-.125.09-.09.158-.184.258-.285l.616-.463.5-.368a.06.06 0 0 1 .031-.01l1.268-.385c.295-.016.195.074.548.553zm8.705-.121h.058c.131-.053.315.021.547.047l.71.195h.058c.147.063.032.063.179 0h.058c.242.1-.01.032.195-.01a.1.1 0 0 0 .031-.011c.59-.126.38.484.674.921v.058c.068.168.005.042.047.21.042.158.042.121.08.258.036.148.015.084.047.227.11.547-.058.62.031 1.031.042.2.053.047.074.242.031.332-.084.053.084.358l-.09 1.294c-.01.742-.12 1.363-.12 1.71l-.011.548c-.09.532-.042.29.005.71.027.232-.063.19.216.38h.058l.058.057h-2.632l1.053-1.405a.2.2 0 0 0 .021-.031l.032-.058c.005-.006.01-.021.015-.027l.59-.842c0-.005-.058.011.047-.168.005-.005.137-.168.153-.19.168-.257-.042.064.079-.226-.369 0-.232-.063-.548.016l-.431.147c-.01.006-.032.011-.042.016-.105.053-.195.069-.3.121h-.058c-.105.053-.195.069-.3.121h-.058c-.19.09-.226.09-.421 0h-.058l-.116.063c-.026-.315-.057-.084-.094-.326-.121-.779.026-.11-.253-.71l-.5-.048c.147.353-.11.506.126 1.248l.053.194c-.316 0-.09 0-.179.058l-.242.242c-.305.221.153.069-.179.18-.168-.127-.137-.206-.174-.348-.152-.537.374-.432.053-1.095-.547 0-.537-.079-.931.253l-.048.042a.3.3 0 0 0-.037.047c-.515.616-.226.332-.426.627-.326-.221.027-.185-.42-.48-.238.353-.038 1.048.036 1.458 0 .006.005.021.005.032l.027.09c.079.215.152.284-.016.405h-.058c-.148-.063-.032-.063-.179 0h-.295c-.19-.08-1.173-.006-1.579-.116l-.057-.021c-.2-.048-.674.02-1.048-.069-.252-.057-.279-.215-.32-.447l-.058-.237a.1.1 0 0 0-.011-.026l-.037-.084c-.32-.484-.895.294-1.437-.206-.2-.184-.231-.447-.252-.715-.01-.01-.016-.047-.021-.037-.006.021-.053-.195-.205-.4-.158-.216-.106-.11-.1-.358.005-.326-.106-.416.331-.705l.147-.226c.121-.221.527-.448.848-.648l.768-.336c.205-.116-.016-.069.358-.19.316-.1.579-.52.763-.82l1.163-1.011c.19-.127.195-.032.384-.163.116-.08.037-.048.168-.127.058-.036.153-.063.211-.09.263-.183.5-.315.642-.615l.026-.058c.043-.09.006 0 .064-.12.005-.011.047-.295.336-.322.153-.016.332.09.542.148l.637.131c.516.18 1.268.163 1.453.237m59.498 7.389h-.058c-.19-.1-.264-.074-.169-.285l.069-.12c.036-.106-.006-.322 0-.48.01-.484.305-.373.815-.62.1-.148.163-.158.232-.311l.063-.363c0-.005.005-.021.005-.032l-.031-.6c-.006-.226-.11-.51-.127-.72l.153-.737c.195-.142.026 0 .095-.132a.1.1 0 0 0 .01-.032c.005-.005.01-.026.016-.031 0 0 .053-.1.058-.105v-.058c.095-.237-.053-.3.12-.663.2.147.138.552.196 1.073l.068.532c.1.563-.158 1.047-.242 1.41a.1.1 0 0 1-.01.032c0 .01-.011.026-.011.031-.137.39-.232 1.337.09 1.8l.347.332c.247.157.29.068.463-.048-.026.321-.148.21-.348.2-.1-.005-.126.006-.278 0zm2.7-4.442c.062-.042.062-.058.136-.068h.031l.032.005.09.026c.105.021.178.027.379.042-.09.216.036.021-.09.263l-.51.695zm-63.52 3.72.017.016c0 .006-.022-.005-.016-.015m62.725 3.605h-.374a6 6 0 0 1-.679-.063c-.11-.015.09-.09-.137.006h-.058c-.194-.08-.563-.037-.91-.132-.232-.063-1.474-.132-1.674-.226h-.057c-.243.1-.006.031-.164 0l-.126-.037c-.168-.032-.31-.016-.49-.026l-.405-.043c-.005 0-.02-.005-.031-.005l-.032-.005c-.11-.016.09-.09-.136.005h-.058l-4.195-.668c-.194-.021-.252-.01-.357-.037-.2-.047.036-.016-.148-.042l-.768-.09h-.058c-.142-.057-.332-.02-.542-.12h-.116c-.047-.032-.026-.027-.116-.059-.015-.005-.058-.02-.073-.02-.148-.043.052.057-.174-.037h-.058c-.131-.064-.09-.037-.247-.08-.316-.084-.026-.041-.4-.21-.005-.005-.027-.01-.032-.016a.1.1 0 0 0-.031-.015l-.069-.042-.152-.09c-.48-.31-.174-.81.142-1.242.237-.32.352-.258.431-.29h.058c.147.064.032.064.18 0h.057c.147.064.032.064.179 0h.058l1.842.148c.09 0 .563.005.742.09.11-.069.373-.043.479 0h.057c.364.152 1.527.036 1.742.063.3.031.153.073.39.105.184.026.379.016.568.016.374 0 .747.02.842.057h.058c.147-.063.032-.063.179 0h.058c.147.064.031.064.179 0h.058l.6.058c-.074-.184-.08-.689.11-.968.116-.168.258-.337.495-.379.194-.031.337.042.5-.258l.063-.331c-.016-.669-.037-.516.105-.963l.053-.421c.137-.774.079-2.274.079-2.495 0-.726.079-.547-.253-.873-.458-.453-.253-.169-.605-.595-.09-.11-.116-.116-.195-.231-.079.052-.095.052-.168.131-.11.11-.069.074-.095.153-.005.01-.021.11-.047.184-.21.6.1.22-.269 1.163-.005.016-.02.053-.026.068a.1.1 0 0 0-.01.032l-.527.605a.2.2 0 0 0-.02.032l-.048.09s-.037.13-.053.178c-.042.126.005-.005-.042.11l-.158.332a.1.1 0 0 0-.01.032c-.006.01-.01.026-.016.031l-.142.39c-.142.279 0 .079-.137.515-.163.527.084.127-.153.774l-.047.163v.058l-.347.947c-.11.274-.385.684-.553.795a.1.1 0 0 1-.037.021l-.037.021-.284.132c-.2-.148-.068-.064-.179-.3-.179.084-.194.068-.358.179l-.21-.521c-.095-.653.331-1.174.62-1.716.048-.09.059-.095.075-.132.184-.342.457-.857.61-1.31.021-.058.032-.126.047-.29.01-.01.016-.03.022-.036l.02-.037.085-.268a.1.1 0 0 1 .01-.032l.174-.752c.01-.043.021-.011.021-.116.005-.627-.105-.174.1-.832.079-.252-.11-.052.11-.21l.364-1.142c.015-.348.026-.437.031-.584 0-.11-.005-.095.005-.242l.263-1.884c.032-.116.058-.169.085-.295.02-.1.005-.084.063-.274l.173-.531c.027-.095.016-.363.169-.774l.337-1.016c0-.01.005-.026.01-.031a.1.1 0 0 0 .01-.032l.111-.326c.032-.084.027-.047.048-.09l.305-.473.02-.021.022-.021.337-.432a2.6 2.6 0 0 1-.405-.047c-.343-.084-.995-.069-1.153-.132h-.058c-.142-.058-.647-.037-1.037-.131l-.989-.09c-.005 0-.079-.026-.09-.026l-1.189-.226h-.173l-.369-.08c-.094-.015-.073 0-.158-.015l-.557-.11c-.353-.069-.063-.132-.295-.037a.07.07 0 0 0-.042-.016l-.142-.037c-.221-.047-.11.026-.295-.063h-.058c-.147-.063-.542-.074-.679-.1L73 39.338h-.058c-.152-.074-.079-.021-.237-.069-.147-.042-.089-.031-.2-.063-.073-.02-.194-.037-.347-.11H72.1c-.21-.084-.052.047-.3-.121h-.058l-.373-.216c-.08-.053-.042-.032-.09-.053-.01-.005-.047-.016-.058-.02l-.089-.027a.1.1 0 0 1-.032-.01l-.258-.158h-.057l-.18-.121-.473-.527c-.005-.005-.01-.02-.016-.031-.1-.216-.11-.28-.352-.405h-.174c-.084-.037-.537-.1-.779-.122-.058-.094 0-.094-.058 0l-.284-.084-.042-.016c-.01-.005-.032-.01-.042-.015l-1.132-.248h-.057c-.153-.073-.08-.02-.237-.068-.148-.042-.09-.032-.2-.063-.074-.021-.195-.037-.347-.11h-.058c-.116.047-.258-.038-.258-.038-.174-.052-.137-.015-.284-.084h-.058l-.521-.126c-.1-.032.063.005-.09-.026-.31-.058-.131.026-.542-.1l-.51-.095a.1.1 0 0 1-.032-.01l-.479-.095c-.168-.021-.026 0-.142-.032-.331-.095-.384 0-.62-.116h-.059c-.226.095-.026.016-.137.006l-.089-.022c-.1-.02-.105-.015-.184-.02-.216-.022-.442-.016-.669-.027l-.589-.053c-.216-.005.063-.11-.195 0h-.058c-.2-.084-.742.074-1.142-.12-.11.068-.373.042-.478 0h-.058c-.137.057-.405-.027-.532-.032-.147-.005-.237.01-.379 0-.268-.01-.957-.042-1.068-.09h-.058c-.258.106.058-.005-.373-.047-.374-.037-1.369.026-1.605-.068h-.058c-.242.1-.006.031-.164 0a.1.1 0 0 1-.031-.01c-.353-.085-.558-.022-1.026-.106l-.032-.005c-.11-.016.09-.09-.137.005l-.358-.063c-.252-.01-.173.031-.363-.058h-.058c-.273-.021-.21-.042-.479-.058-.273-.01-.342.031-.541-.063h-.058c-.18.074-.063.02-.19-.01a.1.1 0 0 1-.031-.011.1.1 0 0 1-.032-.01l-.784-.1c-.1-.011.02-.043-.1.005h-.058c-.11-.043-.447-.069-.647-.085l-.9-.179c-.116-.02-.348 0-.558-.1h-.058c-.153-.063-.084-.015-.226-.031-.116-.01-.053-.01-.221-.042l-1.295-.29h-.058l-1.263-.242h-.115c-.121-.047-.1-.026-.253-.058l-.674-.152c-.258-.1-.4-.074-.81-.19-.147-.042-.121-.02-.247-.084h-.058c-.221-.105-.28-.063-.421-.121h-.058c-.174-.084-.347-.121-.547-.174-.253-.063-.069-.005-.269-.094a3 3 0 0 1-.205-.095h-.058c-.1-.047-.179-.074-.295-.132l-1.405-.5c-.005 0-.052-.01-.115-.026l-2.332-.542h-.058a2 2 0 0 1-.542-.121h-.058c-.163-.068-.52.005-.779-.121h-.057c-.153-.063-.153-.016-.332-.047-.105-.016-.152-.032-.19-.043-.147-.031.006.027-.136-.031h-.058v.058c.01.11.021.19.026.22l.253.632c.005.006.01.021.016.032l.368.62c.126.227.158.396.542.654l.121.12c.09.058-.137.058.179.058-.121.258-.116.637-.216.916l-.052.421c.005.563-.053.31.084.568l.12.242c.006.006.011.022.017.027l.6.958c.131.242.378.436.378.878 0 .421-.168.585-.389.91-.205.148-.021.011-.11.164-.053.1-.064.105-.143.184-.084.084-.1.09-.2.163l-.11.08c-.105.083-.384.273-.6.283h-.147c-.448.016-.542-.094-.669-.015-.19.115-.263.768-.279.931-.047.484-.357.237-.415.863-.095 1.021-.084.642-.532 1.426l-.231.326c-.153.211-.148.074-.29.285-.179.126-.016-.027-.147.226-.005.005-.016.021-.016.032-.126.252-.01.605-.042.9l-.332.93c-.005.006-.01.022-.015.032l-.048.169c-.01.01-.016.032-.02.037l-.953 1.073c-.227.221-.042.337.047.463l.663.642c.005.006.021.011.032.011l.826.626c.079.121.1.121.174.253.252.452-.174 1.657-.343 1.868-.326.405-.11.242-.457.726l-.437.769c-.526 1.073-.079.068-.963 1.142l-.037.042c-.005.005-.016.015-.016.02l-.194.337c-.264.521.036.164-.148.421-.084.121-.242.232-.347.369l-.232.368c-.179.132-.01.095-.294.316l-.069.047a.8.8 0 0 1-.663 0h-.058c-.142-.094-.173-.179-.316-.252-.163-.084-.315-.116-.373-.542-.026-.195-.305-.416.158-1.18l.068-.12c.058-.105.032-.116.221-.248.08-.115.032-.063.148-.152l.11-.069c.005-.015.026-.01.037-.02.11-.058.2-.09.31-.169.106-.079.116-.11.232-.19l.037-.02.084-.069c.126-.137-.047.079.052-.074.348-.542.164-.415.548-.568l.705-.72.032-.059c.005-.005.01-.02.015-.031l.132-.269c.021-.042-.005-.016.047-.09.053-.073.11-.11.18-.178.141-.142.536-.9.204-.853l-2.252.01c-.51-.125-.968.006-1.515-.252-.221-.21-.216-.305-.285-.41-.005-.005-.015-.021-.015-.026-.058-.08-.048-.058-.116-.106l-.09 1.363c0 .121.053.427.053.569 0 .2.01.1-.026.347-.027.19-.027.116-.027.263 0 .49-.231.39-.231.79l.016 1.005c.005.073-.006.015.036.136l.18.827c.02.126-.038.152.026.352.105.342.384.648.552 1.026l.063.158c.006.006.016.021.016.032l.18.594a1 1 0 0 1 .004.09c0 .142.027.3-.031.437.42 0 2.089.02 2.284-.058h.058c.147.063.031.063.178 0h.058c.148.063.032.063.18 0h.289c.147-.063.031-.063.179 0h.058c.147-.063.031-.063.178 0h.058c.148-.063.032-.063.18 0h.057c.169-.069.758-.026.974-.032l3.683-.047c.185.058.158.163.027.258h-.058c-.442.21-.163-.027-.3.3-.169 0-.405.01-.468.02-.164.038-.095.053-.253.159h-.058c-.416.2-.253.168-.531.368-.069.053-.027.021-.11.068l-.08.043-.179.12c-.29.2-.347.164-.563.243-.81.294-.884.126-1.373.22l-.127.027c-.1.01.021.042-.1-.005h-.052c-.148.063-.032.063-.18 0H32.7c-.148.063-.032.063-.179 0h-.058c-.147.063-.032.063-.179 0h-.058c-.226.094-2.215.079-2.636.052-.321-.02-1.005.006-1.147-.052h-.058c-.148.063-.032.063-.18 0h-.057c-.147.063-.032.063-.18 0h-.057c-.279.115-.021-.116-.3 0h-.058c-.147-.063-.031-.063-.179 0h-.058c-.152-.063-.279-.032-.436-.032-.164 0-.232-.026-.585-.031h-3.368c-.273 0-.536 0-.789.02-.479.043-.163.143-.41.038h-.058c-.153.063-.542.047-.663 0h-.058c-.063-.027-.563-.074-.8-.09-.18-.01-.38 0-.569 0-.489 0-4.43.079-4.699-.032h-.058a.58.58 0 0 1-.42 0h-.059c-.279.116-.02-.115-.3 0h-.058c-.147-.063-.031-.063-.178 0h-.058c-.148-.063-.032-.063-.18 0h-.057c-.195-.084-6.641-.042-6.7-.042-.247.006-.541-.02-.684.042h-.057c-.28-.115-.021.116-.3 0h-.058c-.095.043-.28.064-.542.064-.774-.006-.484-.248-1.2-.542-.126-.185-.142-.127-.342-.264l-.284-.2c-.006-.015-.027-.015-.037-.02-.148-.1-.248-.206-.384-.348l-.08-.09c-.068-.115-.015.011-.03-.089l.004-.084c.01-.137-.2-.195-.4-.405l-1.205-1.51c-.005-.006-.01-.022-.015-.032l-.032-.058c-.142-.284-.121-.158-.142-.326-.042-.31-.037-.542.084-.785.005-.005.01-.02.016-.031a.06.06 0 0 0 .01-.032.06.06 0 0 0 .01-.031c.006-.005.011-.021.017-.032.058-.11.115-.158.205-.242l.274-.22c.09-.032.2-.027.31.025h.058c.516.248 1.1-.01 1.22-.042.19-.042.385 0 .58-.031.231-.037.116-.074.352-.084l1.153.157h.058c.058-.042.068-.036.137-.105l.2-.331c.089-.127.015-.021.094-.153.048-.079 0-.01.069-.116.42-.61.042-.458.29-1.057l.11-.158c.052-.08.068-.116.11-.19.005-.01.016-.026.021-.042.005-.01.016-.026.021-.037.174-.295.09-.195.226-.558l.316-.568c.232-.3.216-.284.653-.558l.326-.21.374-.353c.02-.031-.058-.005.105-.126.142-.216.263-.242.374-.432l.92-1.157c.08-.148.069-.458.085-.69-.137.095-.121.116-.358.121.058-.263.126-.105-.058-.242-.032.142-.032.105-.074.253-.063.2-.205.337-.41.536l-.174-.126c-.263-.394-.09-.147-.179-.363-.342.248.121-.01-.142.226-.131.116-.11.074-.342.074.026-.053.09-.195.11-.247.043-.105.016-.021.032-.1l.121-.358c.195-.532.28-.584.28-.979l-.296.342c-.057.084.016.016-.068.08-.042.062-.063.078-.1.136l-.342.568c-.005.005-.01.021-.016.032-.005.005-.01.02-.016.031-.005.006-.01.022-.015.032-.137.29-.153.21-.3.484l-.937 2.163c-.005.01-.01.026-.016.037-.005.01-.01.026-.016.037-.152.426.085.158-.147.326-.168.253-.105.121-.358.242-.058-.147-.01-.084-.068-.295-.142-.5-.121-2.068-.037-2.284.147-.379.179-.684.3-1.042l.079-.252c.258-.553.11-.4.273-.51.058-.09.085-.1.132-.195.174-.348.132-.158.242-.358l.242-.358c.232-.384.253-.295.405-.526-.09-.058-.115-.232-.457.131l-.111.1c-.342.253-.426.416-.631.553l-.18.242-.6.842c-.205.147-.02.01-.11.163-.047.084-.037.074-.11.153-.137.152-.158.205-.385.22.095-.226-.1-.804.122-.962l.289-.527c.158-.342.147-.268.358-.557l.031-.042c.006-.006.016-.016.016-.022l.2-.289-.72.179h-.059c-.126.058-.094.042-.247.079l-.974.31c-.131.032-.315.053-.4.09h-.063c-.184.079-.02.084-.242-.058.169-.253.3-.353.526-.474.006-.005.022-.01.032-.016a.2.2 0 0 1 .032-.02l1.694-.816h.058l1.142-.48.237-.21c.079-.079-.026.006.12-.1l1.059-.794c.1-.074.063-.058.179-.127.368-.226.326-.284.478-.368.195-.105.164-.021.332-.09h.058c.184-.073.9-.026 1.126-.031h.453c.215 0 .2.005.526.032h.058c.147.063.031.063.179 0h.058c.147.063.031.063.179 0h.057l1.137.084c.663.02.7.163.863-.069.005-.01.021-.042.032-.057l.479-.6c.005-.006.015-.022.02-.027a.2.2 0 0 0 .022-.031l.168-.248c.053-.073.005-.026.079-.105l.51-.39h.058l.295-.21c.305-.242.374-.22.726-.39h.058c.105-.052.195-.068.3-.12l.721-.242h.058c.321-.153.342-.037.542-.121h.058c.2-.085.647-.064.779-.121h.058a.58.58 0 0 1 .42 0h.058l.6-.058c-.078-.195.043-.253-.178-.721.015-.01.189-.11.189-.11.231-.17-.1-.153.279-.327.105-.047.084-.037.2-.069.016-.005.052-.01.068-.015a.1.1 0 0 0 .032-.01l.437-.132h.058c.12-.058.094-.042.247-.085l.358-.094.673-.71c.227-.227.442-.443.584-.722.027-.047.027-.052.032-.094.037-.148-.026.12.016-.122.026-.157.026-.126.058-.226l.052-.168s.032-.09.042-.11a.1.1 0 0 0 .021-.037c0-.021.011-.027.021-.037.085-.127.111-.2.195-.348l.637-1.02c.005-.006.01-.022.016-.032a.06.06 0 0 0 .01-.032c.184-.373.184-.084.221-.436.043-.395-.136-.453-.015-.969.052-.226.042-.252.226-.431.326-.31.179-.258.263-.774.068-.405-.016-.416.121-.705v-.058l.442-1.305a1 1 0 0 1 .047-.09c.085-.157-.084-.02.111-.163l.295-.42.031-.032.148-.195c.089-.137.068-.121.189-.132-.032-.068-.147-.336-.153-.347-.015-.09.037-.116.08-.147.005-.006.03-.006.036-.021s.026-.016.037-.021l.49-.232.242-.12.231-.133c.342-.247-.163.011.179-.242l.11-.168-.289-.253h-.058l-.179-.12c-.11-.164-.084-.08-.22-.2l-.285-.448c-.01-.01-.037-.047-.047-.058-.127-.179-.037-.084-.11-.42-.111-.511.083-1.222.604-.974h.058l.842.42c.258-.389-.084-.03.19-.615.058-.126-.01 0 .063-.158l.631-.726c.09-.053.053-.026.169-.053.252-.058.773-.079 1.052.053h.058c.142.058.195.01.421.12h.058l.468.175c.153.078.158.005.332.263l.274.568c0 .005.005.021.01.032v.284c-.026.173-.02.079-.032.205l-.089.642c.163.079.01.058.21.026.016 0 .059-.015.074-.02l.38-.127h.057c.126-.053.49-.1.742-.005.29.11-.237-.116.074.031.01.006.026.01.037.016.142.074.1.021.2.163.052.074-.006-.02.042.08.268.515-.38.736-.38.736h-.057c-.058.026-.184.084-.248.11l-.489.164c-.037.005-.105.015-.22.026l.173.273c0-.005.005.016.01.027.116-.032.095-.01.18-.058h.057c.195-.132.095-.053.226-.105.006 0 .137-.063.142-.063.106-.058.058-.032.116-.069l.121-.058v.363h.48c-.07.169.004.116-.038.258l-.263.705c.5 0 .653-.173.642.185-.02.584-.047.247.437.478.09.058-.137.058.179.058-.01.016-.053.127-.053.127-.063.131-.026.052-.068.116-.01.01-.032.015-.042.02-.51.29 0 .453-.353.78-.095.089-.01.047-.147.1l.142.11.021.02.568.759c.59.647-.016.331.948.794l.463.127c.063.02-.016 0 .094.026.2.042.432.074.642.09q.025.014.042.02l.564.121c.11.016.363-.01.594.1h.058l1.142.243h.058c.21.1.69.136.9.242h.058c.105.052.194.068.3.12h.058c.131.053.41.07.542.122h.058c.32.152.326.016.657.242h.058c.105.052.195.068.3.12h.058c.105.053.195.07.3.122l.09.037c.01.005.031.01.047.015l.59.19a.07.07 0 0 0 .041.016c.01.005.032.01.042.016.011.005.032.01.043.015l.231.069h.058c.105.052.195.068.3.12h.058c.158.074.274.085.347.106.053.016.263.11.316.132h.058c.184.073.047-.01.253.058.094.031.105.042.115.047l.069.026.468.105q.025.014.042.021c.01.006.032.016.042.016l.874.206h.058l1.379.242h.057c.121.047.532.089.71.126.143.031.559.068.674.116h.058l1.063.152c.121 0 .09-.01.232.01l.805.08h.058c.163.068.684.073.974.09l1.073.11c.079.005.179-.01.295.042h.058c.147-.063.031-.063.178 0h.058c.127.052.774.09.89.09.179 0 .447-.043.61.026h.058c.148.057.274.031.405.031.2 0 .174.016.495.026.663.027.642.027 1.084.064h.058l1.142.057c.716-.005 1.152.074 1.826.1.3.011.931.032 1.053.085h.057c.1.042.353.037.606.052.326.021.552.021.657.063h.058c.174.069.258.016.453.042.326.043.284.053.568.08h.058l1.379.241h.058c.21.1.4.064.542.122h.058c.131.052.41.068.542.12h.058l.705.143c.016.005.105.02.11.02.216.038.163 0 .327.08h.058c.126.052.089.02.252.058l1.61.426h.058c.174.073.042.005.21.047.143.037.122.037.217.063.163.053.347.069.473.127h.058c.274.131.747.168.9.242h.058c.105.042.594.052 1.084.058.3.005.4.031.526.031.142 0 .221-.031.374.032h.058c.147.063.652.026.931.037l2.016.084h.058c.147.063.031.063.178 0h.058c.148.063.032.063.18 0h.057l2.1.242h.058c.242.1.958-.026 1.89.074.462.052 1.299.168 1.725.047l1.295-.037c.273.01 1.21-.047 1.394.032h.058c.147.063.032.063.18 0h.057a.58.58 0 0 0 .421 0h.058l2.463.12h.058c.147.064.031.064.179 0h.057c.232.095.71.074.874.106.437.084.784.037.99.131h.057c.148-.063.032-.063.18 0h.057c.221.09.863.053 1.021.121h.295c.137.058.41.053.731.085.105.01.132.005.242.005.11.005.095.016.29.032h.058c.168.068.615.042.889.084.084.016.242.052.331.068.116.016.264.021.406.09h.058c.142.057.331.02.542.12h.057c.143.059.332.022.543.122h.057c.127.052.237.037.485.079.152.026.031-.006.205.068.105.047.131.053.21.09h.058l.495.152c.063.026-.016-.01.095.047l.068.043h.058c.068.047.147.084.22.136.322.216.38.658.217.895-.021.032.005 0-.053.063l-.084.08c-.242.183-1.074.425-1.337.478l-.563.053h-.058a4 4 0 0 1-.4.084l-.242.042c-.226.058-.679.042-.858.116h-.057c-.28-.116-.022.115-.3 0h-.058l-1.653.084c-.194.005-.142 0-.284-.01l-2.358-.032c-.268 0-.789.016-.926-.042h-.058l-.12.058c.084.052-.058.005.136.047.08.016.09.01.163.016.232.026.11-.037.3.058.169.252.253.331.48.242h.057c.121-.058.1-.042.247-.084.516-.142.18-.069.532.02-.01.458-.279.364-.6.843.153.1.163.136.426.147.1 0 .29-.026.41-.084h.059c.105-.053.194-.069.3-.121h.057c.122-.058.19-.08.332-.153.184-.095.237-.142.374-.11.01.005.047.015.058.02l.21.069c.242.079.253.442.184.684-.073.263 0 .1-.19.221-.057.037-.026-.01-.147.09l-.436.689c-.2.368-.016.674-.921.647-.463-.016-.38-.063-.437.448-.021.19-.021.179-.042.457v.058c-.084.174-.08.248-.1.353l-.169.742-.005.058c-.031.352.058.568.063.847l.01.574c-.12.468-1.273.1-1.336.5a3.1 3.1 0 0 1-.305.963c-.005.005-.01.02-.016.031l-.063.195v.058c-.195.29-.01.158-.147.51l-.058.132c-.021.037-.021.047-.069.116-.042.068-.126.179-.152.226-.005.005-.01.021-.016.026l-.521.848-1.368 2.147c0 .005-.01.02-.01.031l-.064.227v.057c-.132.2-.1.28-.195.469l-.405.747c-.047.116-.005-.032-.063.153-.047.136-.058.22-.058.436.01.648.1.521.242.6h.29c.147-.063.031-.063.178 0h.058c.221-.09.863-.052 1.021-.12h.058c.147-.064.032-.064.18 0h.057c.205-.085.7-.048.916.01l.136.031c.211.074.021-.005.269.258-.058.084-.069.11-.11.19-.085.152-.169.326-.311.437l-.484.326c-.08.047-.095.074-.174.126h-.058l-.179.121c-.01.01-.031.016-.037.021l-.036.021-.037.021-1.132.521c-.01.005-.026.01-.031.016-.01.005-.027.01-.037.016-.384.153-.232-.021-.49.105h-.057c-.2.084-.221-.032-.61.168l-.59.311h-.116c-.063.042-.179.063-.31.068"
16
+ clipRule="evenodd"
17
+ />
18
+ </svg>
19
+ );
20
+ export default BreakawayRopingIconSEQM;
@@ -0,0 +1,20 @@
1
+ import type { SVGProps } from 'react';
2
+ const BulldogIconSEQM = (props: SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="1em"
6
+ height="1em"
7
+ fill="none"
8
+ viewBox="0 0 100 80"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill={props?.fill ? props.fill : '#fff'}
13
+ fillOpacity={0.85}
14
+ fillRule="evenodd"
15
+ d="M88.294 31.037h.044c.138.094.08.014.247.123l.153.102c.072.05.08.058.145.102l.08.08.08.08c.007.007.022 0 .029.014.022.058-.007-.022.123.08l.204.167c.036.03.036.022.08.051.073.05.08.058.145.102.088.065.218.13.306.24l.05.08c0 .007.008.014.008.021l.022.044c.08.167.101-.007.036.16l-.458-.414-.581-.335h-.044c-.356-.24-.349-.174-.705-.414h-.044c-.109-.073-.174-.102-.29-.167-.008-.007-.022-.022-.03-.015l-.13-.072c-.066-.03-.116-.044-.175-.073l-.501-.247c.102-.145.247 0 .589.094zm-32.368.792q-.014.009-.015.029c0 .014-.015.022-.015.029l-.145.269q-.012.01-.014.022l-.153.312c-.022.044-.036.044-.066.095-.087.058-.174.305-.247.414-.167.116-.036.007-.065.152l-.073.197c-.029.218-.022.283.058.392v.044c.139.334.226.407.16.574-.094.24-.043.218-.072.632v.044c-.117.174-.022.065-.08.21v.044c-.16.342.08.734-.276 1.22l-.669.997c-.05.087-.007.007-.036.065 0 .007-.008.014-.008.022s-.007.014-.007.022l-.029.065c-.167.342-.13.138-.21.414 0 .007-.008.015-.008.022s-.007.015-.007.022l-.327.647c-.11.225-.022.138-.131.218l-.08.196c0 .007-.007.014-.007.022l-.24.407v.043c.036.095-.007.16-.051.284l-.233.661c0 .007-.007.014-.007.022l-.138.247c0 .007-.007.014-.007.022l-.11.428v.044l-.035.138c-.059.21.036.051-.08.27 0 .006-.008.014-.008.02l-.029.066c-.174.407.066.523-.327.538-.073 0-.392-.036-.465-.065h-.044c-.072-.037-.138-.051-.21-.08h-.044l-.218-.073a.06.06 0 0 1-.029-.014l-1.017-.066c-.088 0-.066-.007-.19-.014h-.043c-.102-.044-.022-.044-.123 0h-.044c-.095-.037-.4-.022-.538-.08h-.044c-.123-.059-.494-.124-.625-.124-.13-.007-.283.015-.348.022-.088.007-.131-.022-.233.022h-.073l-.218.072a.06.06 0 0 0-.029.015h-.087c-.225.109-.552.16-.807.116-.167-.029-.08-.014-.232-.116l-.196-.218c-.117.036-.044.007-.131.05h-.044c-.225.11-.232.03-.378.08h-.043l-.218.073a.06.06 0 0 0-.03.015c-.101.044-.021.044-.123 0h-.043c-.117-.102 0-.124.08-.24l.072-.145q.001-.012.015-.022c0-.007.007-.015.007-.022.007-.007.014-.029.022-.036l.072-.102c.037-.044.044-.05.073-.094l.066-.102c0-.008.007-.022.014-.03l.13-.217c0-.008.008-.015.015-.022.059-.11.342-.727.436-.821l.088-.066c.036-.029.036-.022.094-.065.203-.174.342-.233.392-.313l.538-.748s.008-.015.015-.015l.181-.21c.088-.117.022-.03.051-.08.015-.022-.08.014.066-.095l.094-.138c.095-.167.146-.182.182-.29.044-.124-.044.072.014-.073.08-.058.037-.044.124-.204l.058-.109c.058-.087.022-.05.102-.102l.21-.414c.102-.072.03 0 .132-.218 0-.007.007-.014.007-.022.08-.174.102-.123.196-.261.225-.146.058-.11.218-.284l.24-.298.043-.08.502-.668c.13-.095-.015.007.102-.153l.283-.378c.036-.043.044-.043.073-.087q.002-.01.014-.022l.538-.603c.153-.196-.087-.036.116-.174l.211-.247.124-.08c.123-.19.094-.066.261-.197l.284-.218c.058-.029.109-.043.174-.072l.16-.095.341-.16c.044-.021.117-.058.168-.087.072-.036.13-.058.203-.087h.044c.022-.015.072-.03.087-.036.08-.037.036-.022.08-.044.014-.007.043-.029.05-.029l.182-.073c.11-.05.066-.036.131-.072l.676-.32.872-.414.458-.248h.044c.276-.188.378-.261.748-.29-.08.189.022-.03-.029.145-.08.255-.05-.014-.174.327-.058.015-.08.058-.117.124m34.243.792c-.138-.051-.029.05-.123-.124.13.051.029-.058.123.124m.037.043h-.044v-.043zm.167.204v.044l-.044-.044zM74.77 41.981h-.044c-.08.058-.261.204-.298.298-.102.225-.109.436-.094.69.014.378.283-.13.014.727-.043.139.037.182-.029.335-.073.152-.065.174-.152.181l-.516-.021c.072-.175-.022-.844.043-1.156l.037-.218v-.044c.072-.181.007.008.021-.116v-.043l.102-.306c.015-.24-.036-.661.044-.785h.043c.022.015.073.03.087.037.08.036.037.022.08.043.138.066.16.03.328.073.007 0 .028.007.036.015.007 0 .014.007.022.007l.487.16c-.153.058 0-.008-.11.058-.065.044-.043.036-.101.065M17.808 60.956H16.34c-.109-.007-.182-.029-.196-.05-.036-.073-.007-.008.014-.08l.015-.044c.014-.073 0-.05 0-.102.007-.189.044-.043.065-.261-.101.072-.109.101-.196.174-.182.153.015-.007-.174.073h-.044c-.102.043-.022.043-.123 0h-.044c-.13-.095-.036 0-.066-.095-.043-.123-.101-.414-.065-.574l.022-.065c0-.008.007-.015.014-.03 0-.014.008-.021.015-.028.08-.117.065-.124.123-.248.139-.094.022-.007.08-.116l.386-.712c.007-.015-.073.007.065-.095l.08-.08c.123-.188.276-.21.334-.457h-.087c-.102-.044-.022-.044-.123 0h-.197c-.123-.051-.181.022-.29-.124-.03-.065-.059.036.065-.087l.015-.015c.116-.116.007-.058.123-.145.022-.044.044-.087.066-.138.203-.487.181-.145.472-.69.116-.088.116-.218.29-.335l.444-.588.014-.015.56-.574c.058-.073-.087.036.058-.073l.247-.247.102-.058c.05-.036.036-.022.073-.05a1 1 0 0 0 .138-.146c.022-.03.043-.073.05-.073 0 0 .008-.014.015-.014l.073-.095c.043-.05 0-.014.05-.05l.197-.364q.002-.011.014-.022c.131-.203.131-.036.139-.4.007-.203.036.03.087-.4.014-.137.072-.166.102-.486v-.044c.072-.116.036-.058.065-.138.007-.014-.007-.007.022-.073.022-.065.014-.043.043-.08l.066-.552c.021-.24.05-.087.13-.312l.051-.182v-.211c0-.196 0-.08-.043-.123l.065-.386c.015-.087.044-.101.073-.203l.022-2.071c-.03-.378.029-.589-.08-.669h-.117c-.276.19-.457.523-.654.582l-.065.014h-.022c-.007 0-.036 0-.05-.007h-.044c-.087.036-.284.044-.378.08h-.044c-.109.044-.022.007-.123.029-.015 0-.124.029-.131.029-.102.015-.102-.014-.204.03h-.043c-.102-.044-.124-.008-.284-.044-.174-.037-.094-.015-.254-.124h-.044c-.087-.036-.123-.036-.21 0h-.044c-.102-.044-.022-.044-.124 0h-.101c-.102.044-.022.044-.124 0h-.044c-.101.044-.021.044-.123 0h-.044l-.32-.015c-.007 0-.014-.007-.021-.007-.262-.065-.167-.102-.363-.232-.117-.182-.117-.066-.211-.306-.11-.269-.058-1.49-.051-1.519.08-.21.181-.334.392-.428 0 0 .066-.037.073-.037l.124-.08.08-.08c.108-.08.058-.123.065-.24v-1.351c.007-.225 0-.073-.073-.247-.007-.022-.022-.153-.036-.284v-.043c-.087-.124-.066-.08-.066-.196 0-.102.037-.102-.065-.175-.007-.123-.08-.327-.102-.407-.014-.036-.007-.029-.036-.087-.095-.196.007-.087-.11-.174l-.45-1.112c-.05-.138-.087-.168-.109-.436-.123-1.41.32-1.258.037-1.955l-.073-.146c-.007-.007-.007-.058-.022-.094v-.044l-.08-.123c-.101-.044-.021-.044-.123 0H14.9c-.087-.037-.116-.022-.254-.03-.044 0-.197-.014-.306-.028-.145-.015-.283.021-.4-.03h-.13c-.095-.036-.356-.014-.574-.072l-.676-.167c-.007 0-.014-.008-.022-.008l-.349-.08h-.043l-.625-.167c-.008-.007-.022-.007-.03-.014l-.355-.087-.022-.008-.204-.072c-.007 0-.014-.008-.021-.008l-.378-.21c-.008-.015-.015-.008-.03-.015l-.305-.153c-.007-.014-.014-.007-.029-.014-.036-.022-.109-.044-.145-.066-.11-.065-.015-.014-.095-.072-.123-.095-.08-.051-.218-.116l-.21-.248-.233-.261-.109-.131A.7.7 0 0 1 9 36.233v-.037c0-.072.015-.145.044-.21a.47.47 0 0 1 .457 0l.415.247h.043c.073.036.138.05.211.08h.044c.152.065.596.036.705.08h.043c.102-.044.022-.044.124 0h.043c.262.021.066.08.298.123.088.015.262 0 .37.008.233.014.204.014.459.036h.21c.102.043.022.043.124 0h.044c.101.043.021.043.123 0h.044c.102.043.022.043.123 0h.044c.102.043.022.043.123 0h.022c.102.043.022.043.124 0h.545c.32-.03 1.01-.015 1.22-.066.008 0 .015-.007.023-.007.007 0 .014-.007.021-.007l.08-.022c.066-.014.16-.05.262-.08.124-.036.16-.022.262-.072h.043l.298-.066c.008 0 .015-.007.022-.007l.073-.03c.08-.021.043-.021.145-.021l.502.043h.043c.124.051.385.008.538.08h.218c.203.088.741.03.872.08h.044c.101-.043.021-.043.123 0h.044c.203.015.334.051.458 0h.378c.145-.058.036.03.21-.08l.538-.334.669-.334.08-.08c-.11-.073-.16-.073-.19-.196-.007-.044-.021-.502.066-.676v-.044l.669-.995.334-.335c.152-.225.378-.356.552-.574.073-.087.037-.058.051-.08l.313-.428.261-.175c.27-.145.124-.109.32-.24.109-.16.123-.073.182-.298s.247-.269.443-.472c.036-.037.022-.015.036-.044.059-.087-.014.03.044-.102-.669-.348-.174-.188-.407-.377-.124-.095-.443-.146-.254-.538.058-.03.109-.044.174-.073.305-.152.174-.13.574-.13-.043-.11-.058-.219.044-.291l.167-.168c.174-.116.254-.145.501-.167h.044l.167-.167c.095-.065.095-.094.182-.152.094-.073.094-.044.196-.095h.044c.101-.043.116-.029.24.015l.137.072h.044c.11.044.516.066.596.066.342 0 .436.021.589-.131l.581-.473q.002-.01.015-.021c.181-.255.181-.19.349-.27a.06.06 0 0 1 .029-.014c.167-.101.247-.167.327-.305.058-.102-.073.007.065-.094l.08-.08c.094-.138.094-.022.247-.08h.044c.101-.066.123-.073.167-.197 0-.007.007-.014.007-.021l.015-.073v-.029c0-.007-.008-.015-.008-.03s-.007-.02-.007-.028c-.007-.007-.022-.015-.022-.015l-.116-.138c-.116-.218.044 0-.102-.29l-.029-.066c-.043-.08.066.044-.05-.08-.044-.05-.052-.043-.095-.072h-.044c-.189-.139.058-.008-.16-.378-.043-.073-.014-.008-.043-.073l-.095-.269a1.5 1.5 0 0 1-.029-.283v-.044c.015-.21.073-.116.124-.24 0-.007.007-.014.007-.022s0-.021.007-.021c.015-.146-.109-.69-.181-.793-.059.044-.073.059-.131.095-.095.05.036-.015-.058.029-.24.094-.393.05-.567 0l-.262-.095c-.065-.029-.094-.036-.145-.065a.06.06 0 0 0-.03-.015c-.007 0-.021-.014-.028-.014-.182-.109-.124-.03-.276-.13l-.262-.248q-.009-.032-.03-.087c-.137-.095-.101-.08-.16-.196l-.043-.08c-.029-.066-.014-.008-.021-.08-.015-.087.007-.073-.037-.226l-.022-.087c0-.007-.007-.014-.007-.021l.05-.48c.045-.11-.072-.153.248-.363.05-.03-.014-.008.087-.037.218-.065.342.022.494.124l.124.08c.196.094.138.029.305.196.087.094.138.152.24.218h.044c.072.036.138.05.21.08h.044c.058.029.087.043.174.058.044.007.117.014.124-.036 0 0 0-.015.007-.022 0-.008.008-.037.008-.051v-.247c0-.204.152-.894.24-1.076v-.043c.043-.11.007-.102.028-.197.117-.48.08-.45.298-.748l.059-.087s.007-.015.014-.015l.305-.283c.102-.066.073-.066.204-.131.065-.036.145-.073.225-.11.24-.115.218-.028.363-.086h.044c.116-.051.443-.022.574-.022.138 0 .436-.03.552.022h.044c.095.043.225.014.378.08h.044c.072.029.087.021.21.036.138.022.146.015.218.044.175.065.226.167.356.254a.06.06 0 0 0 .03.014c.225.131.167.153.327.255a.06.06 0 0 0 .029.014l.08.044.21.167.08.08.124.08c.043.03.05.022.094.073.066.065.037.05.051.08l.073.167c.007.007.014.014.014.029.197.305.095 1.083.095 1.439.08.022.065.007.123.043.051.03-.007.022.08.03.073.007.03 0 .087-.03h.044c.102.044.022.044.124 0h.043c.102.044.022.044.124 0h.043c.102.044.022.044.124 0h.044c.101.044.021.044.123 0h.044c.101.044.022.044.123 0 .008.008.022.008.03.015.007 0 .021.007.028.014l.124.03c.007 0 .073.014.08.014l.174.044c.117.029.058.007.146.05h.043c.138.059.306-.029.53.175.24.218.393.763.182 1.148l-.218.218h-.13c-.102.073-.088.058-.124.211l.472.232c.008-.007.015.008.03.015.058.03.108.044.174.073l.13.072c.008-.007.015.008.03.015.072.036.138.05.21.08h.044c.145.073.29.109.407.218.124.109.175.196.32.305l.109.08c.421.327.262.124.465.262.065.043-.007 0 .073.058.08.116.138.138.218.24.138.174-.051.014.123.21.044.051.08.073.124.124l.196.262c.073.109.13.138.203.254.03.05.044.08.08.13.037.052.051.059.088.117l.087.102s.007.014.014.014c0 0 .008.015.015.015.065.08.036.109.182.203.109.16.065.175.218.327.065.066.072.058.123.146.058.102-.065.014.073.116l.08.08c.05.102.174.356.247.414.087.131.094.073.196.255.087.152.13.145.204.254.116.16-.037.058.101.152.066.095.335.386.436.575l.066.094c.109.16.094.058.203.284 0 .007.008.014.008.021l.123.247c.08.16.247.255.414.364l.051.036c.196.116.19.044.32.131l.334.167c.197.13.37.334.538.502.175.16.298.363.502.501h.043l.124.08h.043c.458.218.683-.087.872-.233l.51-.385c.079-.065.072-.08.159-.13.08-.117.029-.052.123-.124l.037-.03q.012-.002.014-.014l.168-.16c0-.014.014-.007.021-.014.087-.058.095-.08.175-.16.181-.182.065-.015.312-.225l.175-.117c.13-.087.174-.181.312-.268.116-.073.051-.008.175-.117.072-.058.05-.058.138-.116l.378-.334c.065-.03.109-.037.174-.08.05-.03.065-.051.116-.088.175-.123.182-.065.335-.167a.06.06 0 0 1 .029-.014l.596-.32.21-.167.08-.08.124-.08.552-.4c.007 0 .015-.007.022-.007l.073-.029c.16-.073.109-.065.225-.145l.022-.015c.189-.138.196-.24.378-.32.007 0 .014-.007.021-.007l.044-.014c.007 0 .014-.008.022-.008.029-.014.065-.029.094-.05l.175-.095c.087-.036.022.014.16-.073l.298-.116c.072-.036.043-.022.08-.05l.334-.168.334-.167c.102-.051.174-.08.283-.131.08-.044.168-.073.255-.116h.043c.044-.03.051-.044.095-.066.044-.029.05-.029.087-.043l.443-.226h.044l.72-.341c.007 0 .014-.007.021-.007l.044-.015c.029-.014.065-.036.094-.05h.044c.109-.052.189-.059.24-.074.036-.014.181-.072.218-.094h.043l.073-.036c.29-.138.116-.088.305-.211h.044c.073-.036.138-.051.21-.08l.19-.102c.218-.109.392-.138.523-.225l.334-.167c.364-.175.262.087.45-.284 0-.007.008-.014.008-.021l.13-.19c.037-.036.052-.05.08-.087.059-.072.037-.058.052-.08l.312-.428.458-.633c.05-.138.225-.45.233-.56.007-.086-.015-.08.007-.166 0-.008.007-.037.014-.044l.044-.123c.044-.146-.022-.168.05-.415.074-.276.132-.181.139-.356.014-.48-.087-.414.05-.596l.037-.05c.007-.015.051-.088.051-.095v-.044c-.087-.13-.087-.087 0-.276l.124-.334c.138-.327-.008-.204.13-.298a.4.4 0 0 0 .022-.095l.24-.48c0-.006.007-.014.007-.021l.058-.073.306-.4c.145-.16.254-.268.443-.181l.08.08.08.08.102.16c0 .007.007.014.007.021l.189.4c.152.276-.044.058.116.298-.065.044-.065 0 0 .044.05.116.036.748.03.952 0 .109-.008.152-.008.24l.036.247c.058.189.175.334.516.218l.182-.088h.043c.139-.058.386-.021.625 0l.248.08h.043c.095.037.19.022.313.03.189.014.203.065.378 0 .203-.073.327-.328.508-.451.37-.262.204-.189.669-.502l.08-.08h.043l.08-.08.08-.108c.008 0 .015-.008.022-.008.087-.043.095-.08.174-.13l.124-.08c.116-.066.182-.095.29-.168h.044c.124-.08.088-.043.153-.072.065-.03.073-.051.138-.095h.044c.072-.036.138-.05.21-.08.037.095.059.93-.029 1.2-.043.123-.014.007-.029.123-.014.109.015.022-.036.123-.167.328.116-.05-.32.596l-.08.08-.349.451c-.087.109-.16.16.015.254h.044c.072.037.138.051.21.08h.044l.305.153c.007-.007.015.007.03.014a.6.6 0 0 1 .188.182c.08.116.007.08.102.153l.334.334a.06.06 0 0 0 .03.015l.305.152c.116.073.247.015.363-.058l.123-.08c.008 0 .022 0 .03-.014.007-.015.021-.008.029-.015.13-.058.145-.014.24-.138.101-.124.05-.233.138-.356.05-.08.08-.066.16-.102l.13-.073h.087a2 2 0 0 1 .415-.13c.16-.03.189.007.29-.037h.044c.182-.072-.007.008.124-.021.225-.059.152-.357.225-.59.036-.108-.022.015.029-.094v-.043c.05-.131 0-.037.022-.153 0-.014.014-.044.021-.065.102-.298.022-.167.175-.35.102-.123.036-.1.167-.246.094-.11.167-.153.24-.262.102-.072.116-.116.232-.189.066-.043.059-.029.131-.072.044-.03.044-.037.095-.073l.501-.167h.044c.225-.11.232-.03.378-.08h.043l.087-.037c.095-.043.037-.014.08-.043.16-.08.473-.03.698-.051.05-.007.4-.065.509-.116h.043c.102-.044.022-.044.124 0h.043c.102-.044.022-.044.124 0h.044c.101-.044.022-.044.123 0h.044c.102-.044.022-.044.123 0h.044c.102-.044.022-.044.123 0h.044c.102-.044.022-.044.124 0h.043c.102-.044.022-.044.124 0h.043c.102-.044.022-.044.124 0h.044c.101-.044.021-.044.123 0h.044c.101-.044.022-.044.123 0h.044c.102-.044.022-.044.123 0h.044c.102-.044.022-.044.123 0h.044c.102-.044.022-.044.124 0h.043l.45.065c.124.022-.028-.007.103.03.08.021.101.006.276.035.152.022.123.022.298.037h.043c.153.072.218.007.378.08h.044c.072.036.138.05.21.08h.044l.625.167.196.073.095.043c.073.037.043.022.08.051.058.03.109.044.174.073l.131.072c.007-.007.015.008.03.015.086.058.137.116.232.182.058.036.065.043.123.08.051.036.044.036.095.072h.043c.117.058.211.058.356.262.102.138.022.072.27.24l.166.167c.066.094.095.109.175.196l.385.429c.007 0 .015.014.015.014l.05.066q.013.01.015.021c.109.124-.073-.087.036.044.008.007.03.037.037.044l.225.305c.138.203.087-.102.182.21l.065.204c0 .008.007.015.007.022.182.436-.065.734.153.952l.392.24h.044l.123.08h.044c.13.087.066.036.16.073.007 0 .094.043.094.043.073.036.044.022.08.051l.247.167.204.116c.022.015.044.044.05.03.008-.008.015.007.03.014l.21.167c.371.29.691.662.822.727l.13.109c.24.174-.115-.007.124.167l.167.116c.117.146-.13-.021.088.138.08.153.058.146.276.175.123.014.152 0 .305.073a.06.06 0 0 0 .03.014l.472.182c.021.007.08.021.108.036l.284.109c.261.11.123.036.29.066.008 0 .015.007.022.007l.08.021c.008 0 .015.008.022.008.058.014.116.022.196.065l.218.117c.124.065.102.065.204.13h.043l.139.095c.007 0 .014.007.021.007l.262.153c.058.029.109.043.174.072l.168.08.283.175.08.05c.262.139.13.037.501.284h.044c.058.036.065.05.123.087.044.03.03.015.08.051l.051.03c.066.028.11.035.175.08.05.028.065.05.116.086l.538.335c.014.007.073.036.094.05l.53.284.16.094c.044.03.088.058.124.088l.37.334c.008.007.03.036.037.043l.284.298c.072.051.058-.021.138.146l.261.654c.167.123-.014-.08.117.254l.13.327c.037.08.008.037.044.08l.08.196c0 .008.007.015.007.022 0 .008.007.015.007.022l.277.756c.058.043.094.072.065.138-.029.08-.014.094-.167.058-.124-.03-.21-.167-.313-.24h-.087c-.043.11-.014.008.015.073l.334.538q.001.01.015.021l.334.662c.029.065.014.022.022.072.014.044.014.073.043.153.073.196.015.16.102.45l.022.08c.014.124-.03.197.022.32.087.044.014.015.123.044v.014c0 .357-.043.364-.043.735 0 .152.021.276.014.356l-.073.61c-.094.349.008.443-.058.61v.044l-.225.45c0 .008-.007.015-.007.023l-.044.08q-.002.01-.014.021c0 .008-.008.015-.008.022l-.072.145c0 .008-.008.015-.008.022l-.036.117-.472.74c-.102.182-.11.132-.197.255-.065.044-.072.066-.145.102-.043.022-.102.044-.145.065-.03-.043-.044-.05-.066-.094-.058-.095 0 .007-.029-.066l-.087-.247c-.007-.065-.007-.072-.014-.181v-.044c-.044-.102-.044-.022 0-.123v-.044c-.044-.102-.044-.022 0-.124v-.043c-.044-.102-.044-.022 0-.124v-.043c.007-.124.014-.102.014-.19 0-.065 0-.101.007-.13.015-.313.066-.342.146-.727.05-.232.05-2.027-.102-2.34-.203-.422-.065-.342-.269-.48-.05.124-.007.226.066.385 0 .008.007.015.007.022 0 .008.007.015.007.022l.058.145.007.066.015.043c0 .008.007.015.007.022.08.211.102.676.095.93l-.037.371c-.007.051.008.102 0 .146-.029.152-.029.029-.072.145-.044.102.022.152-.037.283v.044c-.08.123-.065.087-.065.196 0 .066.015.124 0 .182l-.044.13c-.072.27-.072.517-.181.85-.037.117-.015.11-.015.204-.007.19-.007.015-.073.19-.029.08 0 .087-.029.203l-.138.516c-.036.145.015.043-.072.203-.248.45-.153.4-.458.858l-.08.08-.08.08-.08.08-.08.08-.167.167-.167.167-.625.581-.167.167-.08.08-.32.298-.015.015-.014.014-.03.03s-.007.014-.014.014l-.073.065c-.007 0-.014.008-.021.015-.247.182-.305.29-.436.385h-.044c-.363.175-.182-.516-.138-.64l.102-.203c.123-.232.021-.145.116-.392l.538-.749c.072-.138.109-.109.05-.261l-.174-.24c-.072-.073-.116-.124-.196-.175h-.044l-.08-.08-.123-.08-.124-.08-.247-.167-.123-.08-.051-.029a.06.06 0 0 0-.03-.014l-.174-.124-.109-.102q-.01-.012-.021-.014c-.008-.007-.015-.015-.022-.015l-.233-.247q-.012-.01-.014-.022l-.073-.087-.022-.022-.261-.305c0-.007-.008-.014-.008-.022l-.029-.087a1 1 0 0 1-.167-.501v-.044c-.138-.29 0-.516.022-.676l.08-.48c.043-.203.312-.908.109-1.053l-.066-.473c-.036-.268.095-.312-.101-.443l-.044.414c-.036.051 0-.021-.036.08-.022.058-.007.044-.022.073-.022.058 0 .044-.065.095l-.27.74c0 .008-.014.059-.021.095v.044a3 3 0 0 0-.16.261l-.225.415c-.008.007-.015.029-.022.036l-.022.044q-.002.01-.014.021a.2.2 0 0 0-.03.044.5.5 0 0 1-.065.087l-.05.102c-.03.05-.008.014-.037.058l-.03.066c0 .007-.006.014-.006.021l-.306.524c-.065.116.051.014-.08.109a.4.4 0 0 0-.021.094l-.022.044c-.037.08-.051.145-.124.196l-.167.167-.167.167-.167.167-.749.749-.45.443c-.044.051 0 .015-.051.051l-.124.167c-.123.087-.007.051-.167.19-.007 0-.014.014-.014.014-.008 0-.015.014-.022.014l-.044.03-.08.08-.167.166c-.138.102-.014.008-.073.117-.072.13-1.104 1.133-1.264 1.286-.32.313-.153.305-.24.509v.043c-.102.146-.014.073-.13.342l-.204.618v.043c-.117.175-.022.066-.08.211v.044l-.131.341c-.05.19-.03.225-.24.363-.109.16-.116.131-.181.32 0 .008-.008.015-.008.022l-.261.436c0 .007-.008.015-.015.022l-.356.407q-.002.011-.015.022l-.065.072-.015.015-.123.109-.022.022c-.269.24-.182.269-.276.45-.058.11.058.015-.08.117l-.21.581c-.095.065-.132.407-.19.56l-.029.072c0 .008-.007.015-.007.022l-.247.422c0 .007-.007.014-.007.021l-.226.378q-.002.011-.014.022c0 .007-.007.015-.007.022l-.262.436c0 .007-.007.014-.007.022-.03.05-.044.058-.08.109l-.24.37c-.015.022-.037.073-.044.08-.152.32-.116.117-.363.48-.015.022.036 0-.058.073l-.378.581-.08.08-.03.05a.06.06 0 0 0-.014.03c-.007.007-.007.022-.014.029-.117.174-.37.349-.473.516l-.021.044c0 .007-.008.014-.008.021s-.007.015-.007.022l-.05.102c-.052.087-.03.08-.153.203l-.19.19c-.181.188-.145.181-.21.29-.03.044-.037.044-.066.094-.138.102-.014.008-.072.117-.044.08-.022.036-.08.102l-.073.101c-.058.095.073-.007-.065.095l-.102.16c-.087.181-.145.16-.225.298q-.001.01-.015.021c0 .008-.007.015-.007.022 0 .008-.007.015-.007.022-.008.022.007.014-.015.065l-.167.168c-.138.101.007-.015-.087.13-.037.059-.073.088-.131.153l-.066.087-.704.996c-.015.036-.03.08-.03.08l-.014.043c0 .008-.007.015-.007.022-.08.247.065.022-.007.429-.022.102 0 .087-.015.16l-.066.152c-.007.131-.014.19-.043.248l-.11.261c-.086.167.016-.029-.02.044l-.11.167c-.065.065-.08.073-.138.116l-.08.08-.13.08c-.059.044-.044.036-.08.087l-.124.08-.051.03c-.254.174-.116.152-.298.283-.073.05-.087.065-.145.102h-.044c-.102.05-.174.08-.283.13-.08.044-.168.073-.255.117h-.043c-.073.036-.139.05-.211.08h-.044a3 3 0 0 1-.218.094c-.036.014-.109.022-.225.036-.138.022-.247-.007-.349.037h-.189c-.102.043-.022.043-.123 0h-.044c-.102.043-.022.043-.124 0h-.043c-.102.043-.022.043-.124 0h-.123c-.117-.051-.051-.008-.16-.022-.051-.007-.037 0-.095-.022-.065-.022-.043-.022-.08-.044l-.232-.145c-.175-.102-.218-.044-.262-.225l-.007-.276c.036-.153-.022-.073.08-.146l.16-.283c.123-.247.094-.124.181-.269 0-.007.008-.015.008-.022s.007-.014.007-.022l.189-.232c.116-.146.007-.131.196-.262a.06.06 0 0 1 .03-.014l.385-.32c.036-.036.058-.051.101-.102l1.352-1.395.167-.167c.116-.08.196-.175.305-.284.044-.043.11-.102.138-.145.139-.196-.065.05.073-.146l.32-.48c.05-.072.058-.064.123-.115l.175-.306c0-.007.007-.014.007-.021s.007-.015.007-.022l.066-.124c0-.007.007-.014.007-.022l.08-.167c0-.007.007-.014.007-.022s.007-.014.007-.021c.044-.08 0-.015.059-.08l.341-.647c.044-.05-.073.029.066-.073.072-.109.058-.058.094-.21.066-.233-.007.014.16-.255 0-.007.007-.014.007-.022l.393-.545c.05-.08.007-.014.043-.08.087-.152.124-.203.146-.363.021-.116.16-.37.167-.56.007-.196.065-.05.087-.247.007-.087-.015-.436.058-.552a.4.4 0 0 1 0-.29v-.044c.03-.313.073-.553.21-.829.059-.043.11-.072.16-.13l.023-.022.021-.022.502-.473c.102-.101-.051.051.043-.05l.175-.19q.002-.01.014-.021c.051-.073.088-.087.146-.146.116-.123.043-.058.072-.123.058-.124.08-.095.138-.19 0-.006.008-.014.008-.02.174-.32.167-.132.189-.32l.058-.335-.473-.174c-.109-.051-.014.058-.116-.08l-.668-.335c-.11-.05-.182-.021-.284-.203l-.044-.13c-.087-.059-.028-.015-.101-.154l-.03-.065c0-.007-.006-.014-.006-.022s-.008-.014-.008-.022l-.087-.167c-.13-.247-.102-.072-.007-.334.087-.233.181-.843.181-1.083-.007-.247.058-.174.088-.349.007-.065-.008-.116 0-.167l.145-.509.029-.363c.13-.407.058-.153.065-.669 0-.13.08-.196.233-.305.007-.007.022-.007.03-.014l.093-.03c.066-.021.037.008.131-.036h.044c.16-.065.276.044.538-.08h.043c.102.044.022.044.124 0 .094-.138.123-.283.109-.508-.007-.066-.007-.167-.182-.153-.174.015-.007.124-.436.175-.414.05-.058.014-.32.13-.16.073 0-.05-.305.146H72.7l-.705.334h-.044l-.124.08h-.043c-.124.058-.429.21-.538.167h-.044c-.101.044-.021.044-.123 0h-.044c-.101.044-.022.044-.123 0h-.044c-.102.044-.022.044-.123 0H70.7c-.102.044-.022.044-.124 0h-.043l-.705.167h-.131c-.08.037-.138.051-.196.066l-.429.101c-.123.059-.167.022-.29.08h-.044c-.073.037-.138.051-.21.08h-.037c-.117.051-.393.073-.487.175a1 1 0 0 0-.066.101c-.043.08-.072.146-.116.218v.044c-.094.145-.065.145-.065.283 0 .102.021.16-.022.262l-.458.916-.189.508c-.036.08-.102.233-.087.328.022.145-.007.007.05.138.073.174.037.138.044.261.008.167.022.037.073.24.036.13-.007.254.015.349 0 0 .021.065.029.08l.029.05c-.037.08-.022.08-.03.16v.095c.015.08-.007.03.023.08-.073.182.05.153-.131.509l-.08.167c-.058.116.029-.058-.03.065l-.116.182-.014.014-.618.567c-.102.102-.174.168-.269.27-.203.224-.058.16-.196.26l-.21.248c-.102.073-.022.015-.095.13-.146.219-.661.633-.967 1.033l-.77.843-.349.45s-.007.015-.015.015c0 0-.007.014-.014.014l-.087.102-.044.08-.167.167-.509.574c-.152.197.088.037-.116.175-.065.152.058.05-.087.196l-.175.116c-.007-.007-.021.008-.029.015-.138.094-.014.007-.08.109l-.247.341c0 .008-.007.015-.007.022l-.37.45h-.044c-.058.03-.153.066-.218.095-.087.037-.03-.014-.153.073l-.501.247h-.044c-.13.095-.022.007-.08.109-.102.167-.08.153-.116.298l-.218.894c-.124.341-.095.421-.218.748l-.03.175c-.072.181.066-.138-.036.065-.036.073-.043.262-.181.596 0 .007-.008.015-.008.022l-.094.182c-.298.414-.189.167-.654.516-.036.029-.036.029-.058.043-.08.066-.218.16-.502.19-.007.006-.021.006-.029.014h-.647c-.007-.015-.021-.008-.029-.015-.123.051-.043.015-.13-.007l-.197-.036c-.109-.015-.101-.022-.16-.03-.138-.029.037-.08-.13-.007-.044-.029 0-.007-.08-.043-.015-.008-.066-.022-.087-.037h-.044l-.269-.152c-.014-.015-.102-.08-.102-.08l-.276-.364c0-.007-.007-.014-.007-.021-.102-.182-.066-.16-.138-.415 0-.007-.008-.014-.008-.022v-.603c0-.341-.072-.508.066-.661.247-.276-.058-.13.189-.581 0-.008.007-.015.007-.022l.385-.378c.008 0 .015-.007.022-.007l.037-.015c0-.007.014 0 .014-.007-.036-.124-.014-.066-.08-.167l-.08-.08c-.109-.08-.036-.037-.058-.073-.007-.007-.015-.029-.022-.044l-.174-.356c-.037-.072-.008.008-.037-.065l-.029-.145c-.036-.335-.058-.022-.014-.487v-.044c.05-.123.007-.109.022-.218l.196-.48c.029-.08.007-.021.036-.08l.044-.138.043-.043v-.015c.044-.116-.007-.021.037-.116l.058-.102c0-.007.007-.014.007-.022l.124-.341c.145-.4.145-.138.349-.429l.116-.247c.029-.153-.095-.036.065-.153.022-.225.036-.203.095-.436.029-.109.043-.24.116-.4.102-.072.123-.174.218-.283l.254-.327c.08-.102.131-.123.197-.225l.08-.08.08-.08c.16-.109.181-.203.48-.392.072-.051.079-.059.144-.102l.168-.167.08-.08.08-.08c.058-.087.101-.102.145-.19.072-.137-.037-.014.109-.224 0 0 .007-.015.014-.015l.233-.24c.007-.007.022-.014.022-.014l.109-.087c.101-.102.058-.008.058-.139 0-.232.014-.145.189-.261l.487-.589c0-.007.007-.014.007-.022l.654-1.068c0-.007.007-.014.007-.022.218-.523-.014-.683-.014-.916 0-.13.05-.305-.175-.363-.072-.022-.312-.014-.385.022h-.043c-.139-.058-.117.022-.306-.116l-.24-.138-.08-.051c-.007-.008-.036-.022-.05-.03-.167-.08-.138.03-.589-.21-.123-.066-.102-.066-.203-.13l-.291-.168c-.182-.087-.124-.015-.283-.174l-.371-.328s-.015-.007-.015-.014l-.029-.03s-.007-.014-.014-.014l-.088-.101h-.043a.56.56 0 0 0-.305-.022l-.102.036c-.465.167-.996.007-1.243.145l-.189.211c-.022.037-.043.087-.08.131v.044a1 1 0 0 1-.109.145c-.036.044-.072.08-.109.123l-.08.088-.043.043s-.008.015-.015.015l-.029.029s-.007.014-.014.014l-.015.015-.014.014-.182.182s-.007.015-.015.015c0 0-.007.014-.014.014l-.088.102c-.232.56.51.145.829.509.116.13.007.065.189.261l.058.066c.19.196.334.298.429.538.174.443-.007.843-.03.966-.021.131.044.124-.05.48l-.03.102c-.057.13-.166.174-.268.32-.13-.088-.094-.102-.225-.117-.117-.014-.233-.007-.35-.014-.333-.022-.312-.182-.464-.124h-.044c-.269-.11-.421.116-.56-.32-.05-.167-.414-.588-.69.073l-.145.261c-.03.11.022-.065-.008.059-.021.116.008.036-.087.152l-.05.066-.175.356c-.109.196-.109.13-.21.276l-.08.08v.043c-.066.102-.059.059-.03.197l.03.261v.211c0 .196 0 .08-.044.124.072.174-.015-.051-.015.297v1.832c-.007.232.015.182.102.24.102.072.065.072.065.283 0 .618.008.24.182.502.094.138.05.116.066.189.021.116-.073.014.065.116.014.189.043.218.007.32-.13.392-.029.174-.145.69l-.095.29c-.007.023-.007.052-.014.088-.022.262.007.342.196.494l.552.443a.06.06 0 0 0 .03.015c.007 0 .021.015.028.015.008.007.022.007.03.014.014.007.05.03.08.044l.13.072.211.167c.124.182.196.139.262.35l.116.37c.189.509.094.683-.007 1.04-.03.1.014.08-.03.195v.044l-.123.189c-.073.094-.109.189-.298.305-.087.051-.015 0-.102.066 0 0-.065.05-.072.058-.153.109-.24.101-.4.349h-.044l-.683.312c-.116.05-.007.015-.138.065l-.123.03c-.291.087-.61.101-.902.021-.145-.036.015-.014-.116-.036-.094-.015-.109.014-.276-.065l-.08-.08-.123-.11a.6.6 0 0 0-.131-.138l-.044-.08c-.102-.065-.116-.108-.233-.188-.05-.037-.028-.015-.08-.051l-.16-.175c-.014-.029-.014-.05-.014-.072l-.014-.066c-.138-.487-.051-1.3-.044-1.86 0-.247-.014-.53-.014-.662-.015-.421.05-.297-.16-.56-.008-.006-.022-.028-.03-.028-.116-.138-.116-.21-.181-.4l-.03-.08c-.072-.21-.05-.872.023-1.148.043-.167.036-.116.036-.225 0-.291.058-.327.08-.502.014-.13-.037-.116.036-.247l.058-.13c.059-.233 0-.291.051-.422v-.044c-.058-.145.008-.058.022-.196.036-.436.087-.102.087-.37 0-.284-.072-.633.066-.895l.029-.065c0-.007.007-.014.007-.022q.002-.01.015-.022c.08-.145.043-.094.043-.312v-.378c0-.138-.058-.654.066-.741.007-.124.014-.146.029-.204 0-.007.043-.225.043-.232.015-.211-.13-.153-.363-.146-.465.008-.429.008-.749-.123h-.109c-.102-.044-.021-.044-.123 0h-.044c-.102-.044-.022-.044-.123 0h-.131c-.102.043-.022.043-.124 0h-.087l-.05-.03c-.255-.152-1.12-.188-1.462-.225-.072-.007.015-.029-.072.008h-.037c-.043-.015-.486-.058-.704-.167h-.044c-.102.043-.022.043-.124 0h-.043c-.102.043-.022.043-.124 0h-.043c-.102.043-.022.043-.124 0h-.044c-.101.043-.021.043-.123 0h-.044c-.101.043-.021.043-.123 0h-.044c-.102.043-.022.043-.123 0h-.037c-.102.043-.022.043-.123 0h-.044c-.102.043-.022.043-.123 0h-.044c-.102.043-.022.043-.124 0h-.123c-.16-.066-.007.007-.146-.037l-.152-.058c-.007 0-.015-.007-.022-.007l-.073-.022c-.341-.109-.065-.007-.341-.065-.087-.015-.138-.022-.218.014h-.044c-.094-.036-.53-.036-.625 0h-.043c-.102-.043-.022-.043-.124 0h-.044c-.087-.036-.407.03-.574.015l-.174-.015c-.182.11.007.429.007.429.03.065 0 .116.015.189.021.123.043.044.08.225.021.11-.015.08.029.24.036.124.058.16.058.247l.153.77c.058.233-.073.008.08.502.065.21-.073.16.21.436.131.13.27.24.364.385v.044c.029.058.029.072.065.145l.044.116c.014.03 0 .008.029.059l.486.61s.008.015.015.015l.102.145c.043.058.036.036.08.13l.196.437c.05.087-.058 0 .065.094h.044c.269.182.058.073.189.342l.102.269c0 .007.007.014.007.021l.189.625c.022.088.116.218.13.538 0 .03 0 .153-.007.19l-.065.384c-.233.167.08-.029-.116.182-.175.182-.465-.058-.633-.182-.16-.116.044.044-.174-.24-.116-.152-.007-.167-.203-.218 0 .008-.008.015-.008.015l-.007.015c0 .007-.007.029-.007.036-.03.21.007.341.145.552v.044c.08.196-.13.283-.138.276-.007-.007-.022.007-.029.014a.76.76 0 0 1-.538 0h-.043c-.204-.094-.19-.043-.378-.29l-.037-.051c-.116-.167.008-.058-.13-.16-.044-.065-.051-.058-.095-.116-.073-.102-.029-.037-.08-.124l-.08-.13c-.029-.044-.058-.08-.072-.124l-.168-.502-.181-.959c-.008-.058 0-.065-.008-.109l-.094-.203c-.11-.255-.138-.19-.16-.335l-.116-.545c-.167-.32.08-1.068-.11-1.344-.014-.153-.065-.218-.123-.334v-.044l-.414-.705c-.138-.094-.022-.007-.08-.116-.029-.058-.029-.044-.05-.102l-.059-.138c-.094-.196-.167-.218-.203-.305-.168-.48-.022-.247-.386-.69l-.269-.451c-.065-.131.066-.008-.08-.117-.05-.116.03-.152-.13-.196-.167-.043-.197.03-.364-.05h-.043c-.095-.037 0 0-.095-.023-.218-.05-.29-.087-.298.073-.029.342.015.327.066.48.072.225-.058.036.072.392.044.124.051.465.008.574v.044c.014.182.022.138.022.262 0 .181-.008.036.065.189l.036 1.33c0 .014.037.101.044.101.072.146.094.102.116.211.015.087-.036 1.177.022 1.323.102.043.022.043.123 0 .08.058.11.043.11.174 0 .073-.008.036.007.102l.276.625c.007.007.029.029.036.043.117.139.24.327.19.64-.023.13-.023.065-.117.203-.153.11-.044.051-.08.11l-.08.145-.03.058c-.02.044-.043.073-.065.102v.043c-.174.255-.123.218-.254.284-.378.203-.727.356-1.119.087a.06.06 0 0 0-.03-.015c-.268-.16-.217-.174-.282-.305l-.313-.763c-.145-.262-.007-.153-.13-.327l-.074-.32c0-.007-.007-.014-.007-.021-.058-.255.015-1.534-.036-1.883-.015-.094-.03-.13-.036-.181-.08-.393.05-.233-.095-.335l-.043-.08c-.066-.043-.051-.021-.095-.094l-.022-.378v-.022l-.072-.312c-.102-.262.029-.77-.095-1.207L37.423 46c0-.007-.008-.014-.008-.022s-.007-.014-.007-.022-.007-.014-.007-.021l-.066-.124s-.014-.058-.021-.094c-.131-.095-.022-.008-.066-.095l-.247-.501c-.065-.131-.109-.124-.181-.24l-.08-.08-.248-.385c-.05-.08-.05-.066-.123-.116-.175-.124-.182-.066-.334-.168l-.378-.247c-.022-.007-.204-.094-.218-.094a.18.18 0 0 0-.16.014c-.218.102.022.073-.247.255l-.124.167-.705.748h-.043c-.262.175-.044.16-.262.32-.094.066-.029.015-.109.066l-.05.029c-.575.378-.422.414-.916.748l-.553.32c-.007 0-.014.007-.022.007l-.218.095-.334.167-.247.167h-.044l-.123.08h-.044l-.123.08h-.044l-.233.138c-.094.058-.043.022-.108.05-.008 0-.015.008-.022.008l-.095.051h-.043l-.836.283c-.066.03-.058.022-.116.051h-.044c-.269.131-.196-.014-.705.335h-.131c-.167.065-.341-.03-.69.058l-.763.196h-.044c-.058.044-.196.262-.232.4l-.19.312c-.028.044-.043.066-.08.116l-.08.08-.123.08-.08.08h-.043c-.066.044-.073.066-.146.102-.043.022-.101.044-.145.065-.044.03 0 .008-.08.044-.015.007-.065.022-.087.036h-.044c-.276.131-.29.102-.509.32-.145.145-.297.262-.407.429l-.334.334-.29.247-.705.749-.291.247-.284.305c-.152.182 0 .138-.218.284h-.043c-.24.116-.087-.022-.167.167a.06.06 0 0 0-.015.029l-.21.545c-.037.174.08.065-.066.174l-.095.298c0 .008-.007.015-.007.022l-.109.349c-.123.334 0 .232-.13.327-.044.116 0 .043-.051.203l-.284.465c-.073.168.036.015-.044.139-.036.058-.065.065-.108.123l-.139.24v.044c-.094.138-.094.065-.16.24l-.174.384v.044l-.298.596c0 .007-.007.015-.007.022l-.174.356c-.059.13-.139.138-.211.254-.102.175.109.03-.102.291l-.254.414c0 .008-.008.015-.008.022l-.087.167c-.094.247-.029.276.044.4.072.13.05.552-.008.749 0 .007-.007.014-.007.021-.007.03-.007.044-.022.066-.065.138-.087.05-.24.109-.043.029 0 .007-.08.043-.014.008-.065.022-.087.037h-.138c-.145.072-.058.029-.232.029-.4 0-.095.508-.32.937l-.073.095c-.065.065.03-.022-.065.058l-.066.043c-.261.022-.486.044-.799.044h-.029z"
16
+ clipRule="evenodd"
17
+ />
18
+ </svg>
19
+ );
20
+ export default BulldogIconSEQM;
@@ -0,0 +1,20 @@
1
+ import type { SVGProps } from 'react';
2
+ const CincoTamboresIconSEQM = (props: SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="1em"
6
+ height="1em"
7
+ fill="none"
8
+ viewBox="0 0 100 80"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill={props?.fill ? props.fill : '#fff'}
13
+ fillOpacity={0.85}
14
+ fillRule="evenodd"
15
+ d="M42.296 15.416h.037l-.032.046zm-.38.53h.037l-.032.046zm5.454 1.06h.037l-.032.046zm-5.791.38v.037l-.046-.032zm-1.098 1.852V19.2l.046.032zm.453.306v-.037l.046.032zm1.06.302v-.037l.046.032zm7.31 1.627v.036l-.046-.032zm1.211 1.211v.037l-.045-.032zm-10.34.302h.037l-.032.046zm-.224.229h.037l-.032.045zm11.47.68v.037l-.046-.032zm2.843.91h.036l-.032.046zm-2.007.53v.037l-.046-.032zm.073.074v.036l-.046-.032zm1.06 1.211v.037l-.045-.032zm-14.426 1.518H39l-.032.045zm16.397 0v.036l-.046-.032zm-13.668 1.097v-.037l.046.032zm.187.832v.036c.023.06.028.096.028.183 0 .124-.019-.032 0 .1.077.508.091.152.11.467.018.334-.07.26-.083.416-.01.105-.032.256-.091.347-.215-.155.105.005-.115-.15-.04-.101.005-.033-.027-.106-.05-.11-.005.019-.06-.096l-.306-.621c-.004-.005-.018-.01-.023-.014l-.059-.082c-.114-.247-.128-.26-.082-.58.018-.129.192-.417.237-.485l.206-.288.078.036.036.078c.064.046.046.018.087.16l.05.402v.05c0 .005.005.019.005.023.023.128.073-.032.01.124m14.39-.416v.036l-.045-.032zm.302.754v.037l-.046-.032zm.302.759v.036l-.046-.032zm-15.145.301v.037l-.045-.032zm.115.151h.036l-.032.046zm-2.578.343v-.036l.045.032zm19.729 5.563v.037l-.046-.032zm.302.307v.036l-.046-.032zM27 38.28h.037l-.032.046zm36.538 8.027v.037l-.046-.032zm.68 1.212v.036l-.045-.032zm.38.754v.036l-.046-.032zM45.29 49.677h.037c.01.005.018.005.023.014.004.01.018.01.023.014.05.027.013 0 .073.04.064.047.068.065.105.12v.036c.032.082.014.16.082.297.041.083.046.055.082.128.046.096-.064.01.064.101.046.064.01.005.05.064.005.005.014.014.014.018.005.005.01.014.014.019l.028.068c0 .005.009.014.009.018l.187.215c.32.549-.242-.288.137.21l.083.142c.21.27.402.33.402.727 0 .352-.01.553.178.85.018.028.041.046.064.087l.114.078c.01.004.023.004.023.014l.083.086.022.037.037.06c0 .004.005.013.005.018s.004.013.004.018.005.014.005.018c.06.12.292.26.43.462v.036c.063.16-.028.622.031.705 0 .004.01.009.014.013.005.005.023.018.027.023l.092.16c0 .005.005.014.005.018.013.041 0 .005.022.06.12.279-.013.077.064.205.032.05.105.101.156.179.073.036.183.032.274.2.041.079-.014-.008.032.101l.078.078c.055.037.064.055.105.082.06.037.096.042.16.069h.11c.128.06.379.037.566.037q.006.007.005.013l.018.05c.019.037.028.055.05.087v.037l.247.315c.124.087.078.005.17.138l.073.04c-.046.11-.01.362 0 .49v.036c.105.156.023.06.077.188.115.082.028 0 .06.082l.055.105c-.05.037-.297.348-.608.151-.092.041-.023.041-.114 0H49.4a.38.38 0 0 0-.265 0h-.037c-.091-.041-.023-.041-.114 0H48.8c-.091.041-.023.041-.114 0h-.037c-.132-.055-.1.06-.137-.064-.018-.064.014-.096.06-.165v-.036c.059-.142-.01-.156-.019-.316l-.11-.397c-.032-.078.05 0-.059-.083l-.425-.52c-.183-.247-.343-.311-.466-.407-.078-.06-.096-.087-.17-.133-.2-.137.037-.018-.15-.15-.083-.124-.092-.083-.188-.152l-.15-.15-.302-.302-.078-.078-.078-.078c-.05-.022-.073-.027-.132-.054-.147-.07.036-.042-.17-.055.078-.188-.095-.156-.036-.302-.256-.023-.251 0-.334-.082-.132-.133-.036-.074-.068-.138-.041-.077-.05-.054-.142-.105-.005-.004-.018-.009-.023-.013-.297-.202-.091-.156-.301-.302-.032-.023-.05-.023-.087-.064-.069-.073-.032-.046-.041-.078-.028-.078.013-.105-.174-.123l.036-2.112c-.004-.032-.009-.023 0-.055.014-.091.005.06.028-.078l.004-.598c0-.046.005-.055.014-.147v-.338c.041-.1.014-.155.018-.256l.023-.082c.224.073-.16.068.256.31zm.037 0v-.036l.046.032zm.453.755v-.037l.045.032zm15.07 1.403v.265c-.191-.064.01.005-.086-.069-.014-.009-.06-.032-.064-.036-.055-.027-.037-.018-.082-.027a1 1 0 0 0-.142-.014c.069-.165-.069-.265-.233-.334-.124-.05-.151-.018-.297-.233-.096-.069-.023-.005-.06-.082q-.002-.01-.004-.019a.04.04 0 0 0-.01-.018c-.063-.119-.059-.014-.059-.15l.01-.298c.018-.146.525-.302.653-.338q.006.006.005.014l.1.118c.005.005.01.014.01.019l.027.04c.105.133.096.083.1.18.014.264.082.022.073.264 0 .046-.004.128 0 .17 0 .004.005.013.005.018l.018.054c.028.44-.068-.173.005.17.004.013.004.077.004.096.01.082.014.054.028.21m-6.586-.343c.077.188-.064-.014.045.142 0 0 .05.05.055.06.229.196-.082-.252.663.507.224.228.133.091.293.196l.077.078.046.027c.15.087.284.26.562.485l.06.064c.16.164.1.027.2.183l.303.301.114.078h.036c.055.037.06.05.11.082l.119.069.078.078c.082.055.068.06.141.123.106.091.083.046.202.105h.036c.1.073.05.064.064.083l.114.15c.05.037.1.041.16.069h.037l.114.078h.037l.114.077c.073.11.174.142.293.179l.036.013c.005 0 .014.005.019.005.237.073.095.087.205.229.046.054.046.04.087.105l.256.1c.073.037.146.142.238.201h.036c.384.256.302.174.636.307.27.11.114.091.31.224h.037l.279.214c.005.005.018.01.023.014.132.064.251.041.343.078h.109l.26.16c.042.018.115.06.152.078.06.027.105.04.16.068l.265.151c.041.027.041.032.087.05l.329.1h.036l.115.079h.036l.407.388c.133.183.032.306.33.466l.095.055c.055.032.041.019.114.037.037.068-.013.078.151.187l.188.229v.036h-.037c-.137.069-.174.028-.297.064l-.224.078c-.388.133-.795.155-.804.16h-.037c-.091-.041-.023-.041-.114 0h-.037c-.091-.041-.023-.041-.114 0h-.037c-.091-.041-.023-.041-.114 0h-.036c-.147-.06-.005.018-.156-.032-.15-.05-.032-.05-.22-.087-.168-.032-.219.018-.342-.032h-.037c-.091-.041-.023-.041-.114 0h-.028c-.246-.119-.511-.023-.644-.078h-.037c-.091-.04-.023-.04-.114 0h-.037l-.53-.077h-.146c-.078-.037-.187-.05-.274-.073-.133-.037-.078-.014-.215-.046-.151-.037-.27.014-.384-.032h-.037c-.123-.082-.06-.082-.178-.1-.155-.023-.192.008-.31-.051h-.037l-.407-.096c-.306 0-.462-.091-.54-.06h-.036c-.124-.059-.288-.059-.348-.059l-.406.06c-.101.04-.028.013-.124.018-.068.005-.06.009-.183.018-.06-.128-.04-.192-.265-.343l-.443-.205c-.137-.028-.654.009-.768.054h-.037a.66.66 0 0 1-.567 0h-.182a.38.38 0 0 0-.266 0h-.036c-.105.05-.1.019-.21.055-.046.019-.05.028-.101.05-.046.019-.064.023-.105.046h-.037c-.2.083-.114-.06-.265 0-.105-.073-.087-.036-.237-.087l-.096-.031c-.243-.078-.234-.138-.39-.147l.316-.576c.233-.557-.036-.695-.068-.836l-.128-.37c-.082-.133-.064-.07-.174-.133-.114-.064-.274-.27-.356-.361l-.037-.037-.018-.018-.133-.21-.073-.042c.082-.205-.055-.25-.06-.365-.009-.142.074-.028-.054-.124-.01-.128-.151-.43-.188-.475-.15-.178-.04-.014-.055-.119-.018-.11-.023-.05-.059-.114l-.046-.114-.068-.16c.224.018.137.05.265-.037.123-.082.055-.1.228-.114-.064-.16.055-.265-.064-.462l-.123-.443c-.082-.06-.041-.014-.06-.083-.036-.132.037.083-.013-.073-.037-.119-.014-.023-.037-.078-.036-.086-.023.014-.027-.096-.023-.388-.124.092-.151-.411-.005-.064-.01-.055-.018-.165v-.036c-.037-.069-.028-.046-.037-.15.133.054.736.054.873 0h.037c.091.04.023.04.114 0h.037l.617-.074c.004 0 .014-.01.018-.01l.087.005h.036c.243-.114.202-.013.407-.077a.03.03 0 0 0 .019-.01c.214-.063.425-.022.52-.063h.037c.019.009.105.045.12.054l.081.087c.133.165.151.242.361.357.083.055.092.105.202.178m-3.598-.453h-.036l.031-.045zm3.598.453v-.036l.045.031zm6.587.645c.004-.005.009.004.009.009zm.078.073.009.009c0 .004-.014-.005-.01-.01m-5.605.192v-.037l.046.032zm.073.073v-.037l.046.032zm6.286.38.334.347-.028.068-.54-.52c.184.008.11.022.234.104m0 0v-.037l.045.032zm-14.614.077v-.037l.045.032zm3.899.224h-.037l.032-.046zm11.021.114h.037l-.032.046zm-10.87.91v.037l-.046-.032zm6.93.343v-.037l.045.032zm8.063.416v.036l-.045-.032zm-18.93.15v.037l-.045-.032zm19.086 0v.037l-.046-.032zm-18.934.151v.037l-.046-.032zm19.084.302v.037l-.045-.032zm-18.024.759v.036l-.045-.032zm13.138.187v-.036l.046.032zm5.796.266v.036l-.046-.032zm-14.692.758v.037l-.045-.032zm3.026 0v.037l-.045-.032zm.572.302h.036l-.032.046zm7.268.188v-.037l.046.032zm-2.724.42.009.01s-.014-.01-.01-.01m9.275 0v.037l-.046-.032zm5.453.15v.037l-.046-.032zm-2.688.38h.037l-.032.046zM24.73 60.237h.037l-.032.045zm52.217 0v.036l-.046-.032zm-54.795.452h.036l-.032.046zm1.367 1.06h.036l-.032.047zm-.457 1.404v-.036l.045.032zm53.807.453h-.036l.032-.046zm1.82 0h-.037l.032-.046zm-53.584.078v-.037l.046.032zm45.401.452h-.036l.032-.046zm-1.741.15h-.037l.032-.045zm-32.223.23v-.037l.046.032zM43.001 15h.827c.187.018.013 0 .146.05.228.083.91-.077 1.202.064l.023.014c.005 0 .018.01.027.01q.015.004.028.008c.05.014.027-.004.091.023.05.023.083.06.133.096l.237.22c.014.018-.036.009.064.082l.092.142c.023.077-.018.054.06.16.068.169-.019-.014.027.127l.146.503c0 .005.005.014.01.019.027.068.018-.019.054.123.032.124-.032.754.023.887l.416-.229h.036l.115-.077h.036l.115-.078h.036c.069-.032.124-.046.188-.078h.036c.069-.032.124-.046.188-.078.082-.05.127-.027.228-.077h.037a.8.8 0 0 1 .416 0l.141.055c.16.036.27.233.325.37l-.014.293v.036l-.196.242c-.083.115-.019.023-.133.11-.123.096-.302.21-.462.26-.036.014-.082.014-.091.019l-.22.091h-.036l-.832.302-.343.206c-.11.11.069-.11-.023.045-.004.01-.018.028-.023.037-.191.31-.068.27-.169.608l-.013.037c-.073.306.114.635.192.69.023.055.045.224.15.301h.037a.6.6 0 0 0 .178.055c.037.005.083.014.165.019h.036a.38.38 0 0 0 .266 0h.036a.38.38 0 0 0 .265 0h.037c.087.036.183.027.38.04.1.01.072.014.145.014.092.005.019-.022.124.019h.036c.07.032.124.045.188.077.06.042-.041-.009.073.042l.087.027c.1.041.064.027.146.082h.037c.068.032.123.046.187.078.037.027 0 .005.073.041.014.01.06.023.083.032h.036l.114.078.064.041.014.014c.032.036-.06 0 .073.096l.115.077c.118.055.096.014.2.106.074.064.06.068.142.123l.078.078c.069.105.178.173.229.256.036.055-.046.023.119.15l.448.499c.1.068.127.128.21.238.013.018-.014.013.055.064.064.096.086.064.096.16.004.022-.005.096-.005.132-.005.453-.018.265.334.407.032.014.009-.005.055.027l.16.179c.119.086.023 0 .06.082l.068.132c0 .005.004.014.004.019l.014.036c.174.33.105.142.201.307.073.123.055.022.284.26.146.151.068.128.141.42l.018.055c0 .005.005.014.005.019s.005.014.005.018c.036.123-.023-.027.023.087l.077.078c.05.036.06.04.11.082l.22.343c.036.128-.014.164.237.334q.015.007.023.013a1 1 0 0 1 .37.357c.014.027-.009.004.032.046.018.018.037.036.041.027.005-.01.019.009.023.014.142-.101-.027.027.1-.16.056-.083.078-.128.138-.206l.206-.416c.05-.105.009.014.059-.096l.178-.38c.064-.114.055.005.078-.256v-.036c.069-.105.055-.05.06-.142.004-.141-.074-.032.054-.123l.151-.151h.188c.118.05.173-.018.36.17l.362.415c0 .005.009.01.009.014.005.004.014.027.018.032l.06.096c.1.22.082.1.087.21l-.005 1.573c0 .182.014.173-.041.379l-.046.233c-.073.17.069-.132-.041.06-.092.16.082-.032-.119.27.192 0 .064 0 .114.036.092.068.128.228.133.329.018.27.018-.037.078.229l.073.205c.014.032-.01.014.027.055.037.046.064.06.105.082l.151.151c.06.087.119.137.201.22.1.1.128.077.142.237.119.087.018-.018.073.124l.055.15c.005.01.005.033.005.042l.169.443c.11.078.032.064.055.16l.246.594c.083.06.037.05.078.124.05.091.005-.032.05.073l.179.608.013.018.115.206c.05.105-.032-.073.018.055.165.42-.027.128.114.36.055.088.023.088.028.134.018.146.027.022.073.132l.064.521v.037l.055.242c.036.082.018.06.064.133l.054.086c.005.01.014.069.037.124.123.297-.055.06.096.283v.037l.046.617c-.032.251-.137.585.105.745l.306.407c.005.005.005.014.01.018.036.083-.042.014.068.133.187.196.155.096.247.301.055.124.068-.022.068.247 0 .188.019.233.078.416.05.156.128.078.055.256.192 0 .064 0 .114.037l.087.05c.247.096.146.078.22.252.105.073.027.004.082.146l.192.411c.032.096-.019-.004.018.083.046.105 0-.014.05.073l.087.169c0 .004.005.014.005.018l.009.037c.091.192.164 0 .201.461v.037c-.018.206-.055.31.064.324.082.01.183-.009.315.055h.037c.046.032.046.041.087.064.078.05.004.005.073.041.146.078.187.17.187.174.064.105-.04-.055.023.046.05.082.1.096.137.196l.055.503c.05.032.06.037.11.083.114.114.005.068.105.191.133.156.064.01.197.243l.251.338c.224.306.018.082.16.33.005.004.01.013.014.017.078.151-.046.05.132.142a1 1 0 0 1 .096.06.3.3 0 0 1 .019.087l.173.324c.11.197.083.069.206.357l.069.132c.091.21.073.046.077.188.01.141-.073.027.055.123.018.238.018.146.087.274 0 .005.005.014.01.019l.205.356a.4.4 0 0 1 .023.1l.055.17c.004.009.009.032.013.036l.16.53c.01.165.041.042.078.17.01.027-.01.142 0 .169.037.123.069.014.078.169.032.47.068.603.242 1.033.155.11-.014-.064.114.256l.12.188c.292.283.1.16.246.324.197.224.133.279.201.444.06.04.174.123.206.196.036.092-.06.092.06.178.036.092 0 .01.022.083 0 .004.005.013.005.018s.004.014.009.018c.046.11.068.096.078.256.1.073.032-.009.073.124l.013.036c.005.01.01.032.014.037l.037.114c.009.078-.01.174.055.33v.036c-.014.178-.023.155-.05.36-.02.156.036.097-.065.243v.037c-.045.11-.004.132-.018.22l-.096.205c-.064.15-.092.31-.046.452.037.11.046.064.06.138.004.013 0 .077 0 .09.018.083.15.48.059.71l.073.04c.046.11-.004.06.028.179v.155c-.032.22.027.224.164.233a.3.3 0 0 0 .01.256c.127.229-.033.028.095.316.092.21-.068-.028.083.247l.146.393c.032.082.018.073.027.119.005.027.01.06.037.123.1.229-.014.092.064.274l.032.046c.15.096.192-.05.242.197l.137.288c0 .004.01.013.01.018s.004.014.004.018l.032.073c.247.339.014.197.178.316l.115.228c.187.133-.05.014.15.151l.078.037a.33.33 0 0 0-.018.196l.096.22c.123.087.009-.028.082.146l.334.462c.123.187.073.182.1.233l.165.164.014.014.06.064c.004.005.013.01.017.014s.014.009.019.014l.118.11c.092.059.142.09.142.205l-.027.133c.15.063.032-.07.141.045.156.156-.073-.046.055.133.06.082.179.187.256.238l.064.04c.064.06-.06.005.087.11l.224.26c.316.504.526.216.837.344h.183c.091.04.022.04.114 0h.036c.092.04.023.04.115 0h.036c.1.04.023.009.11.023.023.004.1.023.123.027.138.027.197.091.197.087.004-.01.014.009.023.014.155.105.114.132.315.132.087 0 .16-.023.256.018h.037c.22.106.411.046.64.037.265-.01.48-.037.676.041l.16.073h.037c.078.032.064.019.16.032l.484.197.115-.078c.087-.06.105-.087.178-.16a.75.75 0 0 1 .42-.201l.234-.091c.205-.138.064-.115.416-.115.183 0 .329-.023.452.037l.078.078c.082.114.297.082.38.077.095-.004.223.01.255.014l.16.06.078.036c-.018.201.014.215-.22.352-.004.005-.018.023-.022.014-.005-.01-.019.009-.023.013h-.073l-.229.078c.119 0 .252.014.348.014.182.004.75-.069.941.023h.037c.068.032.123.045.187.077h.329c.197.092.165-.022.174.179.005.183-.01.205-.119.365-.091.133-.091.243-.091.476.192 0 .064 0 .114.036.133.064.38.078.549.087.132.01.096-.004.265.037.192.045.04-.005.205.105h.037c.069.032.123.046.187.078h.037c.05.023.055.023.11.045.073.032.013.014.091.041.087.032.014-.018.142.065.06.036-.087.036.114.036v.151c-.018.206.014.036-.046.146l-.105.137c0 .005-.009.01-.009.014-.004.01-.014.055-.027.082l-.078.115c.064.1.1.11.165.274.123.329.064.334.292.54l.375.32v.593c-.01.05-.018.101-.041.151l-.019.055c-.027.064.055-.027-.04.073-.042.041-.055.046-.087.064h-.037c-.046.023-.064.023-.105.046-.078.037-.005.005-.073.037-.06.027-.105.045-.16.068-.037.023-.01.019-.083.037a1.248 1.248 0 0 1-.16.018c-.096.028-.059.073-.15.11-.005 0-.874.027-.974-.014h-.037c-.05-.023-.068-.027-.132-.06l-.023-.013c-.128-.055-.091-.005-.26-.082l-.376.118c-.04.014-.09.019-.09.019-.23.06-.32.032-.444.091h-.037c-.142-.06-.005-.027-.123.01l-.06.013c-.315.055-.557-.046-.653.128-.101.041-.192.023-.311.032l-1.394.01c-.055-.037-.115-.106-.142-.12-.069-.032-.357-.004-.466.005h-.037c-.22.146-.06.087-.334.1h-.407c-.585 0-.397.069-.69.069-.11 0-.251.023-.352-.018h-.036c-.092.04-.023.04-.115 0h-.036c-.087.036-.124.009-.265.077-.069.097-.197.065-.412.065l-1.33.086c-.215.151-.585.115-.681.078h-.11c-.091-.041-.023-.041-.114 0h-.037c-.091-.041-.022-.041-.114 0h-.037c-.173-.073-.013.073-.187 0h-.037c-.09.041-.022.041-.114 0h-.036c-.096.041-.26.018-.407.023-.183.009-.485-.014-.613.05-.04-.023-.004-.018-.077-.036-.12-.023-.471-.032-.618.105l-.022.027c-.092.069-.087.01-.192.055h-.11c-.092.041-.023.041-.114 0h-.037c-.091.041-.023.041-.114 0h-.037c-.091.041-.023.041-.114 0h-.037c-.096.041-.2.018-.292.018-.1 0-.178.023-.275-.018h-.036l-.567-.15-.041.072c-.183.087-.293.055-.425.055-.1 0-.27-.023-.37.018h-.037a.38.38 0 0 0-.265 0h-.037c-.091-.04-.023-.04-.114 0h-.091c-.092.037-.325.037-.416.078h-.037c-.087.037-.105.014-.206.028a2 2 0 0 1-.306.022c-.1-.004-.238-.018-.334-.027-.082-.01-.091.014-.178-.023H60.7c-.092-.041-.023-.041-.114 0h-.037c-.146-.06-.242 0-.274.01-.197.059-.498-.019-.672.063h-.037c-.04.028-.068.037-.105.083-.068.091.014.059-.073.15-.037.042-.055.046-.087.064h-.036a.4.4 0 0 1-.156.037h-.521c-.091-.005-.069-.027-.197-.114h-.036c-.137-.092-.1-.124-.283-.21-.092-.046-.05-.037-.124-.046-.11-.014-.082-.01-.16.027-.069-.046.082-.018-.114-.041l-3.19-.014c-.207-.009-.527.023-.636-.023h-.037c-.091.042-.023.042-.114 0h-.11c-.247-.1-1.353.05-1.787-.086l-.393-.019c-.092.01-.05-.004-.128.028h-.11l-.69.05h-.201l-1.582.01c-.123-.005-.27 0-.361 0-.1 0-.215-.02-.311.017h-.037l-.612.05c-.05 0-.11-.008-.183.024-.041-.028 0-.014-.069-.028h-.022l-.206.028c-.041-.028 0-.014-.069-.028h-.023l-.21.028h-.302l-.804-.06c-.005 0-.544-.023-.709.06-.123.182-.1.118-.292.132-.1.005-.146.005-.247.005-.114 0-.416-.023-.521.018h-.037c-.091-.041-.023-.041-.114 0h-.037c-.091-.041-.022-.041-.114 0h-.036c-.092-.041-.023-.041-.115 0h-.109c-.092.041-.023.041-.115 0h-.036c-.092.041-.023.041-.114 0h-.064c-.092.041-.023.041-.115 0h-.036c-.092.041-.023.041-.115 0h-.036c-.092.041-.023.041-.114 0h-.037c-.11.046-.503.018-.636.018l-2.002.032c-.2.01-.475.041-.662-.05h-.037c-.133-.064-.15-.01-.334-.078l-.16-.073-.228-.032c-.115-.009-.229-.004-.339-.004-.685 0-.498-.06-.882-.055l-.37-.055h-.037c-.013-.005-.077-.032-.082-.032-.087-.041-.032-.014-.073-.041l-.347-.019c-.444-.018-.174-.137-.37-.059h-.037c-.092-.041-.023-.041-.115 0-.054-.032.083-.041-.224-.041-.205 0-.557-.023-.68.041a.1.1 0 0 1-.024-.014l-.073-.013a.3.3 0 0 0-.064.009c-.077.004-.055-.014-.141.018h-.037c-.123-.05-.215 0-.31-.032-.115-.037-.074-.05-.138-.087-.087-.046-.037.014-.17-.027l-.168-.023c-.21.004-1.042-.023-1.148.018h-.036c-.092-.041-.023-.041-.114 0h-.037c-.091-.041-.023-.041-.114 0h-.037c-.091-.041-.023-.041-.114 0h-.037c-.183-.073.019.05-.142-.05-.255-.165-.255-.05-.585-.092l-.059-.018c-.027-.004-.027 0-.055 0-.22.023-.009-.068-.178.005h-.037c-.123-.05-.032-.01-.086-.005-.188.028.086.018-.055.014-.16-.01.059-.082-.124-.01h-.036c-.124-.05-.032-.008-.087-.004l-.17.01c-.004 0-.013.004-.018.004l-.077-.014h-.019l-.21.014h-.018l-.224-.018s-.055.018-.06.018l-2.898.004c-.411-.022-.06-.1-.27-.013h-.036c-.05-.023-.046-.014-.087-.023-.037-.005-.027-.005-.096-.023-.105-.023-.073 0-.155-.032h-.037l-.274-.087c-.096-.032-.151.041-.434-.064a.04.04 0 0 1-.019-.009c-.169-.06-.068-.037-.187-.133-.114-.09-.1-.018-.119-.073-.005-.009-.018-.009-.023-.013-.05-.023-.073-.028-.132-.055-.06-.028-.284-.128-.361-.096h-.037c-.091-.041-.023-.041-.114 0-.01-.005-.019-.014-.023-.014-.005 0-.018-.01-.028-.014l-.626-.1c-.01 0-.041.004-.078 0-.054 0-.118 0-.146-.005-.114-.014-.407-.183-.503-.247h-.036c-.243-.169-.128-.077-.188-.228V62.8c-.046-.068-.087-.091-.04-.274l.022-.073c.055-.128.055-.032.114-.17l.018-.059c.033-.082-.004.028.037-.073.055-.15-.014-.082.05-.174a.4.4 0 0 1 .174-.132l.31-.178.152-.151h.036l.078-.078a1.4 1.4 0 0 0-.54-.17c-.086-.004-.045.024-.141-.017h-.037c-.091.04-.022.04-.114 0h-.037l-.539.091-.393-.352c.014-.183.037-.064 0-.228.11-.032.06-.014.15-.078.047-.064.02-.046.092-.096.12-.082-.091.055.05-.028l.046-.027c.069-.032.124-.046.188-.078h.036c.087-.036.21-.014.343-.078h.037l.356-.1c.457-.146.663.137.892.023h.036c.069-.032.124-.046.188-.078h.036c.092-.041.023-.041.114 0h.037c.091-.041.023-.041.114 0l.078-.041.073.041.128.064c.082.032.069.018.137.05.128-.192.174-.123.38-.265.1-.04.045 0 .183-.04.402-.124.836.059 1.152-.015.059-.013-.023.01.082-.036a.5.5 0 0 1 .21-.055c.01-.137.018-.11.018-.201V57.85c0-.485-.032-.229-.242-.435-.119-.114-.037-.086-.064-.192-.037-.132-.069 0-.078-.187-.004-.087-.04-.252.023-.37.092-.17.389-.453.338-.764-.09-.576-.077-.233-.068-.822.01-.453.091-.087.082-.394-.023-.964.037-8.589-.013-8.74-.16-.475-.06-.48-.101-.649-.018-.073.005.027-.023-.055l-.014-.036c-.027-.128.037-.041-.077-.325l-.06-.096c-.087-.123-.164-.27-.009-.402.005-.005.018-.01.023-.014.005-.005.018-.01.023-.014.352-.224.251-.388.2-.873-.04-.407.006-.722.006-1.037l.027-1.989c-.01-.123-.014-.31-.023-.366-.078-.562 0-.356-.174-.425h-.036c-.16-.064.004.028-.151-.036v-.869c.192 0 .064 0 .114-.036l.114-.453c.014-.187.087-.178.097-.31.018-.316.228-.129.228-.495l-.014-.114c-.114-.36-.054-.169.01-.388l.004-1.71c.014-.26.055-.325.252-.37.105-.023-.037.018.059-.014l.055-.023c.045-.014.52.01.672-.064.068.041.096.023.16.019.077-.005.055.013.141-.019l.142.028c.133 0 .055.023.16-.028.091.06.174.041.302.037l1.166.018c.164 0 .246 0 .301-.137l.01-.032c.127-.028.105-.005.187-.037h.036c.1.041 1.088.037 1.175 0h.037c.091.041.023.041.114 0h.329c.092-.04.023-.04.114 0h.037a.38.38 0 0 1 .265 0h.037c.091-.04.023-.04.114 0h.037c.09-.04.022-.04.114 0h.036c.087.037.151 0 .37.064.005 0 .014.005.019.005l.178.082h.037c.183.087 6.404.037 7.158.037l-.055-.142c-.082-.215-.04.05-.077-.224-.005-.032 0-.023-.019-.055l-.141-.306c-.041-.064-.069-.082-.147-.119l-.228-.114c-.005-.005-.018-.01-.023-.014l-.425-.448a.03.03 0 0 0-.01-.018c-.118-.192-.072-.018-.164-.17-.045-.072-.023-.027-.05-.077-.037-.069.009-.078-.073-.201-.023-.055-.019-.133-.114-.247l-.028-.023c-.078-.091 0-.073-.164-.183l-.106-.356c-.036-.087-.018-.023-.04-.055a.03.03 0 0 1-.01-.018l-.032-.1-.183-.344c-.132-.32-.096-.347-.119-.411v-.037l-.055-.256c-.077-.397-.04.019-.082-.247-.009-.077.018-.05-.018-.173-.018-.064-.023-.046-.046-.142-.018-.082.014-.014-.018-.082-.041-.1-.064-.019-.073-.151-.041-.74.15-.567.15-1.189 0-.599.151-.535.065-.745l.073-.04c-.041-.092-.041-.024 0-.115v-.037c-.041-.091-.041-.023 0-.114v-.037l-.06-.219c-.004-.1-.018-.37.032-.453.266-.443 0-.502.183-.818l.032-.068c.023-.064.014 0 .023-.073l.005-.608c-.01-.074 0-.028-.028-.07.06-.122.018-.031.028-.136l.054-.425c0-.005.005-.014.005-.019l.028-.105v-.036c.04-.1.013-.019.018-.105l.443-1.134c.165-.242.032-.123.1-.22l.115-.127c.01-.005.018-.014.023-.014l.146-.146c.014-.019-.014-.014.055-.064.032-.06.05-.11.092-.174.04-.064.054-.064.1-.128l.343-.229h.036l.078-.078.736-.59c.005-.008.018-.008.023-.013l.567-.302h.036c.22-.146.069-.091.197-.37l.032-.046c-.027-.04-.05-.059-.064-.086-.027-.042-.023-.05-.032-.074 0-.004-.005-.013-.005-.018-.128-.27-.023-.032-.073-.251-.027-.115-.036-.078-.064-.197-.018-.077.005-.087-.009-.137l-.17-.448-.177-.082c-.041-.018-.01-.01-.078-.018-.412-.07-.27-.101-.384-.05l-.142-.046c-.146-.023-.068.018-.228-.074-.005-.004-.019-.004-.023-.013-.005-.014-.018-.01-.023-.014-.279-.133-.142-.082-.453-.302-.118-.078-.146-.123-.205-.297l-.229-.398c-.032-.155-.105-.48-.192-.612-.041-.064-.041-.014-.036-.142.009-.53-.055-.228.11-.507a.55.55 0 0 1 .525-.26l.407.132h.036c.202.096.215.023.343.077h.037c.068.032.123.046.187.078l.114.078c.083.041.014.009.115.037.091-.06.041-.046.15-.078v-.796c0-.155-.068-.502.078-.608.124-.182.069-.15.1-.233.02-.045-.008.005.033-.05a1 1 0 0 1 .247-.242c.096-.147.068-.055.164-.147l.1-.082.079-.078.155-.068c.1-.032.174-.046.265-.055m1.76 49.744h-.038l.032-.046z"
16
+ clipRule="evenodd"
17
+ />
18
+ </svg>
19
+ );
20
+ export default CincoTamboresIconSEQM;
@@ -0,0 +1,20 @@
1
+ import type { SVGProps } from 'react';
2
+ const ConformacaoIconSEQM = (props: SVGProps<SVGSVGElement>) => (
3
+ <svg
4
+ xmlns="http://www.w3.org/2000/svg"
5
+ width="1em"
6
+ height="1em"
7
+ fill="none"
8
+ viewBox="0 0 100 80"
9
+ {...props}
10
+ >
11
+ <path
12
+ fill={props?.fill ? props.fill : '#fff'}
13
+ fillOpacity={0.85}
14
+ fillRule="evenodd"
15
+ d="M72.312 17.022c-.221.149-.348.348-.47.612l-.259.795c-.05.149-.684 1.114-.805 1.301-.182.276-.077.188-.397.293-.083.027-.16.072-.281.027a.37.37 0 0 1-.15-.149c-.01-.06-1.174.122-1.483.387-.226.193-.017.132-.397.226-.651.154-1.28.37-1.925.546l-3.829 1.087c-.33.088-.595.248-.899.341l-2.278.822c-.143.056-.281.133-.43.182-1.28.464-4.507 1.771-5.704 1.677-.816-.066-1.318.265-1.997.486-.198.066-.772.231-.915.32-.38.237-.761.347-1.269.584-.987.458-1.456.249-2.085.353-.976.166-.485.16-1.627 0-.193-.027-.364-.027-.59-.027-.26 0-.326-.044-.547-.06-1.274-.1-1.941-.244-3.16-.558-.668-.171-.513-.188-.927-.32-.254-.083-.502-.088-.745-.165-.132-.045-.104-.045-.198-.094-.199-.094-.717-.193-.971-.265-.331-.1-.656-.154-.993-.254-1.219-.358-2.979-.634-4.297-.64-.198 0-.37.023-.562.05-.497.066-1.07.077-1.622.199-.171.038-.326.093-.486.132-.435.116-1.108.474-1.461.723-.056.038-.105.06-.188.104a3 3 0 0 0-.386.238c-.37.248-.248.226-.734.507l-1.528.949c-.05.05-.115.11-.176.149-.083.055-.1.038-.182.105-.133.104-.22.154-.37.253-.143.1-.176.21-.336.287-.182.088-.199.11-.32.265a5 5 0 0 1-.293.325c-.259.254-.137.177-.27.348-.105.132-.154.215-.265.353-.143.188-.17.11-.27.347-.06.155-.143.287-.215.409-.121.204-.452 1.142-.485 1.362-.072.42-.094.193-.177.447l-.287 1.577c-.088.988-.353 2.34-.358 3.321 0 .199-.039.359-.105.508-.133.297-.05.253-.044.507 0 .171-.06.32-.06.546 0 .828.027.425-.09 1.164l-.154 1.677a11 11 0 0 1-.06.58c-.055.562-.044 1.23-.061 1.792-.005.287-.072.392-.088.54-.017.166.033.414-.028.541-.038.088-.022.833 0 .9.044.082.044.27.122.407.06-.093.05-.105.088-.21.072-.187.21-.468.325-.617 0 1.048-.596 1.522-.353 3.31.066.468-.116.695-.06 1.08.297-.087.557-.385.65-.661.1-.304.188-.734.304-.993.066.06.06-.072.066.176v.569c.215.022.375-.16.447-.32.055-.127.038-.491.215-.53 0 .447.32 1.29.69 1.357.016-.38-.089-.75-.089-1.109 0-.419.06-.733.06-1.175.111.061.028-.027.111.122.133.226.248.502.535.557.122.022.06-.127.039-.254-.044-.254-.06-.987 0-1.263.027-.127.033-.21.16-.243 0 .298.038.59.149.833.01.022.071.166.077.177.06.099.287.253.408.32.05-.63.193-.767.155-1.655-.006-.177-.056-.348-.072-.519.204.011.11.022.281.072.524.154.254-.353.188-.69-.05-.248-.077-.43-.155-.65-.336-.944-.656-1.644-.375-2.709.21-.8.105-.745.177-1.417.215.193.767 1.263.816 1.643l.226 1.457c.133.684-.033 1.55-.198 2.195-.155.601-.282 1.362-.607 1.903-.055.094-.105.171-.166.27-.17.27-.336.47-.457.778-.15.386.132 1.445.132 2.256 0 .519.11 1.076.121 1.567.022.777-.071 2.642.006 3.27.06.514.077 1.755-.022 2.29-.039.193-.06.17-.133.309-.104.204-.038.827.067 1.015.12.22.237.281.468.375.304.127.574.64.767.904.414.569-.038.635-.127 1.12.011.215.905.59 1.098.635.22.05 1.445.033 1.633-.006.116-.022.38-.072.474-.1.16-.049.138-.258.15-.407.192-.056.446.12.733.182.27.055.458.11.69.154.286.055.463.077.727-.033.47-.193.684-.226.392-.723-.138-.231-.375-.816-.563-.97-.121-.1-.182-.083-.32-.221-.099-.1-.154-.171-.237-.276-.093-.116-.149-.143-.242-.27-.524-.728-.48-.999-.745-1.837l-.326-1.247c-.104-.353-.182-.993-.204-1.362-.022-.298-.099-.563-.16-.855-.115-.54-.17-1.269-.198-1.876-.017-.308.05-.672.11-.96.066-.33.166-.474.237-.772.282-1.152.392-1.346.728-2.405.11-.353.458-1.07.668-1.412.198-.325.132-.093.26-.75.06-.314.11-.58.176-.883.027-.137.06-.303.088-.43l.26-1.296c.06-.337.087-.585.154-.871.06-.265.33-.387.518-.541.463-.38.375-.276.833-.734.232-.231.193-.298.518-.502a.85.85 0 0 1 .409-.116c.706-.038.788.624 1.346.734.314.06.629-.072.766-.248.11-.138.1-.215.127-.392.022-.138.066-.242.122-.37.805 0 1.412.089 2.212.221.308.05.562.248.888.353.303.1.6.182.937.27l1.892.547c.31.099.679.132 1.02.215 1 .237 1.92.54 2.946.7.91.144 1.826.144 2.725.337.37.077.7.094 1.087.154.596.1 1.004.061 1.533.282.15.06.673.32.784.419.215.187.093 1.88.093 2.289l-.027 2.438c0 .452.088 1.081-.055 1.5a2 2 0 0 0-.06.227c-.05.248-.1.21-.1.496 0 .497.05.678.154 1.092.105.414-.093 1.765-.149 2.223-.044.37-.044.734-.11 1.092-.121.673-.22 1.423-.326 2.107-.05.348-.154.75-.016 1.12.171.464.662.53.816 1.617.034.226.094.303-.044.501-.083.116-.16.221-.292.293-.006.298-.017.43.105.645.077.138.198.287.33.397.249.204 1.424.326 1.832.304.171-.011.42-.072.601-.044.144.016.177.01.304.066.275.11.557.154.844.22a.7.7 0 0 0 .182.028h.524c.044 0 .088-.005.121-.005.094-.006.033-.006.121-.006l.265-.022c.066-.033.508-.066.745-.359-.033-.137-.044-.154-.122-.281-.066-.1-.071-.176-.148-.254-.21-.187-.072.089-.326-.292l-.496-.557c-.166-.188-.155-.364-.348-.491-.088-.055-.154-.072-.22-.177l-.414-.827c-.248-.447-.331-.734-.342-1.352 0-.154-.033-.198-.033-.358-.011-1.07-.072-3.63.132-4.435.177-.712.375-1.351.447-2.04.072-.701.325-.707.265-1.39-.056-.646.066-.635.17-1 .04-.126.045-.181.089-.308.276-.74.833-2.455 1.164-2.99.116-.187.204-.32.32-.524.264-.458.535-.894.628-1.445.028-.166 0-.287.017-.43.039-.315 1.164-1.07 1.539-1.766.182-.342.436-.739.485-1.191.105-.9.502-1.682.552-1.92.144-.722.458-1.053.745-1.732.088-.215.17-.397.237-.606.188-.574.43-1.264.816-1.694.16-.176.248-.276.408-.43.265-.265.497-.601.563-.673l.447-.353c.033-.022.557-.656 1.053-1.054l1.076-.965c.54-.33.695-.81 1.853-1.456.21-.116.497-.557.795-.403 1.103.563 1.726.348 2.918.348.176-.227.154-.409.805-.276.16.033.315.105.513.038.789-.242.668-.027 1.39.276.31.127.651.122.993.282.138.672.21.667.69 1.064.391.326.871.403 1.34.177.326-.16.331-.348.458-.74.243-.01.314-.016.507-.115.298-.155.155-.044.32-.293.078-.116.182-.242.254-.37.06-.12.1-.33.16-.446.033-.083.022-.143.028-.21.005-.082.01-.154.01-.237v-.452a.6.6 0 0 0-.032-.166c-.254-.435-.486-.507-.64-.64-.276-.237-.133-.077-.249-.264-.132-.204-.469-.491-.584-.618-.359-.397-.193-.083-.48-.502-.193-.276-.441-.508-.695-.833-.282-.358-.337-.386-.602-.86-.154-.276-.16-.398-.21-.773-.06-.441-.093-.397-.38-.634-.17-.143-.325-.292-.535-.447-.38-.276-.226-.143-.485-.502-.16-.22-.281-.358-.408-.573-.166-.276-.392-.398-.381-.635.005-.088.618-2.603-.149-2.443-.17.033-.53.915-.64 1.108-.116.199-.673.839-.871.839-.056-.254.044-.331.127-.519.148-.342-.105-.303-.105-1.208 0-.259.038-.364-.11-.546-.028-.038.022-.044-.061-.044-.055 0-.033 0-.1.022"
16
+ clipRule="evenodd"
17
+ />
18
+ </svg>
19
+ );
20
+ export default ConformacaoIconSEQM;