diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..5fca062 --- /dev/null +++ b/.htaccess @@ -0,0 +1,565 @@ +# ---------------------------------------------------------------------- +# Better website experience for IE users +# ---------------------------------------------------------------------- + +# Force the latest IE version, in various cases when it may fall back to IE7 mode +# github.com/rails/rails/commit/123eb25#commitcomment-118920 +# Use ChromeFrame if it's installed for a better experience for the poor IE folk + + + Header set X-UA-Compatible "IE=Edge,chrome=1" + # mod_headers can't match by content-type, but we don't want to send this header on *everything*... + + Header unset X-UA-Compatible + + + +# ---------------------------------------------------------------------- +# CORS-enabled images (@crossorigin) +# ---------------------------------------------------------------------- + +# Send CORS headers if browsers request them; enabled by default for images. +# developer.mozilla.org/en/CORS_Enabled_Image +# blog.chromium.org/2011/07/using-cross-domain-images-in-webgl-and.html +# hacks.mozilla.org/2011/11/using-cors-to-load-webgl-textures-from-cross-domain-images/ +# wiki.mozilla.org/Security/Reviews/crossoriginAttribute + + + + # mod_headers, y u no match by Content-Type?! + + SetEnvIf Origin ":" IS_CORS + Header set Access-Control-Allow-Origin "*" env=IS_CORS + + + + +# ---------------------------------------------------------------------- +# Webfont access +# ---------------------------------------------------------------------- + +# Allow access from all domains for webfonts. +# Alternatively you could only whitelist your +# subdomains like "subdomain.example.com". + + + + Header set Access-Control-Allow-Origin "*" + + + +# ---------------------------------------------------------------------- +# Proper MIME type for all files +# ---------------------------------------------------------------------- + +# JavaScript +# Normalize to standard type (it's sniffed in IE anyways) +# tools.ietf.org/html/rfc4329#section-7.2 +AddType application/javascript js jsonp +AddType application/json json + +# Audio +AddType audio/ogg oga ogg +AddType audio/mp4 m4a f4a f4b + +# Video +AddType video/ogg ogv +AddType video/mp4 mp4 m4v f4v f4p +AddType video/webm webm +AddType video/x-flv flv + +# SVG +# Required for svg webfonts on iPad +# twitter.com/FontSquirrel/status/14855840545 +AddType image/svg+xml svg svgz +AddEncoding gzip svgz + +# Webfonts +AddType application/vnd.ms-fontobject eot +AddType application/x-font-ttf ttf ttc +AddType font/opentype otf +AddType application/x-font-woff woff + +# Assorted types +AddType image/x-icon ico +AddType image/webp webp +AddType text/cache-manifest appcache manifest +AddType text/x-component htc +AddType application/xml rss atom xml rdf +AddType application/x-chrome-extension crx +AddType application/x-opera-extension oex +AddType application/x-xpinstall xpi +AddType application/octet-stream safariextz +AddType application/x-web-app-manifest+json webapp +AddType text/x-vcard vcf +AddType application/x-shockwave-flash swf +AddType text/vtt vtt + +# ---------------------------------------------------------------------- +# Gzip compression +# ---------------------------------------------------------------------- + + + + # Force deflate for mangled headers developer.yahoo.com/blogs/ydn/posts/2010/12/pushing-beyond-gzipping/ + + + SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding + RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding + + + + # Compress all output labeled with one of the following MIME-types + + AddOutputFilterByType DEFLATE application/atom+xml \ + application/javascript \ + application/json \ + application/rss+xml \ + application/vnd.ms-fontobject \ + application/x-font-ttf \ + application/xhtml+xml \ + application/xml \ + font/opentype \ + image/svg+xml \ + image/x-icon \ + text/css \ + text/html \ + text/plain \ + text/x-component \ + text/xml + + + + + +# ---------------------------------------------------------------------- +# ETag removal +# ---------------------------------------------------------------------- + +# FileETag None is not enough for every server. + + Header unset ETag + + +# Since we're sending far-future expires, we don't need ETags for +# static content. +# developer.yahoo.com/performance/rules.html#etags +FileETag None + + +# ---------------------------------------------------------------------- +# Start rewrite engine +# ---------------------------------------------------------------------- + +# Turning on the rewrite engine is necessary for the following rules and +# features. FollowSymLinks must be enabled for this to work. + +# Some cloud hosting services require RewriteBase to be set: goo.gl/HOcPN +# If using the h5bp in a subdirectory, use `RewriteBase /foo` instead where +# 'foo' is your directory. + +# If your web host doesn't allow the FollowSymlinks option, you may need to +# comment it out and use `Options +SymLinksOfOwnerMatch`, but be aware of the +# performance impact: http://goo.gl/Mluzd + + +# For security reasons, Option followsymlinks cannot be overridden. +# Options +FollowSymlinks + Options +SymLinksIfOwnerMatch + Options +SymLinksIfOwnerMatch + RewriteEngine On + RewriteCond %{THE_REQUEST} \/index.php\ HTTP [NC] + RewriteRule (.*)index.php$ /$1 [R=301,L] + #RewriteBase / + + +# ---------------------------------------------------------------------- +# Suppress or force the "www." at the beginning of URLs +# ---------------------------------------------------------------------- + +# The same content should never be available under two different URLs - +# especially not with and without "www." at the beginning, since this can cause +# SEO problems (duplicate content). That's why you should choose one of the +# alternatives and redirect the other one. + +# By default option 1 (no "www.") is activated. +# no-www.org/faq.php?q=class_b + +# If you'd prefer to use option 2, just comment out all option 1 lines +# and uncomment option 2. + +# IMPORTANT: NEVER USE BOTH RULES AT THE SAME TIME! + +# ---------------------------------------------------------------------- + +# Option 1: +# Rewrite "www.example.com -> example.com". + + + RewriteCond %{HTTPS} !=on + RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC] + RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L] + + +# ---------------------------------------------------------------------- + +# Option 2: +# Rewrite "example.com -> www.example.com". +# Be aware that the following rule might not be a good idea if you use "real" +# subdomains for certain parts of your website. + +# +# RewriteCond %{HTTPS} !=on +# RewriteCond %{HTTP_HOST} !^www\..+$ [NC] +# RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L] +# + + + +# ---------------------------------------------------------------------- +# Prevent 404 errors for non-existing redirected folders +# ---------------------------------------------------------------------- + +# without -MultiViews, Apache will give a 404 for a rewrite if a folder of the +# same name does not exist. +# webmasterworld.com/apache/3808792.htm + +Options -MultiViews + +# ---------------------------------------------------------------------- +# Custom 404 page +# ---------------------------------------------------------------------- + +# You can add custom pages to handle 500 or 403 pretty easily, if you like. +# If you are hosting your site in subdirectory, adjust this accordingly +# e.g. ErrorDocument 404 /subdir/404.html +ErrorDocument 404 /404.html + +# ---------------------------------------------------------------------- +# UTF-8 encoding +# ---------------------------------------------------------------------- + +# Use UTF-8 encoding for anything served text/plain or text/html +AddDefaultCharset utf-8 + +# Force UTF-8 for a number of file formats +AddCharset utf-8 .atom .css .js .json .rss .vtt .xml + +# ---------------------------------------------------------------------- +# A little more security +# ---------------------------------------------------------------------- + +# To avoid displaying the exact version number of Apache being used, add the +# following to httpd.conf (it will not work in .htaccess): +# ServerTokens Prod + +# "-Indexes" will have Apache block users from browsing folders without a +# default document Usually you should leave this activated, because you +# shouldn't allow everybody to surf through every folder on your server (which +# includes rather private places like CMS system folders). + + Options -Indexes + + +# Block access to "hidden" directories or files whose names begin with a +# period. This includes directories used by version control systems such as +# Subversion or Git. + + RewriteCond %{SCRIPT_FILENAME} -d [OR] + RewriteCond %{SCRIPT_FILENAME} -f + RewriteRule "(^|/)\." - [F] + + +# Block access to backup and source files. These files may be left by some +# text/html editors and pose a great security danger, when anyone can access +# them. + + Order allow,deny + Deny from all + Satisfy All + + + + php_value session.cookie_httponly true + + +RewriteCond %{HTTP_REFERER} !^$ +RewriteCond %{HTTP_REFERER} !^http://abetodesign.com/.*$ [NC] +RewriteCond %{HTTP_REFERER} !^http://abetodesign.com$ [NC] +RewriteCond %{HTTP_REFERER} !^http://uecko.com/.*$ [NC] +RewriteCond %{HTTP_REFERER} !^http://uecko.com$ [NC] +RewriteCond %{HTTP_REFERER} !^http://uecko.net/.*$ [NC] +RewriteCond %{HTTP_REFERER} !^http://uecko.net$ [NC] +RewriteCond %{HTTP_REFERER} !^http://www.abetodesign.com/.*$ [NC] +RewriteCond %{HTTP_REFERER} !^http://www.abetodesign.com$ [NC] +RewriteCond %{HTTP_REFERER} !^http://www.uecko.com/.*$ [NC] +RewriteCond %{HTTP_REFERER} !^http://www.uecko.com$ [NC] +RewriteCond %{HTTP_REFERER} !^http://www.uecko.net/.*$ [NC] +RewriteCond %{HTTP_REFERER} !^http://www.uecko.net$ [NC] +RewriteRule .*\.(jpg|jpeg|gif|png|bmp|pdf)$ - [F,NC] + + +# Spambots +RewriteCond %{HTTP_USER_AGENT} ^.*(Ahrefs|Baidu|BlogScope|Butterfly|DCPbot|discoverybot|domain|Ezooms|ImageSearcherFree).*$ [NC,OR] +RewriteCond %{HTTP_USER_AGENT} ^.*(ips-agent|linkdex|MJ12|Netcraft|NextGenSearchBot|SISTRIX|Sogou|soso|TweetmemeBot|Unwind|Yandex).*$ [NC] +RewriteRule ^/?.*$ "http\:\/\/127\.0\.0\.1" [R,L] + + +# https://github.com/Stevie-Ray/htaccess-referral-spam-blacklist-block + + +RewriteEngine On + +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*100dollars\-seo\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*4webmasters\.org.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*76brighton\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*7makemoneyonline\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*abovetherivernc\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*addons\.mozilla\.org/en-US/firefox/addon/ilovevitaly/ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*adcash\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*adelly\.bg.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*advokateg\.(com?|ru).*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*adviceforum\.info.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*alessandraleone\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*amanda-porn\.ga.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*anticrawler\.org.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*aosheng\-tech\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*audiobangout\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*backgroundpictures\.net.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*bbtec\.net.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*best\-seo\-offer\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*best\-seo\-solution\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*bestwebsitesawards\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*bkns\.vn.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*blackhatworth\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*buttons\-for\-your\-website\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*buttons\-for\-website\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*buy\-cheap\-online\.info.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*buy\-forum\.ru.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*buypharmacydrug\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*cenoval\.ru.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*callejondelpozo\.es.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*cbcseward\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*cherrypointplace\.ca.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*cherubinimobili\.it.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*cityadspix\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*clmforexeu\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*constantaservice\.net.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*darodar\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*depositfiles\-porn\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*domination\.ml.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*econom\.co.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*edelstahlschornstein\-123\.de.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*embedle\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*event\-tracking\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*extener\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*family1st\.ca.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*fbdownloader\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*fbfreegifts\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*feedouble\.(com?|net).*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*fiverr\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*forum69\.info.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*foxtechfpv\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ftns\.ru*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*free\-share\-buttons\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*free\-social\-buttons\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*freeseedsonline\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*fungirlsgames\.net.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*funnypica\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ganarvisitas\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*guardlink\.(com?|org).*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*get\-free\-traffic\-now\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*generalporn\.org.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*googlsucks\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*gobongo\.info.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*gototal\.co.nz.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*h2monline\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*hol\.es.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*hostcritique\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*hostingclub\.lk.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*houseofrose\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*howtostopreferralspam\.eu.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*hulfingtonpost\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*humanorightswatch\.org.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ilovevitaly\.(com?|ru|org|info).*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*iminent\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*invivo\.hu.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*inboxdollars\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*iskalko\.ru.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*istanbulit\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*itronics\.ca.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*itsdp3\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*jasonpartington\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*joinandplay\.me.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*joingames\.org.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*kabbalah\-red\-bracelets\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*kambasoft\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*kosova\.de.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*leadwayau\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*lmrauction\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*lol\-smurfs\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*lombia\.(com?|co).*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*lumb\.co.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*luxup\.ru.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*mainlinehobby\.net.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*make\-money\-online\.7makemoneyonline\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*malls\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*maxthon\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*medi\-fitt.hu.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*medicovi\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*medispainstitute\.com\.au.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*meendo\-free\-traffic\.ga.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*mericanmopedstore\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*motion\-interactive\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*mountainstream\.ms.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*mpftpupload\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*musicas.baixar\-musicas\-gratis\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*musicprojectfoundation\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*myprintscreen\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*notaria\-desalas\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*noumeda\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*offers\.bycontext\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*openfrost\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*o\-o\-6\-o\-o\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*openmediasoft\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*paparazzistudios\.com\.au*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*pornhub-forum\.ga.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*powitania\.pl.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*prlog\.ru.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*priceg\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*princeadvantagesales\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*pyrodesigns\.com\.au.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ranksonic\.info.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*rapidgator\-porn\.ga.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*realting-moscow\.ru.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*retreatia\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*resellerclub\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*aliexpress\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*savetubevideo\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*sanjosestartups\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*semalt\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*seoanalyses\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*setioweb\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*simple\-share\-buttons\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www1?\.)?.*social\-buttons\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*softomix\.(com?|ru|org|net).*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*sonyelektronik\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*soundfrost\.org.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*smailik\.org.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*srecorder\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*streha\-metalko\.si.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*superiends\.org.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*susanholtphotography\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*tastyfoodideas\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*teastory\.co.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*thecoral\.com.br.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*theguardlan\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*thepokertimer\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*touchmods\.fr.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*torture\.ml.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*twincitiescarservice\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*urlopener\.blogspot\.com.au.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*uzungil\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*vapmedia\.org.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*videofrost\.(com?|net).*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*website\-errors\-scanner\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*webmaster\-traffic\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*website\-errors\-scanner\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*williamrobsonproperty\.com.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*xn--c1acygb\.xn--p1ai.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*xn--80adgcaax6acohn6r\.xn--p1ai.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*xn--q1a\.xn--b1aube0e\.xn--c1acygb\.xn--p1ai.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*uni\.me.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*youporn-forum\.ga.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*youtubedownload\.org.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*zazagames\.org.*$ [NC,OR] +RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*zverokruh\-shop\.cz.*$ [NC] + +RewriteRule ^(.*)$ – [F,L] + + + + + +SetEnvIfNoCase Referer 4webmasters.org spambot=yes +SetEnvIfNoCase Referer 7makemoneyonline.com spambot=yes +SetEnvIfNoCase Referer acunetix-referrer.com spambot=yes +SetEnvIfNoCase Referer adcash.com spambot=yes +SetEnvIfNoCase Referer advokateg.com spambot=yes +SetEnvIfNoCase Referer advokateg.ru spambot=yes +SetEnvIfNoCase Referer baixar-musicas-gratis.com spambot=yes +SetEnvIfNoCase Referer best-seo-offer.com spambot=yes +SetEnvIfNoCase Referer best-seo-solution.com spambot=yes +SetEnvIfNoCase Referer bestwebsitesawards.com spambot=yes +SetEnvIfNoCase Referer blackhatworth.com spambot=yes +SetEnvIfNoCase Referer buttons-for-website.com spambot=yes +SetEnvIfNoCase Referer buttons-for-your-website.com spambot=yes +SetEnvIfNoCase Referer buy-cheap-online.info spambot=yes +SetEnvIfNoCase Referer cenokos.ru spambot=yes +SetEnvIfNoCase Referer cenoval.ru spambot=yes +SetEnvIfNoCase Referer cityadspix.com spambot=yes +SetEnvIfNoCase Referer darodar.com spambot=yes +SetEnvIfNoCase Referer descargar-musicas-gratis.com spambot=yes +SetEnvIfNoCase Referer econom.co spambot=yes +SetEnvIfNoCase Referer edakgfvwql.ru spambot=yes +SetEnvIfNoCase Referer event-tracking.com spambot=yes +SetEnvIfNoCase Referer fbdownloader.com spambot=yes +SetEnvIfNoCase Referer forum20.smailik.org spambot=yes +SetEnvIfNoCase Referer free-share-buttons.com spambot=yes +SetEnvIfNoCase Referer free-social-buttons.com spambot=yes +SetEnvIfNoCase Referer ganarvisitas.com spambot=yes +SetEnvIfNoCase Referer googlsucks.com spambot=yes +SetEnvIfNoCase Referer gobongo.info spambot=yes +SetEnvIfNoCase Referer guardlink.org spambot=yes +SetEnvIfNoCase Referer hulfingtonpost.com spambot=yes +SetEnvIfNoCase Referer humanorightswatch.org spambot=yes +SetEnvIfNoCase Referer iedit.ilovevitaly.com spambot=yes +SetEnvIfNoCase Referer ilovevitaly.com spambot=yes +SetEnvIfNoCase Referer ilovevitaly.co spambot=yes +SetEnvIfNoCase Referer ilovevitaly.info spambot=yes +SetEnvIfNoCase Referer ilovevitaly.org spambot=yes +SetEnvIfNoCase Referer ilovevitaly.ru spambot=yes +SetEnvIfNoCase Referer iskalko.ru spambot=yes +SetEnvIfNoCase Referer lomb.co spambot=yes +SetEnvIfNoCase Referer luxup.ru spambot=yes +SetEnvIfNoCase Referer make-money-online.7makemoneyonline.com spambot=yes +SetEnvIfNoCase Referer maps.ilovevitaly.com spambot=yes +SetEnvIfNoCase Referer myftpupload.com spambot=yes +SetEnvIfNoCase Referer net.hts.ru spambot=yes +SetEnvIfNoCase Referer offers.bycontext.com spambot=yes +SetEnvIfNoCase Referer o-o-6-o-o.ru spambot=yes +SetEnvIfNoCase Referer o-o-6-o-o.com spambot=yes +SetEnvIfNoCase Referer o-o-8-o-o.ru spambot=yes +SetEnvIfNoCase Referer priceg.com spambot=yes +SetEnvIfNoCase Referer resellerclub.com spambot=yes +SetEnvIfNoCase Referer responsinator.com spambot=yes +SetEnvIfNoCase Referer sanjosestartups.com spambot=yes +SetEnvIfNoCase Referer savetubevideo.com spambot=yes +SetEnvIfNoCase Referer screentoolkit.com spambot=yes +SetEnvIfNoCase Referer semalt.com spambot=yes +SetEnvIfNoCase Referer seoexperimenty.ru spambot=yes +SetEnvIfNoCase Referer shopping.ilovevitaly.ru spambot=yes +SetEnvIfNoCase Referer simple-share-buttons.com spambot=yes +SetEnvIfNoCase Referer slftsdybbg.ru spambot=yes +SetEnvIfNoCase Referer socialseet.ru spambot=yes +SetEnvIfNoCase Referer social-buttons.com spambot=yes +SetEnvIfNoCase Referer srecorder.com spambot=yes +SetEnvIfNoCase Referer st3.cwl.yahoo.com spambot=yes +SetEnvIfNoCase Referer superiends.org spambot=yes +SetEnvIfNoCase Referer theguardlan.com spambot=yes +SetEnvIfNoCase Referer vodkoved.ru spambot=yes +SetEnvIfNoCase Referer websocial.me spambot=yes +SetEnvIfNoCase Referer www1.social-buttons.com spambot=yes +SetEnvIfNoCase Referer www.Get-Free-Traffic-Now.com spambot=yes +SetEnvIfNoCase Referer ykecwqlixx.ru spambot=yes +SetEnvIfNoCase Referer yougetsignal.com spambot=yes + + + + + +Order allow,deny +Allow from all +Deny from env=spambot + + \ No newline at end of file diff --git a/googledae41e7cfa25b38b.html b/googledae41e7cfa25b38b.html new file mode 100644 index 0000000..b10c8d5 --- /dev/null +++ b/googledae41e7cfa25b38b.html @@ -0,0 +1 @@ +google-site-verification: googledae41e7cfa25b38b.html \ No newline at end of file diff --git a/img.bak/armarios/page1.jpg b/img.bak/armarios/page1.jpg new file mode 100644 index 0000000..c3cafd5 Binary files /dev/null and b/img.bak/armarios/page1.jpg differ diff --git a/img.bak/armarios/page10.jpg b/img.bak/armarios/page10.jpg new file mode 100644 index 0000000..a00c119 Binary files /dev/null and b/img.bak/armarios/page10.jpg differ diff --git a/img.bak/armarios/page10@2x.jpg b/img.bak/armarios/page10@2x.jpg new file mode 100644 index 0000000..f41e6eb Binary files /dev/null and b/img.bak/armarios/page10@2x.jpg differ diff --git a/img.bak/armarios/page11.jpg b/img.bak/armarios/page11.jpg new file mode 100644 index 0000000..7c26d3a Binary files /dev/null and b/img.bak/armarios/page11.jpg differ diff --git a/img.bak/armarios/page11@2x.jpg b/img.bak/armarios/page11@2x.jpg new file mode 100644 index 0000000..58b9828 Binary files /dev/null and b/img.bak/armarios/page11@2x.jpg differ diff --git a/img.bak/armarios/page11@2xo.jpg b/img.bak/armarios/page11@2xo.jpg new file mode 100644 index 0000000..c55da5d Binary files /dev/null and b/img.bak/armarios/page11@2xo.jpg differ diff --git a/img.bak/armarios/page11o.jpg b/img.bak/armarios/page11o.jpg new file mode 100644 index 0000000..d6758fe Binary files /dev/null and b/img.bak/armarios/page11o.jpg differ diff --git a/img.bak/armarios/page12.jpg b/img.bak/armarios/page12.jpg new file mode 100644 index 0000000..0bf5cfc Binary files /dev/null and b/img.bak/armarios/page12.jpg differ diff --git a/img.bak/armarios/page12@2x.jpg b/img.bak/armarios/page12@2x.jpg new file mode 100644 index 0000000..1851b9d Binary files /dev/null and b/img.bak/armarios/page12@2x.jpg differ diff --git a/img.bak/armarios/page12@2xo.jpg b/img.bak/armarios/page12@2xo.jpg new file mode 100644 index 0000000..a3460ce Binary files /dev/null and b/img.bak/armarios/page12@2xo.jpg differ diff --git a/img.bak/armarios/page12o.jpg b/img.bak/armarios/page12o.jpg new file mode 100644 index 0000000..837f795 Binary files /dev/null and b/img.bak/armarios/page12o.jpg differ diff --git a/img.bak/armarios/page13.jpg b/img.bak/armarios/page13.jpg new file mode 100644 index 0000000..c8ea217 Binary files /dev/null and b/img.bak/armarios/page13.jpg differ diff --git a/img.bak/armarios/page13@2x.jpg b/img.bak/armarios/page13@2x.jpg new file mode 100644 index 0000000..13d5220 Binary files /dev/null and b/img.bak/armarios/page13@2x.jpg differ diff --git a/img.bak/armarios/page14.jpg b/img.bak/armarios/page14.jpg new file mode 100644 index 0000000..647fd6c Binary files /dev/null and b/img.bak/armarios/page14.jpg differ diff --git a/img.bak/armarios/page14@2x.jpg b/img.bak/armarios/page14@2x.jpg new file mode 100644 index 0000000..1bf5404 Binary files /dev/null and b/img.bak/armarios/page14@2x.jpg differ diff --git a/img.bak/armarios/page15.jpg b/img.bak/armarios/page15.jpg new file mode 100644 index 0000000..9be6fb4 Binary files /dev/null and b/img.bak/armarios/page15.jpg differ diff --git a/img.bak/armarios/page15@2x.jpg b/img.bak/armarios/page15@2x.jpg new file mode 100644 index 0000000..9b6ba39 Binary files /dev/null and b/img.bak/armarios/page15@2x.jpg differ diff --git a/img.bak/armarios/page15@2xo.jpg b/img.bak/armarios/page15@2xo.jpg new file mode 100644 index 0000000..1017fba Binary files /dev/null and b/img.bak/armarios/page15@2xo.jpg differ diff --git a/img.bak/armarios/page15o.jpg b/img.bak/armarios/page15o.jpg new file mode 100644 index 0000000..0c65d9b Binary files /dev/null and b/img.bak/armarios/page15o.jpg differ diff --git a/img.bak/armarios/page16.jpg b/img.bak/armarios/page16.jpg new file mode 100644 index 0000000..ca6b98e Binary files /dev/null and b/img.bak/armarios/page16.jpg differ diff --git a/img.bak/armarios/page16@2x.jpg b/img.bak/armarios/page16@2x.jpg new file mode 100644 index 0000000..28f8a7b Binary files /dev/null and b/img.bak/armarios/page16@2x.jpg differ diff --git a/img.bak/armarios/page16@2xo.jpg b/img.bak/armarios/page16@2xo.jpg new file mode 100644 index 0000000..e3a83c1 Binary files /dev/null and b/img.bak/armarios/page16@2xo.jpg differ diff --git a/img.bak/armarios/page16o.jpg b/img.bak/armarios/page16o.jpg new file mode 100644 index 0000000..f8a517e Binary files /dev/null and b/img.bak/armarios/page16o.jpg differ diff --git a/img.bak/armarios/page17.jpg b/img.bak/armarios/page17.jpg new file mode 100644 index 0000000..5945ae5 Binary files /dev/null and b/img.bak/armarios/page17.jpg differ diff --git a/img.bak/armarios/page17@2x.jpg b/img.bak/armarios/page17@2x.jpg new file mode 100644 index 0000000..f480113 Binary files /dev/null and b/img.bak/armarios/page17@2x.jpg differ diff --git a/img.bak/armarios/page18.jpg b/img.bak/armarios/page18.jpg new file mode 100644 index 0000000..7d1ca8d Binary files /dev/null and b/img.bak/armarios/page18.jpg differ diff --git a/img.bak/armarios/page18@2x.jpg b/img.bak/armarios/page18@2x.jpg new file mode 100644 index 0000000..ad41aca Binary files /dev/null and b/img.bak/armarios/page18@2x.jpg differ diff --git a/img.bak/armarios/page19.jpg b/img.bak/armarios/page19.jpg new file mode 100644 index 0000000..ef80787 Binary files /dev/null and b/img.bak/armarios/page19.jpg differ diff --git a/img.bak/armarios/page19@2x.jpg b/img.bak/armarios/page19@2x.jpg new file mode 100644 index 0000000..2fdd8ec Binary files /dev/null and b/img.bak/armarios/page19@2x.jpg differ diff --git a/img.bak/armarios/page1@2x.jpg b/img.bak/armarios/page1@2x.jpg new file mode 100644 index 0000000..de48802 Binary files /dev/null and b/img.bak/armarios/page1@2x.jpg differ diff --git a/img.bak/armarios/page2.jpg b/img.bak/armarios/page2.jpg new file mode 100644 index 0000000..7a7a32b Binary files /dev/null and b/img.bak/armarios/page2.jpg differ diff --git a/img.bak/armarios/page20.jpg b/img.bak/armarios/page20.jpg new file mode 100644 index 0000000..a95a64d Binary files /dev/null and b/img.bak/armarios/page20.jpg differ diff --git a/img.bak/armarios/page20@2x.jpg b/img.bak/armarios/page20@2x.jpg new file mode 100644 index 0000000..9194bca Binary files /dev/null and b/img.bak/armarios/page20@2x.jpg differ diff --git a/img.bak/armarios/page21.jpg b/img.bak/armarios/page21.jpg new file mode 100644 index 0000000..063e895 Binary files /dev/null and b/img.bak/armarios/page21.jpg differ diff --git a/img.bak/armarios/page21@2x.jpg b/img.bak/armarios/page21@2x.jpg new file mode 100644 index 0000000..0feaf15 Binary files /dev/null and b/img.bak/armarios/page21@2x.jpg differ diff --git a/img.bak/armarios/page2@2x.jpg b/img.bak/armarios/page2@2x.jpg new file mode 100644 index 0000000..727bd37 Binary files /dev/null and b/img.bak/armarios/page2@2x.jpg differ diff --git a/img.bak/armarios/page3.jpg b/img.bak/armarios/page3.jpg new file mode 100644 index 0000000..f1f5136 Binary files /dev/null and b/img.bak/armarios/page3.jpg differ diff --git a/img.bak/armarios/page3@2x.jpg b/img.bak/armarios/page3@2x.jpg new file mode 100644 index 0000000..7ab0ed8 Binary files /dev/null and b/img.bak/armarios/page3@2x.jpg differ diff --git a/img.bak/armarios/page4.jpg b/img.bak/armarios/page4.jpg new file mode 100644 index 0000000..a647d54 Binary files /dev/null and b/img.bak/armarios/page4.jpg differ diff --git a/img.bak/armarios/page4@2x.jpg b/img.bak/armarios/page4@2x.jpg new file mode 100644 index 0000000..4b19db9 Binary files /dev/null and b/img.bak/armarios/page4@2x.jpg differ diff --git a/img.bak/armarios/page5.jpg b/img.bak/armarios/page5.jpg new file mode 100644 index 0000000..859707e Binary files /dev/null and b/img.bak/armarios/page5.jpg differ diff --git a/img.bak/armarios/page5@2x.jpg b/img.bak/armarios/page5@2x.jpg new file mode 100644 index 0000000..3cc1653 Binary files /dev/null and b/img.bak/armarios/page5@2x.jpg differ diff --git a/img.bak/armarios/page6.jpg b/img.bak/armarios/page6.jpg new file mode 100644 index 0000000..2dfa6bf Binary files /dev/null and b/img.bak/armarios/page6.jpg differ diff --git a/img.bak/armarios/page6@2x.jpg b/img.bak/armarios/page6@2x.jpg new file mode 100644 index 0000000..27e0a61 Binary files /dev/null and b/img.bak/armarios/page6@2x.jpg differ diff --git a/img.bak/armarios/page7.jpg b/img.bak/armarios/page7.jpg new file mode 100644 index 0000000..dfcb033 Binary files /dev/null and b/img.bak/armarios/page7.jpg differ diff --git a/img.bak/armarios/page7@2x.jpg b/img.bak/armarios/page7@2x.jpg new file mode 100644 index 0000000..a93d355 Binary files /dev/null and b/img.bak/armarios/page7@2x.jpg differ diff --git a/img.bak/armarios/page8.jpg b/img.bak/armarios/page8.jpg new file mode 100644 index 0000000..53c6182 Binary files /dev/null and b/img.bak/armarios/page8.jpg differ diff --git a/img.bak/armarios/page8@2x.jpg b/img.bak/armarios/page8@2x.jpg new file mode 100644 index 0000000..6e2f776 Binary files /dev/null and b/img.bak/armarios/page8@2x.jpg differ diff --git a/img.bak/armarios/page9.jpg b/img.bak/armarios/page9.jpg new file mode 100644 index 0000000..b915fd0 Binary files /dev/null and b/img.bak/armarios/page9.jpg differ diff --git a/img.bak/armarios/page9@2x.jpg b/img.bak/armarios/page9@2x.jpg new file mode 100644 index 0000000..897965d Binary files /dev/null and b/img.bak/armarios/page9@2x.jpg differ diff --git a/img.bak/contact_icos.png b/img.bak/contact_icos.png new file mode 100644 index 0000000..c3b15d6 Binary files /dev/null and b/img.bak/contact_icos.png differ diff --git a/img.bak/down.png b/img.bak/down.png new file mode 100644 index 0000000..de7e175 Binary files /dev/null and b/img.bak/down.png differ diff --git a/img.bak/down@2x.png b/img.bak/down@2x.png new file mode 100644 index 0000000..a76a976 Binary files /dev/null and b/img.bak/down@2x.png differ diff --git a/img.bak/estanterias/page1.jpg b/img.bak/estanterias/page1.jpg new file mode 100644 index 0000000..47e0b1b Binary files /dev/null and b/img.bak/estanterias/page1.jpg differ diff --git a/img.bak/estanterias/page1@2x.jpg b/img.bak/estanterias/page1@2x.jpg new file mode 100644 index 0000000..455401d Binary files /dev/null and b/img.bak/estanterias/page1@2x.jpg differ diff --git a/img.bak/estanterias/page2.jpg b/img.bak/estanterias/page2.jpg new file mode 100644 index 0000000..f1711c5 Binary files /dev/null and b/img.bak/estanterias/page2.jpg differ diff --git a/img.bak/estanterias/page2@2x.jpg b/img.bak/estanterias/page2@2x.jpg new file mode 100644 index 0000000..99fefdb Binary files /dev/null and b/img.bak/estanterias/page2@2x.jpg differ diff --git a/img.bak/estanterias/page3.jpg b/img.bak/estanterias/page3.jpg new file mode 100644 index 0000000..4e47a85 Binary files /dev/null and b/img.bak/estanterias/page3.jpg differ diff --git a/img.bak/estanterias/page3@2x.jpg b/img.bak/estanterias/page3@2x.jpg new file mode 100644 index 0000000..4ca8404 Binary files /dev/null and b/img.bak/estanterias/page3@2x.jpg differ diff --git a/img.bak/estanterias/page4.jpg b/img.bak/estanterias/page4.jpg new file mode 100644 index 0000000..6ff4a0a Binary files /dev/null and b/img.bak/estanterias/page4.jpg differ diff --git a/img.bak/estanterias/page4@2x.jpg b/img.bak/estanterias/page4@2x.jpg new file mode 100644 index 0000000..5fe820b Binary files /dev/null and b/img.bak/estanterias/page4@2x.jpg differ diff --git a/img.bak/estanterias/page5.jpg b/img.bak/estanterias/page5.jpg new file mode 100644 index 0000000..e76099c Binary files /dev/null and b/img.bak/estanterias/page5.jpg differ diff --git a/img.bak/estanterias/page5@2x.jpg b/img.bak/estanterias/page5@2x.jpg new file mode 100644 index 0000000..cbc5244 Binary files /dev/null and b/img.bak/estanterias/page5@2x.jpg differ diff --git a/img.bak/estanterias/page6.jpg b/img.bak/estanterias/page6.jpg new file mode 100644 index 0000000..e50fdca Binary files /dev/null and b/img.bak/estanterias/page6.jpg differ diff --git a/img.bak/estanterias/page6@2x.jpg b/img.bak/estanterias/page6@2x.jpg new file mode 100644 index 0000000..69dad0b Binary files /dev/null and b/img.bak/estanterias/page6@2x.jpg differ diff --git a/img.bak/estanterias/page6@2xa.jpg b/img.bak/estanterias/page6@2xa.jpg new file mode 100644 index 0000000..3102cc8 Binary files /dev/null and b/img.bak/estanterias/page6@2xa.jpg differ diff --git a/img.bak/estanterias/page6a.jpg b/img.bak/estanterias/page6a.jpg new file mode 100644 index 0000000..99bf7fc Binary files /dev/null and b/img.bak/estanterias/page6a.jpg differ diff --git a/img.bak/estanterias/page7.jpg b/img.bak/estanterias/page7.jpg new file mode 100644 index 0000000..3137bf2 Binary files /dev/null and b/img.bak/estanterias/page7.jpg differ diff --git a/img.bak/estanterias/page7@2x.jpg b/img.bak/estanterias/page7@2x.jpg new file mode 100644 index 0000000..1e90635 Binary files /dev/null and b/img.bak/estanterias/page7@2x.jpg differ diff --git a/img.bak/estanterias/page7@2xa.jpg b/img.bak/estanterias/page7@2xa.jpg new file mode 100644 index 0000000..4b517ed Binary files /dev/null and b/img.bak/estanterias/page7@2xa.jpg differ diff --git a/img.bak/estanterias/page7a.jpg b/img.bak/estanterias/page7a.jpg new file mode 100644 index 0000000..d8ffad3 Binary files /dev/null and b/img.bak/estanterias/page7a.jpg differ diff --git a/img.bak/estanterias/page8.jpg b/img.bak/estanterias/page8.jpg new file mode 100644 index 0000000..7262e60 Binary files /dev/null and b/img.bak/estanterias/page8.jpg differ diff --git a/img.bak/estanterias/page8@2x.jpg b/img.bak/estanterias/page8@2x.jpg new file mode 100644 index 0000000..e196a65 Binary files /dev/null and b/img.bak/estanterias/page8@2x.jpg differ diff --git a/img.bak/formmail.png b/img.bak/formmail.png new file mode 100644 index 0000000..d974c7f Binary files /dev/null and b/img.bak/formmail.png differ diff --git a/img.bak/formname.png b/img.bak/formname.png new file mode 100644 index 0000000..9d0d71c Binary files /dev/null and b/img.bak/formname.png differ diff --git a/img.bak/formphone.png b/img.bak/formphone.png new file mode 100644 index 0000000..7f7590e Binary files /dev/null and b/img.bak/formphone.png differ diff --git a/img.bak/glyphicons-halflings 2.png b/img.bak/glyphicons-halflings 2.png new file mode 100644 index 0000000..a996999 Binary files /dev/null and b/img.bak/glyphicons-halflings 2.png differ diff --git a/img.bak/glyphicons-halflings-white 2.png b/img.bak/glyphicons-halflings-white 2.png new file mode 100644 index 0000000..3bf6484 Binary files /dev/null and b/img.bak/glyphicons-halflings-white 2.png differ diff --git a/img.bak/glyphicons-halflings-white.png b/img.bak/glyphicons-halflings-white.png new file mode 100644 index 0000000..3bf6484 Binary files /dev/null and b/img.bak/glyphicons-halflings-white.png differ diff --git a/img.bak/glyphicons-halflings.png b/img.bak/glyphicons-halflings.png new file mode 100644 index 0000000..a996999 Binary files /dev/null and b/img.bak/glyphicons-halflings.png differ diff --git a/img.bak/glyphicons-white.png b/img.bak/glyphicons-white.png new file mode 100644 index 0000000..327f949 Binary files /dev/null and b/img.bak/glyphicons-white.png differ diff --git a/img.bak/glyphicons-white.svg b/img.bak/glyphicons-white.svg new file mode 100644 index 0000000..a2be78a --- /dev/null +++ b/img.bak/glyphicons-white.svg @@ -0,0 +1,4259 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img.bak/glyphicons.png b/img.bak/glyphicons.png new file mode 100644 index 0000000..68fe6a5 Binary files /dev/null and b/img.bak/glyphicons.png differ diff --git a/img.bak/glyphicons.svg b/img.bak/glyphicons.svg new file mode 100644 index 0000000..a05dbd2 --- /dev/null +++ b/img.bak/glyphicons.svg @@ -0,0 +1,4157 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img.bak/glyphicons_halflings-white.png b/img.bak/glyphicons_halflings-white.png new file mode 100644 index 0000000..b7ceefc Binary files /dev/null and b/img.bak/glyphicons_halflings-white.png differ diff --git a/img.bak/glyphicons_halflings-white.svg b/img.bak/glyphicons_halflings-white.svg new file mode 100644 index 0000000..f8c1d59 --- /dev/null +++ b/img.bak/glyphicons_halflings-white.svg @@ -0,0 +1,1007 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img.bak/glyphicons_halflings-white@2x.png b/img.bak/glyphicons_halflings-white@2x.png new file mode 100644 index 0000000..ceafd86 Binary files /dev/null and b/img.bak/glyphicons_halflings-white@2x.png differ diff --git a/img.bak/glyphicons_halflings.png b/img.bak/glyphicons_halflings.png new file mode 100644 index 0000000..215076c Binary files /dev/null and b/img.bak/glyphicons_halflings.png differ diff --git a/img.bak/glyphicons_halflings.svg b/img.bak/glyphicons_halflings.svg new file mode 100644 index 0000000..4f3690d --- /dev/null +++ b/img.bak/glyphicons_halflings.svg @@ -0,0 +1,1010 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img.bak/glyphicons_halflings@2x.png b/img.bak/glyphicons_halflings@2x.png new file mode 100644 index 0000000..b55b876 Binary files /dev/null and b/img.bak/glyphicons_halflings@2x.png differ diff --git a/img.bak/icons/list/orange/list_arrow.png b/img.bak/icons/list/orange/list_arrow.png new file mode 100644 index 0000000..20b4b23 Binary files /dev/null and b/img.bak/icons/list/orange/list_arrow.png differ diff --git a/img.bak/icons/list/orange/list_check.png b/img.bak/icons/list/orange/list_check.png new file mode 100644 index 0000000..c5ef0d4 Binary files /dev/null and b/img.bak/icons/list/orange/list_check.png differ diff --git a/img.bak/icons/list/orange/list_circle.png b/img.bak/icons/list/orange/list_circle.png new file mode 100644 index 0000000..02f7901 Binary files /dev/null and b/img.bak/icons/list/orange/list_circle.png differ diff --git a/img.bak/icons/list/orange/list_cross.png b/img.bak/icons/list/orange/list_cross.png new file mode 100644 index 0000000..36000e0 Binary files /dev/null and b/img.bak/icons/list/orange/list_cross.png differ diff --git a/img.bak/icons/list/orange/list_minus.png b/img.bak/icons/list/orange/list_minus.png new file mode 100644 index 0000000..e58f648 Binary files /dev/null and b/img.bak/icons/list/orange/list_minus.png differ diff --git a/img.bak/icons/list/orange/list_plus.png b/img.bak/icons/list/orange/list_plus.png new file mode 100644 index 0000000..28294df Binary files /dev/null and b/img.bak/icons/list/orange/list_plus.png differ diff --git a/img.bak/icons/list/orange/list_square.png b/img.bak/icons/list/orange/list_square.png new file mode 100644 index 0000000..f3190e9 Binary files /dev/null and b/img.bak/icons/list/orange/list_square.png differ diff --git a/img.bak/icons/list/orange/list_star.png b/img.bak/icons/list/orange/list_star.png new file mode 100644 index 0000000..b6b8420 Binary files /dev/null and b/img.bak/icons/list/orange/list_star.png differ diff --git a/img.bak/icons/social-icons-set.png b/img.bak/icons/social-icons-set.png new file mode 100644 index 0000000..68d6eda Binary files /dev/null and b/img.bak/icons/social-icons-set.png differ diff --git a/img.bak/icons/social-icons-set@2x.png b/img.bak/icons/social-icons-set@2x.png new file mode 100644 index 0000000..2d52233 Binary files /dev/null and b/img.bak/icons/social-icons-set@2x.png differ diff --git a/img.bak/icons/twitter.png b/img.bak/icons/twitter.png new file mode 100644 index 0000000..623280e Binary files /dev/null and b/img.bak/icons/twitter.png differ diff --git a/img.bak/icons/twitter@2x.png b/img.bak/icons/twitter@2x.png new file mode 100644 index 0000000..f5c3e09 Binary files /dev/null and b/img.bak/icons/twitter@2x.png differ diff --git a/img.bak/images/1-1.jpg b/img.bak/images/1-1.jpg new file mode 100644 index 0000000..5d08509 Binary files /dev/null and b/img.bak/images/1-1.jpg differ diff --git a/img.bak/images/1.jpg b/img.bak/images/1.jpg new file mode 100644 index 0000000..6301282 Binary files /dev/null and b/img.bak/images/1.jpg differ diff --git a/img.bak/images/1@2x.jpg b/img.bak/images/1@2x.jpg new file mode 100644 index 0000000..4d2adc9 Binary files /dev/null and b/img.bak/images/1@2x.jpg differ diff --git a/img.bak/images/2-2.jpg b/img.bak/images/2-2.jpg new file mode 100644 index 0000000..6cb604f Binary files /dev/null and b/img.bak/images/2-2.jpg differ diff --git a/img.bak/images/2.jpg b/img.bak/images/2.jpg new file mode 100644 index 0000000..cb628a0 Binary files /dev/null and b/img.bak/images/2.jpg differ diff --git a/img.bak/images/2@2x.jpg b/img.bak/images/2@2x.jpg new file mode 100644 index 0000000..749ae38 Binary files /dev/null and b/img.bak/images/2@2x.jpg differ diff --git a/img.bak/images/3-3.jpg b/img.bak/images/3-3.jpg new file mode 100644 index 0000000..5dd8e5c Binary files /dev/null and b/img.bak/images/3-3.jpg differ diff --git a/img.bak/images/3.jpg b/img.bak/images/3.jpg new file mode 100644 index 0000000..7d1ca8d Binary files /dev/null and b/img.bak/images/3.jpg differ diff --git a/img.bak/images/3@2x.jpg b/img.bak/images/3@2x.jpg new file mode 100644 index 0000000..ad41aca Binary files /dev/null and b/img.bak/images/3@2x.jpg differ diff --git a/img.bak/images/4-4.jpg b/img.bak/images/4-4.jpg new file mode 100644 index 0000000..5d2696b Binary files /dev/null and b/img.bak/images/4-4.jpg differ diff --git a/img.bak/images/4.jpg b/img.bak/images/4.jpg new file mode 100644 index 0000000..fe1c379 Binary files /dev/null and b/img.bak/images/4.jpg differ diff --git a/img.bak/images/4@2x.jpg b/img.bak/images/4@2x.jpg new file mode 100644 index 0000000..08138fb Binary files /dev/null and b/img.bak/images/4@2x.jpg differ diff --git a/img.bak/images/5-5.jpg b/img.bak/images/5-5.jpg new file mode 100644 index 0000000..48ff00f Binary files /dev/null and b/img.bak/images/5-5.jpg differ diff --git a/img.bak/images/5.jpg b/img.bak/images/5.jpg new file mode 100644 index 0000000..01f3c60 Binary files /dev/null and b/img.bak/images/5.jpg differ diff --git a/img.bak/images/5@2x.jpg b/img.bak/images/5@2x.jpg new file mode 100644 index 0000000..455401d Binary files /dev/null and b/img.bak/images/5@2x.jpg differ diff --git a/img.bak/interiores/page1.jpg b/img.bak/interiores/page1.jpg new file mode 100644 index 0000000..c15dfbd Binary files /dev/null and b/img.bak/interiores/page1.jpg differ diff --git a/img.bak/interiores/page10.jpg b/img.bak/interiores/page10.jpg new file mode 100644 index 0000000..5e766a2 Binary files /dev/null and b/img.bak/interiores/page10.jpg differ diff --git a/img.bak/interiores/page10@2x.jpg b/img.bak/interiores/page10@2x.jpg new file mode 100644 index 0000000..908d8c8 Binary files /dev/null and b/img.bak/interiores/page10@2x.jpg differ diff --git a/img.bak/interiores/page11.jpg b/img.bak/interiores/page11.jpg new file mode 100644 index 0000000..724784e Binary files /dev/null and b/img.bak/interiores/page11.jpg differ diff --git a/img.bak/interiores/page11@2x.jpg b/img.bak/interiores/page11@2x.jpg new file mode 100644 index 0000000..dde5c19 Binary files /dev/null and b/img.bak/interiores/page11@2x.jpg differ diff --git a/img.bak/interiores/page12.jpg b/img.bak/interiores/page12.jpg new file mode 100644 index 0000000..f8a517e Binary files /dev/null and b/img.bak/interiores/page12.jpg differ diff --git a/img.bak/interiores/page12@2x.jpg b/img.bak/interiores/page12@2x.jpg new file mode 100644 index 0000000..e3a83c1 Binary files /dev/null and b/img.bak/interiores/page12@2x.jpg differ diff --git a/img.bak/interiores/page13.jpg b/img.bak/interiores/page13.jpg new file mode 100644 index 0000000..7c9b1f5 Binary files /dev/null and b/img.bak/interiores/page13.jpg differ diff --git a/img.bak/interiores/page13@2x.jpg b/img.bak/interiores/page13@2x.jpg new file mode 100644 index 0000000..fedcb88 Binary files /dev/null and b/img.bak/interiores/page13@2x.jpg differ diff --git a/img.bak/interiores/page14.jpg b/img.bak/interiores/page14.jpg new file mode 100644 index 0000000..cbfaedc Binary files /dev/null and b/img.bak/interiores/page14.jpg differ diff --git a/img.bak/interiores/page14@2x.jpg b/img.bak/interiores/page14@2x.jpg new file mode 100644 index 0000000..b429e7a Binary files /dev/null and b/img.bak/interiores/page14@2x.jpg differ diff --git a/img.bak/interiores/page15.jpg b/img.bak/interiores/page15.jpg new file mode 100644 index 0000000..ce8c21c Binary files /dev/null and b/img.bak/interiores/page15.jpg differ diff --git a/img.bak/interiores/page15@2x.jpg b/img.bak/interiores/page15@2x.jpg new file mode 100644 index 0000000..767a4c6 Binary files /dev/null and b/img.bak/interiores/page15@2x.jpg differ diff --git a/img.bak/interiores/page1@2x.jpg b/img.bak/interiores/page1@2x.jpg new file mode 100644 index 0000000..c2deb21 Binary files /dev/null and b/img.bak/interiores/page1@2x.jpg differ diff --git a/img.bak/interiores/page2.jpg b/img.bak/interiores/page2.jpg new file mode 100644 index 0000000..bc2a625 Binary files /dev/null and b/img.bak/interiores/page2.jpg differ diff --git a/img.bak/interiores/page2@2x.jpg b/img.bak/interiores/page2@2x.jpg new file mode 100644 index 0000000..3dc1c6c Binary files /dev/null and b/img.bak/interiores/page2@2x.jpg differ diff --git a/img.bak/interiores/page2@2xa.jpg b/img.bak/interiores/page2@2xa.jpg new file mode 100644 index 0000000..f4d4efc Binary files /dev/null and b/img.bak/interiores/page2@2xa.jpg differ diff --git a/img.bak/interiores/page2a.jpg b/img.bak/interiores/page2a.jpg new file mode 100644 index 0000000..6501f1a Binary files /dev/null and b/img.bak/interiores/page2a.jpg differ diff --git a/img.bak/interiores/page3.jpg b/img.bak/interiores/page3.jpg new file mode 100644 index 0000000..fc5cac2 Binary files /dev/null and b/img.bak/interiores/page3.jpg differ diff --git a/img.bak/interiores/page3@2x.jpg b/img.bak/interiores/page3@2x.jpg new file mode 100644 index 0000000..9d029dd Binary files /dev/null and b/img.bak/interiores/page3@2x.jpg differ diff --git a/img.bak/interiores/page3@2xa.jpg b/img.bak/interiores/page3@2xa.jpg new file mode 100644 index 0000000..6682e1c Binary files /dev/null and b/img.bak/interiores/page3@2xa.jpg differ diff --git a/img.bak/interiores/page3a.jpg b/img.bak/interiores/page3a.jpg new file mode 100644 index 0000000..8d91c12 Binary files /dev/null and b/img.bak/interiores/page3a.jpg differ diff --git a/img.bak/interiores/page4.jpg b/img.bak/interiores/page4.jpg new file mode 100644 index 0000000..cb8d9ea Binary files /dev/null and b/img.bak/interiores/page4.jpg differ diff --git a/img.bak/interiores/page4@2x.jpg b/img.bak/interiores/page4@2x.jpg new file mode 100644 index 0000000..bb7732d Binary files /dev/null and b/img.bak/interiores/page4@2x.jpg differ diff --git a/img.bak/interiores/page4@2xa.jpg b/img.bak/interiores/page4@2xa.jpg new file mode 100644 index 0000000..063f65e Binary files /dev/null and b/img.bak/interiores/page4@2xa.jpg differ diff --git a/img.bak/interiores/page4a.jpg b/img.bak/interiores/page4a.jpg new file mode 100644 index 0000000..4950d0a Binary files /dev/null and b/img.bak/interiores/page4a.jpg differ diff --git a/img.bak/interiores/page5.jpg b/img.bak/interiores/page5.jpg new file mode 100644 index 0000000..bbca760 Binary files /dev/null and b/img.bak/interiores/page5.jpg differ diff --git a/img.bak/interiores/page5@2x.jpg b/img.bak/interiores/page5@2x.jpg new file mode 100644 index 0000000..f8c9d7e Binary files /dev/null and b/img.bak/interiores/page5@2x.jpg differ diff --git a/img.bak/interiores/page5@2xa.jpg b/img.bak/interiores/page5@2xa.jpg new file mode 100644 index 0000000..b216655 Binary files /dev/null and b/img.bak/interiores/page5@2xa.jpg differ diff --git a/img.bak/interiores/page5a.jpg b/img.bak/interiores/page5a.jpg new file mode 100644 index 0000000..acea5fa Binary files /dev/null and b/img.bak/interiores/page5a.jpg differ diff --git a/img.bak/interiores/page6.jpg b/img.bak/interiores/page6.jpg new file mode 100644 index 0000000..2a29863 Binary files /dev/null and b/img.bak/interiores/page6.jpg differ diff --git a/img.bak/interiores/page6@2x.jpg b/img.bak/interiores/page6@2x.jpg new file mode 100644 index 0000000..0a82c6f Binary files /dev/null and b/img.bak/interiores/page6@2x.jpg differ diff --git a/img.bak/interiores/page6@2xa.jpg b/img.bak/interiores/page6@2xa.jpg new file mode 100644 index 0000000..02b346b Binary files /dev/null and b/img.bak/interiores/page6@2xa.jpg differ diff --git a/img.bak/interiores/page6a.jpg b/img.bak/interiores/page6a.jpg new file mode 100644 index 0000000..a323b11 Binary files /dev/null and b/img.bak/interiores/page6a.jpg differ diff --git a/img.bak/interiores/page7.jpg b/img.bak/interiores/page7.jpg new file mode 100644 index 0000000..15a366b Binary files /dev/null and b/img.bak/interiores/page7.jpg differ diff --git a/img.bak/interiores/page7@2x.jpg b/img.bak/interiores/page7@2x.jpg new file mode 100644 index 0000000..c728988 Binary files /dev/null and b/img.bak/interiores/page7@2x.jpg differ diff --git a/img.bak/interiores/page7@2xa.jpg b/img.bak/interiores/page7@2xa.jpg new file mode 100644 index 0000000..d4c0e80 Binary files /dev/null and b/img.bak/interiores/page7@2xa.jpg differ diff --git a/img.bak/interiores/page7a.jpg b/img.bak/interiores/page7a.jpg new file mode 100644 index 0000000..707aec2 Binary files /dev/null and b/img.bak/interiores/page7a.jpg differ diff --git a/img.bak/interiores/page8.jpg b/img.bak/interiores/page8.jpg new file mode 100644 index 0000000..31e8dab Binary files /dev/null and b/img.bak/interiores/page8.jpg differ diff --git a/img.bak/interiores/page8@2x.jpg b/img.bak/interiores/page8@2x.jpg new file mode 100644 index 0000000..0fb804c Binary files /dev/null and b/img.bak/interiores/page8@2x.jpg differ diff --git a/img.bak/interiores/page8@2xa.jpg b/img.bak/interiores/page8@2xa.jpg new file mode 100644 index 0000000..a2958ac Binary files /dev/null and b/img.bak/interiores/page8@2xa.jpg differ diff --git a/img.bak/interiores/page8a.jpg b/img.bak/interiores/page8a.jpg new file mode 100644 index 0000000..8795728 Binary files /dev/null and b/img.bak/interiores/page8a.jpg differ diff --git a/img.bak/interiores/page9.jpg b/img.bak/interiores/page9.jpg new file mode 100644 index 0000000..e1f68f0 Binary files /dev/null and b/img.bak/interiores/page9.jpg differ diff --git a/img.bak/interiores/page9@2x.jpg b/img.bak/interiores/page9@2x.jpg new file mode 100644 index 0000000..7bc571a Binary files /dev/null and b/img.bak/interiores/page9@2x.jpg differ diff --git a/img.bak/loading.gif b/img.bak/loading.gif new file mode 100644 index 0000000..612222b Binary files /dev/null and b/img.bak/loading.gif differ diff --git a/img.bak/logo-uecko-mare.png b/img.bak/logo-uecko-mare.png new file mode 100644 index 0000000..302fe66 Binary files /dev/null and b/img.bak/logo-uecko-mare.png differ diff --git a/img.bak/logo-uecko.png b/img.bak/logo-uecko.png new file mode 100644 index 0000000..8afefc8 Binary files /dev/null and b/img.bak/logo-uecko.png differ diff --git a/img.bak/logo-uecko@2x.png b/img.bak/logo-uecko@2x.png new file mode 100644 index 0000000..d93c95b Binary files /dev/null and b/img.bak/logo-uecko@2x.png differ diff --git a/img.bak/scroll-down.png b/img.bak/scroll-down.png new file mode 100644 index 0000000..75361e5 Binary files /dev/null and b/img.bak/scroll-down.png differ diff --git a/img.bak/scroll-down@2x.png b/img.bak/scroll-down@2x.png new file mode 100644 index 0000000..1f1289e Binary files /dev/null and b/img.bak/scroll-down@2x.png differ diff --git a/img.bak/socialicons.png b/img.bak/socialicons.png new file mode 100644 index 0000000..9b62686 Binary files /dev/null and b/img.bak/socialicons.png differ diff --git a/img.bak/socialicons2.png b/img.bak/socialicons2.png new file mode 100644 index 0000000..f62da29 Binary files /dev/null and b/img.bak/socialicons2.png differ diff --git a/img.bak/socialicons_h.png b/img.bak/socialicons_h.png new file mode 100644 index 0000000..6b0e569 Binary files /dev/null and b/img.bak/socialicons_h.png differ diff --git a/img.bak/twitter.png b/img.bak/twitter.png new file mode 100644 index 0000000..623280e Binary files /dev/null and b/img.bak/twitter.png differ diff --git a/img.bak/twitter@2x.png b/img.bak/twitter@2x.png new file mode 100644 index 0000000..f5c3e09 Binary files /dev/null and b/img.bak/twitter@2x.png differ diff --git a/img.bak/twt.png b/img.bak/twt.png new file mode 100644 index 0000000..a079529 Binary files /dev/null and b/img.bak/twt.png differ diff --git a/img/armarios/page1.jpg b/img/armarios/page1.jpg index c3cafd5..83c475d 100644 Binary files a/img/armarios/page1.jpg and b/img/armarios/page1.jpg differ diff --git a/img/armarios/page10.jpg b/img/armarios/page10.jpg index a00c119..d9da03e 100644 Binary files a/img/armarios/page10.jpg and b/img/armarios/page10.jpg differ diff --git a/img/armarios/page10@2x.jpg b/img/armarios/page10@2x.jpg index f41e6eb..0668d1b 100644 Binary files a/img/armarios/page10@2x.jpg and b/img/armarios/page10@2x.jpg differ diff --git a/img/armarios/page11.jpg b/img/armarios/page11.jpg index 7c26d3a..a62fe06 100644 Binary files a/img/armarios/page11.jpg and b/img/armarios/page11.jpg differ diff --git a/img/armarios/page11@2x.jpg b/img/armarios/page11@2x.jpg index 58b9828..24691b9 100644 Binary files a/img/armarios/page11@2x.jpg and b/img/armarios/page11@2x.jpg differ diff --git a/img/armarios/page11@2xo.jpg b/img/armarios/page11@2xo.jpg index c55da5d..b080de0 100644 Binary files a/img/armarios/page11@2xo.jpg and b/img/armarios/page11@2xo.jpg differ diff --git a/img/armarios/page11o.jpg b/img/armarios/page11o.jpg index d6758fe..692a7f1 100644 Binary files a/img/armarios/page11o.jpg and b/img/armarios/page11o.jpg differ diff --git a/img/armarios/page12.jpg b/img/armarios/page12.jpg index 0bf5cfc..f9979e9 100644 Binary files a/img/armarios/page12.jpg and b/img/armarios/page12.jpg differ diff --git a/img/armarios/page12@2x.jpg b/img/armarios/page12@2x.jpg index 1851b9d..070fd63 100644 Binary files a/img/armarios/page12@2x.jpg and b/img/armarios/page12@2x.jpg differ diff --git a/img/armarios/page12@2xo.jpg b/img/armarios/page12@2xo.jpg index a3460ce..463e55f 100644 Binary files a/img/armarios/page12@2xo.jpg and b/img/armarios/page12@2xo.jpg differ diff --git a/img/armarios/page12o.jpg b/img/armarios/page12o.jpg index 837f795..e399b3e 100644 Binary files a/img/armarios/page12o.jpg and b/img/armarios/page12o.jpg differ diff --git a/img/armarios/page13.jpg b/img/armarios/page13.jpg index c8ea217..fce406c 100644 Binary files a/img/armarios/page13.jpg and b/img/armarios/page13.jpg differ diff --git a/img/armarios/page13@2x.jpg b/img/armarios/page13@2x.jpg index 13d5220..fe86bd3 100644 Binary files a/img/armarios/page13@2x.jpg and b/img/armarios/page13@2x.jpg differ diff --git a/img/armarios/page14.jpg b/img/armarios/page14.jpg index 647fd6c..992fc0b 100644 Binary files a/img/armarios/page14.jpg and b/img/armarios/page14.jpg differ diff --git a/img/armarios/page14@2x.jpg b/img/armarios/page14@2x.jpg index 1bf5404..bd8f668 100644 Binary files a/img/armarios/page14@2x.jpg and b/img/armarios/page14@2x.jpg differ diff --git a/img/armarios/page15.jpg b/img/armarios/page15.jpg index 9be6fb4..72ea189 100644 Binary files a/img/armarios/page15.jpg and b/img/armarios/page15.jpg differ diff --git a/img/armarios/page15@2x.jpg b/img/armarios/page15@2x.jpg index 9b6ba39..99c26ac 100644 Binary files a/img/armarios/page15@2x.jpg and b/img/armarios/page15@2x.jpg differ diff --git a/img/armarios/page15@2xo.jpg b/img/armarios/page15@2xo.jpg index 1017fba..fa288f1 100644 Binary files a/img/armarios/page15@2xo.jpg and b/img/armarios/page15@2xo.jpg differ diff --git a/img/armarios/page15o.jpg b/img/armarios/page15o.jpg index 0c65d9b..c08b00f 100644 Binary files a/img/armarios/page15o.jpg and b/img/armarios/page15o.jpg differ diff --git a/img/armarios/page16.jpg b/img/armarios/page16.jpg index ca6b98e..844a553 100644 Binary files a/img/armarios/page16.jpg and b/img/armarios/page16.jpg differ diff --git a/img/armarios/page16@2x.jpg b/img/armarios/page16@2x.jpg index 28f8a7b..92fed71 100644 Binary files a/img/armarios/page16@2x.jpg and b/img/armarios/page16@2x.jpg differ diff --git a/img/armarios/page16@2xo.jpg b/img/armarios/page16@2xo.jpg index e3a83c1..14d9b0f 100644 Binary files a/img/armarios/page16@2xo.jpg and b/img/armarios/page16@2xo.jpg differ diff --git a/img/armarios/page16o.jpg b/img/armarios/page16o.jpg index f8a517e..61dd1c9 100644 Binary files a/img/armarios/page16o.jpg and b/img/armarios/page16o.jpg differ diff --git a/img/armarios/page17.jpg b/img/armarios/page17.jpg index 5945ae5..597e83a 100644 Binary files a/img/armarios/page17.jpg and b/img/armarios/page17.jpg differ diff --git a/img/armarios/page17@2x.jpg b/img/armarios/page17@2x.jpg index f480113..f4e2d84 100644 Binary files a/img/armarios/page17@2x.jpg and b/img/armarios/page17@2x.jpg differ diff --git a/img/armarios/page18.jpg b/img/armarios/page18.jpg index 7d1ca8d..d2b5a6b 100644 Binary files a/img/armarios/page18.jpg and b/img/armarios/page18.jpg differ diff --git a/img/armarios/page18@2x.jpg b/img/armarios/page18@2x.jpg index ad41aca..85d99cb 100644 Binary files a/img/armarios/page18@2x.jpg and b/img/armarios/page18@2x.jpg differ diff --git a/img/armarios/page19.jpg b/img/armarios/page19.jpg index ef80787..8f01726 100644 Binary files a/img/armarios/page19.jpg and b/img/armarios/page19.jpg differ diff --git a/img/armarios/page19@2x.jpg b/img/armarios/page19@2x.jpg index 2fdd8ec..e8da540 100644 Binary files a/img/armarios/page19@2x.jpg and b/img/armarios/page19@2x.jpg differ diff --git a/img/armarios/page1@2x.jpg b/img/armarios/page1@2x.jpg index de48802..84b74b1 100644 Binary files a/img/armarios/page1@2x.jpg and b/img/armarios/page1@2x.jpg differ diff --git a/img/armarios/page2.jpg b/img/armarios/page2.jpg index 7a7a32b..4a28fe0 100644 Binary files a/img/armarios/page2.jpg and b/img/armarios/page2.jpg differ diff --git a/img/armarios/page20.jpg b/img/armarios/page20.jpg index a95a64d..aaf1434 100644 Binary files a/img/armarios/page20.jpg and b/img/armarios/page20.jpg differ diff --git a/img/armarios/page20@2x.jpg b/img/armarios/page20@2x.jpg index 9194bca..6fdb1fa 100644 Binary files a/img/armarios/page20@2x.jpg and b/img/armarios/page20@2x.jpg differ diff --git a/img/armarios/page21.jpg b/img/armarios/page21.jpg index 063e895..c113071 100644 Binary files a/img/armarios/page21.jpg and b/img/armarios/page21.jpg differ diff --git a/img/armarios/page21@2x.jpg b/img/armarios/page21@2x.jpg index 0feaf15..a00300c 100644 Binary files a/img/armarios/page21@2x.jpg and b/img/armarios/page21@2x.jpg differ diff --git a/img/armarios/page2@2x.jpg b/img/armarios/page2@2x.jpg index 727bd37..6708899 100644 Binary files a/img/armarios/page2@2x.jpg and b/img/armarios/page2@2x.jpg differ diff --git a/img/armarios/page3.jpg b/img/armarios/page3.jpg index f1f5136..85c7c30 100644 Binary files a/img/armarios/page3.jpg and b/img/armarios/page3.jpg differ diff --git a/img/armarios/page3@2x.jpg b/img/armarios/page3@2x.jpg index 7ab0ed8..16d96f2 100644 Binary files a/img/armarios/page3@2x.jpg and b/img/armarios/page3@2x.jpg differ diff --git a/img/armarios/page4.jpg b/img/armarios/page4.jpg index a647d54..eab57c4 100644 Binary files a/img/armarios/page4.jpg and b/img/armarios/page4.jpg differ diff --git a/img/armarios/page4@2x.jpg b/img/armarios/page4@2x.jpg index 4b19db9..b1f8038 100644 Binary files a/img/armarios/page4@2x.jpg and b/img/armarios/page4@2x.jpg differ diff --git a/img/armarios/page5.jpg b/img/armarios/page5.jpg index 859707e..c2f6227 100644 Binary files a/img/armarios/page5.jpg and b/img/armarios/page5.jpg differ diff --git a/img/armarios/page5@2x.jpg b/img/armarios/page5@2x.jpg index 3cc1653..a26011e 100644 Binary files a/img/armarios/page5@2x.jpg and b/img/armarios/page5@2x.jpg differ diff --git a/img/armarios/page6.jpg b/img/armarios/page6.jpg index 2dfa6bf..4f0f502 100644 Binary files a/img/armarios/page6.jpg and b/img/armarios/page6.jpg differ diff --git a/img/armarios/page6@2x.jpg b/img/armarios/page6@2x.jpg index 27e0a61..bf82f75 100644 Binary files a/img/armarios/page6@2x.jpg and b/img/armarios/page6@2x.jpg differ diff --git a/img/armarios/page7.jpg b/img/armarios/page7.jpg index dfcb033..ade54af 100644 Binary files a/img/armarios/page7.jpg and b/img/armarios/page7.jpg differ diff --git a/img/armarios/page7@2x.jpg b/img/armarios/page7@2x.jpg index a93d355..e8b8308 100644 Binary files a/img/armarios/page7@2x.jpg and b/img/armarios/page7@2x.jpg differ diff --git a/img/armarios/page8.jpg b/img/armarios/page8.jpg index 53c6182..02aef6d 100644 Binary files a/img/armarios/page8.jpg and b/img/armarios/page8.jpg differ diff --git a/img/armarios/page8@2x.jpg b/img/armarios/page8@2x.jpg index 6e2f776..17a406b 100644 Binary files a/img/armarios/page8@2x.jpg and b/img/armarios/page8@2x.jpg differ diff --git a/img/armarios/page9.jpg b/img/armarios/page9.jpg index b915fd0..b5d4e61 100644 Binary files a/img/armarios/page9.jpg and b/img/armarios/page9.jpg differ diff --git a/img/armarios/page9@2x.jpg b/img/armarios/page9@2x.jpg index 897965d..1c27291 100644 Binary files a/img/armarios/page9@2x.jpg and b/img/armarios/page9@2x.jpg differ diff --git a/img/estanterias/page1.jpg b/img/estanterias/page1.jpg index 47e0b1b..f14964b 100644 Binary files a/img/estanterias/page1.jpg and b/img/estanterias/page1.jpg differ diff --git a/img/estanterias/page1@2x.jpg b/img/estanterias/page1@2x.jpg index 455401d..8c27512 100644 Binary files a/img/estanterias/page1@2x.jpg and b/img/estanterias/page1@2x.jpg differ diff --git a/img/estanterias/page2.jpg b/img/estanterias/page2.jpg index f1711c5..c03cb2e 100644 Binary files a/img/estanterias/page2.jpg and b/img/estanterias/page2.jpg differ diff --git a/img/estanterias/page2@2x.jpg b/img/estanterias/page2@2x.jpg index 99fefdb..56ae347 100644 Binary files a/img/estanterias/page2@2x.jpg and b/img/estanterias/page2@2x.jpg differ diff --git a/img/estanterias/page3.jpg b/img/estanterias/page3.jpg index 4e47a85..f04d0c9 100644 Binary files a/img/estanterias/page3.jpg and b/img/estanterias/page3.jpg differ diff --git a/img/estanterias/page3@2x.jpg b/img/estanterias/page3@2x.jpg index 4ca8404..fa23e9e 100644 Binary files a/img/estanterias/page3@2x.jpg and b/img/estanterias/page3@2x.jpg differ diff --git a/img/estanterias/page4.jpg b/img/estanterias/page4.jpg index 6ff4a0a..ad039c8 100644 Binary files a/img/estanterias/page4.jpg and b/img/estanterias/page4.jpg differ diff --git a/img/estanterias/page4@2x.jpg b/img/estanterias/page4@2x.jpg index 5fe820b..1ee8f75 100644 Binary files a/img/estanterias/page4@2x.jpg and b/img/estanterias/page4@2x.jpg differ diff --git a/img/estanterias/page5.jpg b/img/estanterias/page5.jpg index e76099c..6cce678 100644 Binary files a/img/estanterias/page5.jpg and b/img/estanterias/page5.jpg differ diff --git a/img/estanterias/page5@2x.jpg b/img/estanterias/page5@2x.jpg index cbc5244..e8c6d8e 100644 Binary files a/img/estanterias/page5@2x.jpg and b/img/estanterias/page5@2x.jpg differ diff --git a/img/estanterias/page6.jpg b/img/estanterias/page6.jpg index e50fdca..6c9c7e8 100644 Binary files a/img/estanterias/page6.jpg and b/img/estanterias/page6.jpg differ diff --git a/img/estanterias/page6@2x.jpg b/img/estanterias/page6@2x.jpg index 69dad0b..4b95467 100644 Binary files a/img/estanterias/page6@2x.jpg and b/img/estanterias/page6@2x.jpg differ diff --git a/img/estanterias/page6@2xa.jpg b/img/estanterias/page6@2xa.jpg index 3102cc8..06e5a69 100644 Binary files a/img/estanterias/page6@2xa.jpg and b/img/estanterias/page6@2xa.jpg differ diff --git a/img/estanterias/page6a.jpg b/img/estanterias/page6a.jpg index 99bf7fc..94e2f07 100644 Binary files a/img/estanterias/page6a.jpg and b/img/estanterias/page6a.jpg differ diff --git a/img/estanterias/page7.jpg b/img/estanterias/page7.jpg index 3137bf2..1b06128 100644 Binary files a/img/estanterias/page7.jpg and b/img/estanterias/page7.jpg differ diff --git a/img/estanterias/page7@2x.jpg b/img/estanterias/page7@2x.jpg index 1e90635..d1e0ed8 100644 Binary files a/img/estanterias/page7@2x.jpg and b/img/estanterias/page7@2x.jpg differ diff --git a/img/estanterias/page7@2xa.jpg b/img/estanterias/page7@2xa.jpg index 4b517ed..07101df 100644 Binary files a/img/estanterias/page7@2xa.jpg and b/img/estanterias/page7@2xa.jpg differ diff --git a/img/estanterias/page7a.jpg b/img/estanterias/page7a.jpg index d8ffad3..c19d2f3 100644 Binary files a/img/estanterias/page7a.jpg and b/img/estanterias/page7a.jpg differ diff --git a/img/estanterias/page8.jpg b/img/estanterias/page8.jpg index 7262e60..34a2aee 100644 Binary files a/img/estanterias/page8.jpg and b/img/estanterias/page8.jpg differ diff --git a/img/estanterias/page8@2x.jpg b/img/estanterias/page8@2x.jpg index e196a65..c68541e 100644 Binary files a/img/estanterias/page8@2x.jpg and b/img/estanterias/page8@2x.jpg differ diff --git a/img/images/1-1.jpg b/img/images/1-1.jpg index 5d08509..764b110 100644 Binary files a/img/images/1-1.jpg and b/img/images/1-1.jpg differ diff --git a/img/images/1.jpg b/img/images/1.jpg index 6301282..de439ff 100644 Binary files a/img/images/1.jpg and b/img/images/1.jpg differ diff --git a/img/images/1.jpg_anterior b/img/images/1.jpg_anterior new file mode 100644 index 0000000..65bd1e2 Binary files /dev/null and b/img/images/1.jpg_anterior differ diff --git a/img/images/1@2x.jpg b/img/images/1@2x.jpg index 4d2adc9..b74c186 100644 Binary files a/img/images/1@2x.jpg and b/img/images/1@2x.jpg differ diff --git a/img/images/1@2x.jpg_anterior b/img/images/1@2x.jpg_anterior new file mode 100644 index 0000000..199c0fb Binary files /dev/null and b/img/images/1@2x.jpg_anterior differ diff --git a/img/images/2-2.jpg b/img/images/2-2.jpg index 6cb604f..c05a955 100644 Binary files a/img/images/2-2.jpg and b/img/images/2-2.jpg differ diff --git a/img/images/2.jpg b/img/images/2.jpg index cb628a0..51440be 100644 Binary files a/img/images/2.jpg and b/img/images/2.jpg differ diff --git a/img/images/2@2x.jpg b/img/images/2@2x.jpg index 749ae38..8a22ff0 100644 Binary files a/img/images/2@2x.jpg and b/img/images/2@2x.jpg differ diff --git a/img/images/3-3.jpg b/img/images/3-3.jpg index 5dd8e5c..f53526c 100644 Binary files a/img/images/3-3.jpg and b/img/images/3-3.jpg differ diff --git a/img/images/3.jpg b/img/images/3.jpg index 7d1ca8d..055cf66 100644 Binary files a/img/images/3.jpg and b/img/images/3.jpg differ diff --git a/img/images/3@2x.jpg b/img/images/3@2x.jpg index ad41aca..cb3af65 100644 Binary files a/img/images/3@2x.jpg and b/img/images/3@2x.jpg differ diff --git a/img/images/4-4.jpg b/img/images/4-4.jpg index 5d2696b..00d5c58 100644 Binary files a/img/images/4-4.jpg and b/img/images/4-4.jpg differ diff --git a/img/images/4.jpg b/img/images/4.jpg index fe1c379..52a40b5 100644 Binary files a/img/images/4.jpg and b/img/images/4.jpg differ diff --git a/img/images/4@2x.jpg b/img/images/4@2x.jpg index 08138fb..6cb68e1 100644 Binary files a/img/images/4@2x.jpg and b/img/images/4@2x.jpg differ diff --git a/img/images/5-5.jpg b/img/images/5-5.jpg index 48ff00f..3dd0df5 100644 Binary files a/img/images/5-5.jpg and b/img/images/5-5.jpg differ diff --git a/img/images/5.jpg b/img/images/5.jpg index 01f3c60..b0a230e 100644 Binary files a/img/images/5.jpg and b/img/images/5.jpg differ diff --git a/img/images/5@2x.jpg b/img/images/5@2x.jpg index 455401d..7ecbeeb 100644 Binary files a/img/images/5@2x.jpg and b/img/images/5@2x.jpg differ diff --git a/img/interiores/page1.jpg b/img/interiores/page1.jpg index c15dfbd..17de22f 100644 Binary files a/img/interiores/page1.jpg and b/img/interiores/page1.jpg differ diff --git a/img/interiores/page10.jpg b/img/interiores/page10.jpg index 5e766a2..6eb3425 100644 Binary files a/img/interiores/page10.jpg and b/img/interiores/page10.jpg differ diff --git a/img/interiores/page10@2x.jpg b/img/interiores/page10@2x.jpg index 908d8c8..2a6d615 100644 Binary files a/img/interiores/page10@2x.jpg and b/img/interiores/page10@2x.jpg differ diff --git a/img/interiores/page11.jpg b/img/interiores/page11.jpg index 724784e..3426fde 100644 Binary files a/img/interiores/page11.jpg and b/img/interiores/page11.jpg differ diff --git a/img/interiores/page11@2x.jpg b/img/interiores/page11@2x.jpg index dde5c19..f8ea4eb 100644 Binary files a/img/interiores/page11@2x.jpg and b/img/interiores/page11@2x.jpg differ diff --git a/img/interiores/page12.jpg b/img/interiores/page12.jpg index f8a517e..b6ca0ff 100644 Binary files a/img/interiores/page12.jpg and b/img/interiores/page12.jpg differ diff --git a/img/interiores/page12@2x.jpg b/img/interiores/page12@2x.jpg index e3a83c1..4f6cd66 100644 Binary files a/img/interiores/page12@2x.jpg and b/img/interiores/page12@2x.jpg differ diff --git a/img/interiores/page13.jpg b/img/interiores/page13.jpg index 7c9b1f5..bd872b9 100644 Binary files a/img/interiores/page13.jpg and b/img/interiores/page13.jpg differ diff --git a/img/interiores/page13@2x.jpg b/img/interiores/page13@2x.jpg index fedcb88..666b4a6 100644 Binary files a/img/interiores/page13@2x.jpg and b/img/interiores/page13@2x.jpg differ diff --git a/img/interiores/page14.jpg b/img/interiores/page14.jpg index cbfaedc..779182d 100644 Binary files a/img/interiores/page14.jpg and b/img/interiores/page14.jpg differ diff --git a/img/interiores/page14@2x.jpg b/img/interiores/page14@2x.jpg index b429e7a..8c28d00 100644 Binary files a/img/interiores/page14@2x.jpg and b/img/interiores/page14@2x.jpg differ diff --git a/img/interiores/page15.jpg b/img/interiores/page15.jpg index ce8c21c..925179c 100644 Binary files a/img/interiores/page15.jpg and b/img/interiores/page15.jpg differ diff --git a/img/interiores/page15@2x.jpg b/img/interiores/page15@2x.jpg index 767a4c6..2bfd6c9 100644 Binary files a/img/interiores/page15@2x.jpg and b/img/interiores/page15@2x.jpg differ diff --git a/img/interiores/page1@2x.jpg b/img/interiores/page1@2x.jpg index c2deb21..7271dff 100644 Binary files a/img/interiores/page1@2x.jpg and b/img/interiores/page1@2x.jpg differ diff --git a/img/interiores/page2.jpg b/img/interiores/page2.jpg index bc2a625..b0f1b6f 100644 Binary files a/img/interiores/page2.jpg and b/img/interiores/page2.jpg differ diff --git a/img/interiores/page2@2x.jpg b/img/interiores/page2@2x.jpg index 3dc1c6c..653ac84 100644 Binary files a/img/interiores/page2@2x.jpg and b/img/interiores/page2@2x.jpg differ diff --git a/img/interiores/page2@2xa.jpg b/img/interiores/page2@2xa.jpg index f4d4efc..eca2a48 100644 Binary files a/img/interiores/page2@2xa.jpg and b/img/interiores/page2@2xa.jpg differ diff --git a/img/interiores/page2a.jpg b/img/interiores/page2a.jpg index 6501f1a..0c3a216 100644 Binary files a/img/interiores/page2a.jpg and b/img/interiores/page2a.jpg differ diff --git a/img/interiores/page3.jpg b/img/interiores/page3.jpg index fc5cac2..41cf753 100644 Binary files a/img/interiores/page3.jpg and b/img/interiores/page3.jpg differ diff --git a/img/interiores/page3@2x.jpg b/img/interiores/page3@2x.jpg index 9d029dd..e2a2320 100644 Binary files a/img/interiores/page3@2x.jpg and b/img/interiores/page3@2x.jpg differ diff --git a/img/interiores/page3@2xa.jpg b/img/interiores/page3@2xa.jpg index 6682e1c..a6f2dc0 100644 Binary files a/img/interiores/page3@2xa.jpg and b/img/interiores/page3@2xa.jpg differ diff --git a/img/interiores/page3a.jpg b/img/interiores/page3a.jpg index 8d91c12..d5b3b80 100644 Binary files a/img/interiores/page3a.jpg and b/img/interiores/page3a.jpg differ diff --git a/img/interiores/page4.jpg b/img/interiores/page4.jpg index cb8d9ea..6560419 100644 Binary files a/img/interiores/page4.jpg and b/img/interiores/page4.jpg differ diff --git a/img/interiores/page4@2x.jpg b/img/interiores/page4@2x.jpg index bb7732d..353aa47 100644 Binary files a/img/interiores/page4@2x.jpg and b/img/interiores/page4@2x.jpg differ diff --git a/img/interiores/page4@2xa.jpg b/img/interiores/page4@2xa.jpg index 063f65e..d72d9c0 100644 Binary files a/img/interiores/page4@2xa.jpg and b/img/interiores/page4@2xa.jpg differ diff --git a/img/interiores/page4a.jpg b/img/interiores/page4a.jpg index 4950d0a..5deebf2 100644 Binary files a/img/interiores/page4a.jpg and b/img/interiores/page4a.jpg differ diff --git a/img/interiores/page5.jpg b/img/interiores/page5.jpg index bbca760..764d83e 100644 Binary files a/img/interiores/page5.jpg and b/img/interiores/page5.jpg differ diff --git a/img/interiores/page5@2x.jpg b/img/interiores/page5@2x.jpg index f8c9d7e..9b3cfc7 100644 Binary files a/img/interiores/page5@2x.jpg and b/img/interiores/page5@2x.jpg differ diff --git a/img/interiores/page5@2xa.jpg b/img/interiores/page5@2xa.jpg index b216655..765e6c5 100644 Binary files a/img/interiores/page5@2xa.jpg and b/img/interiores/page5@2xa.jpg differ diff --git a/img/interiores/page5a.jpg b/img/interiores/page5a.jpg index acea5fa..c8702be 100644 Binary files a/img/interiores/page5a.jpg and b/img/interiores/page5a.jpg differ diff --git a/img/interiores/page6.jpg b/img/interiores/page6.jpg index 2a29863..7e5dfac 100644 Binary files a/img/interiores/page6.jpg and b/img/interiores/page6.jpg differ diff --git a/img/interiores/page6@2x.jpg b/img/interiores/page6@2x.jpg index 0a82c6f..16a1c8a 100644 Binary files a/img/interiores/page6@2x.jpg and b/img/interiores/page6@2x.jpg differ diff --git a/img/interiores/page6@2xa.jpg b/img/interiores/page6@2xa.jpg index 02b346b..17d84a9 100644 Binary files a/img/interiores/page6@2xa.jpg and b/img/interiores/page6@2xa.jpg differ diff --git a/img/interiores/page6a.jpg b/img/interiores/page6a.jpg index a323b11..ca2dd25 100644 Binary files a/img/interiores/page6a.jpg and b/img/interiores/page6a.jpg differ diff --git a/img/interiores/page7.jpg b/img/interiores/page7.jpg index 15a366b..351bc02 100644 Binary files a/img/interiores/page7.jpg and b/img/interiores/page7.jpg differ diff --git a/img/interiores/page7@2x.jpg b/img/interiores/page7@2x.jpg index c728988..2597c59 100644 Binary files a/img/interiores/page7@2x.jpg and b/img/interiores/page7@2x.jpg differ diff --git a/img/interiores/page7@2xa.jpg b/img/interiores/page7@2xa.jpg index d4c0e80..e6cb164 100644 Binary files a/img/interiores/page7@2xa.jpg and b/img/interiores/page7@2xa.jpg differ diff --git a/img/interiores/page7a.jpg b/img/interiores/page7a.jpg index 707aec2..c54df7b 100644 Binary files a/img/interiores/page7a.jpg and b/img/interiores/page7a.jpg differ diff --git a/img/interiores/page8.jpg b/img/interiores/page8.jpg index 31e8dab..a6f22b0 100644 Binary files a/img/interiores/page8.jpg and b/img/interiores/page8.jpg differ diff --git a/img/interiores/page8@2x.jpg b/img/interiores/page8@2x.jpg index 0fb804c..831eb13 100644 Binary files a/img/interiores/page8@2x.jpg and b/img/interiores/page8@2x.jpg differ diff --git a/img/interiores/page8@2xa.jpg b/img/interiores/page8@2xa.jpg index a2958ac..2d54f09 100644 Binary files a/img/interiores/page8@2xa.jpg and b/img/interiores/page8@2xa.jpg differ diff --git a/img/interiores/page8a.jpg b/img/interiores/page8a.jpg index 8795728..6875e4a 100644 Binary files a/img/interiores/page8a.jpg and b/img/interiores/page8a.jpg differ diff --git a/img/interiores/page9.jpg b/img/interiores/page9.jpg index e1f68f0..e91c923 100644 Binary files a/img/interiores/page9.jpg and b/img/interiores/page9.jpg differ diff --git a/img/interiores/page9@2x.jpg b/img/interiores/page9@2x.jpg index 7bc571a..21123bd 100644 Binary files a/img/interiores/page9@2x.jpg and b/img/interiores/page9@2x.jpg differ diff --git a/include/footer.php b/include/footer.php index c25d876..d2e45d2 100644 --- a/include/footer.php +++ b/include/footer.php @@ -1,4 +1,3 @@ -
@@ -54,7 +53,7 @@ @@ -72,4 +71,19 @@ + + + + + diff --git a/include/head-scripts.php b/include/head-scripts.php index b3271bb..56cb357 100644 --- a/include/head-scripts.php +++ b/include/head-scripts.php @@ -9,17 +9,7 @@ - - diff --git a/include/meta-all.php b/include/meta-all.php index 3c9fe3c..19e5fd9 100644 --- a/include/meta-all.php +++ b/include/meta-all.php @@ -1,7 +1,7 @@ - + @@ -9,12 +9,8 @@ - - - - @@ -34,11 +30,5 @@ - - - - - diff --git a/sitemap.xml b/sitemap.xml index 5b41bfd..b7e0a97 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -1,6 +1,6 @@ - + http://uecko.com 0.5 @@ -25,5 +25,5 @@ http://uecko.com/contacto.php 0.5 - + \ No newline at end of file