Initial production backup

This commit is contained in:
Tesscorp
2026-07-15 19:45:08 -06:00
commit 65b7af866f
433 changed files with 24089 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
11312 245812700
+33
View File
@@ -0,0 +1,33 @@
# Activar el motor de reescritura de URLs
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# ---- REDIRECCIONES 301 (DE URL ANTIGUA A NUEVA) ----
# 1. Redirigir la página de inicio index.php a la raíz "/"
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/index\.php [NC]
RewriteRule ^index\.php$ / [R=301,L]
# 2. Redirigir "servicios-lectura.php?q=..." a "/servicios/..."
RewriteCond %{THE_REQUEST} \s/servicios-lectura\.php\?q=([^\s&]+) [NC]
RewriteRule ^servicios-lectura\.php$ /servicios/%1? [R=301,L]
# 3. Redirigir cualquier archivo ".php" a su versión sin la extensión
RewriteCond %{THE_REQUEST} \s/([^/]+)\.php[\s?] [NC]
RewriteRule ^(.*)\.php$ /$1 [R=301,L]
# ---- REESCRITURAS INTERNAS (DE URL NUEVA A ANTIGUA) ----
# 1. Reescribir "/servicios/nombre-del-servicio" a "servicios-lectura.php?q=nombre-del-servicio"
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^servicios/([^/]+)/?$ servicios-lectura.php?q=$1 [L,QSA]
# 2. Reescribir cualquier URL sin extensión (ej. /nosotros) a su archivo .php correspondiente
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^([^/]+)/?$ $1.php [L]
</IfModule>
+33
View File
@@ -0,0 +1,33 @@
# Activar el motor de reescritura de URLs
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# ---- REDIRECCIONES 301 (DE URL ANTIGUA A NUEVA) ----
# 1. Redirigir la página de inicio index.php a la raíz "/"
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/index\.php [NC]
RewriteRule ^index\.php$ / [R=301,L]
# 2. Redirigir "servicios-lectura.php?q=..." a "/servicios/..."
RewriteCond %{THE_REQUEST} \s/servicios-lectura\.php\?q=([^\s&]+) [NC]
RewriteRule ^servicios-lectura\.php$ /servicios/%1? [R=301,L]
# 3. Redirigir cualquier archivo ".php" a su versión sin la extensión
RewriteCond %{THE_REQUEST} \s/([^/]+)\.php[\s?] [NC]
RewriteRule ^(.*)\.php$ /$1 [R=301,L]
# ---- REESCRITURAS INTERNAS (DE URL NUEVA A ANTIGUA) ----
# 1. Reescribir "/servicios/nombre-del-servicio" a "servicios-lectura.php?q=nombre-del-servicio"
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^servicios/([^/]+)/?$ servicios-lectura.php?q=$1 [L,QSA]
# 2. Reescribir cualquier URL sin extensión (ej. /nosotros) a su archivo .php correspondiente
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^([^/]+)/?$ $1.php [L]
</IfModule>
+33
View File
@@ -0,0 +1,33 @@
# Activar el motor de reescritura de URLs
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# ---- REDIRECCIONES 301 (DE URL ANTIGUA A NUEVA) ----
# 1. Redirigir la página de inicio index.php a la raíz "/"
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/index\.php [NC]
RewriteRule ^index\.php$ / [R=301,L]
# 2. Redirigir "servicios-lectura.php?q=..." a "/servicios/..."
RewriteCond %{THE_REQUEST} \s/servicios-lectura\.php\?q=([^\s&]+) [NC]
RewriteRule ^servicios-lectura\.php$ /servicios/%1? [R=301,L]
# 3. Redirigir cualquier archivo ".php" a su versión sin la extensión
RewriteCond %{THE_REQUEST} \s/([^/]+)\.php[\s?] [NC]
RewriteRule ^(.*)\.php$ /$1 [R=301,L]
# ---- REESCRITURAS INTERNAS (DE URL NUEVA A ANTIGUA) ----
# 1. Reescribir "/servicios/nombre-del-servicio" a "servicios-lectura.php?q=nombre-del-servicio"
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^servicios/([^/]+)/?$ servicios-lectura.php?q=$1 [L,QSA]
# 2. Reescribir cualquier URL sin extensión (ej. /nosotros) a su archivo .php correspondiente
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^([^/]+)/?$ $1.php [L]
</IfModule>
+6
View File
@@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-bullseye" viewBox="0 0 16 16">
<path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16"/>
<path d="M8 13A5 5 0 1 1 8 3a5 5 0 0 1 0 10m0 1A6 6 0 1 0 8 2a6 6 0 0 0 0 12"/>
<path d="M8 11a3 3 0 1 1 0-6 3 3 0 0 1 0 6m0 1a4 4 0 1 0 0-8 4 4 0 0 0 0 8"/>
<path d="M9.5 8a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0"/>
</svg>

After

Width:  |  Height:  |  Size: 427 B

+5
View File
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg width="800px" height="800px" viewBox="0 -0.5 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.24033 8.16795C6.99433 7.37295 7.26133 7.14995 7.58233 7.04695C7.80482 6.98843 8.03822 6.98499 8.26233 7.03695C8.55733 7.12295 8.63433 7.18795 9.60233 8.15095C10.4523 8.99695 10.5363 9.08895 10.6183 9.25095C10.7769 9.54253 10.8024 9.88825 10.6883 10.1999C10.6043 10.4349 10.4803 10.5909 9.96533 11.1089L9.62933 11.4459C9.54093 11.5356 9.51997 11.6719 9.57733 11.7839C10.3232 13.0565 11.3812 14.1179 12.6513 14.8679C12.7978 14.9465 12.9783 14.921 13.0973 14.8049L13.4203 14.4869C13.6199 14.2821 13.8313 14.0891 14.0533 13.9089C14.4015 13.6935 14.8362 13.6727 15.2033 13.8539C15.3823 13.9379 15.4423 13.9929 16.3193 14.8669C17.2193 15.7669 17.2483 15.7959 17.3493 16.0029C17.5379 16.3458 17.536 16.7618 17.3443 17.1029C17.2443 17.2949 17.1883 17.3649 16.6803 17.8839C16.3733 18.1979 16.0803 18.4839 16.0383 18.5259C15.6188 18.8727 15.081 19.043 14.5383 19.0009C13.5455 18.9101 12.5847 18.6029 11.7233 18.1009C9.81416 17.0894 8.18898 15.6155 6.99633 13.8139C6.73552 13.4373 6.50353 13.0415 6.30233 12.6299C5.76624 11.7109 5.48909 10.6638 5.50033 9.59995C5.54065 9.04147 5.8081 8.52391 6.24033 8.16795Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M14.8417 4.29409C14.4518 4.15416 14.0224 4.35677 13.8824 4.74664C13.7425 5.1365 13.9451 5.56598 14.335 5.70591L14.8417 4.29409ZM18.7868 10.0832C18.9333 10.4707 19.3661 10.666 19.7536 10.5195C20.141 10.373 20.3364 9.94021 20.1899 9.55276L18.7868 10.0832ZM13.6536 6.52142C13.2495 6.43018 12.848 6.68374 12.7568 7.08778C12.6655 7.49182 12.9191 7.89333 13.3231 7.98458L13.6536 6.52142ZM16.5696 11.1774C16.6676 11.5799 17.0733 11.8267 17.4757 11.7287C17.8782 11.6307 18.125 11.2251 18.0271 10.8226L16.5696 11.1774ZM14.335 5.70591C16.3882 6.44286 18.0153 8.04271 18.7868 10.0832L20.1899 9.55276C19.2631 7.10139 17.3084 5.17942 14.8417 4.29409L14.335 5.70591ZM13.3231 7.98458C14.9238 8.34607 16.1815 9.58301 16.5696 11.1774L18.0271 10.8226C17.5042 8.67475 15.8098 7.0084 13.6536 6.52142L13.3231 7.98458Z" fill="#000000"/>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

+82
View File
@@ -0,0 +1,82 @@
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="100%" viewBox="0 0 500 500" enable-background="new 0 0 500 500" xml:space="preserve">
<path fill="#FFFFFF" opacity="000000" stroke="none"
d="
M264.000000,501.000000
C176.000015,501.000000 88.500038,501.000000 1.000047,501.000000
C1.000031,334.333405 1.000031,167.666794 1.000016,1.000136
C167.666565,1.000091 334.333130,1.000091 500.999756,1.000046
C500.999847,167.666519 500.999847,334.333038 500.999939,500.999786
C422.166656,501.000000 343.333344,501.000000 264.000000,501.000000
M166.728592,465.805878
C168.748169,466.561584 170.751968,467.362976 172.789703,468.066040
C200.583344,477.655365 228.992401,482.223450 258.570343,481.271454
C279.517517,480.597290 299.769440,477.316467 319.616302,471.175049
C361.395782,458.246918 396.750244,435.403717 425.419128,402.193115
C439.843201,385.483948 451.799622,367.314056 460.924438,347.222260
C477.513000,310.696167 484.559174,272.587219 481.135437,232.481079
C479.847412,217.393677 477.272949,202.691696 473.256439,188.107407
C463.912109,154.177338 447.468597,124.048973 424.181976,97.915955
C402.077759,73.109863 375.988129,53.417728 345.256714,39.990440
C319.598206,28.779648 292.910980,21.770521 265.103455,20.286560
C249.278458,19.442049 233.125031,20.149891 217.435440,22.380787
C189.511017,26.351355 162.976471,35.285336 138.286835,49.309097
C114.520111,62.808655 93.769180,79.844597 75.853577,100.515694
C59.801884,119.036201 47.518303,139.762329 37.915554,162.192169
C25.876146,190.313492 20.487368,219.801437 20.059624,250.261368
C19.978411,256.044434 20.411222,261.866730 21.054159,267.620941
C22.190926,277.794861 23.074198,288.052521 25.121847,298.058594
C30.871391,326.154297 41.576740,352.322052 57.218014,376.419647
C70.977737,397.618439 87.556725,416.305267 107.477158,431.869965
C125.364166,445.845856 144.761765,457.323822 166.728592,465.805878
z"/>
<path fill="#F6F6F6" opacity="1.000000" stroke="none"
d="
M166.371796,465.656067
C144.761765,457.323822 125.364166,445.845856 107.477158,431.869965
C87.556725,416.305267 70.977737,397.618439 57.218014,376.419647
C41.576740,352.322052 30.871391,326.154297 25.121847,298.058594
C23.074198,288.052521 22.190926,277.794861 21.054159,267.620941
C20.411222,261.866730 19.978411,256.044434 20.059624,250.261368
C20.487368,219.801437 25.876146,190.313492 37.915554,162.192169
C47.518303,139.762329 59.801884,119.036201 75.853577,100.515694
C93.769180,79.844597 114.520111,62.808655 138.286835,49.309097
C162.976471,35.285336 189.511017,26.351355 217.435440,22.380787
C233.125031,20.149891 249.278458,19.442049 265.103455,20.286560
C292.910980,21.770521 319.598206,28.779648 345.256714,39.990440
C375.988129,53.417728 402.077759,73.109863 424.181976,97.915955
C447.468597,124.048973 463.912109,154.177338 473.256439,188.107407
C477.272949,202.691696 479.847412,217.393677 481.135437,232.481079
C484.559174,272.587219 477.513000,310.696167 460.924438,347.222260
C451.799622,367.314056 439.843201,385.483948 425.419128,402.193115
C396.750244,435.403717 361.395782,458.246918 319.616302,471.175049
C299.769440,477.316467 279.517517,480.597290 258.570343,481.271454
C228.992401,482.223450 200.583344,477.655365 172.789703,468.066040
C170.751968,467.362976 168.748169,466.561584 166.371796,465.656067
M163.342117,155.187027
C195.088577,186.933716 226.835022,218.680405 258.956085,250.801697
C225.949463,283.812836 193.473511,316.293213 161.309402,348.461700
C177.615875,364.845428 193.772720,381.078796 210.035065,397.418182
C210.838776,396.650177 211.938019,395.640320 212.992844,394.585999
C259.189606,348.411499 305.383148,302.233795 351.574707,256.054108
C356.627472,251.002686 356.633179,250.209015 351.669342,245.246048
C305.715485,199.299927 259.760376,153.355072 213.800491,107.414978
C212.533356,106.148369 211.209015,104.938972 209.503952,103.314835
C193.599548,119.325272 177.971069,135.009918 162.484604,150.833557
C161.900604,151.430252 162.693451,153.374451 163.342117,155.187027
z"/>
<path fill="#5271FF" opacity="1.000000" stroke="none"
d="
M163.093399,154.938873
C162.693451,153.374451 161.900604,151.430252 162.484604,150.833557
C177.971069,135.009918 193.599548,119.325272 209.503952,103.314835
C211.209015,104.938972 212.533356,106.148369 213.800491,107.414978
C259.760376,153.355072 305.715485,199.299927 351.669342,245.246048
C356.633179,250.209015 356.627472,251.002686 351.574707,256.054108
C305.383148,302.233795 259.189606,348.411499 212.992844,394.585999
C211.938019,395.640320 210.838776,396.650177 210.035065,397.418182
C193.772720,381.078796 177.615875,364.845428 161.309402,348.461700
C193.473511,316.293213 225.949463,283.812836 258.956085,250.801697
C226.835022,218.680405 195.088577,186.933716 163.093399,154.938873
z"/>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

+82
View File
@@ -0,0 +1,82 @@
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="100%" viewBox="0 0 500 500" enable-background="new 0 0 500 500" xml:space="preserve">
<path fill="#FFFFFF" opacity="000000" stroke="none"
d="
M264.000000,501.000000
C176.000015,501.000000 88.500038,501.000000 1.000047,501.000000
C1.000031,334.333405 1.000031,167.666794 1.000016,1.000136
C167.666565,1.000091 334.333130,1.000091 500.999756,1.000046
C500.999847,167.666519 500.999847,334.333038 500.999939,500.999786
C422.166656,501.000000 343.333344,501.000000 264.000000,501.000000
M167.237000,466.186249
C190.159286,475.554626 214.115372,480.706848 238.732635,481.775848
C252.421844,482.370300 266.247894,481.136322 279.944641,479.947144
C305.361023,477.740509 329.309082,469.799774 352.109589,458.803558
C380.866241,444.934845 405.498535,425.503906 426.380463,401.235779
C442.362396,382.662170 454.671265,361.947937 464.223450,339.496643
C476.196350,311.355682 481.694946,281.862762 481.888885,251.397827
C481.947693,242.157745 480.843140,232.894470 479.993073,223.667465
C477.763428,199.466019 470.803314,176.482590 460.675201,154.550842
C445.695282,122.112762 424.519043,94.354996 396.499756,71.894234
C375.156342,54.784950 351.777893,41.524445 325.829193,32.829346
C299.064026,23.860657 271.721375,19.901476 243.362915,20.731730
C221.554489,21.370218 200.589798,25.195890 179.929520,31.556511
C155.884888,38.959057 133.897308,50.539639 113.595596,65.276466
C98.341469,76.349304 84.734734,89.332993 72.833191,103.904716
C59.891335,119.750130 49.065845,136.976456 40.542187,155.706284
C28.506987,182.152298 21.928623,209.898163 20.149706,238.722122
C19.138449,255.107620 20.147627,271.520477 22.886791,287.819946
C28.269220,319.848236 39.502544,349.502686 57.169605,376.803894
C70.935593,398.076721 87.932144,416.287048 107.596626,432.137421
C125.449341,446.527435 145.022919,457.896729 167.237000,466.186249
z"/>
<path fill="#F6F6F6" opacity="1.000000" stroke="none"
d="
M166.860687,466.091370
C145.022919,457.896729 125.449341,446.527435 107.596626,432.137421
C87.932144,416.287048 70.935593,398.076721 57.169605,376.803894
C39.502544,349.502686 28.269220,319.848236 22.886791,287.819946
C20.147627,271.520477 19.138449,255.107620 20.149706,238.722122
C21.928623,209.898163 28.506987,182.152298 40.542187,155.706284
C49.065845,136.976456 59.891335,119.750130 72.833191,103.904716
C84.734734,89.332993 98.341469,76.349304 113.595596,65.276466
C133.897308,50.539639 155.884888,38.959057 179.929520,31.556511
C200.589798,25.195890 221.554489,21.370218 243.362915,20.731730
C271.721375,19.901476 299.064026,23.860657 325.829193,32.829346
C351.777893,41.524445 375.156342,54.784950 396.499756,71.894234
C424.519043,94.354996 445.695282,122.112762 460.675201,154.550842
C470.803314,176.482590 477.763428,199.466019 479.993073,223.667465
C480.843140,232.894470 481.947693,242.157745 481.888885,251.397827
C481.694946,281.862762 476.196350,311.355682 464.223450,339.496643
C454.671265,361.947937 442.362396,382.662170 426.380463,401.235779
C405.498535,425.503906 380.866241,444.934845 352.109589,458.803558
C329.309082,469.799774 305.361023,477.740509 279.944641,479.947144
C266.247894,481.136322 252.421844,482.370300 238.732635,481.775848
C214.115372,480.706848 190.159286,475.554626 166.860687,466.091370
M340.026703,154.497269
C339.783875,153.281509 339.963440,151.649475 339.235962,150.911285
C323.802216,135.249695 308.266418,119.688629 292.626495,103.983398
C291.301941,105.232864 290.195312,106.225151 289.145599,107.274368
C242.831772,153.566452 196.555161,199.895859 150.157593,246.103851
C146.082535,250.162292 146.030411,252.606522 150.122620,256.679260
C196.299652,302.636353 242.331192,348.739624 288.408630,394.796814
C289.565857,395.953522 290.801422,397.031891 291.836670,397.994476
C308.176178,381.541687 324.315063,365.290955 340.808105,348.683624
C308.701019,316.539612 276.228943,284.030212 243.372955,251.136444
C275.483643,219.036804 307.510681,187.020798 340.026703,154.497269
z"/>
<path fill="#5271FF" opacity="1.000000" stroke="none"
d="
M339.782227,154.751038
C307.510681,187.020798 275.483643,219.036804 243.372955,251.136444
C276.228943,284.030212 308.701019,316.539612 340.808105,348.683624
C324.315063,365.290955 308.176178,381.541687 291.836670,397.994476
C290.801422,397.031891 289.565857,395.953522 288.408630,394.796814
C242.331192,348.739624 196.299652,302.636353 150.122620,256.679260
C146.030411,252.606522 146.082535,250.162292 150.157593,246.103851
C196.555161,199.895859 242.831772,153.566452 289.145599,107.274368
C290.195312,106.225151 291.301941,105.232864 292.626495,103.983398
C308.266418,119.688629 323.802216,135.249695 339.235962,150.911285
C339.963440,151.649475 339.783875,153.281509 339.782227,154.751038
z"/>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 102 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 170 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

+12
View File
@@ -0,0 +1,12 @@
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 162.00000000000003 154" width="515" height="480">
<title>New Project</title>
<style>
.s0 { fill: #0c55bc }
.s1 { fill: #2974df }
</style>
<g id="Layer 1">
<path id="Shape 1" fill-rule="evenodd" class="s0" d="m162 77v77.7h-81v-77.7z"/>
<path id="Shape 1 copy 2" fill-rule="evenodd" class="s1" d="m162 0v77.7h-81v-77.7z"/>
<path id="Shape 1 copy" fill-rule="evenodd" class="s1" d="m81 76.3v77.7h-81v-77.7z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 502 B

+12
View File
@@ -0,0 +1,12 @@
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 162.00000000000003 154" width="515" height="487">
<title>New Project</title>
<style>
.s0 { fill: #232b5a }
.s1 { fill: #1b2a7d }
</style>
<g id="Layer 1">
<path id="Shape 1" fill-rule="evenodd" class="s0" d="m81 0v77.7h-81v-77.7z"/>
<path id="Shape 1 copy 2" fill-rule="evenodd" class="s1" d="m162 0v77.7h-81v-77.7z"/>
<path id="Shape 1 copy" fill-rule="evenodd" class="s1" d="m81 76.3v77.7h-81v-77.7z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 500 B

+12
View File
@@ -0,0 +1,12 @@
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 525.2655606995885 489.56790123456784" width="526" height="490">
<title>cuadrado-azul-down</title>
<style>
.s0 { fill: #ff6600 }
.s1 { fill: #ff7e00 }
</style>
<g id="Layer 1">
<path id="Shape 1" fill-rule="evenodd" class="s0" d="m520.1 244.8v247h-257.5v-247z"/>
<path id="Shape 1 copy 2" fill-rule="evenodd" class="s1" d="m520.1 0v247h-257.5v-247z"/>
<path id="Shape 1 copy" fill-rule="evenodd" class="s1" d="m262.6 242.6v247h-257.5v-247z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 537 B

+4
View File
@@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-eye" viewBox="0 0 16 16">
<path d="M16 8s-3-5.5-8-5.5S0 8 0 8s3 5.5 8 5.5S16 8 16 8M1.173 8a13 13 0 0 1 1.66-2.043C4.12 4.668 5.88 3.5 8 3.5s3.879 1.168 5.168 2.457A13 13 0 0 1 14.828 8q-.086.13-.195.288c-.335.48-.83 1.12-1.465 1.755C11.879 11.332 10.119 12.5 8 12.5s-3.879-1.168-5.168-2.457A13 13 0 0 1 1.172 8z"/>
<path d="M8 5.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5M4.5 8a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0"/>
</svg>

After

Width:  |  Height:  |  Size: 512 B

+3
View File
@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-gem" viewBox="0 0 16 16">
<path d="M3.1.7a.5.5 0 0 1 .4-.2h9a.5.5 0 0 1 .4.2l2.976 3.974c.149.185.156.45.01.644L8.4 15.3a.5.5 0 0 1-.8 0L.1 5.3a.5.5 0 0 1 0-.6zm11.386 3.785-1.806-2.41-.776 2.413zm-3.633.004.961-2.989H4.186l.963 2.995zM5.47 5.495 8 13.366l2.532-7.876zm-1.371-.999-.78-2.422-1.818 2.425zM1.499 5.5l5.113 6.817-2.192-6.82zm7.889 6.817 5.123-6.83-2.928.002z"/>
</svg>

After

Width:  |  Height:  |  Size: 472 B

+3
View File
@@ -0,0 +1,3 @@
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'>
<path d='M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854Z'/>
</svg>

After

Width:  |  Height:  |  Size: 273 B

+3
View File
@@ -0,0 +1,3 @@
<svg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'>
<path stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/>
</svg>

After

Width:  |  Height:  |  Size: 185 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 824 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 820 KiB

+147
View File
@@ -0,0 +1,147 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="986.087px" height="986.95px" viewBox="0 0 986.087 986.95" enable-background="new 0 0 986.087 986.95"
xml:space="preserve">
<polygon fill="#7C7C7C" points="101.864,798.913 116.877,798.913 116.877,796.301 101.864,796.301 101.864,785.973 118.702,785.973
118.702,783.318 98.795,783.318 98.795,812.349 119.322,812.349 119.322,809.693 101.864,809.693 "/>
<polygon fill="#7C7C7C" points="148.81,783.318 145.492,783.318 136.775,795.183 128.033,783.318 124.508,783.318 134.835,797.435
123.802,812.349 127.327,812.349 136.64,799.582 146.03,812.349 149.598,812.349 138.53,797.333 "/>
<g>
<defs>
<rect id="SVGID_1_" y="61.451" width="986.087" height="826.435"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" overflow="visible"/>
</clipPath>
<path clip-path="url(#SVGID_2_)" fill="#7C7C7C" d="M159.633,789.229c1.105-1.093,2.405-1.937,3.9-2.53
c1.492-0.594,3.109-0.891,4.85-0.891c1.66,0,3.209,0.27,4.646,0.809s2.75,1.417,3.94,2.632l1.949-1.949
c-1.273-1.408-2.835-2.467-4.686-3.173c-1.852-0.704-3.83-1.058-5.931-1.058c-2.183,0-4.202,0.366-6.056,1.1
c-1.851,0.734-3.46,1.762-4.83,3.089c-1.367,1.327-2.433,2.89-3.194,4.687c-0.761,1.799-1.14,3.762-1.14,5.891
c0,2.128,0.379,4.092,1.14,5.889c0.761,1.796,1.819,3.357,3.174,4.686c1.352,1.327,2.957,2.358,4.81,3.089
c1.852,0.733,3.87,1.101,6.056,1.101c2.128,0,4.119-0.359,5.971-1.078c1.851-0.719,3.413-1.784,4.686-3.194l-1.949-1.948
c-1.19,1.215-2.503,2.102-3.94,2.652c-1.437,0.554-2.986,0.831-4.646,0.831c-1.741,0-3.358-0.297-4.85-0.894
c-1.495-0.594-2.795-1.438-3.9-2.529c-1.105-1.091-1.969-2.363-2.592-3.813c-0.622-1.452-0.934-3.049-0.934-4.79
c0-1.742,0.312-3.339,0.934-4.791C157.664,791.592,158.528,790.322,159.633,789.229"/>
<polygon clip-path="url(#SVGID_2_)" fill="#7C7C7C" points="190.198,798.913 205.211,798.913 205.211,796.301 190.198,796.301
190.198,785.973 207.035,785.973 207.035,783.318 187.129,783.318 187.129,812.349 207.659,812.349 207.659,809.693
190.198,809.693 "/>
<polygon clip-path="url(#SVGID_2_)" fill="#7C7C7C" points="219.603,783.318 216.534,783.318 216.534,812.349 235.859,812.349
235.859,809.694 219.603,809.694 "/>
<polygon clip-path="url(#SVGID_2_)" fill="#7C7C7C" points="245.689,798.913 260.702,798.913 260.702,796.301 245.689,796.301
245.689,785.973 262.526,785.973 262.526,783.318 242.62,783.318 242.62,812.349 263.147,812.349 263.147,809.693 245.689,809.693
"/>
<polygon clip-path="url(#SVGID_2_)" fill="#7C7C7C" points="293.255,806.862 274.552,783.318 272.022,783.318 272.022,812.349
275.091,812.349 275.091,788.808 293.754,812.349 296.284,812.349 296.284,783.318 293.255,783.318 "/>
<path clip-path="url(#SVGID_2_)" fill="#7C7C7C" d="M311.377,789.229c1.105-1.093,2.405-1.937,3.9-2.53
c1.492-0.594,3.109-0.891,4.85-0.891c1.66,0,3.209,0.27,4.646,0.809c1.437,0.539,2.75,1.417,3.94,2.632l1.949-1.949
c-1.273-1.408-2.835-2.467-4.686-3.173c-1.852-0.704-3.83-1.058-5.931-1.058c-2.183,0-4.202,0.366-6.056,1.1
c-1.851,0.734-3.46,1.762-4.83,3.089c-1.367,1.327-2.433,2.89-3.194,4.687c-0.761,1.799-1.14,3.762-1.14,5.891
c0,2.128,0.379,4.092,1.14,5.889c0.761,1.796,1.819,3.357,3.174,4.686c1.352,1.327,2.957,2.358,4.81,3.089
c1.852,0.733,3.87,1.101,6.056,1.101c2.128,0,4.119-0.359,5.971-1.078c1.851-0.719,3.413-1.784,4.686-3.194l-1.949-1.948
c-1.19,1.215-2.503,2.102-3.94,2.652c-1.438,0.554-2.986,0.831-4.646,0.831c-1.741,0-3.358-0.297-4.85-0.894
c-1.495-0.594-2.795-1.438-3.9-2.529c-1.105-1.091-1.969-2.363-2.592-3.813c-0.622-1.452-0.934-3.049-0.934-4.79
c0-1.742,0.312-3.339,0.934-4.791C309.408,791.592,310.272,790.322,311.377,789.229"/>
<rect x="338.876" y="783.318" clip-path="url(#SVGID_2_)" fill="#7C7C7C" width="3.069" height="29.03"/>
<path clip-path="url(#SVGID_2_)" fill="#7C7C7C" d="M361.683,783.318l-13.271,29.03h3.193l3.471-7.754h16.2l3.471,7.754h3.234
l-13.272-29.03H361.683z M356.189,802.106l6.987-15.613l6.987,15.613H356.189z"/>
<polygon clip-path="url(#SVGID_2_)" fill="#7C7C7C" points="400.045,798.913 415.058,798.913 415.058,796.301 400.045,796.301
400.045,785.973 416.882,785.973 416.882,783.318 396.976,783.318 396.976,812.349 417.503,812.349 417.503,809.693
400.045,809.693 "/>
<polygon clip-path="url(#SVGID_2_)" fill="#7C7C7C" points="447.612,806.862 428.909,783.318 426.378,783.318 426.378,812.349
429.448,812.349 429.448,788.808 448.11,812.349 450.641,812.349 450.641,783.318 447.612,783.318 "/>
<polygon clip-path="url(#SVGID_2_)" fill="#7C7C7C" points="489.411,804.823 476.809,783.318 474.279,783.318 474.279,812.349
477.223,812.349 477.223,789.263 488.628,808.658 490.078,808.658 501.483,789.131 501.483,812.349 504.428,812.349
504.428,783.318 501.897,783.318 "/>
<path clip-path="url(#SVGID_2_)" fill="#7C7C7C" d="M524.169,783.318l-13.272,29.03h3.194l3.471-7.754h16.2l3.471,7.754h3.234
l-13.272-29.03H524.169z M518.675,802.106l6.987-15.613l6.986,15.613H518.675z"/>
<polygon clip-path="url(#SVGID_2_)" fill="#7C7C7C" points="568.169,806.862 549.467,783.318 546.937,783.318 546.937,812.349
550.006,812.349 550.006,788.808 568.668,812.349 571.198,812.349 571.198,783.318 568.169,783.318 "/>
<polygon clip-path="url(#SVGID_2_)" fill="#7C7C7C" points="577.75,785.974 587.952,785.974 587.952,812.35 591.021,812.35
591.021,785.974 601.222,785.974 601.222,783.318 577.75,783.318 "/>
<polygon clip-path="url(#SVGID_2_)" fill="#7C7C7C" points="610.843,798.913 625.855,798.913 625.855,796.301 610.843,796.301
610.843,785.973 627.68,785.973 627.68,783.318 607.773,783.318 607.773,812.349 628.301,812.349 628.301,809.693 610.843,809.693
"/>
<polygon clip-path="url(#SVGID_2_)" fill="#7C7C7C" points="658.412,806.862 639.709,783.318 637.179,783.318 637.179,812.349
640.248,812.349 640.248,788.808 658.909,812.349 661.438,812.349 661.438,783.318 658.412,783.318 "/>
<rect x="672.554" y="783.318" clip-path="url(#SVGID_2_)" fill="#7C7C7C" width="3.069" height="29.03"/>
<polygon clip-path="url(#SVGID_2_)" fill="#7C7C7C" points="701.871,804.823 689.266,783.318 686.735,783.318 686.735,812.349
689.681,812.349 689.681,789.263 701.086,808.658 702.538,808.658 713.942,789.127 713.942,812.349 716.887,812.349
716.887,783.318 714.356,783.318 "/>
<rect x="728" y="783.318" clip-path="url(#SVGID_2_)" fill="#7C7C7C" width="3.069" height="29.03"/>
<polygon clip-path="url(#SVGID_2_)" fill="#7C7C7C" points="745.251,798.913 760.264,798.913 760.264,796.301 745.251,796.301
745.251,785.973 762.088,785.973 762.088,783.318 742.182,783.318 742.182,812.349 762.709,812.349 762.709,809.693
745.251,809.693 "/>
<polygon clip-path="url(#SVGID_2_)" fill="#7C7C7C" points="792.82,806.862 774.117,783.318 771.587,783.318 771.587,812.349
774.656,812.349 774.656,788.808 793.316,812.349 795.847,812.349 795.847,783.318 792.82,783.318 "/>
<polygon clip-path="url(#SVGID_2_)" fill="#7C7C7C" points="802.398,785.974 812.601,785.974 812.601,812.35 815.67,812.35
815.67,785.974 825.872,785.974 825.872,783.318 802.398,783.318 "/>
<path clip-path="url(#SVGID_2_)" fill="#7C7C7C" d="M855.586,787.259c-1.367-1.328-2.979-2.356-4.83-3.089
c-1.854-0.734-3.873-1.102-6.056-1.102c-2.213,0-4.244,0.367-6.095,1.102c-1.854,0.732-3.465,1.769-4.833,3.11
c-1.368,1.34-2.434,2.902-3.194,4.687c-0.759,1.783-1.14,3.739-1.14,5.867c0,2.13,0.381,4.086,1.14,5.869
c0.761,1.781,1.826,3.344,3.194,4.687c1.368,1.34,2.985,2.377,4.853,3.108c1.866,0.733,3.893,1.101,6.075,1.101
s4.202-0.367,6.056-1.101c1.852-0.731,3.463-1.762,4.83-3.089c1.37-1.328,2.434-2.89,3.194-4.686c0.761-1.797,1.14-3.76,1.14-5.89
c0-2.128-0.379-4.092-1.14-5.89C858.02,790.147,856.956,788.585,855.586,787.259 M855.938,802.625
c-0.606,1.45-1.457,2.723-2.551,3.813c-1.093,1.092-2.378,1.936-3.856,2.53c-1.48,0.596-3.089,0.893-4.831,0.893
c-1.741,0-3.358-0.297-4.854-0.893c-1.491-0.595-2.783-1.438-3.877-2.53c-1.093-1.091-1.948-2.368-2.569-3.835
c-0.624-1.465-0.934-3.054-0.934-4.77c0-1.74,0.31-3.338,0.934-4.789c0.621-1.452,1.477-2.723,2.569-3.815
c1.094-1.093,2.386-1.937,3.877-2.53c1.495-0.594,3.112-0.891,4.854-0.891c1.742,0,3.351,0.297,4.831,0.891
c1.479,0.594,2.764,1.438,3.856,2.53c1.094,1.093,1.944,2.363,2.551,3.815c0.608,1.451,0.913,3.049,0.913,4.789
C856.852,799.576,856.547,801.174,855.938,802.625"/>
<path clip-path="url(#SVGID_2_)" fill="#7C7C7C" d="M886.316,800.986c-0.649-0.941-1.508-1.694-2.57-2.261
c-1.065-0.566-2.227-1.03-3.483-1.39c-1.26-0.359-2.524-0.69-3.795-0.996c-1.272-0.302-2.439-0.648-3.506-1.035
c-1.063-0.387-1.921-0.926-2.57-1.616c-0.65-0.691-0.975-1.604-0.975-2.737c0-0.996,0.269-1.889,0.808-2.677
c0.539-0.786,1.375-1.415,2.51-1.888c1.134-0.469,2.57-0.702,4.313-0.702c1.3,0,2.647,0.191,4.044,0.577
c1.396,0.391,2.717,0.996,3.96,1.827l1.038-2.447c-1.16-0.802-2.545-1.43-4.147-1.887c-1.604-0.457-3.221-0.686-4.853-0.686
c-2.46,0-4.479,0.367-6.055,1.1c-1.575,0.734-2.743,1.699-3.504,2.902c-0.762,1.203-1.141,2.524-1.141,3.962
c0,1.55,0.325,2.8,0.974,3.753c0.65,0.953,1.507,1.721,2.572,2.303c1.063,0.579,2.233,1.043,3.503,1.388
c1.272,0.347,2.546,0.671,3.817,0.976c1.27,0.304,2.433,0.656,3.483,1.057c1.051,0.402,1.901,0.949,2.55,1.638
c0.648,0.69,0.976,1.604,0.976,2.736c0,0.941-0.269,1.8-0.808,2.573c-0.542,0.773-1.385,1.387-2.53,1.844
c-1.147,0.456-2.635,0.687-4.459,0.687c-1.909,0-3.728-0.34-5.454-1.019c-1.729-0.676-3.104-1.512-4.127-2.508l-1.203,2.363
c1.078,1.107,2.607,2.011,4.584,2.717c1.977,0.704,4.042,1.059,6.2,1.059c2.487,0,4.526-0.367,6.115-1.101
c1.592-0.73,2.771-1.699,3.548-2.902c0.774-1.202,1.161-2.51,1.161-3.92C887.292,803.157,886.967,801.927,886.316,800.986"/>
<polygon clip-path="url(#SVGID_2_)" fill="#202C56" points="215.848,647.768 215.848,668.613 167.981,668.613 167.981,764.516
147.136,764.516 147.136,668.613 99.267,668.613 99.267,647.768 "/>
<path clip-path="url(#SVGID_2_)" fill="#202C56" d="M326.926,743.666l10.674,20.85h-23.349l-10.674-20.85l-11.175-21.847l-0.499-1
c-3.671-6.006-10.175-10.008-17.678-10.008h-20.849v53.704H232.53V647.769h73.717c8.67,0,16.51,3.503,22.181,9.171
c5.669,5.839,9.172,13.679,9.172,22.349c0,12.678-7.505,23.683-18.346,28.689c-2.835,1.332-5.836,2.168-9.005,2.5L326.926,743.666z
M306.247,689.962c1.5,0,3.002-0.332,4.334-1.001c3.837-1.666,6.34-5.501,6.34-9.673c0-3.835-2.004-6.502-3.171-7.67
c-1.333-1.335-3.835-3.004-7.503-3.004h-52.871v21.515L306.247,689.962z"/>
<rect x="354.45" y="647.601" clip-path="url(#SVGID_2_)" fill="#202C56" width="20.849" height="116.748"/>
<polygon clip-path="url(#SVGID_2_)" fill="#202C56" points="508.724,647.601 508.724,764.349 487.875,764.349 487.875,689.963
467.36,705.642 450.349,718.815 433.337,705.642 412.823,689.963 412.823,764.349 391.976,764.349 391.976,647.601
412.823,663.611 450.349,692.465 487.875,663.611 "/>
<polygon clip-path="url(#SVGID_2_)" fill="#008BD2" points="637.982,764.349 614.633,764.349 603.959,743.499 578.442,693.465
552.924,743.499 542.25,764.349 518.901,764.349 529.575,743.499 578.442,647.601 627.308,743.499 "/>
<path clip-path="url(#SVGID_2_)" fill="#202C56" d="M744.056,657.106c5.671,5.672,9.174,13.511,9.174,22.182
c0,12.678-7.505,23.684-18.346,28.688c-2.837,1.332-5.839,2.168-9.007,2.5h-1.001v0.167h-55.87v53.705h-20.849V647.601h73.55
c8.673,0,16.513,3.503,22.182,9.174L744.056,657.106z M726.211,688.962c3.835-1.667,6.338-5.502,6.338-9.674
c0-3.835-2.002-6.503-3.169-7.67c-1.335-1.335-3.835-3.004-7.505-3.004h-52.869v21.516h52.869c1.502,0,3.001-0.332,4.336-1.001
V688.962z"/>
<path clip-path="url(#SVGID_2_)" fill="#202C56" d="M790.592,679.123v10.84h75.05v20.849h-75.05v22.014
c0,5.838,4.835,10.674,10.674,10.674h85.225v20.85h-85.225c-17.346,0-31.355-14.177-31.355-31.523v-53.702
c0-17.346,14.01-31.522,31.355-31.522h85.225v20.849h-85.225C795.427,668.449,790.592,673.284,790.592,679.123"/>
<path clip-path="url(#SVGID_2_)" fill-rule="evenodd" clip-rule="evenodd" fill="#008BD2" d="M677.596,323.909
c-1.621-8.348-3.809-16.493-6.522-24.396l31.305-31.114l-23.739-41.115l-42.663,11.572c-5.525-6.336-11.476-12.29-17.813-17.816
l11.57-42.662l-41.114-23.738l-31.13,31.318c-7.896-2.713-16.036-4.907-24.378-6.524l-11.301-42.695h-47.476l-11.3,42.695
c-8.346,1.617-16.486,3.806-24.384,6.519l-31.123-31.313l-41.116,23.74l11.572,42.663c-6.338,5.525-12.293,11.475-17.817,17.814
l-42.66-11.57L293.768,268.4l31.313,31.127c-2.711,7.896-4.906,16.036-6.523,24.381l-42.692,11.3v47.476l36.585,9.684v-19.965
c0-5.499,4.495-9.994,9.993-9.994h11.742c6.447-69.053,55.572-125.703,120.741-143.313l21.047,88.398v-92.628v-11.561
c0-3.917,3.202-7.118,7.118-7.118h29.712c3.919,0,7.12,3.201,7.12,7.118v11.561v92.628l21.048-88.398
c65.167,17.61,114.293,74.26,120.743,143.313h11.738c5.498,0,9.995,4.495,9.995,9.994v20.028l36.831-9.748v-47.477L677.596,323.909
z"/>
<path clip-path="url(#SVGID_2_)" fill-rule="evenodd" clip-rule="evenodd" fill="#7C7C7C" d="M462.247,409.343H322.443
c-0.065,0-0.125-0.018-0.19-0.019c0.872,3.047,1.795,6.073,2.819,9.054l-31.305,31.114l23.739,41.117l42.662-11.573
c5.525,6.338,11.476,12.292,17.815,17.816l-11.571,42.662l41.115,23.736l31.129-31.316c2.226,0.765,4.475,1.477,6.739,2.157
l16.852,81.108V409.343z"/>
<path clip-path="url(#SVGID_2_)" fill-rule="evenodd" clip-rule="evenodd" fill="#7C7C7C" d="M673.886,409.299
c-0.146,0.006-0.284,0.044-0.432,0.044H533.897v205.856l16.849-81.091c2.27-0.681,4.526-1.395,6.76-2.162l31.113,31.305
l41.116-23.738l-11.573-42.663c6.339-5.523,12.291-11.476,17.815-17.813l42.663,11.57l23.737-41.115l-31.316-31.128
C672.086,415.379,673.012,412.351,673.886,409.299"/>
</g>
<path fill="#FFFFFF" stroke="#000000" stroke-width="7" stroke-miterlimit="10" d="M959.556,675.26
c0,17.728-14.373,32.101-32.101,32.101c-17.726,0-32.099-14.373-32.099-32.101c0-17.726,14.373-32.099,32.099-32.099
C945.183,643.161,959.556,657.534,959.556,675.26z"/>
<text transform="matrix(1 0 0 1 912.3486 691.082)" font-family="'Corbel-Bold'" font-size="48">R</text>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

+1
View File
@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="70px" height="70px" clip-rule="evenodd"><path fill="#fff" d="M4.9,43.3l2.7-9.8C5.9,30.6,5,27.3,5,24C5,13.5,13.5,5,24,5c5.1,0,9.8,2,13.4,5.6 C41,14.2,43,18.9,43,24c0,10.5-8.5,19-19,19c0,0,0,0,0,0h0c-3.2,0-6.3-0.8-9.1-2.3L4.9,43.3z"/><path fill="#fff" d="M4.9,43.8c-0.1,0-0.3-0.1-0.4-0.1c-0.1-0.1-0.2-0.3-0.1-0.5L7,33.5c-1.6-2.9-2.5-6.2-2.5-9.6 C4.5,13.2,13.3,4.5,24,4.5c5.2,0,10.1,2,13.8,5.7c3.7,3.7,5.7,8.6,5.7,13.8c0,10.7-8.7,19.5-19.5,19.5c-3.2,0-6.3-0.8-9.1-2.3 L5,43.8C5,43.8,4.9,43.8,4.9,43.8z"/><path fill="#cfd8dc" d="M24,5c5.1,0,9.8,2,13.4,5.6C41,14.2,43,18.9,43,24c0,10.5-8.5,19-19,19h0c-3.2,0-6.3-0.8-9.1-2.3 L4.9,43.3l2.7-9.8C5.9,30.6,5,27.3,5,24C5,13.5,13.5,5,24,5 M24,43L24,43L24,43 M24,43L24,43L24,43 M24,4L24,4C13,4,4,13,4,24 c0,3.4,0.8,6.7,2.5,9.6L3.9,43c-0.1,0.3,0,0.7,0.3,1c0.2,0.2,0.4,0.3,0.7,0.3c0.1,0,0.2,0,0.3,0l9.7-2.5c2.8,1.5,6,2.2,9.2,2.2 c11,0,20-9,20-20c0-5.3-2.1-10.4-5.8-14.1C34.4,6.1,29.4,4,24,4L24,4z"/><path fill="#40c351" d="M35.2,12.8c-3-3-6.9-4.6-11.2-4.6C15.3,8.2,8.2,15.3,8.2,24c0,3,0.8,5.9,2.4,8.4L11,33l-1.6,5.8 l6-1.6l0.6,0.3c2.4,1.4,5.2,2.2,8,2.2h0c8.7,0,15.8-7.1,15.8-15.8C39.8,19.8,38.2,15.8,35.2,12.8z"/><path fill="#fff" fill-rule="evenodd" d="M19.3,16c-0.4-0.8-0.7-0.8-1.1-0.8c-0.3,0-0.6,0-0.9,0 s-0.8,0.1-1.3,0.6c-0.4,0.5-1.7,1.6-1.7,4s1.7,4.6,1.9,4.9s3.3,5.3,8.1,7.2c4,1.6,4.8,1.3,5.7,1.2c0.9-0.1,2.8-1.1,3.2-2.3 c0.4-1.1,0.4-2.1,0.3-2.3c-0.1-0.2-0.4-0.3-0.9-0.6s-2.8-1.4-3.2-1.5c-0.4-0.2-0.8-0.2-1.1,0.2c-0.3,0.5-1.2,1.5-1.5,1.9 c-0.3,0.3-0.6,0.4-1,0.1c-0.5-0.2-2-0.7-3.8-2.4c-1.4-1.3-2.4-2.8-2.6-3.3c-0.3-0.5,0-0.7,0.2-1c0.2-0.2,0.5-0.6,0.7-0.8 c0.2-0.3,0.3-0.5,0.5-0.8c0.2-0.3,0.1-0.6,0-0.8C20.6,19.3,19.7,17,19.3,16z" clip-rule="evenodd"/></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

+12
View File
@@ -0,0 +1,12 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg width="70px" height="70px" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
<g id="SVGRepo_iconCarrier"> <path fill-rule="evenodd" clip-rule="evenodd" d="M3.37892 10.2236L8 16L12.6211 10.2236C13.5137 9.10788 14 7.72154 14 6.29266V6C14 2.68629 11.3137 0 8 0C4.68629 0 2 2.68629 2 6V6.29266C2 7.72154 2.4863 9.10788 3.37892 10.2236ZM8 8C9.10457 8 10 7.10457 10 6C10 4.89543 9.10457 4 8 4C6.89543 4 6 4.89543 6 6C6 7.10457 6.89543 8 8 8Z" fill="#ccc"/> </g>
</svg>

After

Width:  |  Height:  |  Size: 799 B

+12
View File
@@ -0,0 +1,12 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg width="70px" height="70px" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
<g id="SVGRepo_iconCarrier"> <path d="M4 2L0 1V14L4 15V2Z" fill="#ccc"/> <path d="M16 2L12 1V14L16 15V2Z" fill="#ccc"/> <path d="M10 1L6 2V15L10 14V1Z" fill="#ccc"/> </g>
</svg>

After

Width:  |  Height:  |  Size: 591 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 295 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 193 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 249 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 179 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 290 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 176 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 KiB

+7
View File
@@ -0,0 +1,7 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg fill="#ffffff" height="150px" width="150px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512" xml:space="preserve" stroke="#ffffff">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>

After

Width:  |  Height:  |  Size: 1.7 KiB

+7
View File
@@ -0,0 +1,7 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg height="800px" width="800px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 510.234 510.234" xml:space="preserve" fill="#000000">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>

After

Width:  |  Height:  |  Size: 1.3 KiB

+7
View File
@@ -0,0 +1,7 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg fill="#ffffff" height="800px" width="800px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512" xml:space="preserve" stroke="#ffffff">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>

After

Width:  |  Height:  |  Size: 1.3 KiB

+7
View File
@@ -0,0 +1,7 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg fill="#ffffff" height="800px" width="800px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 511.999 511.999" xml:space="preserve" stroke="#ffffff">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>

After

Width:  |  Height:  |  Size: 1.2 KiB

+12
View File
@@ -0,0 +1,12 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg height="800px" width="800px" version="1.1" id="_x32_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512" xml:space="preserve" fill="#ffffff" stroke="#ffffff">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
<g id="SVGRepo_iconCarrier"> <style type="text/css"> .st0{fill:#ffffff;} </style> <g> <path class="st0" d="M477.336,118.683l-150.39,106.525V118.683L170.01,229.844L156.936,27.133H26.147L0,484.867h512 L477.336,118.683z M194.65,369.543h-61.77v-61.779h61.77V369.543z M370.108,369.543H308.32v-61.779h61.788V369.543z"/> </g> </g>
</svg>

After

Width:  |  Height:  |  Size: 857 B

+7
View File
@@ -0,0 +1,7 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg width="800px" height="800px" viewBox="-3 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns" fill="#ffffff" stroke="#ffffff">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>

After

Width:  |  Height:  |  Size: 1.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.4 KiB

+7
View File
@@ -0,0 +1,7 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg fill="#ffffff" height="800px" width="800px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512" xml:space="preserve" stroke="#ffffff">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>

After

Width:  |  Height:  |  Size: 3.0 KiB

+12
View File
@@ -0,0 +1,12 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg height="800px" width="800px" version="1.1" id="_x32_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512" xml:space="preserve" fill="#ffffff" stroke="#ffffff">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
<g id="SVGRepo_iconCarrier"> <style type="text/css"> .st0{fill:#ffffff;} </style> <g> <path class="st0" d="M493.118,60.602c-40.138,17.719-93.777,20.322-143.881-0.447C324.872,50.055,273.523,25.223,255.999,0 c-17.521,25.223-68.871,50.055-93.236,60.154C112.657,80.924,59.021,78.32,18.88,60.602c-7.203-3.182-15.096,2.08-15.096,9.955 C3.784,493.475,255.999,512,255.999,512s252.217-18.525,252.217-441.443C508.216,62.682,500.323,57.42,493.118,60.602z M89.155,125.33c32.033,0,63.305-6.23,92.947-18.518c16.129-6.686,46.719-20.51,73.896-39.258 c27.178,18.748,57.77,32.572,73.898,39.258c29.647,12.289,60.918,18.52,92.949,18.518c11.256,0,22.45-0.801,33.428-2.367 C439.72,416.264,284.815,456.182,255.999,461.07c-28.814-4.889-183.72-44.807-200.273-338.108 C66.704,124.531,77.899,125.33,89.155,125.33z"/> <path class="st0" d="M255.999,409.279c29.94-8.686,119.684-49.879,144.676-234.27c-30.955-2.328-61.182-9.543-90.117-21.539 c-12.354-5.121-32.789-14.211-54.559-26.502c-21.768,12.291-42.201,21.381-54.556,26.502 c-28.932,11.994-59.156,19.209-90.117,21.539C136.317,359.4,226.06,400.594,255.999,409.279z"/> </g> </g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

+7
View File
@@ -0,0 +1,7 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg fill="#ffffff" width="90px" height="90px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" stroke="#ffffff">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>

After

Width:  |  Height:  |  Size: 1.3 KiB

+7
View File
@@ -0,0 +1,7 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512" xml:space="preserve" width="800px" height="800px" fill="#000000">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>

After

Width:  |  Height:  |  Size: 1.2 KiB

+7
View File
@@ -0,0 +1,7 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg fill="#ffffff" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="800px" height="800px" viewBox="0 0 470.389 470.388" xml:space="preserve" stroke="#ffffff">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>

After

Width:  |  Height:  |  Size: 2.8 KiB

+7
View File
@@ -0,0 +1,7 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg fill="#ffffff" width="110px" height="110px" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg" stroke="#ffffff">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>

After

Width:  |  Height:  |  Size: 4.2 KiB

+16
View File
@@ -0,0 +1,16 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
<svg fill="#ccc" width="70px" height="70px" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg" stroke="#ccc">
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
<g id="SVGRepo_iconCarrier">
<path d="M11.748 5.773S11.418 5 10.914 5c-.496 0-.754.229-.926.387S6.938 7.91 6.938 7.91s-.837.731-.773 2.106c.054 1.375.323 3.332 1.719 6.058 1.386 2.72 4.855 6.876 7.047 8.337 0 0 2.031 1.558 3.921 2.191.549.173 1.647.398 1.903.398.26 0 .719 0 1.246-.385.536-.389 3.543-2.807 3.543-2.807s.736-.665-.119-1.438c-.859-.773-3.467-2.492-4.025-2.944-.559-.459-1.355-.257-1.699.054-.343.313-.956.828-1.031.893-.112.086-.419.365-.763.226-.438-.173-2.234-1.148-3.899-3.426-1.655-2.276-1.837-3.02-2.084-3.824a.56.56 0 0 1 .225-.657c.248-.172 1.161-.933 1.161-.933s.591-.583.344-1.27-1.906-4.716-1.906-4.716z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 272 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 133 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

Some files were not shown because too many files have changed in this diff Show More