520 lines
97 KiB
HTML
Executable File
520 lines
97 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="es" dir="ltr"><script type="text/javascript">try {
|
|
|
|
(function injectPageScriptAPI(scriptName, shouldOverrideWebSocket, shouldOverrideWebRTC, isInjected) {
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If script have been injected into a frame via contentWindow then we can simply take the copy of messageChannel left for us by parent document
|
|
|
|
* Otherwise creates new message channel that sends a message to the content-script to check if request should be allowed or not.
|
|
|
|
*/
|
|
|
|
var messageChannel = isInjected ? window[scriptName] : (function () {
|
|
|
|
|
|
|
|
// Save original postMessage and addEventListener functions to prevent webpage from tampering both.
|
|
|
|
var postMessage = window.postMessage;
|
|
|
|
var addEventListener = window.addEventListener;
|
|
|
|
|
|
|
|
// Current request ID (incremented every time we send a new message)
|
|
|
|
var currentRequestId = 0;
|
|
|
|
var requestsMap = {};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handles messages sent from the content script back to the page script.
|
|
|
|
*
|
|
|
|
* @param event Event with necessary data
|
|
|
|
*/
|
|
|
|
var onMessageReceived = function (event) {
|
|
|
|
|
|
|
|
if (!event.data || !event.data.direction || event.data.direction !== "to-page-script@abu") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var requestData = requestsMap[event.data.requestId];
|
|
|
|
if (requestData) {
|
|
|
|
var wrapper = requestData.wrapper;
|
|
|
|
requestData.onResponseReceived(wrapper, event.data.block);
|
|
|
|
delete requestsMap[event.data.requestId];
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param url The URL to which wrapped object is willing to connect
|
|
|
|
* @param requestType Request type ( WEBSOCKET or WEBRTC)
|
|
|
|
* @param wrapper WebSocket wrapper instance
|
|
|
|
* @param onResponseReceived Called when response is received
|
|
|
|
*/
|
|
|
|
var sendMessage = function (url, requestType, wrapper, onResponseReceived) {
|
|
|
|
|
|
|
|
if (currentRequestId === 0) {
|
|
|
|
// Subscribe to response when this method is called for the first time
|
|
|
|
addEventListener.call(window, "message", onMessageReceived, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
var requestId = ++currentRequestId;
|
|
|
|
requestsMap[requestId] = {
|
|
|
|
wrapper: wrapper,
|
|
|
|
onResponseReceived: onResponseReceived
|
|
|
|
};
|
|
|
|
|
|
|
|
var message = {
|
|
|
|
requestId: requestId,
|
|
|
|
direction: 'from-page-script@abu',
|
|
|
|
elementUrl: url,
|
|
|
|
documentUrl: document.URL,
|
|
|
|
requestType: requestType
|
|
|
|
};
|
|
|
|
|
|
|
|
// Send a message to the background page to check if the request should be blocked
|
|
|
|
postMessage.call(window, message, "*");
|
|
|
|
};
|
|
|
|
|
|
|
|
return {
|
|
|
|
sendMessage: sendMessage
|
|
|
|
};
|
|
|
|
|
|
|
|
})();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* In some case Chrome won't run content scripts inside frames.
|
|
|
|
* So we have to intercept access to contentWindow/contentDocument and manually inject wrapper script into this context
|
|
|
|
*
|
|
|
|
* Based on: https://github.com/adblockplus/adblockpluschrome/commit/1aabfb3346dc0821c52dd9e97f7d61b8c99cd707
|
|
|
|
*/
|
|
|
|
var injectedToString = Function.prototype.toString.bind(injectPageScriptAPI);
|
|
|
|
|
|
|
|
var injectedFramesAdd;
|
|
|
|
var injectedFramesHas;
|
|
|
|
if (window.WeakSet instanceof Function) {
|
|
|
|
var injectedFrames = new WeakSet();
|
|
|
|
injectedFramesAdd = WeakSet.prototype.add.bind(injectedFrames);
|
|
|
|
injectedFramesHas = WeakSet.prototype.has.bind(injectedFrames);
|
|
|
|
} else {
|
|
|
|
var frames = [];
|
|
|
|
injectedFramesAdd = function (el) {
|
|
|
|
if (frames.indexOf(el) < 0) {
|
|
|
|
frames.push(el);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
injectedFramesHas = function (el) {
|
|
|
|
return frames.indexOf(el) >= 0;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Injects wrapper's script into passed window
|
|
|
|
* @param contentWindow Frame's content window
|
|
|
|
*/
|
|
|
|
function injectPageScriptAPIInWindow(contentWindow) {
|
|
|
|
try {
|
|
|
|
if (contentWindow && !injectedFramesHas(contentWindow)) {
|
|
|
|
injectedFramesAdd(contentWindow);
|
|
|
|
contentWindow[scriptName] = messageChannel; // Left message channel for the injected script
|
|
|
|
var args = "'" + scriptName + "', " + shouldOverrideWebSocket + ", " + shouldOverrideWebRTC + ", true";
|
|
|
|
contentWindow.eval("(" + injectedToString() + ")(" + args + ");");
|
|
|
|
delete contentWindow[scriptName];
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Overrides access to contentWindow/contentDocument for the passed HTML element's interface (iframe, frame, object)
|
|
|
|
* If the content of one of these objects is requested we will inject our wrapper script.
|
|
|
|
* @param iface HTML element's interface
|
|
|
|
*/
|
|
|
|
function overrideContentAccess(iface) {
|
|
|
|
|
|
|
|
var contentWindowDescriptor = Object.getOwnPropertyDescriptor(iface.prototype, "contentWindow");
|
|
|
|
var contentDocumentDescriptor = Object.getOwnPropertyDescriptor(iface.prototype, "contentDocument");
|
|
|
|
|
|
|
|
// Apparently in HTMLObjectElement.prototype.contentWindow does not exist
|
|
|
|
// in older versions of Chrome such as 42.
|
|
|
|
if (!contentWindowDescriptor) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var getContentWindow = Function.prototype.call.bind(contentWindowDescriptor.get);
|
|
|
|
var getContentDocument = Function.prototype.call.bind(contentDocumentDescriptor.get);
|
|
|
|
|
|
|
|
contentWindowDescriptor.get = function () {
|
|
|
|
var contentWindow = getContentWindow(this);
|
|
|
|
injectPageScriptAPIInWindow(contentWindow);
|
|
|
|
return contentWindow;
|
|
|
|
};
|
|
|
|
contentDocumentDescriptor.get = function () {
|
|
|
|
injectPageScriptAPIInWindow(getContentWindow(this));
|
|
|
|
return getContentDocument(this);
|
|
|
|
};
|
|
|
|
|
|
|
|
Object.defineProperty(iface.prototype, "contentWindow", contentWindowDescriptor);
|
|
|
|
Object.defineProperty(iface.prototype, "contentDocument", contentDocumentDescriptor);
|
|
|
|
}
|
|
|
|
|
|
|
|
var interfaces = [HTMLFrameElement, HTMLIFrameElement, HTMLObjectElement];
|
|
|
|
for (var i = 0; i < interfaces.length; i++) {
|
|
|
|
overrideContentAccess(interfaces[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Defines properties in destination object
|
|
|
|
* @param src Source object
|
|
|
|
* @param dest Destination object
|
|
|
|
* @param properties Properties to copy
|
|
|
|
*/
|
|
|
|
var copyProperties = function (src, dest, properties) {
|
|
|
|
for (var i = 0; i < properties.length; i++) {
|
|
|
|
var prop = properties[i];
|
|
|
|
var descriptor = Object.getOwnPropertyDescriptor(src, prop);
|
|
|
|
// Passed property may be undefined
|
|
|
|
if (descriptor) {
|
|
|
|
Object.defineProperty(dest, prop, descriptor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check request by sending message to content script
|
|
|
|
* @param url URL to block
|
|
|
|
* @param type Request type
|
|
|
|
* @param callback Result callback
|
|
|
|
*/
|
|
|
|
var checkRequest = function (url, type, callback) {
|
|
|
|
messageChannel.sendMessage(url, type, this, function (wrapper, blockConnection) {
|
|
|
|
callback(blockConnection);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The function overrides window.WebSocket with our wrapper, that will check url with filters through messaging with content-script.
|
|
|
|
*
|
|
|
|
* IMPORTANT NOTE:
|
|
|
|
* This function is first loaded as a content script. The only purpose of it is to call
|
|
|
|
* the "toString" method and use resulting string as a text content for injected script.
|
|
|
|
*/
|
|
|
|
var overrideWebSocket = function () {
|
|
|
|
|
|
|
|
if (!(window.WebSocket instanceof Function)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* WebSocket wrapper implementation.
|
|
|
|
* https://github.com/AdguardTeam/AdguardBrowserExtension/issues/349
|
|
|
|
*
|
|
|
|
* Based on:
|
|
|
|
* https://github.com/adblockplus/adblockpluschrome/commit/457a336ee55a433217c3ffe5d363e5c6980f26f4
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* As far as possible we must track everything we use that could be sabotaged by the website later in order to circumvent us.
|
|
|
|
*/
|
|
|
|
var RealWebSocket = WebSocket;
|
|
|
|
var closeWebSocket = Function.prototype.call.bind(RealWebSocket.prototype.close);
|
|
|
|
|
|
|
|
function WrappedWebSocket(url, protocols) {
|
|
|
|
// Throw correct exceptions if the constructor is used improperly.
|
|
|
|
if (!(this instanceof WrappedWebSocket)) {
|
|
|
|
return RealWebSocket();
|
|
|
|
}
|
|
|
|
if (arguments.length < 1) {
|
|
|
|
return new RealWebSocket();
|
|
|
|
}
|
|
|
|
|
|
|
|
var websocket = new RealWebSocket(url, protocols);
|
|
|
|
|
|
|
|
// This is the key point: checking if this WS should be blocked or not
|
|
|
|
// Don't forget that the type of 'websocket.url' is String, but 'url 'parameter might have another type.
|
|
|
|
checkRequest(websocket.url, 'WEBSOCKET', function (blocked) {
|
|
|
|
if (blocked) {
|
|
|
|
closeWebSocket(websocket);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return websocket;
|
|
|
|
}
|
|
|
|
|
|
|
|
// https://github.com/AdguardTeam/AdguardBrowserExtension/issues/488
|
|
|
|
WrappedWebSocket.prototype = RealWebSocket.prototype;
|
|
|
|
window.WebSocket = WrappedWebSocket.bind();
|
|
|
|
|
|
|
|
copyProperties(RealWebSocket, WebSocket, ["CONNECTING", "OPEN", "CLOSING", "CLOSED", "name", "prototype"]);
|
|
|
|
|
|
|
|
RealWebSocket.prototype.constructor = WebSocket;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The function overrides window.RTCPeerConnection with our wrapper, that will check ice servers URLs with filters through messaging with content-script.
|
|
|
|
*
|
|
|
|
* IMPORTANT NOTE:
|
|
|
|
* This function is first loaded as a content script. The only purpose of it is to call
|
|
|
|
* the "toString" method and use resulting string as a text content for injected script.
|
|
|
|
*/
|
|
|
|
var overrideWebRTC = function () {
|
|
|
|
|
|
|
|
|
|
|
|
if (!(window.RTCPeerConnection instanceof Function) &&
|
|
|
|
!(window.webkitRTCPeerConnection instanceof Function)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* RTCPeerConnection wrapper implementation.
|
|
|
|
* https://github.com/AdguardTeam/AdguardBrowserExtension/issues/588
|
|
|
|
*
|
|
|
|
* Based on:
|
|
|
|
* https://github.com/adblockplus/adblockpluschrome/commit/af0585137be19011eace1cf68bf61eed2e6db974
|
|
|
|
*
|
|
|
|
* Chromium webRequest API doesn't allow the blocking of WebRTC connections
|
|
|
|
* https://bugs.chromium.org/p/chromium/issues/detail?id=707683
|
|
|
|
*/
|
|
|
|
|
|
|
|
var RealRTCPeerConnection = window.RTCPeerConnection || window.webkitRTCPeerConnection;
|
|
|
|
var closeRTCPeerConnection = Function.prototype.call.bind(RealRTCPeerConnection.prototype.close);
|
|
|
|
|
|
|
|
var RealArray = Array;
|
|
|
|
var RealString = String;
|
|
|
|
var createObject = Object.create;
|
|
|
|
var defineProperty = Object.defineProperty;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert passed url to string
|
|
|
|
* @param url URL
|
|
|
|
* @returns {string}
|
|
|
|
*/
|
|
|
|
function urlToString(url) {
|
|
|
|
if (typeof url !== "undefined") {
|
|
|
|
return RealString(url);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates new immutable array from original with some transform function
|
|
|
|
* @param original
|
|
|
|
* @param transform
|
|
|
|
* @returns {*}
|
|
|
|
*/
|
|
|
|
function safeCopyArray(original, transform) {
|
|
|
|
|
|
|
|
if (original === null || typeof original !== "object") {
|
|
|
|
return original;
|
|
|
|
}
|
|
|
|
|
|
|
|
var immutable = RealArray(original.length);
|
|
|
|
for (var i = 0; i < immutable.length; i++) {
|
|
|
|
defineProperty(immutable, i, {
|
|
|
|
configurable: false, enumerable: false, writable: false,
|
|
|
|
value: transform(original[i])
|
|
|
|
});
|
|
|
|
}
|
|
|
|
defineProperty(immutable, "length", {
|
|
|
|
configurable: false, enumerable: false, writable: false,
|
|
|
|
value: immutable.length
|
|
|
|
});
|
|
|
|
return immutable;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Protect configuration from mutations
|
|
|
|
* @param configuration RTCPeerConnection configuration object
|
|
|
|
* @returns {*}
|
|
|
|
*/
|
|
|
|
function protectConfiguration(configuration) {
|
|
|
|
|
|
|
|
if (configuration === null || typeof configuration !== "object") {
|
|
|
|
return configuration;
|
|
|
|
}
|
|
|
|
|
|
|
|
var iceServers = safeCopyArray(
|
|
|
|
configuration.iceServers,
|
|
|
|
function (iceServer) {
|
|
|
|
|
|
|
|
var url = iceServer.url;
|
|
|
|
var urls = iceServer.urls;
|
|
|
|
|
|
|
|
// RTCPeerConnection doesn't iterate through pseudo Arrays of urls.
|
|
|
|
if (typeof urls !== "undefined" && !(urls instanceof RealArray)) {
|
|
|
|
urls = [urls];
|
|
|
|
}
|
|
|
|
|
|
|
|
return createObject(iceServer, {
|
|
|
|
url: {
|
|
|
|
configurable: false, enumerable: false, writable: false,
|
|
|
|
value: urlToString(url)
|
|
|
|
},
|
|
|
|
urls: {
|
|
|
|
configurable: false, enumerable: false, writable: false,
|
|
|
|
value: safeCopyArray(urls, urlToString)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
return createObject(configuration, {
|
|
|
|
iceServers: {
|
|
|
|
configurable: false, enumerable: false, writable: false,
|
|
|
|
value: iceServers
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check WebRTC connection's URL and close if it's blocked by rule
|
|
|
|
* @param connection Connection
|
|
|
|
* @param url URL to check
|
|
|
|
*/
|
|
|
|
function checkWebRTCRequest(connection, url) {
|
|
|
|
checkRequest(url, 'WEBRTC', function (blocked) {
|
|
|
|
if (blocked) {
|
|
|
|
try {
|
|
|
|
closeRTCPeerConnection(connection);
|
|
|
|
} catch (e) {
|
|
|
|
// Ignore exceptions
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check each URL of ice server in configuration for blocking.
|
|
|
|
*
|
|
|
|
* @param connection RTCPeerConnection
|
|
|
|
* @param configuration Configuration for RTCPeerConnection
|
|
|
|
* https://developer.mozilla.org/en-US/docs/Web/API/RTCConfiguration
|
|
|
|
*/
|
|
|
|
function checkConfiguration(connection, configuration) {
|
|
|
|
|
|
|
|
if (!configuration || !configuration.iceServers) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var iceServers = configuration.iceServers;
|
|
|
|
for (var i = 0; i < iceServers.length; i++) {
|
|
|
|
|
|
|
|
var iceServer = iceServers[i];
|
|
|
|
if (!iceServer) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (iceServer.url) {
|
|
|
|
checkWebRTCRequest(connection, iceServer.url);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (iceServer.urls) {
|
|
|
|
for (var j = 0; j < iceServer.urls.length; j++) {
|
|
|
|
checkWebRTCRequest(connection, iceServer.urls[j]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Overrides setConfiguration method
|
|
|
|
* https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/setConfiguration
|
|
|
|
*/
|
|
|
|
if (RealRTCPeerConnection.prototype.setConfiguration) {
|
|
|
|
|
|
|
|
var realSetConfiguration = Function.prototype.call.bind(RealRTCPeerConnection.prototype.setConfiguration);
|
|
|
|
|
|
|
|
RealRTCPeerConnection.prototype.setConfiguration = function (configuration) {
|
|
|
|
configuration = protectConfiguration(configuration);
|
|
|
|
// Call the real method first, so that validates the configuration
|
|
|
|
realSetConfiguration(this, configuration);
|
|
|
|
checkConfiguration(this, configuration);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function WrappedRTCPeerConnection(configuration, arg) {
|
|
|
|
|
|
|
|
if (!(this instanceof WrappedRTCPeerConnection)) {
|
|
|
|
return RealRTCPeerConnection();
|
|
|
|
}
|
|
|
|
|
|
|
|
configuration = protectConfiguration(configuration);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The old webkitRTCPeerConnection constructor takes an optional second argument and we must pass it.
|
|
|
|
*/
|
|
|
|
var connection = new RealRTCPeerConnection(configuration, arg);
|
|
|
|
checkConfiguration(connection, configuration);
|
|
|
|
return connection;
|
|
|
|
}
|
|
|
|
|
|
|
|
WrappedRTCPeerConnection.prototype = RealRTCPeerConnection.prototype;
|
|
|
|
|
|
|
|
var boundWrappedRTCPeerConnection = WrappedRTCPeerConnection.bind();
|
|
|
|
copyProperties(RealRTCPeerConnection, boundWrappedRTCPeerConnection, ["caller", "generateCertificate", "name", "prototype"]);
|
|
|
|
RealRTCPeerConnection.prototype.constructor = boundWrappedRTCPeerConnection;
|
|
|
|
|
|
|
|
if ("RTCPeerConnection" in window) {
|
|
|
|
window.RTCPeerConnection = boundWrappedRTCPeerConnection;
|
|
|
|
}
|
|
|
|
if ("webkitRTCPeerConnection" in window) {
|
|
|
|
window.webkitRTCPeerConnection = boundWrappedRTCPeerConnection;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if (shouldOverrideWebSocket) {
|
|
|
|
overrideWebSocket();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (shouldOverrideWebRTC) {
|
|
|
|
overrideWebRTC();
|
|
|
|
}
|
|
|
|
})('wrapper-script-10709880496303514', false, true);
|
|
|
|
} catch (ex) { console.error('Error executing AG js: ' + ex); }
|
|
|
|
(function () {
|
|
|
|
var current = document.currentScript;
|
|
|
|
var parent = current && current.parentNode;
|
|
|
|
if (parent) {
|
|
|
|
parent.removeChild(current);
|
|
|
|
}
|
|
|
|
})();</script><head>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8"><!-- base href="https://ogs.google.com/u/0/" --><meta name="referrer" content="origin"><link rel="canonical" href="https://ogs.google.com/widget/app"><link rel="preconnect" href="https://www.gstatic.com/"><link rel="preconnect" href="https://ssl.gstatic.com/"><script data-id="_gd" nonce="">window.WIZ_global_data = {"DpimGf":false,"EP1ykd":["/_/*"],"FdrFJe":"-3370518155872789308","Im6cmf":"/u/0/_/OneGoogleWidgetUi","LVIXXb":1,"LoQv7e":true,"MT7f9b":[],"NrSucd":false,"OwAJ6e":false,"QrtxK":"0","S06Grb":"100064983751523876173","S6lZl":128566913,"SNlM0e":"AMVtWsT-vDQNbcdRMfVLEbdOXImM:1707254169002","TSDtV":"%.@.[[null,[[45459555,null,false,null,null,null,\"Imeoqb\"]],\"CAMSER0I2eicEJbkAfzbvRImyEsW\"]]]","Vvafkd":false,"W3Yyqf":"100064983751523876173","WZsZ1e":"W4co9DIdlw_pnUpV/AZD1WidgWNYWDx0Zz","Yllh3e":"%.@.1707254168981986,21454295,3708027260]","ZwjLXe":1,"cfb2h":"boq_onegooglehttpserver_20240131.03_p0","eptZe":"/u/0/_/OneGoogleWidgetUi/","fPDxwd":[48691166,48802160,93804558,93814384],"gGcLoe":false,"nQyAE":{},"oPEP7c":"lorigayuniel@gmail.com","qDCSke":"100064983751523876173","qwAQke":"OneGoogleWidgetUi","rtQCxc":300,"uoqGRe":"WnksUc","w2btAe":"%.@.\"100064983751523876173\",\"100064983751523876173\",\"0\",true,null,null,true,false]","y2FhP":"prod","zChJod":"%.@.]"};</script><script nonce="">(function(){'use strict';var a=window,d=a.performance,l=k();a.cc_latency_start_time=d&&d.now?0:d&&d.timing&&d.timing.navigationStart?d.timing.navigationStart:l;function k(){return d&&d.now?d.now():(new Date).getTime()}function n(e){if(d&&d.now&&d.mark){var g=d.mark(e);if(g)return g.startTime;if(d.getEntriesByName&&(e=d.getEntriesByName(e).pop()))return e.startTime}return k()}a.onaft=function(){n("aft")};a._isLazyImage=function(e){return e.hasAttribute("data-src")||e.hasAttribute("data-ils")||"lazy"===e.getAttribute("loading")};
|
|
a.l=function(e){function g(b){var c={};c[b]=k();a.cc_latency.push(c)}function m(b){var c=n("iml");b.setAttribute("data-iml",c);return c}a.cc_aid=e;a.iml_start=a.cc_latency_start_time;a.css_size=0;a.cc_latency=[];a.ccTick=g;a.onJsLoad=function(){g("jsl")};a.onCssLoad=function(){g("cssl")};a._isVisible=function(b,c){if(!c||"none"==c.style.display)return!1;var f=b.defaultView;if(f&&f.getComputedStyle&&(f=f.getComputedStyle(c),"0px"==f.height||"0px"==f.width||"hidden"==f.visibility))return!1;if(!c.getBoundingClientRect)return!0;
|
|
var h=c.getBoundingClientRect();c=h.left+a.pageXOffset;f=h.top+a.pageYOffset;if(0>f+h.height||0>c+h.width||0>=h.height||0>=h.width)return!1;b=b.documentElement;return f<=(a.innerHeight||b.clientHeight)&&c<=(a.innerWidth||b.clientWidth)};a._recordImlEl=m;document.documentElement.addEventListener("load",function(b){b=b.target;var c;"IMG"!=b.tagName||b.hasAttribute("data-iid")||a._isLazyImage(b)||b.hasAttribute("data-noaft")||(c=m(b));if(a.aft_counter&&(b=a.aft_counter.indexOf(b),-1!==b&&(b=1===a.aft_counter.splice(b,
|
|
1).length,0===a.aft_counter.length&&b&&c)))a.onaft(c)},!0);a.prt=-1;a.wiz_tick=function(){var b=n("prt");a.prt=b}};}).call(this);
|
|
l('qBzSPd')</script><script nonce="">var _F_cssRowKey = 'boq-one-google.OneGoogleWidgetUi.t_XrAZ4IpUE.L.F4.O';var _F_combinedSignature = 'AM-SdHspvJ8nyYZRktIfNPOMg2rCYu1esg';function _DumpException(e) {throw e;}</script><style data-href="https://www.gstatic.com/_/mss/boq-one-google/_/ss/k=boq-one-google.OneGoogleWidgetUi.t_XrAZ4IpUE.L.F4.O/am=BAzlBg/d=1/ed=1/rs=AM-SdHuXhRuShNvuSyO5G8rdqrB4VcyG0Q/m=appwidgetauthview,_b,_tp" nonce="">html,body{height:100%;overflow:hidden}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:rgba(0,0,0,.87);font-family:Roboto,RobotoDraft,Helvetica,Arial,sans-serif;margin:0;text-size-adjust:100%}textarea{font-family:Roboto,RobotoDraft,Helvetica,Arial,sans-serif}a{text-decoration:none;color:#2962ff}img{border:none}*{-webkit-tap-highlight-color:transparent}#apps-debug-tracers{display:none}c-wiz{contain:style}c-wiz>c-data{display:none}c-wiz.rETSD{contain:none}c-wiz.Ubi8Z{contain:layout style}/*# sourceMappingURL=chrome.css.map */.kFwPee{height:100%}.ydMMEb{width:100%}.SSPGKf{display:block;overflow-y:hidden;z-index:1}.eejsDc{overflow-y:auto;-webkit-overflow-scrolling:touch}.MCcOAc{bottom:0;left:0;position:absolute;right:0;top:0;overflow:hidden;z-index:1}.MCcOAc>.pGxpHc{flex-shrink:0;-moz-box-flex:0;flex-grow:0}.IqBfM>.HLlAHb{-moz-box-align:center;align-items:center;display:-moz-box;display:flex;height:60px;position:absolute;right:16px;top:0;z-index:9999}.VUoKZ{display:none;position:absolute;top:0;left:0;right:0;height:3px;z-index:1001}.TRHLAc{position:absolute;top:0;left:0;width:25%;height:100%;background:#68e;transform:scaleX(0)}.TRHLAc{transform-origin:0 0}.mIM26c .VUoKZ{display:block}.mIM26c .TRHLAc{animation:boqChromeapiPageProgressAnimation 1s infinite;animation-timing-function:cubic-bezier(.4,0,1,1);animation-delay:.1s}.ghyPEc .VUoKZ{position:fixed}@keyframes boqChromeapiPageProgressAnimation{0%{transform:scaleX(0)}50%{transform:scaleX(5)}100%{transform:scaleX(5) translateX(100%)}}.T4LgNb{bottom:0;left:0;top:0;right:0;position:absolute;z-index:1}.QMEh5b{position:absolute;top:0;left:0;right:0;z-index:3}.AOq4tb{height:56px}.kFwPee{position:relative;z-index:1;height:100%}.ydMMEb{height:56px;width:100%}.SSPGKf{overflow-y:hidden;position:absolute;bottom:0;left:0;right:0;top:0}.ecJEib .AOq4tb,.ecJEib .ydMMEb{height:64px}.e2G3Fb.EWZcud .AOq4tb,.e2G3Fb.EWZcud .ydMMEb{height:48px}.e2G3Fb.b30Rkd .AOq4tb,.e2G3Fb.b30Rkd .ydMMEb{height:56px}.qWuU9c{-moz-box-sizing:border-box;box-sizing:border-box;height:100%;padding:3px 6px 9px}.EHzcec{background:#fff;border:1px solid rgba(0,0,0,.2);border-radius:8px;box-shadow:0 1px 2px 0 rgba(60,64,67,.3),0 2px 6px 2px rgba(60,64,67,.15);height:100%;overflow-x:hidden;padding-top:0;position:relative;width:100%}.nz9sqb.EHzcec{background-color:#2d2e30;box-shadow:0 -1px 2px 0 rgba(0,0,0,.3),0 -2px 6px 2px rgba(0,0,0,.15)}.ngVsM{-moz-box-sizing:content-box;box-sizing:content-box;margin:0;padding:0}.v7bWUd,.o83JEf{width:100%}.LVal7b{padding:0 0 0 14px;width:300px}.u4RcUd{padding-top:10px}.L2gNYe{padding-bottom:10px}.j1ei8c{display:inline-block;height:84px;list-style-type:none;padding:6px;position:relative;transition:transform .2s cubic-bezier(.333,0,0,1);vertical-align:top;width:84px}.tX9u1b{border-radius:8px;margin:0;outline:none;position:absolute;text-align:center;text-decoration:none;width:84px}.kibP6b{border:1px solid black;-moz-box-sizing:border-box;box-sizing:border-box;color:#1f1f1f;display:block;font-size:14px;margin:20px auto;overflow:hidden;padding:14px 16px;position:relative;text-decoration:none;width:265px}.EuVUud{-moz-box-flex:0;flex:0 1 fit-content}.Rd8zef{-moz-box-flex:0;flex:0 1 fit-content}.F6Urce{-moz-box-align:center;align-items:center;display:-moz-box;display:flex;-moz-box-flex:1;flex:1 1 fit-content;min-height:38px;max-height:62px;text-align:left}.tX9u1b:hover .Rq5Gcb,.QgddUc .tX9u1b:focus .Rq5Gcb,.tX9u1b:active .Rq5Gcb{overflow-wrap:break-word;white-space:normal;word-wrap:break-word}.tX9u1b:hover{background-color:rgb(232,240,254);border:none;border-radius:8px;margin:0;z-index:1}.tX9u1b:hover .Rq5Gcb{background-color:rgb(232,240,254);text-decoration:none}.nz9sqb .tX9u1b:hover,.nz9sqb .tX9u1b:hover .Rq5Gcb{background-color:#28292c}.QgddUc .tX9u1b:focus,.QgddUc .tX9u1b:hover:focus,.QgddUc .tX9u1b:hover:focus .Rq5Gcb{background-color:#e3edfe;outline:1px solid rgb(23,78,166);z-index:1}.nz9sqb.QgddUc .tX9u1b:focus,.nz9sqb.QgddUc .tX9u1b:hover:focus{background-color:#38393c;border:1px solid #e8eaed;margin:-1px}.nz9sqb.QgddUc .tX9u1b:hover:focus .Rq5Gcb{background-color:#38393c}.tX9u1b:active,.tX9u1b:active:focus,.tX9u1b:active:hover .Rq5Gcb{background-color:#e3edfe;z-index:1}.nz9sqb .tX9u1b:active,.nz9sqb .tX9u1b:active:focus{background-color:#434447;border-color:transparent;box-shadow:0 1px 2px 0 rgba(0,0,0,.3),0 2px 6px 2px rgba(0,0,0,.15)}.nz9sqb .tX9u1b:active:hover .Rq5Gcb{background-color:#434447}.o07G5 .tX9u1b:active,.o07G5 .tX9u1b:active:focus,.o07G5 .tX9u1b:active .Rq5Gcb,.o07G5 .tX9u1b:active:hover .Rq5Gcb{background-color:#fff;z-index:1}.nz9sqb.o07G5 .tX9u1b:active,.nz9sqb.o07G5 .tX9u1b:active:focus,.nz9sqb.o07G5 .tX9u1b:active .Rq5Gcb,.nz9sqb.o07G5 .tX9u1b:active:hover .Rq5Gcb{background-color:#2d2e30;border-color:transparent;opacity:.8}.tX9u1b[draggable=false]{-webkit-touch-callout:none;-moz-user-select:none;user-select:none}.MrEfLc{display:inline-block;height:53px;vertical-align:top;width:53px}.CgwTDb{height:57px;margin-top:5px}.Rq5Gcb{color:rgb(32,33,36);display:inline-block;font-family:"Google Sans",Roboto,Helvetica,Arial,sans-serif;font-size:14px;letter-spacing:.09px;line-height:18px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:76px}.nz9sqb .Rq5Gcb{color:rgb(232,234,237)}.dGrefb{border-bottom:1px solid rgb(232,234,237);display:block;left:0;margin-bottom:6px;margin-top:6px;position:relative;width:100%}.nz9sqb .dGrefb{border-bottom:1px solid #5f6368}.MrEfLc.dOs7We{background-size:53px}.NQV3m{background-color:#fff;border:1px solid rgb(218,220,224);border-radius:4px;-moz-box-sizing:border-box;box-sizing:border-box;color:rgb(26,115,232);display:inline-block;font:500 14px/16px "Google Sans",Roboto,Helvetica,Arial,sans-serif;margin:16px 0 20px 0;max-width:265px;outline:0;padding:10px 24px;text-align:center;text-decoration:none;white-space:normal;width:auto}.nz9sqb .NQV3m{background-color:transparent;border-color:rgb(95,99,104);color:rgb(138,180,248)}.WwFbJd{text-align:center}.NQV3m:hover{background-color:#f8fbff;border-color:#cce0fc}@media (forced-colors:active){.NQV3m:focus,.tX9u1b:focus{outline:2px solid transparent}}.NQV3m:focus,.NQV3m:hover:focus{background-color:#f4f8ff;border-color:#c9ddfc;text-decoration:none}.QgddUc .NQV3m:focus{outline:1px solid rgb(23,78,166)}.nz9sqb .QgddUc .NQV3m:focus{outline:1px solid rgb(210,227,252)}.nz9sqb .NQV3m:hover{background-color:rgb(60,64,67);border-color:rgb(95,99,104);text-decoration:none}.nz9sqb .NQV3m:focus,.nz9sqb .NQV3m:hover:focus,.nz9sqb .NQV3m:active,.nz9sqb .NQV3m:active:focus{background-color:#2d323d;border-color:rgb(138,180,248);box-shadow:none;text-decoration:none}.NQV3m:active,.NQV3m:active:focus{background-color:#ecf3fe;border-color:transparent;box-shadow:0 1px 2px 0 rgba(60,64,67,.3),0 2px 6px 2px rgba(60,64,67,.15)}.PZRdre{background-color:rgb(241,243,244);display:none;border-radius:2px;height:40px;left:14px;margin:8px;position:absolute;top:0;width:40px}.XiBjH{display:none;height:24px;left:8px;position:absolute;top:8px;width:24px}.jFV0n{height:40px;margin:8px;width:40px}.nz9sqb .jFV0n{position:relative}.OunZ9c{background:#fff;border:1px solid #e5e5e5;box-shadow:0 1px 2px rgba(0,0,0,.1);cursor:-moz-grabbing;cursor:grabbing;opacity:.8;z-index:1000}.nz9sqb .PZRdre,.FQaMnb .PZRdre,.FQaMnb .XiBjH{display:block}.nz9sqb .PZRdre{background-color:white}.FQaMnb .PZRdre{position:relative}.FQaMnb .jFV0n{display:none}.FQaMnb .Rq5Gcb{margin-top:4px}.pPUwub,.dKVyP,.NcWGte,.ajYF5e{height:0;position:absolute;width:0}.pPUwub{border-bottom:5px solid transparent;border-right:5px solid #4273db;border-top:5px solid transparent;float:left;left:0;top:23.5px}.dKVyP{border-bottom:5px solid transparent;border-left:5px solid #4273db;border-top:5px solid transparent;float:right;left:79px;top:23.5px}.ajYF5e{border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #4273db;left:33.5px;top:52px}.NcWGte{border-bottom:5px solid #4273db;border-left:5px solid transparent;border-right:5px solid transparent;left:33.5px;top:0}.pPUwub[aria-hidden=true],.dKVyP[aria-hidden=true],.NcWGte[aria-hidden=true],.ajYF5e[aria-hidden=true]{visibility:hidden}.MrEfLc.nxzZDf{background-image:url(//ssl.gstatic.com/gb/images/a/f5cdd88b65.png)}@media (min-resolution:144dpi){.MrEfLc.nxzZDf{background-image:url(//ssl.gstatic.com/gb/images/a/133fc21e88.png)}}.qWuU9c{padding:3px 10px 14px}.EHzcec{background:#e9eef6;background:var(--gm3-sys-color-surface-container-high,#e9eef6);border-radius:28px;border:none;box-shadow:0 4px 8px 3px rgba(0,0,0,.15),0 1px 3px rgba(0,0,0,.3);-moz-box-sizing:border-box;box-sizing:border-box;padding:8px;width:344px;display:block;position:relative;margin:3px auto}.LVal7b{background:#f8fafd;background:var(--gm3-sys-color-surface-container-low,#f8fafd);color:#444746;color:var(--gm3-sys-color-on-surface-variant,#444746);width:328px;-moz-box-sizing:border-box;box-sizing:border-box;padding:24px 20px;border-radius:24px;margin-bottom:10px}.o83JEf .LVal7b{border-radius:4px;margin-bottom:4px}.o83JEf .LVal7b:first-child{border-radius:24px 24px 4px 4px}.o83JEf .LVal7b:last-child{border-radius:4px 4px 24px 24px;margin-bottom:10px}.u4RcUd{padding-top:0}.nz9sqb.EHzcec{background:#282a2c;background:var(--gm3-sys-color-surface-container-high,#282a2c)}.nz9sqb.EHzcec .LVal7b{background:#1b1b1b;background:var(--gm3-sys-color-surface-container-low,#1b1b1b);color:#c4c7c5;color:var(--gm3-sys-color-on-surface-variant,#c4c7c5)}.EHzcec .tX9u1b:hover,.EHzcec .tX9u1b:focus,.nz9sqb.EHzcec .tX9u1b:hover,.nz9sqb.EHzcec .tX9u1b:focus,.QgddUc.EHzcec .tX9u1b:hover,.QgddUc.EHzcec .tX9u1b:focus{outline:none}.EHzcec .tX9u1b:hover .Rq5Gcb,.EHzcec .tX9u1b:hover .Rq5Gcb:hover,.EHzcec .tX9u1b:hover .Rq5Gcb:focus,.EHzcec .tX9u1b:hover .Rq5Gcb:active,.EHzcec .tX9u1b:focus .Rq5Gcb,.EHzcec .tX9u1b:focus .Rq5Gcb:hover,.EHzcec .tX9u1b:focus .Rq5Gcb:focus,.EHzcec .tX9u1b:focus .Rq5Gcb:active,.nz9sqb.EHzcec .tX9u1b:hover .Rq5Gcb,.nz9sqb.EHzcec .tX9u1b:hover .Rq5Gcb:hover,.nz9sqb.EHzcec .tX9u1b:hover .Rq5Gcb:focus,.nz9sqb.EHzcec .tX9u1b:hover .Rq5Gcb:active,.nz9sqb.EHzcec .tX9u1b:focus .Rq5Gcb,.nz9sqb.EHzcec .tX9u1b:focus .Rq5Gcb:hover,.nz9sqb.EHzcec .tX9u1b:focus .Rq5Gcb:focus,.nz9sqb.EHzcec .tX9u1b:focus .Rq5Gcb:active,.QgddUc.EHzcec .tX9u1b:hover .Rq5Gcb,.QgddUc.EHzcec .tX9u1b:hover .Rq5Gcb:hover,.QgddUc.EHzcec .tX9u1b:hover .Rq5Gcb:focus,.QgddUc.EHzcec .tX9u1b:hover .Rq5Gcb:active,.QgddUc.EHzcec .tX9u1b:focus .Rq5Gcb,.QgddUc.EHzcec .tX9u1b:focus .Rq5Gcb:hover,.QgddUc.EHzcec .tX9u1b:focus .Rq5Gcb:focus,.QgddUc.EHzcec .tX9u1b:focus .Rq5Gcb:active{background-color:transparent;outline:none;text-decoration:none}.tX9u1b:hover{background-color:#e9eef6;background-color:var(--gm3-sys-color-surface-container-high,#e9eef6);border-radius:16px}.tX9u1b:active,.tX9u1b:active:focus{background-color:#dde3ea;background-color:var(--gm3-sys-color-surface-container-highest,#dde3ea);border-radius:16px;border:none}.QgddUc .tX9u1b:focus,.QgddUc .tX9u1b:hover:focus{border:1px solid;border-color:#0b57d0;border-color:var(--gm3-sys-color-primary,#0b57d0);background-color:#dde3ea;background-color:var(--gm3-sys-color-surface-container-highest,#dde3ea);outline:none}.NQV3m{border-radius:100px;border:1px solid;border-color:#747775;border-color:var(--gm3-sys-color-outline,#747775);background:none;-moz-box-sizing:border-box;box-sizing:border-box;color:#0b57d0;color:var(--gm3-sys-color-primary,#0b57d0);display:inline-block;font-size:14px;font-weight:500;min-height:40px;outline:none;padding:10px 24px;text-align:center;text-decoration:none;white-space:normal;line-height:18px;position:relative}.NQV3m:before{content:" ";position:absolute;top:0;left:0;width:100%;height:100%;opacity:0;border-radius:100px;background:#0b57d0;background:var(--gm3-sys-color-primary,#0b57d0);transition:opacity .5s ease-out}.NQV3m:hover{background:none;border-color:#747775;border-color:var(--gm3-sys-color-outline,#747775)}.NQV3m:hover:before{opacity:.08}.NQV3m:active,.NQV3m:active:focus{border-color:#747775;border-color:var(--gm3-sys-color-outline,#747775)}.NQV3m:active:before,.NQV3m:active:focus:before{opacity:.12}.NQV3m:focus,.NQV3m:focus-within{border-color:var(--gm3-sys-color-primary,#0b57d0)}.NQV3m:focus:before,.NQV3m:focus-within:before{opacity:.16}@media (forced-colors:active){.NQV3m{border:1px solid;border-color:#747775;border-color:var(--gm3-sys-color-outline,#747775)}.NQV3m:focus,.NQV3m:focus-visible{outline:2px solid transparent}}.nz9sqb .NQV3m{border-radius:100px;border:1px solid;border-color:#8e918f;border-color:var(--gm3-sys-color-outline,#8e918f);background:none;-moz-box-sizing:border-box;box-sizing:border-box;color:#a8c7fa;color:var(--gm3-sys-color-primary,#a8c7fa);display:inline-block;font-size:14px;font-weight:500;min-height:40px;outline:none;padding:10px 24px;text-align:center;text-decoration:none;white-space:normal;line-height:18px;position:relative}.nz9sqb .NQV3m:before{content:" ";position:absolute;top:0;left:0;width:100%;height:100%;opacity:0;border-radius:100px;background:#a8c7fa;background:var(--gm3-sys-color-primary,#a8c7fa);transition:opacity .5s ease-out}.nz9sqb .NQV3m:hover{background:none;border-color:#8e918f;border-color:var(--gm3-sys-color-outline,#8e918f)}.nz9sqb .NQV3m:hover:before{opacity:.08}.nz9sqb .NQV3m:active,.nz9sqb .NQV3m:active:focus{border-color:#8e918f;border-color:var(--gm3-sys-color-outline,#8e918f)}.nz9sqb .NQV3m:active:before,.nz9sqb .NQV3m:active:focus:before{opacity:.12}.nz9sqb .NQV3m:focus,.nz9sqb .NQV3m:focus-within{border-color:var(--gm3-sys-color-primary,#0b57d0)}.nz9sqb .NQV3m:focus:before,.nz9sqb .NQV3m:focus-within:before{opacity:.16}@media (forced-colors:active){.nz9sqb .NQV3m{border:1px solid;border-color:#8e918f;border-color:var(--gm3-sys-color-outline,#8e918f)}.nz9sqb .NQV3m:focus,.nz9sqb .NQV3m:focus-visible{outline:2px solid transparent}}.nz9sqb .tX9u1b:hover{background-color:#282a2c;background-color:var(--gm3-sys-color-surface-container-high,#282a2c)}.nz9sqb .tX9u1b:active,.nz9sqb .tX9u1b:active:focus{background-color:#333537;background-color:var(--gm3-sys-color-surface-container-highest,#333537)}.nz9sqb.QgddUc .tX9u1b:focus,.nz9sqb.QgddUc .tX9u1b:hover:focus{border-color:#a8c7fa;border-color:var(--gm3-sys-color-primary,#a8c7fa)}.EHzcec{overflow-y:hidden;padding:0 0 0 8px}.v7bWUd{overflow-y:auto;scrollbar-color:#c4c7c5 transparent;scrollbar-width:thin;height:100%;overflow-x:hidden;padding:8px 0}.nz9sqb .v7bWUd{width:100%}.NQV3m{margin-bottom:30px}.tX9u1b{border-radius:16px}.kibP6b{-moz-box-align:center;align-items:center;background:#f8fafd;background:var(--gm3-sys-color-surface-container-low,#f8fafd);border-radius:30px;border:1px solid transparent;display:-moz-box;display:flex;color:#0b57d0;color:var(--gm3-sys-color-primary,#0b57d0);font-family:"Google Sans",Roboto;font-size:14px;font-weight:500;gap:16px;margin:0 0 10px;outline:none;overflow:hidden;padding:10px 16px;text-decoration:none;width:326px}.kibP6b:hover{background:#f0f4f9;background:var(--gm3-sys-color-surface-container,#f0f4f9)}.kibP6b:active,.oQD0Md:focus{background:#dde3ea;background:var(--gm3-sys-color-surface-container-highest,#dde3ea)}.kibP6b .EuVUud{fill:#0b57d0;fill:var(--gm3-sys-color-primary,#0b57d0)}.QgddUc .kibP6b:focus{background:#dde3ea;background:var(--gm3-sys-color-surface-container-highest,#dde3ea);border-color:#0b57d0;border-color:var(--gm3-sys-color-primary,#0b57d0);outline:2px solid transparent}.nz9sqb .kibP6b{background:#1b1b1b;background:var(--gm3-sys-color-surface-container-low,#1b1b1b);color:#a8c7fa;color:var(--gm3-sys-color-primary,#a8c7fa)}.nz9sqb .kibP6b:hover{background:#1e1f20;background:var(--gm3-sys-color-surface-container,#1e1f20)}.nz9sqb .kibP6b:active,.nz9sqb .kibP6b:active:focus{background:#333537;background:var(--gm3-sys-color-surface-container-highest,#333537)}.nz9sqb .kibP6b .EuVUud{fill:#a8c7fa;fill:var(--gm3-sys-color-primary,#a8c7fa)}.nz9sqb.QgddUc .kibP6b:focus{border-color:#a8c7fa;border-color:var(--gm3-sys-color-primary,#a8c7fa);background:#333537;background:var(--gm3-sys-color-surface-container-highest,#333537)}sentinel{}</style><script nonce="">onCssLoad();</script><style nonce="">@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu72xKOzY.woff2)format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu5mxKOzY.woff2)format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7mxKOzY.woff2)format('woff2');unicode-range:U+1F00-1FFF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4WxKOzY.woff2)format('woff2');unicode-range:U+0370-03FF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7WxKOzY.woff2)format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7GxKOzY.woff2)format('woff2');unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxK.woff2)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fCRc4EsA.woff2)format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fABc4EsA.woff2)format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fCBc4EsA.woff2)format('woff2');unicode-range:U+1F00-1FFF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBxc4EsA.woff2)format('woff2');unicode-range:U+0370-03FF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fCxc4EsA.woff2)format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fChc4EsA.woff2)format('woff2');unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Roboto';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc4.woff2)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}@font-face{font-family:'Product Sans';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/productsans/v9/pxiDypQkot1TnFhsFMOfGShVGdeOcEg.woff2)format('woff2');unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Product Sans';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/productsans/v9/pxiDypQkot1TnFhsFMOfGShVF9eO.woff2)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2rgCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0308,U+0530-058F,U+2010,U+2024,U+25CC,U+FB13-FB17;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2rACIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0964-0965,U+0980-09FE,U+1CF7,U+1CFA,U+200C-200D,U+20B9,U+25CC;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2swCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2ugCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2vwCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0900-097F,U+1CD0-1CF9,U+200C-200D,U+20A8,U+20B9,U+25CC,U+A830-A839,U+A8E0-A8FF;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2rwCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+1200-1399,U+2D80-2DDE,U+AB01-AB2E,U+1E7E0-1E7E6,U+1E7E8-1E7EB,U+1E7ED-1E7EE,U+1E7F0-1E7FE;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2oQCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0589,U+10A0-10FF,U+1C90-1CBA,U+1CBD-1CBF,U+2D00-2D2F;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2vQCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0370-03FF;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2pQCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0964-0965,U+0A80-0AFF,U+200C-200D,U+20B9,U+25CC,U+A830-A839;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2nQCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0964-0965,U+0A01-0A76,U+200C-200D,U+20B9,U+25CC,U+262C,U+A830-A839;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2vACIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0590-05FF,U+200C-2010,U+20AA,U+25CC,U+FB1D-FB4F;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2tQCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+1780-17FF,U+19E0-19FF,U+200C,U+25CC;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2twCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0E81-0EDF,U+25CC;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2pwCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0964-0965,U+0B01-0B77,U+200C-200D,U+20B9,U+25CC;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2owCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0964-0965,U+0D81-0DF4,U+200C-200D,U+25CC,U+111E1-111F4;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2qACIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0964-0965,U+0B82-0BFA,U+200C-200D,U+20B9,U+25CC;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2ogCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0951-0952,U+0964-0965,U+0C00-0C7F,U+1CDA,U+200C-200D,U+25CC;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2qgCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0E01-0E5B,U+200C-200D,U+25CC;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2sQCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2sACIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2vgCIhMl07v0x.woff2)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2rgCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0308,U+0530-058F,U+2010,U+2024,U+25CC,U+FB13-FB17;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2rACIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0964-0965,U+0980-09FE,U+1CF7,U+1CFA,U+200C-200D,U+20B9,U+25CC;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2swCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2ugCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2vwCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0900-097F,U+1CD0-1CF9,U+200C-200D,U+20A8,U+20B9,U+25CC,U+A830-A839,U+A8E0-A8FF;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2rwCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+1200-1399,U+2D80-2DDE,U+AB01-AB2E,U+1E7E0-1E7E6,U+1E7E8-1E7EB,U+1E7ED-1E7EE,U+1E7F0-1E7FE;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2oQCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0589,U+10A0-10FF,U+1C90-1CBA,U+1CBD-1CBF,U+2D00-2D2F;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2vQCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0370-03FF;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2pQCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0964-0965,U+0A80-0AFF,U+200C-200D,U+20B9,U+25CC,U+A830-A839;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2nQCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0964-0965,U+0A01-0A76,U+200C-200D,U+20B9,U+25CC,U+262C,U+A830-A839;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2vACIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0590-05FF,U+200C-2010,U+20AA,U+25CC,U+FB1D-FB4F;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2tQCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+1780-17FF,U+19E0-19FF,U+200C,U+25CC;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2twCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0E81-0EDF,U+25CC;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2pwCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0964-0965,U+0B01-0B77,U+200C-200D,U+20B9,U+25CC;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2owCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0964-0965,U+0D81-0DF4,U+200C-200D,U+25CC,U+111E1-111F4;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2qACIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0964-0965,U+0B82-0BFA,U+200C-200D,U+20B9,U+25CC;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2ogCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0951-0952,U+0964-0965,U+0C00-0C7F,U+1CDA,U+200C-200D,U+25CC;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2qgCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0E01-0E5B,U+200C-200D,U+25CC;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2sQCIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2sACIhMl07v0xve4.woff2)format('woff2');unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Google Sans';font-style:normal;font-weight:500;src:url(//fonts.gstatic.com/s/googlesans/v58/4UaRrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iq2vgCIhMl07v0x.woff2)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}@font-face{font-family:'Google Sans Display';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesansdisplay/v13/ea8FacM9Wef3EJPWRrHjgE4B6CnlZxHVDvr9oS_a.woff2)format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Google Sans Display';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesansdisplay/v13/ea8FacM9Wef3EJPWRrHjgE4B6CnlZxHVDv39oS_a.woff2)format('woff2');unicode-range:U+0370-03FF;}@font-face{font-family:'Google Sans Display';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesansdisplay/v13/ea8FacM9Wef3EJPWRrHjgE4B6CnlZxHVDvH9oS_a.woff2)format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Google Sans Display';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesansdisplay/v13/ea8FacM9Wef3EJPWRrHjgE4B6CnlZxHVDvD9oS_a.woff2)format('woff2');unicode-range:U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Google Sans Display';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/googlesansdisplay/v13/ea8FacM9Wef3EJPWRrHjgE4B6CnlZxHVDv79oQ.woff2)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}</style><script nonce="">(function(){'use strict';function t(){var b=w,c=0;return function(){return c<b.length?{done:!1,value:b[c++]}:{done:!0}}};/*
|
|
|
|
Copyright The Closure Library Authors.
|
|
SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
var x=this||self;/*
|
|
|
|
Copyright 2013 Google LLC.
|
|
SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
var A={};function B(b,c){if(null===c)return!1;if("contains"in b&&1===c.nodeType)return b.contains(c);if("compareDocumentPosition"in b)return b===c||!!(b.compareDocumentPosition(c)&16);for(;c&&b!==c;)c=c.parentNode;return c===b};function aa(b,c){return function(d){d||(d=window.event);return c.call(b,d)}}function D(b){b=b.target||b.srcElement;!b.getAttribute&&b.parentNode&&(b=b.parentNode);return b}var E="undefined"!==typeof navigator&&/Macintosh/.test(navigator.userAgent),ba="undefined"!==typeof navigator&&!/Opera/.test(navigator.userAgent)&&/WebKit/.test(navigator.userAgent),ca={A:1,INPUT:1,TEXTAREA:1,SELECT:1,BUTTON:1};function da(){this._mouseEventsPrevented=!0}
|
|
var ea={Enter:13," ":32},I={A:13,BUTTON:0,CHECKBOX:32,COMBOBOX:13,FILE:0,GRIDCELL:13,LINK:13,LISTBOX:13,MENU:0,MENUBAR:0,MENUITEM:0,MENUITEMCHECKBOX:0,MENUITEMRADIO:0,OPTION:0,RADIO:32,RADIOGROUP:32,RESET:0,SUBMIT:0,SWITCH:32,TAB:0,TREE:13,TREEITEM:13},J={CHECKBOX:!0,FILE:!0,OPTION:!0,RADIO:!0},K={COLOR:!0,DATE:!0,DATETIME:!0,"DATETIME-LOCAL":!0,EMAIL:!0,MONTH:!0,NUMBER:!0,PASSWORD:!0,RANGE:!0,SEARCH:!0,TEL:!0,TEXT:!0,TEXTAREA:!0,TIME:!0,URL:!0,WEEK:!0},fa={A:!0,AREA:!0,BUTTON:!0,DIALOG:!0,IMG:!0,
|
|
INPUT:!0,LINK:!0,MENU:!0,OPTGROUP:!0,OPTION:!0,PROGRESS:!0,SELECT:!0,TEXTAREA:!0};function ha(b){this.g=b;this.h=[]};/*
|
|
|
|
Copyright 2005 Google LLC.
|
|
SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
function L(){this.o=[];this.g=[];this.j=[];this.m={};this.h=null;this.l=[]}function M(b){return String.prototype.trim?b.trim():b.replace(/^\s+/,"").replace(/\s+$/,"")}
|
|
function ia(b,c){return function n(a,l){l=void 0===l?!0:l;var e=c;if("click"==e&&(E&&a.metaKey||!E&&a.ctrlKey||2==a.which||null==a.which&&4==a.button||a.shiftKey))e="clickmod";else{var f=a.which||a.keyCode;!f&&a.key&&(f=ea[a.key]);ba&&3==f&&(f=13);if(13!=f&&32!=f)f=!1;else{var g=D(a),h;(h="keydown"!=a.type||!!(!("getAttribute"in g)||(g.getAttribute("type")||g.tagName).toUpperCase()in K||"BUTTON"==g.tagName.toUpperCase()||g.type&&"FILE"==g.type.toUpperCase()||g.isContentEditable)||a.ctrlKey||a.shiftKey||
|
|
a.altKey||a.metaKey||(g.getAttribute("type")||g.tagName).toUpperCase()in J&&32==f)||((h=g.tagName in ca)||(h=g.getAttributeNode("tabindex"),h=null!=h&&h.specified),h=!(h&&!g.disabled));if(h)f=!1;else{h=(g.getAttribute("role")||g.type||g.tagName).toUpperCase();var r=!(h in I)&&13==f;g="INPUT"!=g.tagName.toUpperCase()||!!g.type;f=(0==I[h]%f||r)&&g}}f&&(e="clickkey")}g=a.srcElement||a.target;f=N(e,a,g,"",null);var k,y;for(h=g;h&&h!=this;h=h.__owner||("#document-fragment"!==(null==(k=h.parentNode)?void 0:
|
|
k.nodeName)?h.parentNode:null==(y=h.parentNode)?void 0:y.host)){var m=h;var q=void 0;var u=m;r=e;var p=u.__jsaction;if(!p){var C;p=null;"getAttribute"in u&&(p=u.getAttribute("jsaction"));if(C=p){p=A[C];if(!p){p={};for(var F=C.split(ja),ka=F?F.length:0,G=0;G<ka;G++){var z=F[G];if(z){var H=z.indexOf(":"),Q=-1!=H;p[Q?M(z.substr(0,H)):la]=Q?M(z.substr(H+1)):z}}A[C]=p}u.__jsaction=p}else p=ma,u.__jsaction=p}u=p;"maybe_click"==r&&u.click?(q=r,r="click"):"clickkey"==r?r="click":"click"!=r||u.click||(r="clickonly");
|
|
q={eventType:q?q:r,action:u[r]||"",event:null,u:!1};if(q.u||q.action)break}q&&(f=N(q.eventType,q.event||a,g,q.action||"",m,f.timeStamp));f&&"touchend"==f.eventType&&(f.event._preventMouseEvents=da);if(q&&q.action){if(k="clickkey"==e)k=D(a),k=(k.type||k.tagName).toUpperCase(),(k=32==(a.which||a.keyCode)&&"CHECKBOX"!=k)||(k=D(a),y=k.tagName.toUpperCase(),g=(k.getAttribute("role")||"").toUpperCase(),k="BUTTON"===y||"BUTTON"===g?!0:!(k.tagName.toUpperCase()in fa)||"A"===y||"SELECT"===y||(k.getAttribute("type")||
|
|
k.tagName).toUpperCase()in J||(k.getAttribute("type")||k.tagName).toUpperCase()in K?!1:!0);k&&(a.preventDefault?a.preventDefault():a.returnValue=!1);if("mouseenter"==e||"mouseleave"==e||"pointerenter"==e||"pointerleave"==e)if(k=a.relatedTarget,!("mouseover"==a.type&&"mouseenter"==e||"mouseout"==a.type&&"mouseleave"==e||"pointerover"==a.type&&"pointerenter"==e||"pointerout"==a.type&&"pointerleave"==e)||k&&(k===m||B(m,k)))f.action="",f.actionElement=null;else{e={};for(var v in a)"function"!==typeof a[v]&&
|
|
"srcElement"!==v&&"target"!==v&&(e[v]=a[v]);e.type="mouseover"==a.type?"mouseenter":"mouseout"==a.type?"mouseleave":"pointerover"==a.type?"pointerenter":"pointerleave";e.target=e.srcElement=m;e.bubbles=!1;f.event=e;f.targetElement=m}}else f.action="",f.actionElement=null;m=f;b.h&&!m.event.a11ysgd&&(v=N(m.eventType,m.event,m.targetElement,m.action,m.actionElement,m.timeStamp),"clickonly"==v.eventType&&(v.eventType="click"),b.h(v,!0));m.actionElement&&(b.h?(!m.actionElement||"A"!=m.actionElement.tagName||
|
|
"click"!=m.eventType&&"clickmod"!=m.eventType||(a.preventDefault?a.preventDefault():a.returnValue=!1),(a=b.h(m))&&l&&n.call(this,a,!1)):b.l.push(m))}}function N(b,c,d,a,l,n){return{eventType:b,event:c,targetElement:d,action:a,actionElement:l,timeStamp:n||Date.now()}}
|
|
function na(b,c){return function(d){var a=b,l=c,n=!1;"mouseenter"==a?a="mouseover":"mouseleave"==a?a="mouseout":"pointerenter"==a?a="pointerover":"pointerleave"==a&&(a="pointerout");if(d.addEventListener){if("focus"==a||"blur"==a||"error"==a||"load"==a||"toggle"==a)n=!0;d.addEventListener(a,l,n)}else d.attachEvent&&("focus"==a?a="focusin":"blur"==a&&(a="focusout"),l=aa(d,l),d.attachEvent("on"+a,l));return{eventType:a,i:l,capture:n}}}
|
|
function O(b,c,d){if(!b.m.hasOwnProperty(c)){var a=ia(b,c);d=na(d||c,a);b.m[c]=a;b.o.push(d);for(a=0;a<b.g.length;++a){var l=b.g[a];l.h.push(d.call(null,l.g))}"click"==c&&O(b,"keydown")}}L.prototype.i=function(b){return this.m[b]};
|
|
function oa(b,c){var d=new ha(c);a:{for(var a=0;a<b.g.length;a++)if(P(b.g[a].g,c)){c=!0;break a}c=!1}if(c)return b.j.push(d),d;R(b,d);b.g.push(d);c=b.j.concat(b.g);a=[];for(var l=[],n=0;n<b.g.length;++n){var e=b.g[n];if(S(e,c)){a.push(e);for(var f=0;f<e.h.length;++f){var g=e.g,h=e.h[f];g.removeEventListener?g.removeEventListener(h.eventType,h.i,h.capture):g.detachEvent&&g.detachEvent("on"+h.eventType,h.i)}e.h=[]}else l.push(e)}for(n=0;n<b.j.length;++n)e=b.j[n],S(e,c)?a.push(e):(l.push(e),R(b,e));
|
|
b.g=l;b.j=a;return d}function R(b,c){var d=c.g;pa&&(d.style.cursor="pointer");for(d=0;d<b.o.length;++d)c.h.push(b.o[d].call(null,c.g))}function S(b,c){for(var d=0;d<c.length;++d)if(c[d].g!=b.g&&P(c[d].g,b.g))return!0;return!1}function P(b,c){for(;b!=c&&c.parentNode;)c=c.parentNode;return b==c}var pa="undefined"!=typeof navigator&&/iPhone|iPad|iPod/.test(navigator.userAgent),ja=/\s*;\s*/,la="click",ma={};var w="click dblclick focus focusin blur error focusout keydown keyup keypress load mouseover mouseout mouseenter mouseleave submit toggle touchstart touchend touchmove touchcancel auxclick change compositionstart compositionupdate compositionend beforeinput input select textinput copy cut paste mousedown mouseup wheel contextmenu dragover dragenter dragleave drop dragstart dragend pointerdown pointermove pointerup pointercancel pointerenter pointerleave pointerover pointerout gotpointercapture lostpointercapture ended loadedmetadata pagehide pageshow visibilitychange beforematch".split(" ");
|
|
if(!(w instanceof Array)){var T;var U="undefined"!=typeof Symbol&&Symbol.iterator&&w[Symbol.iterator];if(U)T=U.call(w);else if("number"==typeof w.length)T={next:t()};else throw Error(String(w)+" is not an iterable or ArrayLike");for(var V,qa=[];!(V=T.next()).done;)qa.push(V.value)};var W=function(b){return{trigger:function(c){var d=b.i(c.type);d||(O(b,c.type),d=b.i(c.type));var a=c.target||c.srcElement;d&&d.call(a.ownerDocument.documentElement,c)},bind:function(c){b.h=c;b.l&&(0<b.l.length&&c(b.l),b.l=null)}}}(function(){var b=window,c=new L,d=oa(c,b.document.documentElement);w.forEach(function(n){return O(c,n)});var a,l;"onwebkitanimationend"in b&&(a="webkitAnimationEnd");O(c,"animationend",a);"onwebkittransitionend"in b&&(l="webkitTransitionEnd");O(c,"transitionend",l);return{s:c,
|
|
v:d}}().s),X=["BOQ_wizbind"],Y=window||x;X[0]in Y||"undefined"==typeof Y.execScript||Y.execScript("var "+X[0]);for(var Z;X.length&&(Z=X.shift());)X.length||void 0===W?Y[Z]&&Y[Z]!==Object.prototype[Z]?Y=Y[Z]:Y=Y[Z]={}:Y[Z]=W;}).call(this);
|
|
</script><script nocollect="" src="app_data/m=_b,_tp" async="" id="base-js" nonce=""></script><script nonce="">if (window.BOQ_loadedInitialJS) {onJsLoad();} else {document.getElementById('base-js').addEventListener('load', onJsLoad, false);}</script><script nonce="">
|
|
window['_wjdc'] = function (d) {window['_wjdd'] = d};
|
|
</script><script nonce="">'use strict';function h(a){this.data=a};function k(a){this.h=a}function n(a,c){p(a,c);return new k(a)}function q(a){var c=new MessageChannel;p(c.port1,a);return c}function p(a,c){c&&(a.onmessage=function(f){var d=f.data;n(f.ports[0]);c(new h(d))})};/*
|
|
|
|
Copyright The Closure Library Authors.
|
|
SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
var r=/#|$/;function v(a){var c=w,f=c.search(r);a:{var d=0;for(var b=a.length;0<=(d=c.indexOf(a,d))&&d<f;){var e=c.charCodeAt(d-1);if(38==e||63==e)if(e=c.charCodeAt(d+b),!e||61==e||38==e||35==e)break a;d+=b+1}d=-1}if(0>d)return null;b=c.indexOf("&",d);if(0>b||b>f)b=f;d+=a.length+1;return decodeURIComponent(c.slice(d,-1!==b?b:0).replace(/\+/g," "))};var w=window.location.href,x="ogi_"+(v("cn")||""),y;
|
|
function z(a,c,f){c=void 0===c?{}:c;if(!y){var d=v("origin")||"",b={destination:window.parent,origin:d,g:x,onMessage:void 0};d=b.destination;var e=b.origin,g=void 0===b.i?void 0:b.i,t=void 0===b.g?"ZNWN1d":b.g;b=void 0===b.onMessage?void 0:b.onMessage;if("*"===e)throw Error("Sending to wildcard origin not allowed.");var u=q(b),l={};g=g?(l.n=t,l.t=g,l):t;d.postMessage(g,e,[u.port2]);y=n(u.port1,b)}a={event:a,data:c};c=y;var m=void 0===m?[]:m;f=q(f);c.h.postMessage(a,[f.port2].concat(m))};z("_startuploaded",{wt:"al"},function(a){window._ed=a.data._ed});
|
|
(function(a){"loading"===document.readyState?document.addEventListener("DOMContentLoaded",function(){a()}):a()})(function(){var a=void 0===a?"":a;var c=void 0===c?"":c;var f=void 0===f?!1:f;var d=void 0===d?!1:d;var b={wt:"al"};if(null!=document.querySelector("[data-ogmv]")){var e=window.performance&&window.performance.timing;b.ttf=e&&e.responseEnd&&e.fetchStart?e.responseEnd-e.fetchStart:null;a&&(b.height=a);c&&(b.width=c);b.icss=f;b.dc=d;z("_renderstart",b)}else z("_renderfailed",b)});
|
|
</script><title></title><script nonce="">var AF_initDataKeys = ["ds:0"]; var AF_dataServiceRequests = {'ds:0' : {id:'UVycre',request:[]}}; var AF_initDataChunkQueue = []; var AF_initDataCallback; var AF_initDataInitializeCallback; if (AF_initDataInitializeCallback) {AF_initDataInitializeCallback(AF_initDataKeys, AF_initDataChunkQueue, AF_dataServiceRequests);}if (!AF_initDataCallback) {AF_initDataCallback = function(chunk) {AF_initDataChunkQueue.push(chunk);};}</script><style nonce="" type="text/css" data-late-css="">.KL4X6e{background:#eee;bottom:0;left:0;opacity:0;position:absolute;right:0;top:0}.TuA45b{opacity:.8}sentinel{}</style></head><body jscontroller="pjICDe" jsaction="rcuQ6b:npT2md; click:FAbpgf; auxclick:FAbpgf;UjQMac:.CLIENT;keydown:.CLIENT;keyup:.CLIENT;keypress:.CLIENT;nHjqDd:.CLIENT;LhiQec:.CLIENT;GvneHb:.CLIENT;qako4e:.CLIENT" class="EIlDfe"><script aria-hidden="true" nonce="">window.wiz_progress&&window.wiz_progress();</script><div class="MCcOAc IqBfM EWZcud LcUz9d e2G3Fb cjGgHb d8Etdd" id="yDmH0d"><div class="VUoKZ" aria-hidden="true"><div class="TRHLAc"></div></div><c-wiz jsrenderer="YOiC1e" class="SSPGKf" jsdata="deferred-i1" data-p="%.@.]" data-node-index="0;0" jsmodel="hc6Ubd" view="" c-wiz="" data-ogpc=""><div class="T4LgNb eejsDc" jsname="a9kxte"><div jsname="qJTHM" class="kFwPee"><c-wiz jsrenderer="IiCRgf" jslog="46975; track:impression;" jsshadow="" jsdata="deferred-i2" data-p="%.@.]" jscontroller="aDfbSd" jsaction="rcuQ6b:npT2md;qRPDvb:.CLIENT" data-node-index="1;0" jsmodel="hc6Ubd" c-wiz=""><style nonce="">.MrEfLc {background-image: url('https://ssl.gstatic.com/gb/images/sprites/p_2x_a6cad964874d.png'); background-size: 53px 2547px;}</style><div class="qWuU9c" data-ogmv=""><div class="EHzcec eejsDc" jsname="Sx9Kwc" jsaction="kav0L:npT2md(preventDefault=true);qRPDvb:kvzNsb;UOCPhc:FybyJc;agoMJf:CfS0pe;UT22ib:Hp74Ud;GJ7MT:rfjeo;" aria-label="Aplicaciones de Google"><div class="v7bWUd"><div class="VUoKZ" aria-hidden="true"><div class="TRHLAc"></div></div><div class="o83JEf" jsname="sLJ6md"><div class="LVal7b "><ul jsname="k77Iif" class="ngVsM u4RcUd"><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://myaccount.google.com/?utm_source=OGB&utm_medium=app&authuser=0" target="_top" data-pid="192" jslog="46976; 1:192; track:click; index:0" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc dOs7We" style="background-image: url('https://lh3.googleusercontent.com/a/ACg8ocKT_HvCuFxcsvYskHcB-CYYdHI2_4pXf65K6F0rflwrJow=s128-b16-cc-rp-mo');"></span></div><span jsname="V67aGc" data-text="Cuenta" class="Rq5Gcb">Cuenta</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://www.google.com/?authuser=0" target="_top" data-pid="1" jslog="46976; 1:1; track:click; index:1" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -1392px;"></span></div><span jsname="V67aGc" data-text="Búsqueda" class="Rq5Gcb">Búsqueda</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://maps.google.com/?authuser=0" target="_top" data-pid="8" jslog="46976; 1:8; track:click; index:2" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -1044px;"></span></div><span jsname="V67aGc" data-text="Maps" class="Rq5Gcb">Maps</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://play.google.com/?authuser=0" target="_top" data-pid="78" jslog="46976; 1:78; track:click; index:3" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -290px;"></span></div><span jsname="V67aGc" data-text="Play" class="Rq5Gcb">Play</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://news.google.com/?authuser=0" target="_top" data-pid="426" jslog="46976; 1:426; track:click; index:4" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -1334px;"></span></div><span jsname="V67aGc" data-text="Noticias" class="Rq5Gcb">Noticias</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://mail.google.com/mail/?authuser=0" target="_top" data-pid="23" jslog="46976; 1:23; track:click; index:5" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -2436px;"></span></div><span jsname="V67aGc" data-text="Gmail" class="Rq5Gcb">Gmail</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://meet.google.com/?hs=197&authuser=0" target="_top" data-pid="411" jslog="46976; 1:411; track:click; index:6" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -348px;"></span></div><span jsname="V67aGc" data-text="Meet" class="Rq5Gcb">Meet</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://chat.google.com/?authuser=0" target="_top" data-pid="385" jslog="46976; 1:385; track:click; index:7" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -580px;"></span></div><span jsname="V67aGc" data-text="Chat" class="Rq5Gcb">Chat</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://contacts.google.com/?authuser=0" target="_top" data-pid="53" jslog="46976; 1:53; track:click; index:8" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -1624px;"></span></div><span jsname="V67aGc" data-text="Contactos" class="Rq5Gcb">Contactos</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://drive.google.com/?authuser=0" target="_top" data-pid="49" jslog="46976; 1:49; track:click; index:9" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -116px;"></span></div><span jsname="V67aGc" data-text="Drive" class="Rq5Gcb">Drive</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://calendar.google.com/calendar?authuser=0" target="_top" data-pid="24" jslog="46976; 1:24; track:click; index:10" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -1276px;"></span></div><span jsname="V67aGc" data-text="Calendar" class="Rq5Gcb">Calendar</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://translate.google.com/?authuser=0" target="_top" data-pid="51" jslog="46976; 1:51; track:click; index:11" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -1682px;"></span></div><span jsname="V67aGc" data-text="Traductor" class="Rq5Gcb">Traductor</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://photos.google.com/?authuser=0" target="_top" data-pid="31" jslog="46976; 1:31; track:click; index:12" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -870px;"></span></div><span jsname="V67aGc" data-text="Fotos" class="Rq5Gcb">Fotos</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://myadcenter.google.com/?ref=app-launcher&authuser=0" target="_top" data-pid="644" jslog="46976; 1:644; track:click; index:13" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -986px;"></span></div><span jsname="V67aGc" data-text="Mi centro de anuncios" class="Rq5Gcb">Mi centro de anuncios</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://www.google.com/chrome/?brand=CHZO&utm_source=google.com&utm_medium=desktop-app-launcher&utm_campaign=desktop-app-launcher&utm_content=chrome-logo&utm_keyword=CHZO&authuser=0" target="_top" data-pid="58" jslog="46976; 1:58; track:click; index:14" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -2262px;"></span></div><span jsname="V67aGc" data-text="Chrome" class="Rq5Gcb">Chrome</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://www.google.com/shopping?source=og&authuser=0" target="_top" data-pid="6" jslog="46976; 1:6; track:click; index:15" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -174px;"></span></div><span jsname="V67aGc" data-text="Shopping" class="Rq5Gcb">Shopping</span></a></li></ul></div><div class="LVal7b "><ul jsname="z5C9Gb" class="ngVsM L2gNYe"><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://www.google.com/finance?authuser=0" target="_top" data-pid="27" jslog="46976; 1:27; track:click; index:0" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -1508px;"></span></div><span jsname="V67aGc" data-text="Finance" class="Rq5Gcb">Finance</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://docs.google.com/document/?usp=docs_alc&authuser=0" target="_top" data-pid="25" jslog="46976; 1:25; track:click; index:1" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -2088px;"></span></div><span jsname="V67aGc" data-text="Documentos" class="Rq5Gcb">Documentos</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://docs.google.com/spreadsheets/?usp=sheets_alc&authuser=0" target="_top" data-pid="283" jslog="46976; 1:283; track:click; index:2" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -2146px;"></span></div><span jsname="V67aGc" data-text="Hojas de cálculo" class="Rq5Gcb">Hojas de cálculo</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://docs.google.com/presentation/?usp=slides_alc&authuser=0" target="_top" data-pid="281" jslog="46976; 1:281; track:click; index:3" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 0;"></span></div><span jsname="V67aGc" data-text="Presentaciones" class="Rq5Gcb">Presentaciones</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://books.google.com/?authuser=0" target="_top" data-pid="10" jslog="46976; 1:10; track:click; index:4" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -522px;"></span></div><span jsname="V67aGc" data-text="Libros" class="Rq5Gcb">Libros</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://www.blogger.com/?authuser=0" target="_top" data-pid="30" jslog="46976; 1:30; track:click; index:5" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -2494px;"></span></div><span jsname="V67aGc" data-text="Blogger" class="Rq5Gcb">Blogger</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://keep.google.com/?authuser=0" target="_top" data-pid="136" jslog="46976; 1:136; track:click; index:6" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -1102px;"></span></div><span jsname="V67aGc" data-text="Google Keep" class="Rq5Gcb">Google Keep</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://jamboard.google.com/?authuser=0" target="_top" data-pid="357" jslog="46976; 1:357; track:click; index:7" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -2030px;"></span></div><span jsname="V67aGc" data-text="Jamboard" class="Rq5Gcb">Jamboard</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://classroom.google.com/?authuser=0" target="_top" data-pid="265" jslog="46976; 1:265; track:click; index:8" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -1856px;"></span></div><span jsname="V67aGc" data-text="Classroom" class="Rq5Gcb">Classroom</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://earth.google.com/web/?authuser=0" target="_top" data-pid="429" jslog="46976; 1:429; track:click; index:9" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -1566px;"></span></div><span jsname="V67aGc" data-text="Earth" class="Rq5Gcb">Earth</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://www.google.com/save?authuser=0" target="_top" data-pid="338" jslog="46976; 1:338; track:click; index:10" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -1972px;"></span></div><span jsname="V67aGc" data-text="Guardados" class="Rq5Gcb">Guardados</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://artsandculture.google.com/?utm_source=ogs.google.com&utm_medium=referral&authuser=0" target="_top" data-pid="264" jslog="46976; 1:264; track:click; index:11" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -638px;"></span></div><span jsname="V67aGc" data-text="Arts and Culture" class="Rq5Gcb">Arts and Culture</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://ads.google.com/home/?subid=ww-ww-xs-ip-awhc-a-ogb_cons!o2&authuser=0" target="_top" data-pid="304" jslog="46976; 1:304; track:click; index:12" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -1218px;"></span></div><span jsname="V67aGc" data-text="Google Ads" class="Rq5Gcb">Google Ads</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://one.google.com/?utm_source=app_launcher&utm_medium=web&utm_campaign=all&utm_content=google_oo&authuser=0" target="_top" data-pid="459" jslog="46976; 1:459; track:click; index:13" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -812px;"></span></div><span jsname="V67aGc" data-text="Google One" class="Rq5Gcb">Google One</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://www.google.com/travel/?dest_src=al&authuser=0" target="_top" data-pid="405" jslog="46976; 1:405; track:click; index:14" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -754px;"></span></div><span jsname="V67aGc" data-text="Viajes" class="Rq5Gcb">Viajes</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://docs.google.com/forms/?authuser=0" target="_top" data-pid="330" jslog="46976; 1:330; track:click; index:15" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -232px;"></span></div><span jsname="V67aGc" data-text="Formularios" class="Rq5Gcb">Formularios</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://chrome.google.com/webstore?utm_source=app-launcher&authuser=0" target="_top" data-pid="421" jslog="46976; 1:421; track:click; index:16" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -1914px;"></span></div><span jsname="V67aGc" data-text="Chrome Web Store" class="Rq5Gcb">Chrome Web Store</span></a></li><li class="j1ei8c" jscontroller="lKZxSd" jsaction="rcuQ6b:npT2md; keydown:I481le;qUuEUd:rfjeo;j9grLe:Z8TOLc;HUObcd:Hp74Ud;"><a class="tX9u1b" href="https://passwords.google.com/?utm_source=OGB&utm_medium=AL&authuser=0" target="_top" data-pid="674" jslog="46976; 1:674; track:click; index:17" jsname="hSRGPd" aria-grabbed="false" draggable="false"><div class="pPUwub" aria-hidden="true"></div><div class="dKVyP" aria-hidden="true"></div><div class="ajYF5e" aria-hidden="true"></div><div class="NcWGte" aria-hidden="true"></div><div class="CgwTDb"><span class="MrEfLc" style="background-position: 0 -58px;"></span></div><span jsname="V67aGc" data-text="Gestor de contraseñas" class="Rq5Gcb">Gestor de contraseñas</span></a></li></ul></div></div><div class="WwFbJd"><a href="https://about.google/products/" class="NQV3m" jsname="TiWzT" data-app-widget-link-name="jcJzye" target="_blank" jslog="51957; track:click;">Más de Google</a></div></div></div></div><c-data id="i2" jsdata=" wy9EHc;_;1"></c-data></c-wiz></div></div><c-data id="i1"></c-data></c-wiz><script aria-hidden="true" nonce="">window.wiz_progress&&window.wiz_progress();window.wiz_tick&&window.wiz_tick('YOiC1e');</script><script nonce="">(function(){'use strict';var c=window,d=[];c.aft_counter=d;var e=[],f=0;function _recordIsAboveFold(a){if(!c._isLazyImage(a)&&!a.hasAttribute("data-noaft")&&a.src){var b=(c._isVisible||function(){})(c.document,a);a.setAttribute("data-atf",b);b&&(-1!==e.indexOf(a)||-1!==d.indexOf(a)||a.complete||d.push(a),a.hasAttribute("data-iml")&&(a=Number(a.getAttribute("data-iml")),a>f&&(f=a)))}}
|
|
c.initAft=function(){f=0;e=Array.prototype.slice.call(document.getElementsByTagName("img")).filter(function(a){return!!a.getAttribute("data-iml")});[].forEach.call(document.getElementsByTagName("img"),function(a){try{_recordIsAboveFold(a)}catch(b){throw b.message=a.hasAttribute("data-iid")?b.message+"\nrecordIsAboveFold error for defer inlined image":b.message+("\nrecordIsAboveFold error for img element with <src: "+a.src+">"),b;}});if(0===d.length)c.onaft(f)};}).call(this);
|
|
initAft()</script><script id="_ij" nonce="">window.IJ_values = [["100064983751523876173","100064983751523876173","0",true,null,null,true,false],'0','https:\/\/ogs.google.com\/u\/0\/', null ,'boq_onegooglehttpserver_20240131.03_p0','ogs.google.com', 0.0 ,'','cucdbirR59A9V0Ut6Hlq-w','QOBOEUJxAIZECBsFhbABhA','DEFAULT','\/u\/0', 2024.0 ,'https:\/\/ogs.google.com\/widget\/app', null ,'ltr', false ,'https:\/\/accounts.google.com\/AccountChooser?continue\x3dhttps:\/\/ogs.google.com\/u\/0\/widget\/app?awwd%3D1%26gm3%3D1%26origin%3Dhttps:\/\/www.google.com%26cn%3Dapp%26pid%3D1%26spid%3D1%26hl%3Des\x26hl\x3des','https:\/\/accounts.google.com\/ServiceLogin?hl\x3des\x26authuser\x3d0\x26continue\x3dhttps:\/\/ogs.google.com\/u\/0\/widget\/app?awwd%3D1%26gm3%3D1%26origin%3Dhttps:\/\/www.google.com%26cn%3Dapp%26pid%3D1%26spid%3D1%26hl%3Des','https:\/\/accounts.google.com\/SignOutOptions?continue\x3dhttps:\/\/ogs.google.com\/u\/0\/widget\/app?awwd%3D1%26gm3%3D1%26origin%3Dhttps:\/\/www.google.com%26cn%3Dapp%26pid%3D1%26spid%3D1%26hl%3Des','https:\/\/www.google.com', false , false , false , false , false ,'es','es','es','https:\/\/goto2.corp.google.com\/mdtredirect?data_id_filter\x3dogs.google.com\x26system_name\x3done-google-http-server', null ,'AMVtWsT-vDQNbcdRMfVLEbdOXImM:1707254169002','https:\/\/myaccount.google.com\/privacypolicy?hl\x3des', false , false , true ,'https:\/\/myaccount.google.com\/termsofservice?hl\x3des', 0.0 ,'es','lorigayuniel@gmail.com', true ,'100064983751523876173',]; window.IJ_valuesCb && window.IJ_valuesCb();</script><script nonce="">AF_initDataCallback({key: 'ds:0', hash: '1', data:[[[[192,"Cuenta","0 -1798px","https://myaccount.google.com/?utm_source\u003dOGB\u0026utm_medium\u003dapp\u0026authuser\u003d0","_top",null,null,"https://lh3.googleusercontent.com/a/ACg8ocKT_HvCuFxcsvYskHcB-CYYdHI2_4pXf65K6F0rflwrJow\u003ds128-b16-cc-rp-mo"],[1,"Búsqueda","0 -1392px","https://www.google.com/?authuser\u003d0","_top"],[8,"Maps","0 -1044px","https://maps.google.com/?authuser\u003d0","_top"],[78,"Play","0 -290px","https://play.google.com/?authuser\u003d0","_top"],[426,"Noticias","0 -1334px","https://news.google.com?authuser\u003d0","_top"],[23,"Gmail","0 -2436px","https://mail.google.com/mail/?authuser\u003d0","_top"],[411,"Meet","0 -348px","https://meet.google.com?hs\u003d197\u0026authuser\u003d0","_top"],[385,"Chat","0 -580px","https://chat.google.com?authuser\u003d0","_top"],[53,"Contactos","0 -1624px","https://contacts.google.com/?authuser\u003d0","_top"],[49,"Drive","0 -116px","https://drive.google.com/?authuser\u003d0","_top"],[24,"Calendar","0 -1276px","https://calendar.google.com/calendar?authuser\u003d0","_top"],[51,"Traductor","0 -1682px","https://translate.google.com/?authuser\u003d0","_top"],[31,"Fotos","0 -870px","https://photos.google.com/?authuser\u003d0","_top"],[644,"Mi centro de anuncios","0 -986px","https://myadcenter.google.com/?ref\u003dapp-launcher\u0026authuser\u003d0","_top"],[58,"Chrome","0 -2262px","https://www.google.com/chrome/?brand\u003dCHZO\u0026utm_source\u003dgoogle.com\u0026utm_medium\u003ddesktop-app-launcher\u0026utm_campaign\u003ddesktop-app-launcher\u0026utm_content\u003dchrome-logo\u0026utm_keyword\u003dCHZO\u0026authuser\u003d0","_top"],[6,"Shopping","0 -174px","https://www.google.com/shopping?source\u003dog\u0026authuser\u003d0","_top"]],[[27,"Finance","0 -1508px","https://www.google.com/finance?authuser\u003d0","_top"],[25,"Documentos","0 -2088px","https://docs.google.com/document/?usp\u003ddocs_alc\u0026authuser\u003d0","_top"],[283,"Hojas de cálculo","0 -2146px","https://docs.google.com/spreadsheets/?usp\u003dsheets_alc\u0026authuser\u003d0","_top"],[281,"Presentaciones","0 0","https://docs.google.com/presentation/?usp\u003dslides_alc\u0026authuser\u003d0","_top"],[10,"Libros","0 -522px","https://books.google.com/?authuser\u003d0","_top"],[30,"Blogger","0 -2494px","https://www.blogger.com/?authuser\u003d0","_top"],[136,"Google Keep","0 -1102px","https://keep.google.com?authuser\u003d0","_top"],[357,"Jamboard","0 -2030px","https://jamboard.google.com/?authuser\u003d0","_top"],[265,"Classroom","0 -1856px","https://classroom.google.com/?authuser\u003d0","_top"],[429,"Earth","0 -1566px","https://earth.google.com/web/?authuser\u003d0","_top"],[338,"Guardados","0 -1972px","https://www.google.com/save?authuser\u003d0","_top"],[264,"Arts and Culture","0 -638px","https://artsandculture.google.com/?utm_source\u003dogs.google.com\u0026utm_medium\u003dreferral\u0026authuser\u003d0","_top"],[304,"Google Ads","0 -1218px","https://ads.google.com/home/?subid\u003dww-ww-xs-ip-awhc-a-ogb_cons!o2\u0026authuser\u003d0","_top"],[459,"Google One","0 -812px","https://one.google.com?utm_source\u003dapp_launcher\u0026utm_medium\u003dweb\u0026utm_campaign\u003dall\u0026utm_content\u003dgoogle_oo\u0026authuser\u003d0","_top"],[405,"Viajes","0 -754px","https://www.google.com/travel/?dest_src\u003dal\u0026authuser\u003d0","_top"],[330,"Formularios","0 -232px","https://docs.google.com/forms/?authuser\u003d0","_top"],[421,"Chrome Web Store","0 -1914px","https://chrome.google.com/webstore?utm_source\u003dapp-launcher\u0026authuser\u003d0","_top"],[674,"Gestor de contraseñas","0 -58px","https://passwords.google.com?utm_source\u003dOGB\u0026utm_medium\u003dAL\u0026authuser\u003d0","_top"]],null,"https://workspace.google.com/marketplace?pann\u003dogb\u0026authuser\u003d0","Más de Google Workspace Marketplace","https://about.google/products/",null,null,null,null,"https://ssl.gstatic.com/gb/images/sprites/p_2x_a6cad964874d.png","53px 2547px",true,false,"https://ssl.gstatic.com/gb/images/sprites/p_1x_36f4ccf6a8ff.png","","Más de Google",null,false,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,[false]]], sideChannel: {}});</script><script id="wiz_jd" nonce="">if (window['_wjdc']) {const wjd = {}; window['_wjdc'](wjd); delete window['_wjdc'];}</script><script aria-hidden="true" id="WIZ-footer" nonce="">window.wiz_progress&&window.wiz_progress(); window.stopScanForCss&&window.stopScanForCss(); ccTick('bl');</script></div></body></html> |