a?-1:a;};goog.math.longestCommonSubsequence=function(a,b,c,d){c=c||function(a,b){return a==b;};d=d||function(b,c){return a[b];};for(var e=a.length,f=b.length,g=[],h=0;hg[h][k-1]?h--:k--;}return l;};goog.math.sum=function(a){return goog.array.reduce(arguments,function(a,c){return a+c;},0);};goog.math.average=function(a){return goog.math.sum.apply(null,arguments)/arguments.length;};goog.math.sampleVariance=function(a){var b=arguments.length;if(2>b){return 0;}var c=goog.math.average.apply(null,arguments);return goog.math.sum.apply(null,goog.array.map(arguments,function(a){return Math.pow(a-c,2);}))/(b-1);};goog.math.standardDeviation=function(a){return Math.sqrt(goog.math.sampleVariance.apply(null,arguments));};goog.math.isInt=function(a){return isFinite(a)&&0==a%1;};goog.math.isFiniteNumber=function(a){return isFinite(a)&&!isNaN(a);};goog.math.isNegativeZero=function(a){return 0==a&&0>1/a;};goog.math.log10Floor=function(a){if(0a?1:0);}return 0==a?-Infinity:NaN;};goog.math.safeFloor=function(a,b){goog.asserts.assert(!goog.isDef(b)||0a.aspectRatio()?a.width/this.width:a.height/this.height;return this.scale(a);};goog.dom.ASSUME_QUIRKS_MODE=!1;goog.dom.ASSUME_STANDARDS_MODE=!1;goog.dom.COMPAT_MODE_KNOWN_=goog.dom.ASSUME_QUIRKS_MODE||goog.dom.ASSUME_STANDARDS_MODE;goog.dom.getDomHelper=function(a){return a?new goog.dom.DomHelper(goog.dom.getOwnerDocument(a)):goog.dom.defaultDomHelper_||(goog.dom.defaultDomHelper_=new goog.dom.DomHelper);};goog.dom.getDocument=function(){return document;};goog.dom.getElement=function(a){return goog.dom.getElementHelper_(document,a);};goog.dom.getElementHelper_=function(a,b){return goog.isString(b)?a.getElementById(b):b;};goog.dom.getRequiredElement=function(a){return goog.dom.getRequiredElementHelper_(document,a);};goog.dom.getRequiredElementHelper_=function(a,b){goog.asserts.assertString(b);var c=goog.dom.getElementHelper_(a,b);return c=goog.asserts.assertElement(c,"No element found with id: "+b);};goog.dom.$=goog.dom.getElement;goog.dom.getElementsByTagName=function(a,b){return(b||document).getElementsByTagName(String(a));};goog.dom.getElementsByTagNameAndClass=function(a,b,c){return goog.dom.getElementsByTagNameAndClass_(document,a,b,c);};goog.dom.getElementsByClass=function(a,b){var c=b||document;return goog.dom.canUseQuerySelector_(c)?c.querySelectorAll("."+a):goog.dom.getElementsByTagNameAndClass_(document,"*",a,b);};goog.dom.getElementByClass=function(a,b){var c=b||document;return(c.getElementsByClassName?c.getElementsByClassName(a)[0]:goog.dom.canUseQuerySelector_(c)?c.querySelector("."+a):goog.dom.getElementsByTagNameAndClass_(document,"*",a,b)[0])||null;};goog.dom.getRequiredElementByClass=function(a,b){var c=goog.dom.getElementByClass(a,b);return goog.asserts.assert(c,"No element found with className: "+a);};goog.dom.canUseQuerySelector_=function(a){return!(!a.querySelectorAll||!a.querySelector);};goog.dom.getElementsByTagNameAndClass_=function(a,b,c,d){a=d||a;b=b&&"*"!=b?String(b).toUpperCase():"";if(goog.dom.canUseQuerySelector_(a)&&(b||c)){return a.querySelectorAll(b+(c?"."+c:""));}if(c&&a.getElementsByClassName){a=a.getElementsByClassName(c);if(b){d={};for(var e=0,f=0,g;g=a[f];f++){b==g.nodeName&&(d[e++]=g);}d.length=e;return d;}return a;}a=a.getElementsByTagName(b||"*");if(c){d={};for(f=e=0;g=a[f];f++){b=g.className,"function"==typeof b.split&&goog.array.contains(b.split(/\s+/),c)&&(d[e++]=g);}d.length=e;return d;}return a;};goog.dom.$$=goog.dom.getElementsByTagNameAndClass;goog.dom.setProperties=function(a,b){goog.object.forEach(b,function(b,d){"style"==d?a.style.cssText=b:"class"==d?a.className=b:"for"==d?a.htmlFor=b:goog.dom.DIRECT_ATTRIBUTE_MAP_.hasOwnProperty(d)?a.setAttribute(goog.dom.DIRECT_ATTRIBUTE_MAP_[d],b):goog.string.startsWith(d,"aria-")||goog.string.startsWith(d,"data-")?a.setAttribute(d,b):a[d]=b;});};goog.dom.DIRECT_ATTRIBUTE_MAP_={cellpadding:"cellPadding",cellspacing:"cellSpacing",colspan:"colSpan",frameborder:"frameBorder",height:"height",maxlength:"maxLength",nonce:"nonce",role:"role",rowspan:"rowSpan",type:"type",usemap:"useMap",valign:"vAlign",width:"width"};goog.dom.getViewportSize=function(a){return goog.dom.getViewportSize_(a||window);};goog.dom.getViewportSize_=function(a){a=a.document;a=goog.dom.isCss1CompatMode_(a)?a.documentElement:a.body;return new goog.math.Size(a.clientWidth,a.clientHeight);};goog.dom.getDocumentHeight=function(){return goog.dom.getDocumentHeight_(window);};goog.dom.getDocumentHeightForWindow=function(a){return goog.dom.getDocumentHeight_(a);};goog.dom.getDocumentHeight_=function(a){var b=a.document,c=0;if(b){var c=b.body,d=b.documentElement;if(!d||!c){return 0;}a=goog.dom.getViewportSize_(a).height;if(goog.dom.isCss1CompatMode_(b)&&d.scrollHeight){c=d.scrollHeight!=a?d.scrollHeight:d.offsetHeight;}else{var b=d.scrollHeight,e=d.offsetHeight;d.clientHeight!=e&&(b=c.scrollHeight,e=c.offsetHeight);c=b>a?b>e?b:e:b");c=c.join("");}c=a.createElement(c);d&&(goog.isString(d)?c.className=d:goog.isArray(d)?c.className=d.join(" "):goog.dom.setProperties(c,d));2a;};goog.dom.nativelySupportsFocus_=function(a){return"A"==a.tagName||"INPUT"==a.tagName||"TEXTAREA"==a.tagName||"SELECT"==a.tagName||"BUTTON"==a.tagName;};goog.dom.hasNonZeroBoundingRect_=function(a){a=!goog.isFunction(a.getBoundingClientRect)||goog.userAgent.IE&&null==a.parentElement?{height:a.offsetHeight,width:a.offsetWidth}:a.getBoundingClientRect();return goog.isDefAndNotNull(a)&&0=a.offsetWidth&&0>=a.offsetHeight){return!1;}a=this.elLocation_(a);var b=a.top.toString()+","+a.left;if(this.imgLocations_.hasOwnProperty(b)){return!1;}this.imgLocations_[b]=!0;return a.top=a[e].rw&&c.height>=a[e].rh)&&(a[e]={rw:c.width,rh:c.height,ow:c.naturalWidth,oh:c.naturalHeight});}return a;};pagespeed.CriticalImages.beaconData_="";pagespeed.CriticalImages.getBeaconData=function(){return pagespeed.CriticalImages.beaconData_;};goog.exportSymbol("pagespeed.CriticalImages.getBeaconData",pagespeed.CriticalImages.getBeaconData);pagespeed.CriticalImages.Run=function(a,b,c,d,e,f){var g=new pagespeed.CriticalImages.Beacon_(a,b,c,e,f);pagespeed.CriticalImages.beaconObj_=g;d&&pagespeedutils.addHandler(window,"load",function(){window.setTimeout(function(){g.checkCriticalImages_();},0);});};goog.exportSymbol("pagespeed.CriticalImages.Run",pagespeed.CriticalImages.Run);})();pagespeed.CriticalImages.Run("/mod_pagespeed_beacon","https://belerofonte.servytec.es/","xmxsxyHwla",true,true,"641NHZgfACo");//]]>Política legal:Servytec Networks, S.L. es un operador de telecomunicaciones registrado al efecto en la Comisión Nacional de los Mercados y la Competencia, antigua CMT ( Comisión del Mercado de las Telecomunicaciones ) y posee su autorización y registro en vigor.Puede dirigir sus consultas a las direcciones electrónicas del dominio servytec.es marcadas por el standard RFC 2142 si deseea informar acerca de anomalías o problemas en los diferentes servicios.+seguridadNuestro centro de datos cuenta con las políticas de seguridad más innovadoras; gestionadas por personal experto en seguridad informática. La vanguardia en la defensa de su información, a su completa disposición.+fiabilidadNuetros técnicos realizan auditorias de cada máquina instalada en el CPD de forma periódica, generando la documentación técnica necesaria para los procesos de certificación de nuestro centro de datos.+garantíasGarantía de disponibilidad del servicio por contrato del 99.9%. Garantía de resolución de incidencias por contrato. Garantía de disponibilidad de redundancia IT por contrato. ¿Algún operador le ofrece lo mismo?
follow
a?1:0);}return 0==a?-Infinity:NaN;};goog.math.safeFloor=function(a,b){goog.asserts.assert(!goog.isDef(b)||0a.aspectRatio()?a.width/this.width:a.height/this.height;return this.scale(a);};goog.dom.ASSUME_QUIRKS_MODE=!1;goog.dom.ASSUME_STANDARDS_MODE=!1;goog.dom.COMPAT_MODE_KNOWN_=goog.dom.ASSUME_QUIRKS_MODE||goog.dom.ASSUME_STANDARDS_MODE;goog.dom.getDomHelper=function(a){return a?new goog.dom.DomHelper(goog.dom.getOwnerDocument(a)):goog.dom.defaultDomHelper_||(goog.dom.defaultDomHelper_=new goog.dom.DomHelper);};goog.dom.getDocument=function(){return document;};goog.dom.getElement=function(a){return goog.dom.getElementHelper_(document,a);};goog.dom.getElementHelper_=function(a,b){return goog.isString(b)?a.getElementById(b):b;};goog.dom.getRequiredElement=function(a){return goog.dom.getRequiredElementHelper_(document,a);};goog.dom.getRequiredElementHelper_=function(a,b){goog.asserts.assertString(b);var c=goog.dom.getElementHelper_(a,b);return c=goog.asserts.assertElement(c,"No element found with id: "+b);};goog.dom.$=goog.dom.getElement;goog.dom.getElementsByTagName=function(a,b){return(b||document).getElementsByTagName(String(a));};goog.dom.getElementsByTagNameAndClass=function(a,b,c){return goog.dom.getElementsByTagNameAndClass_(document,a,b,c);};goog.dom.getElementsByClass=function(a,b){var c=b||document;return goog.dom.canUseQuerySelector_(c)?c.querySelectorAll("."+a):goog.dom.getElementsByTagNameAndClass_(document,"*",a,b);};goog.dom.getElementByClass=function(a,b){var c=b||document;return(c.getElementsByClassName?c.getElementsByClassName(a)[0]:goog.dom.canUseQuerySelector_(c)?c.querySelector("."+a):goog.dom.getElementsByTagNameAndClass_(document,"*",a,b)[0])||null;};goog.dom.getRequiredElementByClass=function(a,b){var c=goog.dom.getElementByClass(a,b);return goog.asserts.assert(c,"No element found with className: "+a);};goog.dom.canUseQuerySelector_=function(a){return!(!a.querySelectorAll||!a.querySelector);};goog.dom.getElementsByTagNameAndClass_=function(a,b,c,d){a=d||a;b=b&&"*"!=b?String(b).toUpperCase():"";if(goog.dom.canUseQuerySelector_(a)&&(b||c)){return a.querySelectorAll(b+(c?"."+c:""));}if(c&&a.getElementsByClassName){a=a.getElementsByClassName(c);if(b){d={};for(var e=0,f=0,g;g=a[f];f++){b==g.nodeName&&(d[e++]=g);}d.length=e;return d;}return a;}a=a.getElementsByTagName(b||"*");if(c){d={};for(f=e=0;g=a[f];f++){b=g.className,"function"==typeof b.split&&goog.array.contains(b.split(/\s+/),c)&&(d[e++]=g);}d.length=e;return d;}return a;};goog.dom.$$=goog.dom.getElementsByTagNameAndClass;goog.dom.setProperties=function(a,b){goog.object.forEach(b,function(b,d){"style"==d?a.style.cssText=b:"class"==d?a.className=b:"for"==d?a.htmlFor=b:goog.dom.DIRECT_ATTRIBUTE_MAP_.hasOwnProperty(d)?a.setAttribute(goog.dom.DIRECT_ATTRIBUTE_MAP_[d],b):goog.string.startsWith(d,"aria-")||goog.string.startsWith(d,"data-")?a.setAttribute(d,b):a[d]=b;});};goog.dom.DIRECT_ATTRIBUTE_MAP_={cellpadding:"cellPadding",cellspacing:"cellSpacing",colspan:"colSpan",frameborder:"frameBorder",height:"height",maxlength:"maxLength",nonce:"nonce",role:"role",rowspan:"rowSpan",type:"type",usemap:"useMap",valign:"vAlign",width:"width"};goog.dom.getViewportSize=function(a){return goog.dom.getViewportSize_(a||window);};goog.dom.getViewportSize_=function(a){a=a.document;a=goog.dom.isCss1CompatMode_(a)?a.documentElement:a.body;return new goog.math.Size(a.clientWidth,a.clientHeight);};goog.dom.getDocumentHeight=function(){return goog.dom.getDocumentHeight_(window);};goog.dom.getDocumentHeightForWindow=function(a){return goog.dom.getDocumentHeight_(a);};goog.dom.getDocumentHeight_=function(a){var b=a.document,c=0;if(b){var c=b.body,d=b.documentElement;if(!d||!c){return 0;}a=goog.dom.getViewportSize_(a).height;if(goog.dom.isCss1CompatMode_(b)&&d.scrollHeight){c=d.scrollHeight!=a?d.scrollHeight:d.offsetHeight;}else{var b=d.scrollHeight,e=d.offsetHeight;d.clientHeight!=e&&(b=c.scrollHeight,e=c.offsetHeight);c=b>a?b>e?b:e:b");c=c.join("");}c=a.createElement(c);d&&(goog.isString(d)?c.className=d:goog.isArray(d)?c.className=d.join(" "):goog.dom.setProperties(c,d));2a;};goog.dom.nativelySupportsFocus_=function(a){return"A"==a.tagName||"INPUT"==a.tagName||"TEXTAREA"==a.tagName||"SELECT"==a.tagName||"BUTTON"==a.tagName;};goog.dom.hasNonZeroBoundingRect_=function(a){a=!goog.isFunction(a.getBoundingClientRect)||goog.userAgent.IE&&null==a.parentElement?{height:a.offsetHeight,width:a.offsetWidth}:a.getBoundingClientRect();return goog.isDefAndNotNull(a)&&0=a.offsetWidth&&0>=a.offsetHeight){return!1;}a=this.elLocation_(a);var b=a.top.toString()+","+a.left;if(this.imgLocations_.hasOwnProperty(b)){return!1;}this.imgLocations_[b]=!0;return a.top=a[e].rw&&c.height>=a[e].rh)&&(a[e]={rw:c.width,rh:c.height,ow:c.naturalWidth,oh:c.naturalHeight});}return a;};pagespeed.CriticalImages.beaconData_="";pagespeed.CriticalImages.getBeaconData=function(){return pagespeed.CriticalImages.beaconData_;};goog.exportSymbol("pagespeed.CriticalImages.getBeaconData",pagespeed.CriticalImages.getBeaconData);pagespeed.CriticalImages.Run=function(a,b,c,d,e,f){var g=new pagespeed.CriticalImages.Beacon_(a,b,c,e,f);pagespeed.CriticalImages.beaconObj_=g;d&&pagespeedutils.addHandler(window,"load",function(){window.setTimeout(function(){g.checkCriticalImages_();},0);});};goog.exportSymbol("pagespeed.CriticalImages.Run",pagespeed.CriticalImages.Run);})();pagespeed.CriticalImages.Run("/mod_pagespeed_beacon","https://belerofonte.servytec.es/","xmxsxyHwla",true,true,"641NHZgfACo");//]]>Política legal:Servytec Networks, S.L. es un operador de telecomunicaciones registrado al efecto en la Comisión Nacional de los Mercados y la Competencia, antigua CMT ( Comisión del Mercado de las Telecomunicaciones ) y posee su autorización y registro en vigor.Puede dirigir sus consultas a las direcciones electrónicas del dominio servytec.es marcadas por el standard RFC 2142 si deseea informar acerca de anomalías o problemas en los diferentes servicios.+seguridadNuestro centro de datos cuenta con las políticas de seguridad más innovadoras; gestionadas por personal experto en seguridad informática. La vanguardia en la defensa de su información, a su completa disposición.+fiabilidadNuetros técnicos realizan auditorias de cada máquina instalada en el CPD de forma periódica, generando la documentación técnica necesaria para los procesos de certificación de nuestro centro de datos.+garantíasGarantía de disponibilidad del servicio por contrato del 99.9%. Garantía de resolución de incidencias por contrato. Garantía de disponibilidad de redundancia IT por contrato. ¿Algún operador le ofrece lo mismo?
follow