


'); doc.close(); } if (!doc) throw Error('base not supported'); var baseTag = doc.createElement('base'); baseTag.href = base; doc.getElementsByTagName('head')[0].appendChild(baseTag); var anchor = doc.createElement('a'); anchor.href = url; return anchor.href; } finally { if (iframe) iframe.parentNode.removeChild(iframe); } }()); } // An inner object implementing URLUtils (either a native URL // object or an HTMLAnchorElement instance) is used to perform the // URL algorithms. var instance = URLUtils(url || ''); var self = this; var query_object = new URLSearchParams( instance.search ? instance.search.substring(1) : null); query_object._url_object = self; Object.defineProperties(self, { href: { get: function () { return instance.href; }, set: function (v) { instance.href = v; tidy_instance(); update_steps(); }, enumerable: true, configurable: true }, origin: { get: function () { if (this.protocol.toLowerCase() === "data:") { return null } if ('origin' in instance) return instance.origin; return this.protocol + '//' + this.host; }, enumerable: true, configurable: true }, protocol: { get: function () { return instance.protocol; }, set: function (v) { instance.protocol = v; }, enumerable: true, configurable: true }, username: { get: function () { return instance.username; }, set: function (v) { instance.username = v; }, enumerable: true, configurable: true }, password: { get: function () { return instance.password; }, set: function (v) { instance.password = v; }, enumerable: true, configurable: true }, host: { get: function () { // IE returns default port in |host| var re = {'http:': /:80$/, 'https:': /:443$/, 'ftp:': /:21$/}[instance.protocol]; return re ? instance.host.replace(re, '') : instance.host; }, set: function (v) { instance.host = v; }, enumerable: true, configurable: true }, hostname: { get: function () { return instance.hostname; }, set: function (v) { instance.hostname = v; }, enumerable: true, configurable: true }, port: { get: function () { return instance.port; }, set: function (v) { instance.port = v; }, enumerable: true, configurable: true }, pathname: { get: function () { // IE does not include leading '/' in |pathname| if (instance.pathname.charAt(0) !== '/') return '/' + instance.pathname; return instance.pathname; }, set: function (v) { instance.pathname = v; }, enumerable: true, configurable: true }, search: { get: function () { return instance.search; }, set: function (v) { if (instance.search === v) return; instance.search = v; tidy_instance(); update_steps(); }, enumerable: true, configurable: true }, searchParams: { get: function () { return query_object; }, enumerable: true, configurable: true }, hash: { get: function () { return instance.hash; }, set: function (v) { instance.hash = v; tidy_instance(); }, enumerable: true, configurable: true }, toString: { value: function() { return instance.toString(); }, enumerable: false, configurable: true }, valueOf: { value: function() { return instance.valueOf(); }, enumerable: false, configurable: true } }); function tidy_instance() { var href = instance.href.replace(/#$|\?$|\?(?=#)/g, ''); if (instance.href !== href) instance.href = href; } function update_steps() { query_object._setList(instance.search ? urlencoded_parse(instance.search.substring(1)) : []); query_object._update_steps(); } return self; } if (origURL) { for (var i in origURL) { if (Object.prototype.hasOwnProperty.call(origURL, i) && typeof origURL[i] === 'function') URL[i] = origURL[i]; } } global.URL = URL; global.URLSearchParams = URLSearchParams; })(); // Patch native URLSearchParams constructor to handle sequences/records // if necessary. (function() { if (new global.URLSearchParams([['a', 1]]).get('a') === '1' && new global.URLSearchParams({a: 1}).get('a') === '1') return; var orig = global.URLSearchParams; global.URLSearchParams = function(init) { if (init && typeof init === 'object' && isSequence(init)) { var o = new orig(); Array.from(init).forEach(function (e) { if (!isSequence(e)) throw TypeError(); var nv = Array.from(e); if (nv.length !== 2) throw TypeError(); o.append(nv[0], nv[1]); }); return o; } else if (init && typeof init === 'object') { o = new orig(); Object.keys(init).forEach(function(key) { o.set(key, init[key]); }); return o; } else { return new orig(init); } }; })(); }(self)); } if (!("fetch"in self&&"Request"in self&&function(){try{return"signal"in new Request("")}catch(e){return!1}}() )) { // fetch (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : typeof define === 'function' && define.amd ? define(['exports'], factory) : (factory((global.WHATWGFetch = {}))); }(this, (function (exports) { 'use strict'; var global = (typeof globalThis !== 'undefined' && globalThis) || (typeof self !== 'undefined' && self) || (typeof global !== 'undefined' && global); var support = { searchParams: 'URLSearchParams' in global, iterable: 'Symbol' in global && 'iterator' in Symbol, blob: 'FileReader' in global && 'Blob' in global && (function() { try { new Blob(); return true } catch (e) { return false } })(), formData: 'FormData' in global, arrayBuffer: 'ArrayBuffer' in global }; function isDataView(obj) { return obj && DataView.prototype.isPrototypeOf(obj) } if (support.arrayBuffer) { var viewClasses = [ '[object Int8Array]', '[object Uint8Array]', '[object Uint8ClampedArray]', '[object Int16Array]', '[object Uint16Array]', '[object Int32Array]', '[object Uint32Array]', '[object Float32Array]', '[object Float64Array]' ]; var isArrayBufferView = ArrayBuffer.isView || function(obj) { return obj && viewClasses.indexOf(Object.prototype.toString.call(obj)) > -1 }; } function normalizeName(name) { if (typeof name !== 'string') { name = String(name); } if (/[^a-z0-9\-#$%&'*+.^_`|~!]/i.test(name) || name === '') { throw new TypeError('Invalid character in header field name: "' + name + '"') } return name.toLowerCase() } function normalizeValue(value) { if (typeof value !== 'string') { value = String(value); } return value } // Build a destructive iterator for the value list function iteratorFor(items) { var iterator = { next: function() { var value = items.shift(); return {done: value === undefined, value: value} } }; if (support.iterable) { iterator[Symbol.iterator] = function() { return iterator }; } return iterator } function Headers(headers) { this.map = {}; if (headers instanceof Headers) { headers.forEach(function(value, name) { this.append(name, value); }, this); } else if (Array.isArray(headers)) { headers.forEach(function(header) { this.append(header[0], header[1]); }, this); } else if (headers) { Object.getOwnPropertyNames(headers).forEach(function(name) { this.append(name, headers[name]); }, this); } } Headers.prototype.append = function(name, value) { name = normalizeName(name); value = normalizeValue(value); var oldValue = this.map[name]; this.map[name] = oldValue ? oldValue + ', ' + value : value; }; Headers.prototype['delete'] = function(name) { delete this.map[normalizeName(name)]; }; Headers.prototype.get = function(name) { name = normalizeName(name); return this.has(name) ? this.map[name] : null }; Headers.prototype.has = function(name) { return this.map.hasOwnProperty(normalizeName(name)) }; Headers.prototype.set = function(name, value) { this.map[normalizeName(name)] = normalizeValue(value); }; Headers.prototype.forEach = function(callback, thisArg) { for (var name in this.map) { if (this.map.hasOwnProperty(name)) { callback.call(thisArg, this.map[name], name, this); } } }; Headers.prototype.keys = function() { var items = []; this.forEach(function(value, name) { items.push(name); }); return iteratorFor(items) }; Headers.prototype.values = function() { var items = []; this.forEach(function(value) { items.push(value); }); return iteratorFor(items) }; Headers.prototype.entries = function() { var items = []; this.forEach(function(value, name) { items.push([name, value]); }); return iteratorFor(items) }; if (support.iterable) { Headers.prototype[Symbol.iterator] = Headers.prototype.entries; } function consumed(body) { if (body.bodyUsed) { return Promise.reject(new TypeError('Already read')) } body.bodyUsed = true; } function fileReaderReady(reader) { return new Promise(function(resolve, reject) { reader.onload = function() { resolve(reader.result); }; reader.onerror = function() { reject(reader.error); }; }) } function readBlobAsArrayBuffer(blob) { var reader = new FileReader(); var promise = fileReaderReady(reader); reader.readAsArrayBuffer(blob); return promise } function readBlobAsText(blob) { var reader = new FileReader(); var promise = fileReaderReady(reader); reader.readAsText(blob); return promise } function readArrayBufferAsText(buf) { var view = new Uint8Array(buf); var chars = new Array(view.length); for (var i = 0; i < view.length; i++) { chars[i] = String.fromCharCode(view[i]); } return chars.join('') } function bufferClone(buf) { if (buf.slice) { return buf.slice(0) } else { var view = new Uint8Array(buf.byteLength); view.set(new Uint8Array(buf)); return view.buffer } } function Body() { this.bodyUsed = false; this._initBody = function(body) { /* fetch-mock wraps the Response object in an ES6 Proxy to provide useful test harness features such as flush. However, on ES5 browsers without fetch or Proxy support pollyfills must be used; the proxy-pollyfill is unable to proxy an attribute unless it exists on the object before the Proxy is created. This change ensures Response.bodyUsed exists on the instance, while maintaining the semantic of setting Request.bodyUsed in the constructor before _initBody is called. */ this.bodyUsed = this.bodyUsed; this._bodyInit = body; if (!body) { this._bodyText = ''; } else if (typeof body === 'string') { this._bodyText = body; } else if (support.blob && Blob.prototype.isPrototypeOf(body)) { this._bodyBlob = body; } else if (support.formData && FormData.prototype.isPrototypeOf(body)) { this._bodyFormData = body; } else if (support.searchParams && URLSearchParams.prototype.isPrototypeOf(body)) { this._bodyText = body.toString(); } else if (support.arrayBuffer && support.blob && isDataView(body)) { this._bodyArrayBuffer = bufferClone(body.buffer); // IE 10-11 can't handle a DataView body. this._bodyInit = new Blob([this._bodyArrayBuffer]); } else if (support.arrayBuffer && (ArrayBuffer.prototype.isPrototypeOf(body) || isArrayBufferView(body))) { this._bodyArrayBuffer = bufferClone(body); } else { this._bodyText = body = Object.prototype.toString.call(body); } if (!this.headers.get('content-type')) { if (typeof body === 'string') { this.headers.set('content-type', 'text/plain;charset=UTF-8'); } else if (this._bodyBlob && this._bodyBlob.type) { this.headers.set('content-type', this._bodyBlob.type); } else if (support.searchParams && URLSearchParams.prototype.isPrototypeOf(body)) { this.headers.set('content-type', 'application/x-www-form-urlencoded;charset=UTF-8'); } } }; if (support.blob) { this.blob = function() { var rejected = consumed(this); if (rejected) { return rejected } if (this._bodyBlob) { return Promise.resolve(this._bodyBlob) } else if (this._bodyArrayBuffer) { return Promise.resolve(new Blob([this._bodyArrayBuffer])) } else if (this._bodyFormData) { throw new Error('could not read FormData body as blob') } else { return Promise.resolve(new Blob([this._bodyText])) } }; this.arrayBuffer = function() { if (this._bodyArrayBuffer) { var isConsumed = consumed(this); if (isConsumed) { return isConsumed } if (ArrayBuffer.isView(this._bodyArrayBuffer)) { return Promise.resolve( this._bodyArrayBuffer.buffer.slice( this._bodyArrayBuffer.byteOffset, this._bodyArrayBuffer.byteOffset + this._bodyArrayBuffer.byteLength ) ) } else { return Promise.resolve(this._bodyArrayBuffer) } } else { return this.blob().then(readBlobAsArrayBuffer) } }; } this.text = function() { var rejected = consumed(this); if (rejected) { return rejected } if (this._bodyBlob) { return readBlobAsText(this._bodyBlob) } else if (this._bodyArrayBuffer) { return Promise.resolve(readArrayBufferAsText(this._bodyArrayBuffer)) } else if (this._bodyFormData) { throw new Error('could not read FormData body as text') } else { return Promise.resolve(this._bodyText) } }; if (support.formData) { this.formData = function() { return this.text().then(decode) }; } this.json = function() { return this.text().then(JSON.parse) }; return this } // HTTP methods whose capitalization should be normalized var methods = ['DELETE', 'GET', 'HEAD', 'OPTIONS', 'POST', 'PUT']; function normalizeMethod(method) { var upcased = method.toUpperCase(); return methods.indexOf(upcased) > -1 ? upcased : method } function Request(input, options) { if (!(this instanceof Request)) { throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.') } options = options || {}; var body = options.body; if (input instanceof Request) { if (input.bodyUsed) { throw new TypeError('Already read') } this.url = input.url; this.credentials = input.credentials; if (!options.headers) { this.headers = new Headers(input.headers); } this.method = input.method; this.mode = input.mode; this.signal = input.signal; if (!body && input._bodyInit != null) { body = input._bodyInit; input.bodyUsed = true; } } else { this.url = String(input); } this.credentials = options.credentials || this.credentials || 'same-origin'; if (options.headers || !this.headers) { this.headers = new Headers(options.headers); } this.method = normalizeMethod(options.method || this.method || 'GET'); this.mode = options.mode || this.mode || null; this.signal = options.signal || this.signal; this.referrer = null; if ((this.method === 'GET' || this.method === 'HEAD') && body) { throw new TypeError('Body not allowed for GET or HEAD requests') } this._initBody(body); if (this.method === 'GET' || this.method === 'HEAD') { if (options.cache === 'no-store' || options.cache === 'no-cache') { // Search for a '_' parameter in the query string var reParamSearch = /([?&])_=[^&]*/; if (reParamSearch.test(this.url)) { // If it already exists then set the value with the current time this.url = this.url.replace(reParamSearch, '$1_=' + new Date().getTime()); } else { // Otherwise add a new '_' parameter to the end with the current time var reQueryString = /\?/; this.url += (reQueryString.test(this.url) ? '&' : '?') + '_=' + new Date().getTime(); } } } } Request.prototype.clone = function() { return new Request(this, {body: this._bodyInit}) }; function decode(body) { var form = new FormData(); body .trim() .split('&') .forEach(function(bytes) { if (bytes) { var split = bytes.split('='); var name = split.shift().replace(/\+/g, ' '); var value = split.join('=').replace(/\+/g, ' '); form.append(decodeURIComponent(name), decodeURIComponent(value)); } }); return form } function parseHeaders(rawHeaders) { var headers = new Headers(); // Replace instances of \r\n and \n followed by at least one space or horizontal tab with a space // https://tools.ietf.org/html/rfc7230#section-3.2 var preProcessedHeaders = rawHeaders.replace(/\r?\n[\t ]+/g, ' '); // Avoiding split via regex to work around a common IE11 bug with the core-js 3.6.0 regex polyfill // https://github.com/github/fetch/issues/748 // https://github.com/zloirock/core-js/issues/751 preProcessedHeaders .split('\r') .map(function(header) { return header.indexOf('\n') === 0 ? header.substr(1, header.length) : header }) .forEach(function(line) { var parts = line.split(':'); var key = parts.shift().trim(); if (key) { var value = parts.join(':').trim(); headers.append(key, value); } }); return headers } Body.call(Request.prototype); function Response(bodyInit, options) { if (!(this instanceof Response)) { throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.') } if (!options) { options = {}; } this.type = 'default'; this.status = options.status === undefined ? 200 : options.status; this.ok = this.status >= 200 && this.status < 300; this.statusText = options.statusText === undefined ? '' : '' + options.statusText; this.headers = new Headers(options.headers); this.url = options.url || ''; this._initBody(bodyInit); } Body.call(Response.prototype); Response.prototype.clone = function() { return new Response(this._bodyInit, { status: this.status, statusText: this.statusText, headers: new Headers(this.headers), url: this.url }) }; Response.error = function() { var response = new Response(null, {status: 0, statusText: ''}); response.type = 'error'; return response }; var redirectStatuses = [301, 302, 303, 307, 308]; Response.redirect = function(url, status) { if (redirectStatuses.indexOf(status) === -1) { throw new RangeError('Invalid status code') } return new Response(null, {status: status, headers: {location: url}}) }; exports.DOMException = global.DOMException; try { new exports.DOMException(); } catch (err) { exports.DOMException = function(message, name) { this.message = message; this.name = name; var error = Error(message); this.stack = error.stack; }; exports.DOMException.prototype = Object.create(Error.prototype); exports.DOMException.prototype.constructor = exports.DOMException; } function fetch(input, init) { return new Promise(function(resolve, reject) { var request = new Request(input, init); if (request.signal && request.signal.aborted) { return reject(new exports.DOMException('Aborted', 'AbortError')) } var xhr = new XMLHttpRequest(); function abortXhr() { xhr.abort(); } xhr.onload = function() { var options = { status: xhr.status, statusText: xhr.statusText, headers: parseHeaders(xhr.getAllResponseHeaders() || '') }; options.url = 'responseURL' in xhr ? xhr.responseURL : options.headers.get('X-Request-URL'); var body = 'response' in xhr ? xhr.response : xhr.responseText; setTimeout(function() { resolve(new Response(body, options)); }, 0); }; xhr.onerror = function() { setTimeout(function() { reject(new TypeError('Network request failed')); }, 0); }; xhr.ontimeout = function() { setTimeout(function() { reject(new TypeError('Network request failed')); }, 0); }; xhr.onabort = function() { setTimeout(function() { reject(new exports.DOMException('Aborted', 'AbortError')); }, 0); }; function fixUrl(url) { try { return url === '' && global.location.href ? global.location.href : url } catch (e) { return url } } xhr.open(request.method, fixUrl(request.url), true); if (request.credentials === 'include') { xhr.withCredentials = true; } else if (request.credentials === 'omit') { xhr.withCredentials = false; } if ('responseType' in xhr) { if (support.blob) { xhr.responseType = 'blob'; } else if ( support.arrayBuffer && request.headers.get('Content-Type') && request.headers.get('Content-Type').indexOf('application/octet-stream') !== -1 ) { xhr.responseType = 'arraybuffer'; } } if (init && typeof init.headers === 'object' && !(init.headers instanceof Headers)) { Object.getOwnPropertyNames(init.headers).forEach(function(name) { xhr.setRequestHeader(name, normalizeValue(init.headers[name])); }); } else { request.headers.forEach(function(value, name) { xhr.setRequestHeader(name, value); }); } if (request.signal) { request.signal.addEventListener('abort', abortXhr); xhr.onreadystatechange = function() { // DONE (success or failure) if (xhr.readyState === 4) { request.signal.removeEventListener('abort', abortXhr); } }; } xhr.send(typeof request._bodyInit === 'undefined' ? null : request._bodyInit); }) } fetch.polyfill = true; global.fetch = fetch; global.Headers = Headers; global.Request = Request; global.Response = Response; exports.Headers = Headers; exports.Request = Request; exports.Response = Response; exports.fetch = fetch; Object.defineProperty(exports, '__esModule', { value: true }); }))); } if (!((function(){try{if("WeakMap"in self&&0===self.WeakMap.length){var e={},t=new self.WeakMap([[e,"test"]]) return"test"===t.get(e)&&!1===t.delete(0)&&"toStringTag"in self.Symbol&&void 0!==t[self.Symbol.toStringTag]}return!1}catch(e){return!1}})() )) { // WeakMap /* globals Symbol, OrdinaryCreateFromConstructor, IsCallable, GetIterator, IteratorStep, IteratorValue, IteratorClose, Get, Call, CreateMethodProperty, Type, SameValue */ (function (global) { // Deleted map items mess with iterator pointers, so rather than removing them mark them as deleted. Can't use undefined or null since those both valid keys so use a private symbol. var undefMarker = Symbol('undef'); // 23.3.1.1 WeakMap ( [ iterable ] ) var WeakMap = function WeakMap(/* iterable */) { // 1. If NewTarget is undefined, throw a TypeError exception. if (!(this instanceof WeakMap)) { throw new TypeError('Constructor WeakMap requires "new"'); } // 2. Let map be ? OrdinaryCreateFromConstructor(NewTarget, "%WeakMapPrototype%", « [[WeakMapData]] »). var map = OrdinaryCreateFromConstructor(this, WeakMap.prototype, { _keys: [], _values: [], _es6WeakMap: true }); // 3. Set map.[[WeakMapData]] to a new empty List. // Polyfill.io - This step was done as part of step two. // 4. If iterable is not present, let iterable be undefined. var iterable = arguments.length > 0 ? arguments[0] : undefined; // 5. If iterable is either undefined or null, return map. if (iterable === null || iterable === undefined) { return map; } // 6. Let adder be ? Get(map, "set"). var adder = Get(map, "set"); // 7. If IsCallable(adder) is false, throw a TypeError exception. if (!IsCallable(adder)) { throw new TypeError("WeakMap.prototype.set is not a function"); } // 8. Let iteratorRecord be ? GetIterator(iterable). try { var iteratorRecord = GetIterator(iterable); // 9. Repeat, // eslint-disable-next-line no-constant-condition while (true) { // a. Let next be ? IteratorStep(iteratorRecord). var next = IteratorStep(iteratorRecord); // b. If next is false, return map. if (next === false) { return map; } // c. Let nextItem be ? IteratorValue(next). var nextItem = IteratorValue(next); // d. If Type(nextItem) is not Object, then if (Type(nextItem) !== 'object') { // i. Let error be Completion{[[Type]]: throw, [[Value]]: a newly created TypeError object, [[Target]]: empty}. try { throw new TypeError('Iterator value ' + nextItem + ' is not an entry object'); } catch (error) { // ii. Return ? IteratorClose(iteratorRecord, error). return IteratorClose(iteratorRecord, error); } } try { // Polyfill.io - The try catch accounts for steps: f, h, and j. // e. Let k be Get(nextItem, "0"). var k = Get(nextItem, "0"); // f. If k is an abrupt completion, return ? IteratorClose(iteratorRecord, k). // g. Let v be Get(nextItem, "1"). var v = Get(nextItem, "1"); // h. If v is an abrupt completion, return ? IteratorClose(iteratorRecord, v). // i. Let status be Call(adder, map, « k.[[Value]], v.[[Value]] »). Call(adder, map, [k, v]); } catch (e) { // j. If status is an abrupt completion, return ? IteratorClose(iteratorRecord, status). return IteratorClose(iteratorRecord, e); } } } catch (e) { // Polyfill.io - For user agents which do not have iteration methods on argument objects or arrays, we can special case those. if (Array.isArray(iterable) || Object.prototype.toString.call(iterable) === '[object Arguments]') { var index; var length = iterable.length; for (index = 0; index < length; index++) { k = iterable[index][0]; v = iterable[index][1]; Call(adder, map, [k, v]); } } } return map; }; // 23.3.2.1 WeakMap.prototype // The initial value of WeakMap.prototype is the intrinsic object %WeakMapPrototype%. // This property has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: false }. Object.defineProperty(WeakMap, 'prototype', { configurable: false, enumerable: false, writable: false, value: {} }); // 23.3.3.1 WeakMap.prototype.constructor CreateMethodProperty(WeakMap.prototype, 'constructor', WeakMap); // 23.3.3.2 WeakMap.prototype.delete ( key ) CreateMethodProperty(WeakMap.prototype, 'delete', function (key) { // 1. Let M be the this value. var M = this; // 2. If Type(M) is not Object, throw a TypeError exception. if (Type(M) !== 'object') { throw new TypeError('Method WeakMap.prototype.clear called on incompatible receiver ' + Object.prototype.toString.call(M)); } // 3. If M does not have a [[WeakMapData]] internal slot, throw a TypeError exception. if (M._es6WeakMap !== true) { throw new TypeError('Method WeakMap.prototype.clear called on incompatible receiver ' + Object.prototype.toString.call(M)); } // 4. Let entries be the List that is M.[[WeakMapData]]. var entries = M._keys; // 5. If Type(key) is not Object, return false. if (Type(key) !== 'object') { return false; } // 6. For each Record {[[Key]], [[Value]]} p that is an element of entries, do for (var i = 0; i < entries.length; i++) { // a. If p.[[Key]] is not empty and SameValue(p.[[Key]], key) is true, then if (M._keys[i] !== undefMarker && SameValue(M._keys[i], key)) { // i. Set p.[[Key]] to empty. this._keys[i] = undefMarker; // ii. Set p.[[Value]] to empty. this._values[i] = undefMarker; this._size = --this._size; // iii. Return true. return true; } } // 7. Return false. return false; }); // 23.3.3.3 WeakMap.prototype.get ( key ) CreateMethodProperty(WeakMap.prototype, 'get', function get(key) { // 1. Let M be the this value. var M = this; // 2. If Type(M) is not Object, throw a TypeError exception. if (Type(M) !== 'object') { throw new TypeError('Method WeakMap.prototype.get called on incompatible receiver ' + Object.prototype.toString.call(M)); } // 3. If M does not have a [[WeakMapData]] internal slot, throw a TypeError exception. if (M._es6WeakMap !== true) { throw new TypeError('Method WeakMap.prototype.get called on incompatible receiver ' + Object.prototype.toString.call(M)); } // 4. Let entries be the List that is M.[[WeakMapData]]. var entries = M._keys; // 5. If Type(key) is not Object, return undefined. if (Type(key) !== 'object') { return undefined; } // 6. For each Record {[[Key]], [[Value]]} p that is an element of entries, do for (var i = 0; i < entries.length; i++) { // a. If p.[[Key]] is not empty and SameValue(p.[[Key]], key) is true, return p.[[Value]]. if (M._keys[i] !== undefMarker && SameValue(M._keys[i], key)) { return M._values[i]; } } // 7. Return undefined. return undefined; }); // 23.3.3.4 WeakMap.prototype.has ( key ) CreateMethodProperty(WeakMap.prototype, 'has', function has(key) { // 1. Let M be the this value. var M = this; // 2. If Type(M) is not Object, throw a TypeError exception. if (typeof M !== 'object') { throw new TypeError('Method WeakMap.prototype.has called on incompatible receiver ' + Object.prototype.toString.call(M)); } // 3. If M does not have a [[WeakMapData]] internal slot, throw a TypeError exception. if (M._es6WeakMap !== true) { throw new TypeError('Method WeakMap.prototype.has called on incompatible receiver ' + Object.prototype.toString.call(M)); } // 4. Let entries be the List that is M.[[WeakMapData]]. var entries = M._keys; // 5. If Type(key) is not Object, return false. if (Type(key) !== 'object') { return false; } // 6. For each Record {[[Key]], [[Value]]} p that is an element of entries, do for (var i = 0; i < entries.length; i++) { // a. If p.[[Key]] is not empty and SameValue(p.[[Key]], key) is true, return true. if (M._keys[i] !== undefMarker && SameValue(M._keys[i], key)) { return true; } } // 7. Return false. return false; }); // 23.3.3.5 WeakMap.prototype.set ( key, value ) CreateMethodProperty(WeakMap.prototype, 'set', function set(key, value) { // 1. Let M be the this value. var M = this; // 2. If Type(M) is not Object, throw a TypeError exception. if (Type(M) !== 'object') { throw new TypeError('Method WeakMap.prototype.set called on incompatible receiver ' + Object.prototype.toString.call(M)); } // 3. If M does not have a [[WeakMapData]] internal slot, throw a TypeError exception. if (M._es6WeakMap !== true) { throw new TypeError('Method WeakMap.prototype.set called on incompatible receiver ' + Object.prototype.toString.call(M)); } // 4. Let entries be the List that is M.[[WeakMapData]]. var entries = M._keys; // 5. If Type(key) is not Object, throw a TypeError exception. if (Type(key) !== 'object') { throw new TypeError("Invalid value used as weak map key"); } // 6. For each Record {[[Key]], [[Value]]} p that is an element of entries, do for (var i = 0; i < entries.length; i++) { // a. If p.[[Key]] is not empty and SameValue(p.[[Key]], key) is true, then if (M._keys[i] !== undefMarker && SameValue(M._keys[i], key)) { // i. Set p.[[Value]] to value. M._values[i] = value; // ii. Return M. return M; } } // 7. Let p be the Record {[[Key]]: key, [[Value]]: value}. var p = { '[[Key]]': key, '[[Value]]': value }; // 8. Append p as the last element of entries. M._keys.push(p['[[Key]]']); M._values.push(p['[[Value]]']); // 9. Return M. return M; }); // 23.3.3.6 WeakMap.prototype [ @@toStringTag ] // The initial value of the @@toStringTag property is the String value "WeakMap". // This property has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: true }. Object.defineProperty(WeakMap.prototype, Symbol.toStringTag, { configurable: true, enumerable: false, writable: false, value: 'WeakMap' }); // Polyfill.io - Safari 8 implements WeakMap.name but as a non-writable property, which means it would throw an error if we try and write to it here. if (!('name' in WeakMap)) { // 19.2.4.2 name Object.defineProperty(WeakMap, 'name', { configurable: true, enumerable: false, writable: false, value: 'WeakMap' }); } // Export the object CreateMethodProperty(global, 'WeakMap', WeakMap); }(self)); } if (!("Intl"in self&&"Locale"in self.Intl )) { // Intl.Locale (function() { var __create = Object.create; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __getProtoOf = Object.getPrototypeOf; var __hasOwnProp = Object.prototype.hasOwnProperty; var __markAsModule = function(target) { return __defProp(target, "__esModule", {value: true}); }; var __commonJS = function(cb, mod) { return function __require() { return mod || (0, cb[Object.keys(cb)[0]])((mod = {exports: {}}).exports, mod), mod.exports; }; }; var __reExport = function(target, module, desc) { if (module && typeof module === "object" || typeof module === "function") for (var keys = __getOwnPropNames(module), i = 0, n = keys.length, key; i < n; i++) { key = keys[i]; if (!__hasOwnProp.call(target, key) && key !== "default") __defProp(target, key, {get: function(k) { return module[k]; }.bind(null, key), enumerable: !(desc = __getOwnPropDesc(module, key)) || desc.enumerable}); } return target; }; var __toModule = function(module) { return __reExport(__markAsModule(__defProp(module != null ? __create(__getProtoOf(module)) : {}, "default", module && module.__esModule && "default" in module ? {get: function() { return module.default; }, enumerable: true} : {value: module, enumerable: true})), module); }; // node_modules/tslib/tslib.js var require_tslib = __commonJS({ "node_modules/tslib/tslib.js": function(exports, module) { var __extends2; var __assign5; var __rest; var __decorate; var __param; var __metadata; var __awaiter; var __generator; var __exportStar; var __values; var __read; var __spread; var __spreadArrays; var __spreadArray2; var __await; var __asyncGenerator; var __asyncDelegator; var __asyncValues; var __makeTemplateObject; var __importStar; var __importDefault; var __classPrivateFieldGet; var __classPrivateFieldSet; var __createBinding; (function(factory) { var root = typeof global === "object" ? global : typeof self === "object" ? self : typeof this === "object" ? this : {}; if (typeof define === "function" && define.amd) { define("tslib", ["exports"], function(exports2) { factory(createExporter(root, createExporter(exports2))); }); } else if (typeof module === "object" && typeof module.exports === "object") { factory(createExporter(root, createExporter(module.exports))); } else { factory(createExporter(root)); } function createExporter(exports2, previous) { if (exports2 !== root) { if (typeof Object.create === "function") { Object.defineProperty(exports2, "__esModule", {value: true}); } else { exports2.__esModule = true; } } return function(id, v) { return exports2[id] = previous ? previous(id, v) : v; }; } })(function(exporter) { var extendStatics = Object.setPrototypeOf || {__proto__: []} instanceof Array && function(d, b) { d.__proto__ = b; } || function(d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; __extends2 = function(d, b) { if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; __assign5 = Object.assign || function(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; __rest = function(s, e) { var t = {}; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p]; if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]]; } return t; }; __decorate = function(decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; __param = function(paramIndex, decorator) { return function(target, key) { decorator(target, key, paramIndex); }; }; __metadata = function(metadataKey, metadataValue) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue); }; __awaiter = function(thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function(resolve) { resolve(value); }); } return new (P || (P = Promise))(function(resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; __generator = function(thisArg, body) { var _ = {label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: []}, f, y, t, g; return g = {next: verb(0), "throw": verb(1), "return": verb(2)}, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; function verb(n) { return function(v) { return step([n, v]); }; } function step(op) { if (f) throw new TypeError("Generator is already executing."); while (_) try { if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; if (y = 0, t) op = [op[0] & 2, t.value]; switch (op[0]) { case 0: case 1: t = op; break; case 4: _.label++; return {value: op[1], done: false}; case 5: _.label++; y = op[1]; op = [0]; continue; case 7: op = _.ops.pop(); _.trys.pop(); continue; default: if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } if (op[0] === 3 && (!t || op[1] > t[0] && op[1] < t[3])) { _.label = op[1]; break; } if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } if (t[2]) _.ops.pop(); _.trys.pop(); continue; } op = body.call(thisArg, _); } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } if (op[0] & 5) throw op[1]; return {value: op[0] ? op[1] : void 0, done: true}; } }; __exportStar = function(m, o) { for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p); }; __createBinding = Object.create ? function(o, m, k, k2) { if (k2 === void 0) k2 = k; Object.defineProperty(o, k2, {enumerable: true, get: function() { return m[k]; }}); } : function(o, m, k, k2) { if (k2 === void 0) k2 = k; o[k2] = m[k]; }; __values = function(o) { var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; if (m) return m.call(o); if (o && typeof o.length === "number") return { next: function() { if (o && i >= o.length) o = void 0; return {value: o && o[i++], done: !o}; } }; throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined."); }; __read = function(o, n) { var m = typeof Symbol === "function" && o[Symbol.iterator]; if (!m) return o; var i = m.call(o), r, ar = [], e; try { while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value); } catch (error) { e = {error: error}; } finally { try { if (r && !r.done && (m = i["return"])) m.call(i); } finally { if (e) throw e.error; } } return ar; }; __spread = function() { for (var ar = [], i = 0; i < arguments.length; i++) ar = ar.concat(__read(arguments[i])); return ar; }; __spreadArrays = function() { for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length; for (var r = Array(s), k = 0, i = 0; i < il; i++) for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++) r[k] = a[j]; return r; }; __spreadArray2 = function(to, from) { for (var i = 0, il = from.length, j = to.length; i < il; i++, j++) to[j] = from[i]; return to; }; __await = function(v) { return this instanceof __await ? (this.v = v, this) : new __await(v); }; __asyncGenerator = function(thisArg, _arguments, generator) { if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); var g = generator.apply(thisArg, _arguments || []), i, q = []; return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function() { return this; }, i; function verb(n) { if (g[n]) i[n] = function(v) { return new Promise(function(a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; } function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } } function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); } function fulfill(value) { resume("next", value); } function reject(value) { resume("throw", value); } function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); } }; __asyncDelegator = function(o) { var i, p; return i = {}, verb("next"), verb("throw", function(e) { throw e; }), verb("return"), i[Symbol.iterator] = function() { return this; }, i; function verb(n, f) { i[n] = o[n] ? function(v) { return (p = !p) ? {value: __await(o[n](v)), done: n === "return"} : f ? f(v) : v; } : f; } }; __asyncValues = function(o) { if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined."); var m = o[Symbol.asyncIterator], i; return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function() { return this; }, i); function verb(n) { i[n] = o[n] && function(v) { return new Promise(function(resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; } function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v2) { resolve({value: v2, done: d}); }, reject); } }; __makeTemplateObject = function(cooked, raw) { if (Object.defineProperty) { Object.defineProperty(cooked, "raw", {value: raw}); } else { cooked.raw = raw; } return cooked; }; var __setModuleDefault = Object.create ? function(o, v) { Object.defineProperty(o, "default", {enumerable: true, value: v}); } : function(o, v) { o["default"] = v; }; __importStar = function(mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) { for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); } __setModuleDefault(result, mod); return result; }; __importDefault = function(mod) { return mod && mod.__esModule ? mod : {"default": mod}; }; __classPrivateFieldGet = function(receiver, state, kind, f) { if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter"); if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it"); return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver); }; __classPrivateFieldSet = function(receiver, state, value, kind, f) { if (kind === "m") throw new TypeError("Private method is not writable"); if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter"); if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it"); return kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value), value; }; exporter("__extends", __extends2); exporter("__assign", __assign5); exporter("__rest", __rest); exporter("__decorate", __decorate); exporter("__param", __param); exporter("__metadata", __metadata); exporter("__awaiter", __awaiter); exporter("__generator", __generator); exporter("__exportStar", __exportStar); exporter("__createBinding", __createBinding); exporter("__values", __values); exporter("__read", __read); exporter("__spread", __spread); exporter("__spreadArrays", __spreadArrays); exporter("__spreadArray", __spreadArray2); exporter("__await", __await); exporter("__asyncGenerator", __asyncGenerator); exporter("__asyncDelegator", __asyncDelegator); exporter("__asyncValues", __asyncValues); exporter("__makeTemplateObject", __makeTemplateObject); exporter("__importStar", __importStar); exporter("__importDefault", __importDefault); exporter("__classPrivateFieldGet", __classPrivateFieldGet); exporter("__classPrivateFieldSet", __classPrivateFieldSet); }); } }); // bazel-out/darwin-fastbuild/bin/packages/intl-getcanonicallocales/src/parser.js var require_parser = __commonJS({ "bazel-out/darwin-fastbuild/bin/packages/intl-getcanonicallocales/src/parser.js": function(exports) { "use strict"; Object.defineProperty(exports, "__esModule", {value: true}); exports.parseUnicodeLocaleId = exports.parseUnicodeLanguageId = exports.isUnicodeVariantSubtag = exports.isUnicodeScriptSubtag = exports.isUnicodeRegionSubtag = exports.isStructurallyValidLanguageTag = exports.isUnicodeLanguageSubtag = exports.SEPARATOR = void 0; var tslib_1 = require_tslib(); var ALPHANUM_1_8 = /^[a-z0-9]{1,8}$/i; var ALPHANUM_2_8 = /^[a-z0-9]{2,8}$/i; var ALPHANUM_3_8 = /^[a-z0-9]{3,8}$/i; var KEY_REGEX = /^[a-z0-9][a-z]$/i; var TYPE_REGEX = /^[a-z0-9]{3,8}$/i; var ALPHA_4 = /^[a-z]{4}$/i; var OTHER_EXTENSION_TYPE = /^[0-9a-svwyz]$/i; var UNICODE_REGION_SUBTAG_REGEX = /^([a-z]{2}|[0-9]{3})$/i; var UNICODE_VARIANT_SUBTAG_REGEX = /^([a-z0-9]{5,8}|[0-9][a-z0-9]{3})$/i; var UNICODE_LANGUAGE_SUBTAG_REGEX = /^([a-z]{2,3}|[a-z]{5,8})$/i; var TKEY_REGEX = /^[a-z][0-9]$/i; exports.SEPARATOR = "-"; function isUnicodeLanguageSubtag2(lang) { return UNICODE_LANGUAGE_SUBTAG_REGEX.test(lang); } exports.isUnicodeLanguageSubtag = isUnicodeLanguageSubtag2; function isStructurallyValidLanguageTag2(tag) { try { parseUnicodeLanguageId2(tag.split(exports.SEPARATOR)); } catch (e) { return false; } return true; } exports.isStructurallyValidLanguageTag = isStructurallyValidLanguageTag2; function isUnicodeRegionSubtag2(region) { return UNICODE_REGION_SUBTAG_REGEX.test(region); } exports.isUnicodeRegionSubtag = isUnicodeRegionSubtag2; function isUnicodeScriptSubtag2(script) { return ALPHA_4.test(script); } exports.isUnicodeScriptSubtag = isUnicodeScriptSubtag2; function isUnicodeVariantSubtag(variant) { return UNICODE_VARIANT_SUBTAG_REGEX.test(variant); } exports.isUnicodeVariantSubtag = isUnicodeVariantSubtag; function parseUnicodeLanguageId2(chunks) { if (typeof chunks === "string") { chunks = chunks.split(exports.SEPARATOR); } var lang = chunks.shift(); if (!lang) { throw new RangeError("Missing unicode_language_subtag"); } if (lang === "root") { return {lang: "root", variants: []}; } if (!isUnicodeLanguageSubtag2(lang)) { throw new RangeError("Malformed unicode_language_subtag"); } var script; if (chunks.length && isUnicodeScriptSubtag2(chunks[0])) { script = chunks.shift(); } var region; if (chunks.length && isUnicodeRegionSubtag2(chunks[0])) { region = chunks.shift(); } var variants = {}; while (chunks.length && isUnicodeVariantSubtag(chunks[0])) { var variant = chunks.shift(); if (variant in variants) { throw new RangeError('Duplicate variant "' + variant + '"'); } variants[variant] = 1; } return { lang: lang, script: script, region: region, variants: Object.keys(variants) }; } exports.parseUnicodeLanguageId = parseUnicodeLanguageId2; function parseUnicodeExtension(chunks) { var keywords = []; var keyword; while (chunks.length && (keyword = parseKeyword(chunks))) { keywords.push(keyword); } if (keywords.length) { return { type: "u", keywords: keywords, attributes: [] }; } var attributes = []; while (chunks.length && ALPHANUM_3_8.test(chunks[0])) { attributes.push(chunks.shift()); } while (chunks.length && (keyword = parseKeyword(chunks))) { keywords.push(keyword); } if (keywords.length || attributes.length) { return { type: "u", attributes: attributes, keywords: keywords }; } throw new RangeError("Malformed unicode_extension"); } function parseKeyword(chunks) { var key; if (!KEY_REGEX.test(chunks[0])) { return; } key = chunks.shift(); var type = []; while (chunks.length && TYPE_REGEX.test(chunks[0])) { type.push(chunks.shift()); } var value = ""; if (type.length) { value = type.join(exports.SEPARATOR); } return [key, value]; } function parseTransformedExtension(chunks) { var lang; try { lang = parseUnicodeLanguageId2(chunks); } catch (e) { } var fields = []; while (chunks.length && TKEY_REGEX.test(chunks[0])) { var key = chunks.shift(); var value = []; while (chunks.length && ALPHANUM_3_8.test(chunks[0])) { value.push(chunks.shift()); } if (!value.length) { throw new RangeError('Missing tvalue for tkey "' + key + '"'); } fields.push([key, value.join(exports.SEPARATOR)]); } if (fields.length) { return { type: "t", fields: fields, lang: lang }; } throw new RangeError("Malformed transformed_extension"); } function parsePuExtension(chunks) { var exts = []; while (chunks.length && ALPHANUM_1_8.test(chunks[0])) { exts.push(chunks.shift()); } if (exts.length) { return { type: "x", value: exts.join(exports.SEPARATOR) }; } throw new RangeError("Malformed private_use_extension"); } function parseOtherExtensionValue(chunks) { var exts = []; while (chunks.length && ALPHANUM_2_8.test(chunks[0])) { exts.push(chunks.shift()); } if (exts.length) { return exts.join(exports.SEPARATOR); } return ""; } function parseExtensions(chunks) { if (!chunks.length) { return {extensions: []}; } var extensions = []; var unicodeExtension; var transformedExtension; var puExtension; var otherExtensionMap = {}; do { var type = chunks.shift(); switch (type) { case "u": case "U": if (unicodeExtension) { throw new RangeError("There can only be 1 -u- extension"); } unicodeExtension = parseUnicodeExtension(chunks); extensions.push(unicodeExtension); break; case "t": case "T": if (transformedExtension) { throw new RangeError("There can only be 1 -t- extension"); } transformedExtension = parseTransformedExtension(chunks); extensions.push(transformedExtension); break; case "x": case "X": if (puExtension) { throw new RangeError("There can only be 1 -x- extension"); } puExtension = parsePuExtension(chunks); extensions.push(puExtension); break; default: if (!OTHER_EXTENSION_TYPE.test(type)) { throw new RangeError("Malformed extension type"); } if (type in otherExtensionMap) { throw new RangeError("There can only be 1 -" + type + "- extension"); } var extension = { type: type, value: parseOtherExtensionValue(chunks) }; otherExtensionMap[extension.type] = extension; extensions.push(extension); break; } } while (chunks.length); return {extensions: extensions}; } function parseUnicodeLocaleId2(locale) { var chunks = locale.split(exports.SEPARATOR); var lang = parseUnicodeLanguageId2(chunks); return tslib_1.__assign({lang: lang}, parseExtensions(chunks)); } exports.parseUnicodeLocaleId = parseUnicodeLocaleId2; } }); // bazel-out/darwin-fastbuild/bin/packages/intl-getcanonicallocales/src/emitter.js var require_emitter = __commonJS({ "bazel-out/darwin-fastbuild/bin/packages/intl-getcanonicallocales/src/emitter.js": function(exports) { "use strict"; Object.defineProperty(exports, "__esModule", {value: true}); exports.emitUnicodeLocaleId = exports.emitUnicodeLanguageId = void 0; var tslib_1 = require_tslib(); function emitUnicodeLanguageId2(lang) { if (!lang) { return ""; } return tslib_1.__spreadArray([lang.lang, lang.script, lang.region], lang.variants || []).filter(Boolean).join("-"); } exports.emitUnicodeLanguageId = emitUnicodeLanguageId2; function emitUnicodeLocaleId2(_a) { var lang = _a.lang, extensions = _a.extensions; var chunks = [emitUnicodeLanguageId2(lang)]; for (var _i = 0, extensions_1 = extensions; _i < extensions_1.length; _i++) { var ext = extensions_1[_i]; chunks.push(ext.type); switch (ext.type) { case "u": chunks.push.apply(chunks, tslib_1.__spreadArray(tslib_1.__spreadArray([], ext.attributes), ext.keywords.reduce(function(all, kv) { return all.concat(kv); }, []))); break; case "t": chunks.push.apply(chunks, tslib_1.__spreadArray([emitUnicodeLanguageId2(ext.lang)], ext.fields.reduce(function(all, kv) { return all.concat(kv); }, []))); break; default: chunks.push(ext.value); break; } } return chunks.filter(Boolean).join("-"); } exports.emitUnicodeLocaleId = emitUnicodeLocaleId2; } }); // bazel-out/darwin-fastbuild/bin/packages/intl-getcanonicallocales/src/data/aliases.js var require_aliases = __commonJS({ "bazel-out/darwin-fastbuild/bin/packages/intl-getcanonicallocales/src/data/aliases.js": function(exports) { "use strict"; Object.defineProperty(exports, "__esModule", {value: true}); exports.variantAlias = exports.scriptAlias = exports.territoryAlias = exports.languageAlias = void 0; exports.languageAlias = { "aa-saaho": "ssy", "aam": "aas", "aar": "aa", "abk": "ab", "adp": "dz", "afr": "af", "agp": "apf", "ais": "ami", "aju": "jrb", "aka": "ak", "alb": "sq", "als": "sq", "amh": "am", "ara": "ar", "arb": "ar", "arg": "an", "arm": "hy", "art-lojban": "jbo", "asd": "snz", "asm": "as", "aue": "ktz", "ava": "av", "ave": "ae", "aym": "ay", "ayr": "ay", "ayx": "nun", "aze": "az", "azj": "az", "bak": "ba", "bam": "bm", "baq": "eu", "baz": "nvo", "bcc": "bal", "bcl": "bik", "bel": "be", "ben": "bn", "bgm": "bcg", "bh": "bho", "bhk": "fbl", "bih": "bho", "bis": "bi", "bjd": "drl", "bjq": "bzc", "bkb": "ebk", "bod": "bo", "bos": "bs", "bre": "br", "btb": "beb", "bul": "bg", "bur": "my", "bxk": "luy", "bxr": "bua", "cat": "ca", "ccq": "rki", "cel-gaulish": "xtg", "ces": "cs", "cha": "ch", "che": "ce", "chi": "zh", "chu": "cu", "chv": "cv", "cjr": "mom", "cka": "cmr", "cld": "syr", "cmk": "xch", "cmn": "zh", "cnr": "sr-ME", "cor": "kw", "cos": "co", "coy": "pij", "cqu": "quh", "cre": "cr", "cwd": "cr", "cym": "cy", "cze": "cs", "daf": "dnj", "dan": "da", "dap": "njz", "deu": "de", "dgo": "doi", "dhd": "mwr", "dik": "din", "diq": "zza", "dit": "dif", "div": "dv", "djl": "dze", "dkl": "aqd", "drh": "mn", "drr": "kzk", "drw": "fa-AF", "dud": "uth", "duj": "dwu", "dut": "nl", "dwl": "dbt", "dzo": "dz", "ekk": "et", "ell": "el", "elp": "amq", "emk": "man", "en-GB-oed": "en-GB-oxendict", "eng": "en", "epo": "eo", "esk": "ik", "est": "et", "eus": "eu", "ewe": "ee", "fao": "fo", "fas": "fa", "fat": "ak", "fij": "fj", "fin": "fi", "fra": "fr", "fre": "fr", "fry": "fy", "fuc": "ff", "ful": "ff", "gav": "dev", "gaz": "om", "gbc": "wny", "gbo": "grb", "geo": "ka", "ger": "de", "gfx": "vaj", "ggn": "gvr", "ggo": "esg", "ggr": "gtu", "gio": "aou", "gla": "gd", "gle": "ga", "glg": "gl", "gli": "kzk", "glv": "gv", "gno": "gon", "gre": "el", "grn": "gn", "gti": "nyc", "gug": "gn", "guj": "gu", "guv": "duz", "gya": "gba", "hat": "ht", "hau": "ha", "hbs": "sr-Latn", "hdn": "hai", "hea": "hmn", "heb": "he", "her": "hz", "him": "srx", "hin": "hi", "hmo": "ho", "hrr": "jal", "hrv": "hr", "hun": "hu", "hy-arevmda": "hyw", "hye": "hy", "i-ami": "ami", "i-bnn": "bnn", "i-default": "en-x-i-default", "i-enochian": "und-x-i-enochian", "i-hak": "hak", "i-klingon": "tlh", "i-lux": "lb", "i-mingo": "see-x-i-mingo", "i-navajo": "nv", "i-pwn": "pwn", "i-tao": "tao", "i-tay": "tay", "i-tsu": "tsu", "ibi": "opa", "ibo": "ig", "ice": "is", "ido": "io", "iii": "ii", "ike": "iu", "iku": "iu", "ile": "ie", "ill": "ilm", "ilw": "gal", "in": "id", "ina": "ia", "ind": "id", "ipk": "ik", "isl": "is", "ita": "it", "iw": "he", "izi": "eza", "jar": "jgk", "jav": "jv", "jeg": "oyb", "ji": "yi", "jpn": "ja", "jw": "jv", "kal": "kl", "kan": "kn", "kas": "ks", "kat": "ka", "kau": "kr", "kaz": "kk", "kdv": "zkd", "kgc": "tdf", "kgd": "ncq", "kgh": "kml", "khk": "mn", "khm": "km", "kik": "ki", "kin": "rw", "kir": "ky", "kmr": "ku", "knc": "kr", "kng": "kg", "knn": "kok", "koj": "kwv", "kom": "kv", "kon": "kg", "kor": "ko", "kpp": "jkm", "kpv": "kv", "krm": "bmf", "ktr": "dtp", "kua": "kj", "kur": "ku", "kvs": "gdj", "kwq": "yam", "kxe": "tvd", "kxl": "kru", "kzh": "dgl", "kzj": "dtp", "kzt": "dtp", "lao": "lo", "lat": "la", "lav": "lv", "lbk": "bnc", "leg": "enl", "lii": "raq", "lim": "li", "lin": "ln", "lit": "lt", "llo": "ngt", "lmm": "rmx", "ltz": "lb", "lub": "lu", "lug": "lg", "lvs": "lv", "mac": "mk", "mah": "mh", "mal": "ml", "mao": "mi", "mar": "mr", "may": "ms", "meg": "cir", "mgx": "jbk", "mhr": "chm", "mkd": "mk", "mlg": "mg", "mlt": "mt", "mnk": "man", "mnt": "wnn", "mo": "ro", "mof": "xnt", "mol": "ro", "mon": "mn", "mri": "mi", "msa": "ms", "mst": "mry", "mup": "raj", "mwd": "dmw", "mwj": "vaj", "mya": "my", "myd": "aog", "myt": "mry", "nad": "xny", "nau": "na", "nav": "nv", "nbf": "nru", "nbl": "nr", "nbx": "ekc", "ncp": "kdz", "nde": "nd", "ndo": "ng", "nep": "ne", "nld": "nl", "nln": "azd", "nlr": "nrk", "nno": "nn", "nns": "nbr", "nnx": "ngv", "no-bok": "nb", "no-bokmal": "nb", "no-nyn": "nn", "no-nynorsk": "nn", "nob": "nb", "noo": "dtd", "nor": "no", "npi": "ne", "nts": "pij", "nxu": "bpp", "nya": "ny", "oci": "oc", "ojg": "oj", "oji": "oj", "ori": "or", "orm": "om", "ory": "or", "oss": "os", "oun": "vaj", "pan": "pa", "pbu": "ps", "pcr": "adx", "per": "fa", "pes": "fa", "pli": "pi", "plt": "mg", "pmc": "huw", "pmu": "phr", "pnb": "lah", "pol": "pl", "por": "pt", "ppa": "bfy", "ppr": "lcq", "prs": "fa-AF", "pry": "prt", "pus": "ps", "puz": "pub", "que": "qu", "quz": "qu", "rmr": "emx", "rmy": "rom", "roh": "rm", "ron": "ro", "rum": "ro", "run": "rn", "rus": "ru", "sag": "sg", "san": "sa", "sap": "aqt", "sca": "hle", "scc": "sr", "scr": "hr", "sgl": "isk", "sgn-BE-FR": "sfb", "sgn-BE-NL": "vgt", "sgn-BR": "bzs", "sgn-CH-DE": "sgg", "sgn-CO": "csn", "sgn-DE": "gsg", "sgn-DK": "dsl", "sgn-ES": "ssp", "sgn-FR": "fsl", "sgn-GB": "bfi", "sgn-GR": "gss", "sgn-IE": "isg", "sgn-IT": "ise", "sgn-JP": "jsl", "sgn-MX": "mfs", "sgn-NI": "ncs", "sgn-NL": "dse", "sgn-NO": "nsi", "sgn-PT": "psr", "sgn-SE": "swl", "sgn-US": "ase", "sgn-ZA": "sfs", "sh": "sr-Latn", "sin": "si", "skk": "oyb", "slk": "sk", "slo": "sk", "slv": "sl", "sme": "se", "smo": "sm", "sna": "sn", "snd": "sd", "som": "so", "sot": "st", "spa": "es", "spy": "kln", "sqi": "sq", "src": "sc", "srd": "sc", "srp": "sr", "ssw": "ss", "sul": "sgd", "sum": "ulw", "sun": "su", "swa": "sw", "swc": "sw-CD", "swe": "sv", "swh": "sw", "tah": "ty", "tam": "ta", "tat": "tt", "tdu": "dtp", "tel": "te", "tgg": "bjp", "tgk": "tg", "tgl": "fil", "tha": "th", "thc": "tpo", "thw": "ola", "thx": "oyb", "tib": "bo", "tid": "itd", "tie": "ras", "tir": "ti", "tkk": "twm", "tl": "fil", "tlw": "weo", "tmp": "tyj", "tne": "kak", "tnf": "fa-AF", "ton": "to", "tsf": "taj", "tsn": "tn", "tso": "ts", "ttq": "tmh", "tuk": "tk", "tur": "tr", "tw": "ak", "twi": "ak", "uig": "ug", "ukr": "uk", "umu": "del", "und-aaland": "und-AX", "und-arevela": "und", "und-arevmda": "und", "und-bokmal": "und", "und-hakka": "und", "und-hepburn-heploc": "und-alalc97", "und-lojban": "und", "und-nynorsk": "und", "und-saaho": "und", "und-xiang": "und", "unp": "wro", "uok": "ema", "urd": "ur", "uzb": "uz", "uzn": "uz", "ven": "ve", "vie": "vi", "vol": "vo", "wel": "cy", "wgw": "wgb", "wit": "nol", "wiw": "nwo", "wln": "wa", "wol": "wo", "xba": "cax", "xho": "xh", "xia": "acn", "xkh": "waw", "xpe": "kpe", "xrq": "dmw", "xsj": "suj", "xsl": "den", "ybd": "rki", "ydd": "yi", "yen": "ynq", "yid": "yi", "yiy": "yrm", "yma": "lrr", "ymt": "mtm", "yor": "yo", "yos": "zom", "yuu": "yug", "zai": "zap", "zh-cmn": "zh", "zh-cmn-Hans": "zh-Hans", "zh-cmn-Hant": "zh-Hant", "zh-gan": "gan", "zh-guoyu": "zh", "zh-hakka": "hak", "zh-min": "nan-x-zh-min", "zh-min-nan": "nan", "zh-wuu": "wuu", "zh-xiang": "hsn", "zh-yue": "yue", "zha": "za", "zho": "zh", "zir": "scv", "zsm": "ms", "zul": "zu", "zyb": "za" }; exports.territoryAlias = { "100": "BG", "104": "MM", "108": "BI", "112": "BY", "116": "KH", "120": "CM", "124": "CA", "132": "CV", "136": "KY", "140": "CF", "144": "LK", "148": "TD", "152": "CL", "156": "CN", "158": "TW", "162": "CX", "166": "CC", "170": "CO", "172": "RU AM AZ BY GE KG KZ MD TJ TM UA UZ", "174": "KM", "175": "YT", "178": "CG", "180": "CD", "184": "CK", "188": "CR", "191": "HR", "192": "CU", "196": "CY", "200": "CZ SK", "203": "CZ", "204": "BJ", "208": "DK", "212": "DM", "214": "DO", "218": "EC", "222": "SV", "226": "GQ", "230": "ET", "231": "ET", "232": "ER", "233": "EE", "234": "FO", "238": "FK", "239": "GS", "242": "FJ", "246": "FI", "248": "AX", "249": "FR", "250": "FR", "254": "GF", "258": "PF", "260": "TF", "262": "DJ", "266": "GA", "268": "GE", "270": "GM", "275": "PS", "276": "DE", "278": "DE", "280": "DE", "288": "GH", "292": "GI", "296": "KI", "300": "GR", "304": "GL", "308": "GD", "312": "GP", "316": "GU", "320": "GT", "324": "GN", "328": "GY", "332": "HT", "334": "HM", "336": "VA", "340": "HN", "344": "HK", "348": "HU", "352": "IS", "356": "IN", "360": "ID", "364": "IR", "368": "IQ", "372": "IE", "376": "IL", "380": "IT", "384": "CI", "388": "JM", "392": "JP", "398": "KZ", "400": "JO", "404": "KE", "408": "KP", "410": "KR", "414": "KW", "417": "KG", "418": "LA", "422": "LB", "426": "LS", "428": "LV", "430": "LR", "434": "LY", "438": "LI", "440": "LT", "442": "LU", "446": "MO", "450": "MG", "454": "MW", "458": "MY", "462": "MV", "466": "ML", "470": "MT", "474": "MQ", "478": "MR", "480": "MU", "484": "MX", "492": "MC", "496": "MN", "498": "MD", "499": "ME", "500": "MS", "504": "MA", "508": "MZ", "512": "OM", "516": "NA", "520": "NR", "524": "NP", "528": "NL", "530": "CW SX BQ", "531": "CW", "532": "CW SX BQ", "533": "AW", "534": "SX", "535": "BQ", "536": "SA IQ", "540": "NC", "548": "VU", "554": "NZ", "558": "NI", "562": "NE", "566": "NG", "570": "NU", "574": "NF", "578": "NO", "580": "MP", "581": "UM", "582": "FM MH MP PW", "583": "FM", "584": "MH", "585": "PW", "586": "PK", "591": "PA", "598": "PG", "600": "PY", "604": "PE", "608": "PH", "612": "PN", "616": "PL", "620": "PT", "624": "GW", "626": "TL", "630": "PR", "634": "QA", "638": "RE", "642": "RO", "643": "RU", "646": "RW", "652": "BL", "654": "SH", "659": "KN", "660": "AI", "662": "LC", "663": "MF", "666": "PM", "670": "VC", "674": "SM", "678": "ST", "682": "SA", "686": "SN", "688": "RS", "690": "SC", "694": "SL", "702": "SG", "703": "SK", "704": "VN", "705": "SI", "706": "SO", "710": "ZA", "716": "ZW", "720": "YE", "724": "ES", "728": "SS", "729": "SD", "732": "EH", "736": "SD", "740": "SR", "744": "SJ", "748": "SZ", "752": "SE", "756": "CH", "760": "SY", "762": "TJ", "764": "TH", "768": "TG", "772": "TK", "776": "TO", "780": "TT", "784": "AE", "788": "TN", "792": "TR", "795": "TM", "796": "TC", "798": "TV", "800": "UG", "804": "UA", "807": "MK", "810": "RU AM AZ BY EE GE KZ KG LV LT MD TJ TM UA UZ", "818": "EG", "826": "GB", "830": "JE GG", "831": "GG", "832": "JE", "833": "IM", "834": "TZ", "840": "US", "850": "VI", "854": "BF", "858": "UY", "860": "UZ", "862": "VE", "876": "WF", "882": "WS", "886": "YE", "887": "YE", "890": "RS ME SI HR MK BA", "891": "RS ME", "894": "ZM", "958": "AA", "959": "QM", "960": "QN", "962": "QP", "963": "QQ", "964": "QR", "965": "QS", "966": "QT", "967": "EU", "968": "QV", "969": "QW", "970": "QX", "971": "QY", "972": "QZ", "973": "XA", "974": "XB", "975": "XC", "976": "XD", "977": "XE", "978": "XF", "979": "XG", "980": "XH", "981": "XI", "982": "XJ", "983": "XK", "984": "XL", "985": "XM", "986": "XN", "987": "XO", "988": "XP", "989": "XQ", "990": "XR", "991": "XS", "992": "XT", "993": "XU", "994": "XV", "995": "XW", "996": "XX", "997": "XY", "998": "XZ", "999": "ZZ", "004": "AF", "008": "AL", "010": "AQ", "012": "DZ", "016": "AS", "020": "AD", "024": "AO", "028": "AG", "031": "AZ", "032": "AR", "036": "AU", "040": "AT", "044": "BS", "048": "BH", "050": "BD", "051": "AM", "052": "BB", "056": "BE", "060": "BM", "062": "034 143", "064": "BT", "068": "BO", "070": "BA", "072": "BW", "074": "BV", "076": "BR", "084": "BZ", "086": "IO", "090": "SB", "092": "VG", "096": "BN", "AAA": "AA", "ABW": "AW", "AFG": "AF", "AGO": "AO", "AIA": "AI", "ALA": "AX", "ALB": "AL", "AN": "CW SX BQ", "AND": "AD", "ANT": "CW SX BQ", "ARE": "AE", "ARG": "AR", "ARM": "AM", "ASC": "AC", "ASM": "AS", "ATA": "AQ", "ATF": "TF", "ATG": "AG", "AUS": "AU", "AUT": "AT", "AZE": "AZ", "BDI": "BI", "BEL": "BE", "BEN": "BJ", "BES": "BQ", "BFA": "BF", "BGD": "BD", "BGR": "BG", "BHR": "BH", "BHS": "BS", "BIH": "BA", "BLM": "BL", "BLR": "BY", "BLZ": "BZ", "BMU": "BM", "BOL": "BO", "BRA": "BR", "BRB": "BB", "BRN": "BN", "BTN": "BT", "BU": "MM", "BUR": "MM", "BVT": "BV", "BWA": "BW", "CAF": "CF", "CAN": "CA", "CCK": "CC", "CHE": "CH", "CHL": "CL", "CHN": "CN", "CIV": "CI", "CMR": "CM", "COD": "CD", "COG": "CG", "COK": "CK", "COL": "CO", "COM": "KM", "CPT": "CP", "CPV": "CV", "CRI": "CR", "CS": "RS ME", "CT": "KI", "CUB": "CU", "CUW": "CW", "CXR": "CX", "CYM": "KY", "CYP": "CY", "CZE": "CZ", "DD": "DE", "DDR": "DE", "DEU": "DE", "DGA": "DG", "DJI": "DJ", "DMA": "DM", "DNK": "DK", "DOM": "DO", "DY": "BJ", "DZA": "DZ", "ECU": "EC", "EGY": "EG", "ERI": "ER", "ESH": "EH", "ESP": "ES", "EST": "EE", "ETH": "ET", "FIN": "FI", "FJI": "FJ", "FLK": "FK", "FQ": "AQ TF", "FRA": "FR", "FRO": "FO", "FSM": "FM", "FX": "FR", "FXX": "FR", "GAB": "GA", "GBR": "GB", "GEO": "GE", "GGY": "GG", "GHA": "GH", "GIB": "GI", "GIN": "GN", "GLP": "GP", "GMB": "GM", "GNB": "GW", "GNQ": "GQ", "GRC": "GR", "GRD": "GD", "GRL": "GL", "GTM": "GT", "GUF": "GF", "GUM": "GU", "GUY": "GY", "HKG": "HK", "HMD": "HM", "HND": "HN", "HRV": "HR", "HTI": "HT", "HUN": "HU", "HV": "BF", "IDN": "ID", "IMN": "IM", "IND": "IN", "IOT": "IO", "IRL": "IE", "IRN": "IR", "IRQ": "IQ", "ISL": "IS", "ISR": "IL", "ITA": "IT", "JAM": "JM", "JEY": "JE", "JOR": "JO", "JPN": "JP", "JT": "UM", "KAZ": "KZ", "KEN": "KE", "KGZ": "KG", "KHM": "KH", "KIR": "KI", "KNA": "KN", "KOR": "KR", "KWT": "KW", "LAO": "LA", "LBN": "LB", "LBR": "LR", "LBY": "LY", "LCA": "LC", "LIE": "LI", "LKA": "LK", "LSO": "LS", "LTU": "LT", "LUX": "LU", "LVA": "LV", "MAC": "MO", "MAF": "MF", "MAR": "MA", "MCO": "MC", "MDA": "MD", "MDG": "MG", "MDV": "MV", "MEX": "MX", "MHL": "MH", "MI": "UM", "MKD": "MK", "MLI": "ML", "MLT": "MT", "MMR": "MM", "MNE": "ME", "MNG": "MN", "MNP": "MP", "MOZ": "MZ", "MRT": "MR", "MSR": "MS", "MTQ": "MQ", "MUS": "MU", "MWI": "MW", "MYS": "MY", "MYT": "YT", "NAM": "NA", "NCL": "NC", "NER": "NE", "NFK": "NF", "NGA": "NG", "NH": "VU", "NIC": "NI", "NIU": "NU", "NLD": "NL", "NOR": "NO", "NPL": "NP", "NQ": "AQ", "NRU": "NR", "NT": "SA IQ", "NTZ": "SA IQ", "NZL": "NZ", "OMN": "OM", "PAK": "PK", "PAN": "PA", "PC": "FM MH MP PW", "PCN": "PN", "PER": "PE", "PHL": "PH", "PLW": "PW", "PNG": "PG", "POL": "PL", "PRI": "PR", "PRK": "KP", "PRT": "PT", "PRY": "PY", "PSE": "PS", "PU": "UM", "PYF": "PF", "PZ": "PA", "QAT": "QA", "QMM": "QM", "QNN": "QN", "QPP": "QP", "QQQ": "QQ", "QRR": "QR", "QSS": "QS", "QTT": "QT", "QU": "EU", "QUU": "EU", "QVV": "QV", "QWW": "QW", "QXX": "QX", "QYY": "QY", "QZZ": "QZ", "REU": "RE", "RH": "ZW", "ROU": "RO", "RUS": "RU", "RWA": "RW", "SAU": "SA", "SCG": "RS ME", "SDN": "SD", "SEN": "SN", "SGP": "SG", "SGS": "GS", "SHN": "SH", "SJM": "SJ", "SLB": "SB", "SLE": "SL", "SLV": "SV", "SMR": "SM", "SOM": "SO", "SPM": "PM", "SRB": "RS", "SSD": "SS", "STP": "ST", "SU": "RU AM AZ BY EE GE KZ KG LV LT MD TJ TM UA UZ", "SUN": "RU AM AZ BY EE GE KZ KG LV LT MD TJ TM UA UZ", "SUR": "SR", "SVK": "SK", "SVN": "SI", "SWE": "SE", "SWZ": "SZ", "SXM": "SX", "SYC": "SC", "SYR": "SY", "TAA": "TA", "TCA": "TC", "TCD": "TD", "TGO": "TG", "THA": "TH", "TJK": "TJ", "TKL": "TK", "TKM": "TM", "TLS": "TL", "TMP": "TL", "TON": "TO", "TP": "TL", "TTO": "TT", "TUN": "TN", "TUR": "TR", "TUV": "TV", "TWN": "TW", "TZA": "TZ", "UGA": "UG", "UK": "GB", "UKR": "UA", "UMI": "UM", "URY": "UY", "USA": "US", "UZB": "UZ", "VAT": "VA", "VCT": "VC", "VD": "VN", "VEN": "VE", "VGB": "VG", "VIR": "VI", "VNM": "VN", "VUT": "VU", "WK": "UM", "WLF": "WF", "WSM": "WS", "XAA": "XA", "XBB": "XB", "XCC": "XC", "XDD": "XD", "XEE": "XE", "XFF": "XF", "XGG": "XG", "XHH": "XH", "XII": "XI", "XJJ": "XJ", "XKK": "XK", "XLL": "XL", "XMM": "XM", "XNN": "XN", "XOO": "XO", "XPP": "XP", "XQQ": "XQ", "XRR": "XR", "XSS": "XS", "XTT": "XT", "XUU": "XU", "XVV": "XV", "XWW": "XW", "XXX": "XX", "XYY": "XY", "XZZ": "XZ", "YD": "YE", "YEM": "YE", "YMD": "YE", "YU": "RS ME", "YUG": "RS ME", "ZAF": "ZA", "ZAR": "CD", "ZMB": "ZM", "ZR": "CD", "ZWE": "ZW", "ZZZ": "ZZ" }; exports.scriptAlias = { "Qaai": "Zinh" }; exports.variantAlias = { "heploc": "alalc97", "polytoni": "polyton" }; } }); // node_modules/cldr-core/supplemental/likelySubtags.json var require_likelySubtags = __commonJS({ "node_modules/cldr-core/supplemental/likelySubtags.json": function(exports, module) { module.exports = { supplemental: { version: { _unicodeVersion: "13.0.0", _cldrVersion: "39" }, likelySubtags: { aa: "aa-Latn-ET", aai: "aai-Latn-ZZ", aak: "aak-Latn-ZZ", aau: "aau-Latn-ZZ", ab: "ab-Cyrl-GE", abi: "abi-Latn-ZZ", abq: "abq-Cyrl-ZZ", abr: "abr-Latn-GH", abt: "abt-Latn-ZZ", aby: "aby-Latn-ZZ", acd: "acd-Latn-ZZ", ace: "ace-Latn-ID", ach: "ach-Latn-UG", ada: "ada-Latn-GH", ade: "ade-Latn-ZZ", adj: "adj-Latn-ZZ", adp: "adp-Tibt-BT", ady: "ady-Cyrl-RU", adz: "adz-Latn-ZZ", ae: "ae-Avst-IR", aeb: "aeb-Arab-TN", aey: "aey-Latn-ZZ", af: "af-Latn-ZA", agc: "agc-Latn-ZZ", agd: "agd-Latn-ZZ", agg: "agg-Latn-ZZ", agm: "agm-Latn-ZZ", ago: "ago-Latn-ZZ", agq: "agq-Latn-CM", aha: "aha-Latn-ZZ", ahl: "ahl-Latn-ZZ", aho: "aho-Ahom-IN", ajg: "ajg-Latn-ZZ", ak: "ak-Latn-GH", akk: "akk-Xsux-IQ", ala: "ala-Latn-ZZ", ali: "ali-Latn-ZZ", aln: "aln-Latn-XK", alt: "alt-Cyrl-RU", am: "am-Ethi-ET", amm: "amm-Latn-ZZ", amn: "amn-Latn-ZZ", amo: "amo-Latn-NG", amp: "amp-Latn-ZZ", an: "an-Latn-ES", anc: "anc-Latn-ZZ", ank: "ank-Latn-ZZ", ann: "ann-Latn-ZZ", any: "any-Latn-ZZ", aoj: "aoj-Latn-ZZ", aom: "aom-Latn-ZZ", aoz: "aoz-Latn-ID", apc: "apc-Arab-ZZ", apd: "apd-Arab-TG", ape: "ape-Latn-ZZ", apr: "apr-Latn-ZZ", aps: "aps-Latn-ZZ", apz: "apz-Latn-ZZ", ar: "ar-Arab-EG", arc: "arc-Armi-IR", "arc-Nbat": "arc-Nbat-JO", "arc-Palm": "arc-Palm-SY", arh: "arh-Latn-ZZ", arn: "arn-Latn-CL", aro: "aro-Latn-BO", arq: "arq-Arab-DZ", ars: "ars-Arab-SA", ary: "ary-Arab-MA", arz: "arz-Arab-EG", as: "as-Beng-IN", asa: "asa-Latn-TZ", ase: "ase-Sgnw-US", asg: "asg-Latn-ZZ", aso: "aso-Latn-ZZ", ast: "ast-Latn-ES", ata: "ata-Latn-ZZ", atg: "atg-Latn-ZZ", atj: "atj-Latn-CA", auy: "auy-Latn-ZZ", av: "av-Cyrl-RU", avl: "avl-Arab-ZZ", avn: "avn-Latn-ZZ", avt: "avt-Latn-ZZ", avu: "avu-Latn-ZZ", awa: "awa-Deva-IN", awb: "awb-Latn-ZZ", awo: "awo-Latn-ZZ", awx: "awx-Latn-ZZ", ay: "ay-Latn-BO", ayb: "ayb-Latn-ZZ", az: "az-Latn-AZ", "az-Arab": "az-Arab-IR", "az-IQ": "az-Arab-IQ", "az-IR": "az-Arab-IR", "az-RU": "az-Cyrl-RU", ba: "ba-Cyrl-RU", bal: "bal-Arab-PK", ban: "ban-Latn-ID", bap: "bap-Deva-NP", bar: "bar-Latn-AT", bas: "bas-Latn-CM", bav: "bav-Latn-ZZ", bax: "bax-Bamu-CM", bba: "bba-Latn-ZZ", bbb: "bbb-Latn-ZZ", bbc: "bbc-Latn-ID", bbd: "bbd-Latn-ZZ", bbj: "bbj-Latn-CM", bbp: "bbp-Latn-ZZ", bbr: "bbr-Latn-ZZ", bcf: "bcf-Latn-ZZ", bch: "bch-Latn-ZZ", bci: "bci-Latn-CI", bcm: "bcm-Latn-ZZ", bcn: "bcn-Latn-ZZ", bco: "bco-Latn-ZZ", bcq: "bcq-Ethi-ZZ", bcu: "bcu-Latn-ZZ", bdd: "bdd-Latn-ZZ", be: "be-Cyrl-BY", bef: "bef-Latn-ZZ", beh: "beh-Latn-ZZ", bej: "bej-Arab-SD", bem: "bem-Latn-ZM", bet: "bet-Latn-ZZ", bew: "bew-Latn-ID", bex: "bex-Latn-ZZ", bez: "bez-Latn-TZ", bfd: "bfd-Latn-CM", bfq: "bfq-Taml-IN", bft: "bft-Arab-PK", bfy: "bfy-Deva-IN", bg: "bg-Cyrl-BG", bgc: "bgc-Deva-IN", bgn: "bgn-Arab-PK", bgx: "bgx-Grek-TR", bhb: "bhb-Deva-IN", bhg: "bhg-Latn-ZZ", bhi: "bhi-Deva-IN", bhl: "bhl-Latn-ZZ", bho: "bho-Deva-IN", bhy: "bhy-Latn-ZZ", bi: "bi-Latn-VU", bib: "bib-Latn-ZZ", big: "big-Latn-ZZ", bik: "bik-Latn-PH", bim: "bim-Latn-ZZ", bin: "bin-Latn-NG", bio: "bio-Latn-ZZ", biq: "biq-Latn-ZZ", bjh: "bjh-Latn-ZZ", bji: "bji-Ethi-ZZ", bjj: "bjj-Deva-IN", bjn: "bjn-Latn-ID", bjo: "bjo-Latn-ZZ", bjr: "bjr-Latn-ZZ", bjt: "bjt-Latn-SN", bjz: "bjz-Latn-ZZ", bkc: "bkc-Latn-ZZ", bkm: "bkm-Latn-CM", bkq: "bkq-Latn-ZZ", bku: "bku-Latn-PH", bkv: "bkv-Latn-ZZ", blt: "blt-Tavt-VN", bm: "bm-Latn-ML", bmh: "bmh-Latn-ZZ", bmk: "bmk-Latn-ZZ", bmq: "bmq-Latn-ML", bmu: "bmu-Latn-ZZ", bn: "bn-Beng-BD", bng: "bng-Latn-ZZ", bnm: "bnm-Latn-ZZ", bnp: "bnp-Latn-ZZ", bo: "bo-Tibt-CN", boj: "boj-Latn-ZZ", bom: "bom-Latn-ZZ", bon: "bon-Latn-ZZ", bpy: "bpy-Beng-IN", bqc: "bqc-Latn-ZZ", bqi: "bqi-Arab-IR", bqp: "bqp-Latn-ZZ", bqv: "bqv-Latn-CI", br: "br-Latn-FR", bra: "bra-Deva-IN", brh: "brh-Arab-PK", brx: "brx-Deva-IN", brz: "brz-Latn-ZZ", bs: "bs-Latn-BA", bsj: "bsj-Latn-ZZ", bsq: "bsq-Bass-LR", bss: "bss-Latn-CM", bst: "bst-Ethi-ZZ", bto: "bto-Latn-PH", btt: "btt-Latn-ZZ", btv: "btv-Deva-PK", bua: "bua-Cyrl-RU", buc: "buc-Latn-YT", bud: "bud-Latn-ZZ", bug: "bug-Latn-ID", buk: "buk-Latn-ZZ", bum: "bum-Latn-CM", buo: "buo-Latn-ZZ", bus: "bus-Latn-ZZ", buu: "buu-Latn-ZZ", bvb: "bvb-Latn-GQ", bwd: "bwd-Latn-ZZ", bwr: "bwr-Latn-ZZ", bxh: "bxh-Latn-ZZ", bye: "bye-Latn-ZZ", byn: "byn-Ethi-ER", byr: "byr-Latn-ZZ", bys: "bys-Latn-ZZ", byv: "byv-Latn-CM", byx: "byx-Latn-ZZ", bza: "bza-Latn-ZZ", bze: "bze-Latn-ML", bzf: "bzf-Latn-ZZ", bzh: "bzh-Latn-ZZ", bzw: "bzw-Latn-ZZ", ca: "ca-Latn-ES", cad: "cad-Latn-US", can: "can-Latn-ZZ", cbj: "cbj-Latn-ZZ", cch: "cch-Latn-NG", ccp: "ccp-Cakm-BD", ce: "ce-Cyrl-RU", ceb: "ceb-Latn-PH", cfa: "cfa-Latn-ZZ", cgg: "cgg-Latn-UG", ch: "ch-Latn-GU", chk: "chk-Latn-FM", chm: "chm-Cyrl-RU", cho: "cho-Latn-US", chp: "chp-Latn-CA", chr: "chr-Cher-US", cic: "cic-Latn-US", cja: "cja-Arab-KH", cjm: "cjm-Cham-VN", cjv: "cjv-Latn-ZZ", ckb: "ckb-Arab-IQ", ckl: "ckl-Latn-ZZ", cko: "cko-Latn-ZZ", cky: "cky-Latn-ZZ", cla: "cla-Latn-ZZ", cme: "cme-Latn-ZZ", cmg: "cmg-Soyo-MN", co: "co-Latn-FR", cop: "cop-Copt-EG", cps: "cps-Latn-PH", cr: "cr-Cans-CA", crh: "crh-Cyrl-UA", crj: "crj-Cans-CA", crk: "crk-Cans-CA", crl: "crl-Cans-CA", crm: "crm-Cans-CA", crs: "crs-Latn-SC", cs: "cs-Latn-CZ", csb: "csb-Latn-PL", csw: "csw-Cans-CA", ctd: "ctd-Pauc-MM", cu: "cu-Cyrl-RU", "cu-Glag": "cu-Glag-BG", cv: "cv-Cyrl-RU", cy: "cy-Latn-GB", da: "da-Latn-DK", dad: "dad-Latn-ZZ", daf: "daf-Latn-CI", dag: "dag-Latn-ZZ", dah: "dah-Latn-ZZ", dak: "dak-Latn-US", dar: "dar-Cyrl-RU", dav: "dav-Latn-KE", dbd: "dbd-Latn-ZZ", dbq: "dbq-Latn-ZZ", dcc: "dcc-Arab-IN", ddn: "ddn-Latn-ZZ", de: "de-Latn-DE", ded: "ded-Latn-ZZ", den: "den-Latn-CA", dga: "dga-Latn-ZZ", dgh: "dgh-Latn-ZZ", dgi: "dgi-Latn-ZZ", dgl: "dgl-Arab-ZZ", dgr: "dgr-Latn-CA", dgz: "dgz-Latn-ZZ", dia: "dia-Latn-ZZ", dje: "dje-Latn-NE", dmf: "dmf-Medf-NG", dnj: "dnj-Latn-CI", dob: "dob-Latn-ZZ", doi: "doi-Deva-IN", dop: "dop-Latn-ZZ", dow: "dow-Latn-ZZ", drh: "drh-Mong-CN", dri: "dri-Latn-ZZ", drs: "drs-Ethi-ZZ", dsb: "dsb-Latn-DE", dtm: "dtm-Latn-ML", dtp: "dtp-Latn-MY", dts: "dts-Latn-ZZ", dty: "dty-Deva-NP", dua: "dua-Latn-CM", duc: "duc-Latn-ZZ", dud: "dud-Latn-ZZ", dug: "dug-Latn-ZZ", dv: "dv-Thaa-MV", dva: "dva-Latn-ZZ", dww: "dww-Latn-ZZ", dyo: "dyo-Latn-SN", dyu: "dyu-Latn-BF", dz: "dz-Tibt-BT", dzg: "dzg-Latn-ZZ", ebu: "ebu-Latn-KE", ee: "ee-Latn-GH", efi: "efi-Latn-NG", egl: "egl-Latn-IT", egy: "egy-Egyp-EG", eka: "eka-Latn-ZZ", eky: "eky-Kali-MM", el: "el-Grek-GR", ema: "ema-Latn-ZZ", emi: "emi-Latn-ZZ", en: "en-Latn-US", "en-Shaw": "en-Shaw-GB", enn: "enn-Latn-ZZ", enq: "enq-Latn-ZZ", eo: "eo-Latn-001", eri: "eri-Latn-ZZ", es: "es-Latn-ES", esg: "esg-Gonm-IN", esu: "esu-Latn-US", et: "et-Latn-EE", etr: "etr-Latn-ZZ", ett: "ett-Ital-IT", etu: "etu-Latn-ZZ", etx: "etx-Latn-ZZ", eu: "eu-Latn-ES", ewo: "ewo-Latn-CM", ext: "ext-Latn-ES", eza: "eza-Latn-ZZ", fa: "fa-Arab-IR", faa: "faa-Latn-ZZ", fab: "fab-Latn-ZZ", fag: "fag-Latn-ZZ", fai: "fai-Latn-ZZ", fan: "fan-Latn-GQ", ff: "ff-Latn-SN", "ff-Adlm": "ff-Adlm-GN", ffi: "ffi-Latn-ZZ", ffm: "ffm-Latn-ML", fi: "fi-Latn-FI", fia: "fia-Arab-SD", fil: "fil-Latn-PH", fit: "fit-Latn-SE", fj: "fj-Latn-FJ", flr: "flr-Latn-ZZ", fmp: "fmp-Latn-ZZ", fo: "fo-Latn-FO", fod: "fod-Latn-ZZ", fon: "fon-Latn-BJ", for: "for-Latn-ZZ", fpe: "fpe-Latn-ZZ", fqs: "fqs-Latn-ZZ", fr: "fr-Latn-FR", frc: "frc-Latn-US", frp: "frp-Latn-FR", frr: "frr-Latn-DE", frs: "frs-Latn-DE", fub: "fub-Arab-CM", fud: "fud-Latn-WF", fue: "fue-Latn-ZZ", fuf: "fuf-Latn-GN", fuh: "fuh-Latn-ZZ", fuq: "fuq-Latn-NE", fur: "fur-Latn-IT", fuv: "fuv-Latn-NG", fuy: "fuy-Latn-ZZ", fvr: "fvr-Latn-SD", fy: "fy-Latn-NL", ga: "ga-Latn-IE", gaa: "gaa-Latn-GH", gaf: "gaf-Latn-ZZ", gag: "gag-Latn-MD", gah: "gah-Latn-ZZ", gaj: "gaj-Latn-ZZ", gam: "gam-Latn-ZZ", gan: "gan-Hans-CN", gaw: "gaw-Latn-ZZ", gay: "gay-Latn-ID", gba: "gba-Latn-ZZ", gbf: "gbf-Latn-ZZ", gbm: "gbm-Deva-IN", gby: "gby-Latn-ZZ", gbz: "gbz-Arab-IR", gcr: "gcr-Latn-GF", gd: "gd-Latn-GB", gde: "gde-Latn-ZZ", gdn: "gdn-Latn-ZZ", gdr: "gdr-Latn-ZZ", geb: "geb-Latn-ZZ", gej: "gej-Latn-ZZ", gel: "gel-Latn-ZZ", gez: "gez-Ethi-ET", gfk: "gfk-Latn-ZZ", ggn: "ggn-Deva-NP", ghs: "ghs-Latn-ZZ", gil: "gil-Latn-KI", gim: "gim-Latn-ZZ", gjk: "gjk-Arab-PK", gjn: "gjn-Latn-ZZ", gju: "gju-Arab-PK", gkn: "gkn-Latn-ZZ", gkp: "gkp-Latn-ZZ", gl: "gl-Latn-ES", glk: "glk-Arab-IR", gmm: "gmm-Latn-ZZ", gmv: "gmv-Ethi-ZZ", gn: "gn-Latn-PY", gnd: "gnd-Latn-ZZ", gng: "gng-Latn-ZZ", god: "god-Latn-ZZ", gof: "gof-Ethi-ZZ", goi: "goi-Latn-ZZ", gom: "gom-Deva-IN", gon: "gon-Telu-IN", gor: "gor-Latn-ID", gos: "gos-Latn-NL", got: "got-Goth-UA", grb: "grb-Latn-ZZ", grc: "grc-Cprt-CY", "grc-Linb": "grc-Linb-GR", grt: "grt-Beng-IN", grw: "grw-Latn-ZZ", gsw: "gsw-Latn-CH", gu: "gu-Gujr-IN", gub: "gub-Latn-BR", guc: "guc-Latn-CO", gud: "gud-Latn-ZZ", gur: "gur-Latn-GH", guw: "guw-Latn-ZZ", gux: "gux-Latn-ZZ", guz: "guz-Latn-KE", gv: "gv-Latn-IM", gvf: "gvf-Latn-ZZ", gvr: "gvr-Deva-NP", gvs: "gvs-Latn-ZZ", gwc: "gwc-Arab-ZZ", gwi: "gwi-Latn-CA", gwt: "gwt-Arab-ZZ", gyi: "gyi-Latn-ZZ", ha: "ha-Latn-NG", "ha-CM": "ha-Arab-CM", "ha-SD": "ha-Arab-SD", hag: "hag-Latn-ZZ", hak: "hak-Hans-CN", ham: "ham-Latn-ZZ", haw: "haw-Latn-US", haz: "haz-Arab-AF", hbb: "hbb-Latn-ZZ", hdy: "hdy-Ethi-ZZ", he: "he-Hebr-IL", hhy: "hhy-Latn-ZZ", hi: "hi-Deva-IN", hia: "hia-Latn-ZZ", hif: "hif-Latn-FJ", hig: "hig-Latn-ZZ", hih: "hih-Latn-ZZ", hil: "hil-Latn-PH", hla: "hla-Latn-ZZ", hlu: "hlu-Hluw-TR", hmd: "hmd-Plrd-CN", hmt: "hmt-Latn-ZZ", hnd: "hnd-Arab-PK", hne: "hne-Deva-IN", hnj: "hnj-Hmng-LA", hnn: "hnn-Latn-PH", hno: "hno-Arab-PK", ho: "ho-Latn-PG", hoc: "hoc-Deva-IN", hoj: "hoj-Deva-IN", hot: "hot-Latn-ZZ", hr: "hr-Latn-HR", hsb: "hsb-Latn-DE", hsn: "hsn-Hans-CN", ht: "ht-Latn-HT", hu: "hu-Latn-HU", hui: "hui-Latn-ZZ", hy: "hy-Armn-AM", hz: "hz-Latn-NA", ia: "ia-Latn-001", ian: "ian-Latn-ZZ", iar: "iar-Latn-ZZ", iba: "iba-Latn-MY", ibb: "ibb-Latn-NG", iby: "iby-Latn-ZZ", ica: "ica-Latn-ZZ", ich: "ich-Latn-ZZ", id: "id-Latn-ID", idd: "idd-Latn-ZZ", idi: "idi-Latn-ZZ", idu: "idu-Latn-ZZ", ife: "ife-Latn-TG", ig: "ig-Latn-NG", igb: "igb-Latn-ZZ", ige: "ige-Latn-ZZ", ii: "ii-Yiii-CN", ijj: "ijj-Latn-ZZ", ik: "ik-Latn-US", ikk: "ikk-Latn-ZZ", ikt: "ikt-Latn-CA", ikw: "ikw-Latn-ZZ", ikx: "ikx-Latn-ZZ", ilo: "ilo-Latn-PH", imo: "imo-Latn-ZZ", in: "in-Latn-ID", inh: "inh-Cyrl-RU", io: "io-Latn-001", iou: "iou-Latn-ZZ", iri: "iri-Latn-ZZ", is: "is-Latn-IS", it: "it-Latn-IT", iu: "iu-Cans-CA", iw: "iw-Hebr-IL", iwm: "iwm-Latn-ZZ", iws: "iws-Latn-ZZ", izh: "izh-Latn-RU", izi: "izi-Latn-ZZ", ja: "ja-Jpan-JP", jab: "jab-Latn-ZZ", jam: "jam-Latn-JM", jar: "jar-Latn-ZZ", jbo: "jbo-Latn-001", jbu: "jbu-Latn-ZZ", jen: "jen-Latn-ZZ", jgk: "jgk-Latn-ZZ", jgo: "jgo-Latn-CM", ji: "ji-Hebr-UA", jib: "jib-Latn-ZZ", jmc: "jmc-Latn-TZ", jml: "jml-Deva-NP", jra: "jra-Latn-ZZ", jut: "jut-Latn-DK", jv: "jv-Latn-ID", jw: "jw-Latn-ID", ka: "ka-Geor-GE", kaa: "kaa-Cyrl-UZ", kab: "kab-Latn-DZ", kac: "kac-Latn-MM", kad: "kad-Latn-ZZ", kai: "kai-Latn-ZZ", kaj: "kaj-Latn-NG", kam: "kam-Latn-KE", kao: "kao-Latn-ML", kbd: "kbd-Cyrl-RU", kbm: "kbm-Latn-ZZ", kbp: "kbp-Latn-ZZ", kbq: "kbq-Latn-ZZ", kbx: "kbx-Latn-ZZ", kby: "kby-Arab-NE", kcg: "kcg-Latn-NG", kck: "kck-Latn-ZW", kcl: "kcl-Latn-ZZ", kct: "kct-Latn-ZZ", kde: "kde-Latn-TZ", kdh: "kdh-Arab-TG", kdl: "kdl-Latn-ZZ", kdt: "kdt-Thai-TH", kea: "kea-Latn-CV", ken: "ken-Latn-CM", kez: "kez-Latn-ZZ", kfo: "kfo-Latn-CI", kfr: "kfr-Deva-IN", kfy: "kfy-Deva-IN", kg: "kg-Latn-CD", kge: "kge-Latn-ID", kgf: "kgf-Latn-ZZ", kgp: "kgp-Latn-BR", kha: "kha-Latn-IN", khb: "khb-Talu-CN", khn: "khn-Deva-IN", khq: "khq-Latn-ML", khs: "khs-Latn-ZZ", kht: "kht-Mymr-IN", khw: "khw-Arab-PK", khz: "khz-Latn-ZZ", ki: "ki-Latn-KE", kij: "kij-Latn-ZZ", kiu: "kiu-Latn-TR", kiw: "kiw-Latn-ZZ", kj: "kj-Latn-NA", kjd: "kjd-Latn-ZZ", kjg: "kjg-Laoo-LA", kjs: "kjs-Latn-ZZ", kjy: "kjy-Latn-ZZ", kk: "kk-Cyrl-KZ", "kk-AF": "kk-Arab-AF", "kk-Arab": "kk-Arab-CN", "kk-CN": "kk-Arab-CN", "kk-IR": "kk-Arab-IR", "kk-MN": "kk-Arab-MN", kkc: "kkc-Latn-ZZ", kkj: "kkj-Latn-CM", kl: "kl-Latn-GL", kln: "kln-Latn-KE", klq: "klq-Latn-ZZ", klt: "klt-Latn-ZZ", klx: "klx-Latn-ZZ", km: "km-Khmr-KH", kmb: "kmb-Latn-AO", kmh: "kmh-Latn-ZZ", kmo: "kmo-Latn-ZZ", kms: "kms-Latn-ZZ", kmu: "kmu-Latn-ZZ", kmw: "kmw-Latn-ZZ", kn: "kn-Knda-IN", knf: "knf-Latn-GW", knp: "knp-Latn-ZZ", ko: "ko-Kore-KR", koi: "koi-Cyrl-RU", kok: "kok-Deva-IN", kol: "kol-Latn-ZZ", kos: "kos-Latn-FM", koz: "koz-Latn-ZZ", kpe: "kpe-Latn-LR", kpf: "kpf-Latn-ZZ", kpo: "kpo-Latn-ZZ", kpr: "kpr-Latn-ZZ", kpx: "kpx-Latn-ZZ", kqb: "kqb-Latn-ZZ", kqf: "kqf-Latn-ZZ", kqs: "kqs-Latn-ZZ", kqy: "kqy-Ethi-ZZ", kr: "kr-Latn-ZZ", krc: "krc-Cyrl-RU", kri: "kri-Latn-SL", krj: "krj-Latn-PH", krl: "krl-Latn-RU", krs: "krs-Latn-ZZ", kru: "kru-Deva-IN", ks: "ks-Arab-IN", ksb: "ksb-Latn-TZ", ksd: "ksd-Latn-ZZ", ksf: "ksf-Latn-CM", ksh: "ksh-Latn-DE", ksj: "ksj-Latn-ZZ", ksr: "ksr-Latn-ZZ", ktb: "ktb-Ethi-ZZ", ktm: "ktm-Latn-ZZ", kto: "kto-Latn-ZZ", ktr: "ktr-Latn-MY", ku: "ku-Latn-TR", "ku-Arab": "ku-Arab-IQ", "ku-LB": "ku-Arab-LB", "ku-Yezi": "ku-Yezi-GE", kub: "kub-Latn-ZZ", kud: "kud-Latn-ZZ", kue: "kue-Latn-ZZ", kuj: "kuj-Latn-ZZ", kum: "kum-Cyrl-RU", kun: "kun-Latn-ZZ", kup: "kup-Latn-ZZ", kus: "kus-Latn-ZZ", kv: "kv-Cyrl-RU", kvg: "kvg-Latn-ZZ", kvr: "kvr-Latn-ID", kvx: "kvx-Arab-PK", kw: "kw-Latn-GB", kwj: "kwj-Latn-ZZ", kwo: "kwo-Latn-ZZ", kwq: "kwq-Latn-ZZ", kxa: "kxa-Latn-ZZ", kxc: "kxc-Ethi-ZZ", kxe: "kxe-Latn-ZZ", kxl: "kxl-Deva-IN", kxm: "kxm-Thai-TH", kxp: "kxp-Arab-PK", kxw: "kxw-Latn-ZZ", kxz: "kxz-Latn-ZZ", ky: "ky-Cyrl-KG", "ky-Arab": "ky-Arab-CN", "ky-CN": "ky-Arab-CN", "ky-Latn": "ky-Latn-TR", "ky-TR": "ky-Latn-TR", kye: "kye-Latn-ZZ", kyx: "kyx-Latn-ZZ", kzh: "kzh-Arab-ZZ", kzj: "kzj-Latn-MY", kzr: "kzr-Latn-ZZ", kzt: "kzt-Latn-MY", la: "la-Latn-VA", lab: "lab-Lina-GR", lad: "lad-Hebr-IL", lag: "lag-Latn-TZ", lah: "lah-Arab-PK", laj: "laj-Latn-UG", las: "las-Latn-ZZ", lb: "lb-Latn-LU", lbe: "lbe-Cyrl-RU", lbu: "lbu-Latn-ZZ", lbw: "lbw-Latn-ID", lcm: "lcm-Latn-ZZ", lcp: "lcp-Thai-CN", ldb: "ldb-Latn-ZZ", led: "led-Latn-ZZ", lee: "lee-Latn-ZZ", lem: "lem-Latn-ZZ", lep: "lep-Lepc-IN", leq: "leq-Latn-ZZ", leu: "leu-Latn-ZZ", lez: "lez-Cyrl-RU", lg: "lg-Latn-UG", lgg: "lgg-Latn-ZZ", li: "li-Latn-NL", lia: "lia-Latn-ZZ", lid: "lid-Latn-ZZ", lif: "lif-Deva-NP", "lif-Limb": "lif-Limb-IN", lig: "lig-Latn-ZZ", lih: "lih-Latn-ZZ", lij: "lij-Latn-IT", lis: "lis-Lisu-CN", ljp: "ljp-Latn-ID", lki: "lki-Arab-IR", lkt: "lkt-Latn-US", lle: "lle-Latn-ZZ", lln: "lln-Latn-ZZ", lmn: "lmn-Telu-IN", lmo: "lmo-Latn-IT", lmp: "lmp-Latn-ZZ", ln: "ln-Latn-CD", lns: "lns-Latn-ZZ", lnu: "lnu-Latn-ZZ", lo: "lo-Laoo-LA", loj: "loj-Latn-ZZ", lok: "lok-Latn-ZZ", lol: "lol-Latn-CD", lor: "lor-Latn-ZZ", los: "los-Latn-ZZ", loz: "loz-Latn-ZM", lrc: "lrc-Arab-IR", lt: "lt-Latn-LT", ltg: "ltg-Latn-LV", lu: "lu-Latn-CD", lua: "lua-Latn-CD", luo: "luo-Latn-KE", luy: "luy-Latn-KE", luz: "luz-Arab-IR", lv: "lv-Latn-LV", lwl: "lwl-Thai-TH", lzh: "lzh-Hans-CN", lzz: "lzz-Latn-TR", mad: "mad-Latn-ID", maf: "maf-Latn-CM", mag: "mag-Deva-IN", mai: "mai-Deva-IN", mak: "mak-Latn-ID", man: "man-Latn-GM", "man-GN": "man-Nkoo-GN", "man-Nkoo": "man-Nkoo-GN", mas: "mas-Latn-KE", maw: "maw-Latn-ZZ", maz: "maz-Latn-MX", mbh: "mbh-Latn-ZZ", mbo: "mbo-Latn-ZZ", mbq: "mbq-Latn-ZZ", mbu: "mbu-Latn-ZZ", mbw: "mbw-Latn-ZZ", mci: "mci-Latn-ZZ", mcp: "mcp-Latn-ZZ", mcq: "mcq-Latn-ZZ", mcr: "mcr-Latn-ZZ", mcu: "mcu-Latn-ZZ", mda: "mda-Latn-ZZ", mde: "mde-Arab-ZZ", mdf: "mdf-Cyrl-RU", mdh: "mdh-Latn-PH", mdj: "mdj-Latn-ZZ", mdr: "mdr-Latn-ID", mdx: "mdx-Ethi-ZZ", med: "med-Latn-ZZ", mee: "mee-Latn-ZZ", mek: "mek-Latn-ZZ", men: "men-Latn-SL", mer: "mer-Latn-KE", met: "met-Latn-ZZ", meu: "meu-Latn-ZZ", mfa: "mfa-Arab-TH", mfe: "mfe-Latn-MU", mfn: "mfn-Latn-ZZ", mfo: "mfo-Latn-ZZ", mfq: "mfq-Latn-ZZ", mg: "mg-Latn-MG", mgh: "mgh-Latn-MZ", mgl: "mgl-Latn-ZZ", mgo: "mgo-Latn-CM", mgp: "mgp-Deva-NP", mgy: "mgy-Latn-TZ", mh: "mh-Latn-MH", mhi: "mhi-Latn-ZZ", mhl: "mhl-Latn-ZZ", mi: "mi-Latn-NZ", mif: "mif-Latn-ZZ", min: "min-Latn-ID", miw: "miw-Latn-ZZ", mk: "mk-Cyrl-MK", mki: "mki-Arab-ZZ", mkl: "mkl-Latn-ZZ", mkp: "mkp-Latn-ZZ", mkw: "mkw-Latn-ZZ", ml: "ml-Mlym-IN", mle: "mle-Latn-ZZ", mlp: "mlp-Latn-ZZ", mls: "mls-Latn-SD", mmo: "mmo-Latn-ZZ", mmu: "mmu-Latn-ZZ", mmx: "mmx-Latn-ZZ", mn: "mn-Cyrl-MN", "mn-CN": "mn-Mong-CN", "mn-Mong": "mn-Mong-CN", mna: "mna-Latn-ZZ", mnf: "mnf-Latn-ZZ", mni: "mni-Beng-IN", mnw: "mnw-Mymr-MM", mo: "mo-Latn-RO", moa: "moa-Latn-ZZ", moe: "moe-Latn-CA", moh: "moh-Latn-CA", mos: "mos-Latn-BF", mox: "mox-Latn-ZZ", mpp: "mpp-Latn-ZZ", mps: "mps-Latn-ZZ", mpt: "mpt-Latn-ZZ", mpx: "mpx-Latn-ZZ", mql: "mql-Latn-ZZ", mr: "mr-Deva-IN", mrd: "mrd-Deva-NP", mrj: "mrj-Cyrl-RU", mro: "mro-Mroo-BD", ms: "ms-Latn-MY", "ms-CC": "ms-Arab-CC", mt: "mt-Latn-MT", mtc: "mtc-Latn-ZZ", mtf: "mtf-Latn-ZZ", mti: "mti-Latn-ZZ", mtr: "mtr-Deva-IN", mua: "mua-Latn-CM", mur: "mur-Latn-ZZ", mus: "mus-Latn-US", mva: "mva-Latn-ZZ", mvn: "mvn-Latn-ZZ", mvy: "mvy-Arab-PK", mwk: "mwk-Latn-ML", mwr: "mwr-Deva-IN", mwv: "mwv-Latn-ID", mww: "mww-Hmnp-US", mxc: "mxc-Latn-ZW", mxm: "mxm-Latn-ZZ", my: "my-Mymr-MM", myk: "myk-Latn-ZZ", mym: "mym-Ethi-ZZ", myv: "myv-Cyrl-RU", myw: "myw-Latn-ZZ", myx: "myx-Latn-UG", myz: "myz-Mand-IR", mzk: "mzk-Latn-ZZ", mzm: "mzm-Latn-ZZ", mzn: "mzn-Arab-IR", mzp: "mzp-Latn-ZZ", mzw: "mzw-Latn-ZZ", mzz: "mzz-Latn-ZZ", na: "na-Latn-NR", nac: "nac-Latn-ZZ", naf: "naf-Latn-ZZ", nak: "nak-Latn-ZZ", nan: "nan-Hans-CN", nap: "nap-Latn-IT", naq: "naq-Latn-NA", nas: "nas-Latn-ZZ", nb: "nb-Latn-NO", nca: "nca-Latn-ZZ", nce: "nce-Latn-ZZ", ncf: "ncf-Latn-ZZ", nch: "nch-Latn-MX", nco: "nco-Latn-ZZ", ncu: "ncu-Latn-ZZ", nd: "nd-Latn-ZW", ndc: "ndc-Latn-MZ", nds: "nds-Latn-DE", ne: "ne-Deva-NP", neb: "neb-Latn-ZZ", new: "new-Deva-NP", nex: "nex-Latn-ZZ", nfr: "nfr-Latn-ZZ", ng: "ng-Latn-NA", nga: "nga-Latn-ZZ", ngb: "ngb-Latn-ZZ", ngl: "ngl-Latn-MZ", nhb: "nhb-Latn-ZZ", nhe: "nhe-Latn-MX", nhw: "nhw-Latn-MX", nif: "nif-Latn-ZZ", nii: "nii-Latn-ZZ", nij: "nij-Latn-ID", nin: "nin-Latn-ZZ", niu: "niu-Latn-NU", niy: "niy-Latn-ZZ", niz: "niz-Latn-ZZ", njo: "njo-Latn-IN", nkg: "nkg-Latn-ZZ", nko: "nko-Latn-ZZ", nl: "nl-Latn-NL", nmg: "nmg-Latn-CM", nmz: "nmz-Latn-ZZ", nn: "nn-Latn-NO", nnf: "nnf-Latn-ZZ", nnh: "nnh-Latn-CM", nnk: "nnk-Latn-ZZ", nnm: "nnm-Latn-ZZ", nnp: "nnp-Wcho-IN", no: "no-Latn-NO", nod: "nod-Lana-TH", noe: "noe-Deva-IN", non: "non-Runr-SE", nop: "nop-Latn-ZZ", nou: "nou-Latn-ZZ", nqo: "nqo-Nkoo-GN", nr: "nr-Latn-ZA", nrb: "nrb-Latn-ZZ", nsk: "nsk-Cans-CA", nsn: "nsn-Latn-ZZ", nso: "nso-Latn-ZA", nss: "nss-Latn-ZZ", ntm: "ntm-Latn-ZZ", ntr: "ntr-Latn-ZZ", nui: "nui-Latn-ZZ", nup: "nup-Latn-ZZ", nus: "nus-Latn-SS", nuv: "nuv-Latn-ZZ", nux: "nux-Latn-ZZ", nv: "nv-Latn-US", nwb: "nwb-Latn-ZZ", nxq: "nxq-Latn-CN", nxr: "nxr-Latn-ZZ", ny: "ny-Latn-MW", nym: "nym-Latn-TZ", nyn: "nyn-Latn-UG", nzi: "nzi-Latn-GH", oc: "oc-Latn-FR", ogc: "ogc-Latn-ZZ", okr: "okr-Latn-ZZ", okv: "okv-Latn-ZZ", om: "om-Latn-ET", ong: "ong-Latn-ZZ", onn: "onn-Latn-ZZ", ons: "ons-Latn-ZZ", opm: "opm-Latn-ZZ", or: "or-Orya-IN", oro: "oro-Latn-ZZ", oru: "oru-Arab-ZZ", os: "os-Cyrl-GE", osa: "osa-Osge-US", ota: "ota-Arab-ZZ", otk: "otk-Orkh-MN", ozm: "ozm-Latn-ZZ", pa: "pa-Guru-IN", "pa-Arab": "pa-Arab-PK", "pa-PK": "pa-Arab-PK", pag: "pag-Latn-PH", pal: "pal-Phli-IR", "pal-Phlp": "pal-Phlp-CN", pam: "pam-Latn-PH", pap: "pap-Latn-AW", pau: "pau-Latn-PW", pbi: "pbi-Latn-ZZ", pcd: "pcd-Latn-FR", pcm: "pcm-Latn-NG", pdc: "pdc-Latn-US", pdt: "pdt-Latn-CA", ped: "ped-Latn-ZZ", peo: "peo-Xpeo-IR", pex: "pex-Latn-ZZ", pfl: "pfl-Latn-DE", phl: "phl-Arab-ZZ", phn: "phn-Phnx-LB", pil: "pil-Latn-ZZ", pip: "pip-Latn-ZZ", pka: "pka-Brah-IN", pko: "pko-Latn-KE", pl: "pl-Latn-PL", pla: "pla-Latn-ZZ", pms: "pms-Latn-IT", png: "png-Latn-ZZ", pnn: "pnn-Latn-ZZ", pnt: "pnt-Grek-GR", pon: "pon-Latn-FM", ppa: "ppa-Deva-IN", ppo: "ppo-Latn-ZZ", pra: "pra-Khar-PK", prd: "prd-Arab-IR", prg: "prg-Latn-001", ps: "ps-Arab-AF", pss: "pss-Latn-ZZ", pt: "pt-Latn-BR", ptp: "ptp-Latn-ZZ", puu: "puu-Latn-GA", pwa: "pwa-Latn-ZZ", qu: "qu-Latn-PE", quc: "quc-Latn-GT", qug: "qug-Latn-EC", rai: "rai-Latn-ZZ", raj: "raj-Deva-IN", rao: "rao-Latn-ZZ", rcf: "rcf-Latn-RE", rej: "rej-Latn-ID", rel: "rel-Latn-ZZ", res: "res-Latn-ZZ", rgn: "rgn-Latn-IT", rhg: "rhg-Arab-MM", ria: "ria-Latn-IN", rif: "rif-Tfng-MA", "rif-NL": "rif-Latn-NL", rjs: "rjs-Deva-NP", rkt: "rkt-Beng-BD", rm: "rm-Latn-CH", rmf: "rmf-Latn-FI", rmo: "rmo-Latn-CH", rmt: "rmt-Arab-IR", rmu: "rmu-Latn-SE", rn: "rn-Latn-BI", rna: "rna-Latn-ZZ", rng: "rng-Latn-MZ", ro: "ro-Latn-RO", rob: "rob-Latn-ID", rof: "rof-Latn-TZ", roo: "roo-Latn-ZZ", rro: "rro-Latn-ZZ", rtm: "rtm-Latn-FJ", ru: "ru-Cyrl-RU", rue: "rue-Cyrl-UA", rug: "rug-Latn-SB", rw: "rw-Latn-RW", rwk: "rwk-Latn-TZ", rwo: "rwo-Latn-ZZ", ryu: "ryu-Kana-JP", sa: "sa-Deva-IN", saf: "saf-Latn-GH", sah: "sah-Cyrl-RU", saq: "saq-Latn-KE", sas: "sas-Latn-ID", sat: "sat-Olck-IN", sav: "sav-Latn-SN", saz: "saz-Saur-IN", sba: "sba-Latn-ZZ", sbe: "sbe-Latn-ZZ", sbp: "sbp-Latn-TZ", sc: "sc-Latn-IT", sck: "sck-Deva-IN", scl: "scl-Arab-ZZ", scn: "scn-Latn-IT", sco: "sco-Latn-GB", scs: "scs-Latn-CA", sd: "sd-Arab-PK", "sd-Deva": "sd-Deva-IN", "sd-Khoj": "sd-Khoj-IN", "sd-Sind": "sd-Sind-IN", sdc: "sdc-Latn-IT", sdh: "sdh-Arab-IR", se: "se-Latn-NO", sef: "sef-Latn-CI", seh: "seh-Latn-MZ", sei: "sei-Latn-MX", ses: "ses-Latn-ML", sg: "sg-Latn-CF", sga: "sga-Ogam-IE", sgs: "sgs-Latn-LT", sgw: "sgw-Ethi-ZZ", sgz: "sgz-Latn-ZZ", shi: "shi-Tfng-MA", shk: "shk-Latn-ZZ", shn: "shn-Mymr-MM", shu: "shu-Arab-ZZ", si: "si-Sinh-LK", sid: "sid-Latn-ET", sig: "sig-Latn-ZZ", sil: "sil-Latn-ZZ", sim: "sim-Latn-ZZ", sjr: "sjr-Latn-ZZ", sk: "sk-Latn-SK", skc: "skc-Latn-ZZ", skr: "skr-Arab-PK", sks: "sks-Latn-ZZ", sl: "sl-Latn-SI", sld: "sld-Latn-ZZ", sli: "sli-Latn-PL", sll: "sll-Latn-ZZ", sly: "sly-Latn-ID", sm: "sm-Latn-WS", sma: "sma-Latn-SE", smj: "smj-Latn-SE", smn: "smn-Latn-FI", smp: "smp-Samr-IL", smq: "smq-Latn-ZZ", sms: "sms-Latn-FI", sn: "sn-Latn-ZW", snc: "snc-Latn-ZZ", snk: "snk-Latn-ML", snp: "snp-Latn-ZZ", snx: "snx-Latn-ZZ", sny: "sny-Latn-ZZ", so: "so-Latn-SO", sog: "sog-Sogd-UZ", sok: "sok-Latn-ZZ", soq: "soq-Latn-ZZ", sou: "sou-Thai-TH", soy: "soy-Latn-ZZ", spd: "spd-Latn-ZZ", spl: "spl-Latn-ZZ", sps: "sps-Latn-ZZ", sq: "sq-Latn-AL", sr: "sr-Cyrl-RS", "sr-ME": "sr-Latn-ME", "sr-RO": "sr-Latn-RO", "sr-RU": "sr-Latn-RU", "sr-TR": "sr-Latn-TR", srb: "srb-Sora-IN", srn: "srn-Latn-SR", srr: "srr-Latn-SN", srx: "srx-Deva-IN", ss: "ss-Latn-ZA", ssd: "ssd-Latn-ZZ", ssg: "ssg-Latn-ZZ", ssy: "ssy-Latn-ER", st: "st-Latn-ZA", stk: "stk-Latn-ZZ", stq: "stq-Latn-DE", su: "su-Latn-ID", sua: "sua-Latn-ZZ", sue: "sue-Latn-ZZ", suk: "suk-Latn-TZ", sur: "sur-Latn-ZZ", sus: "sus-Latn-GN", sv: "sv-Latn-SE", sw: "sw-Latn-TZ", swb: "swb-Arab-YT", swc: "swc-Latn-CD", swg: "swg-Latn-DE", swp: "swp-Latn-ZZ", swv: "swv-Deva-IN", sxn: "sxn-Latn-ID", sxw: "sxw-Latn-ZZ", syl: "syl-Beng-BD", syr: "syr-Syrc-IQ", szl: "szl-Latn-PL", ta: "ta-Taml-IN", taj: "taj-Deva-NP", tal: "tal-Latn-ZZ", tan: "tan-Latn-ZZ", taq: "taq-Latn-ZZ", tbc: "tbc-Latn-ZZ", tbd: "tbd-Latn-ZZ", tbf: "tbf-Latn-ZZ", tbg: "tbg-Latn-ZZ", tbo: "tbo-Latn-ZZ", tbw: "tbw-Latn-PH", tbz: "tbz-Latn-ZZ", tci: "tci-Latn-ZZ", tcy: "tcy-Knda-IN", tdd: "tdd-Tale-CN", tdg: "tdg-Deva-NP", tdh: "tdh-Deva-NP", tdu: "tdu-Latn-MY", te: "te-Telu-IN", ted: "ted-Latn-ZZ", tem: "tem-Latn-SL", teo: "teo-Latn-UG", tet: "tet-Latn-TL", tfi: "tfi-Latn-ZZ", tg: "tg-Cyrl-TJ", "tg-Arab": "tg-Arab-PK", "tg-PK": "tg-Arab-PK", tgc: "tgc-Latn-ZZ", tgo: "tgo-Latn-ZZ", tgu: "tgu-Latn-ZZ", th: "th-Thai-TH", thl: "thl-Deva-NP", thq: "thq-Deva-NP", thr: "thr-Deva-NP", ti: "ti-Ethi-ET", tif: "tif-Latn-ZZ", tig: "tig-Ethi-ER", tik: "tik-Latn-ZZ", tim: "tim-Latn-ZZ", tio: "tio-Latn-ZZ", tiv: "tiv-Latn-NG", tk: "tk-Latn-TM", tkl: "tkl-Latn-TK", tkr: "tkr-Latn-AZ", tkt: "tkt-Deva-NP", tl: "tl-Latn-PH", tlf: "tlf-Latn-ZZ", tlx: "tlx-Latn-ZZ", tly: "tly-Latn-AZ", tmh: "tmh-Latn-NE", tmy: "tmy-Latn-ZZ", tn: "tn-Latn-ZA", tnh: "tnh-Latn-ZZ", to: "to-Latn-TO", tof: "tof-Latn-ZZ", tog: "tog-Latn-MW", toq: "toq-Latn-ZZ", tpi: "tpi-Latn-PG", tpm: "tpm-Latn-ZZ", tpz: "tpz-Latn-ZZ", tqo: "tqo-Latn-ZZ", tr: "tr-Latn-TR", tru: "tru-Latn-TR", trv: "trv-Latn-TW", trw: "trw-Arab-PK", ts: "ts-Latn-ZA", tsd: "tsd-Grek-GR", tsf: "tsf-Deva-NP", tsg: "tsg-Latn-PH", tsj: "tsj-Tibt-BT", tsw: "tsw-Latn-ZZ", tt: "tt-Cyrl-RU", ttd: "ttd-Latn-ZZ", tte: "tte-Latn-ZZ", ttj: "ttj-Latn-UG", ttr: "ttr-Latn-ZZ", tts: "tts-Thai-TH", ttt: "ttt-Latn-AZ", tuh: "tuh-Latn-ZZ", tul: "tul-Latn-ZZ", tum: "tum-Latn-MW", tuq: "tuq-Latn-ZZ", tvd: "tvd-Latn-ZZ", tvl: "tvl-Latn-TV", tvu: "tvu-Latn-ZZ", twh: "twh-Latn-ZZ", twq: "twq-Latn-NE", txg: "txg-Tang-CN", ty: "ty-Latn-PF", tya: "tya-Latn-ZZ", tyv: "tyv-Cyrl-RU", tzm: "tzm-Latn-MA", ubu: "ubu-Latn-ZZ", udi: "udi-Aghb-RU", udm: "udm-Cyrl-RU", ug: "ug-Arab-CN", "ug-Cyrl": "ug-Cyrl-KZ", "ug-KZ": "ug-Cyrl-KZ", "ug-MN": "ug-Cyrl-MN", uga: "uga-Ugar-SY", uk: "uk-Cyrl-UA", uli: "uli-Latn-FM", umb: "umb-Latn-AO", und: "en-Latn-US", "und-002": "en-Latn-NG", "und-003": "en-Latn-US", "und-005": "pt-Latn-BR", "und-009": "en-Latn-AU", "und-011": "en-Latn-NG", "und-013": "es-Latn-MX", "und-014": "sw-Latn-TZ", "und-015": "ar-Arab-EG", "und-017": "sw-Latn-CD", "und-018": "en-Latn-ZA", "und-019": "en-Latn-US", "und-021": "en-Latn-US", "und-029": "es-Latn-CU", "und-030": "zh-Hans-CN", "und-034": "hi-Deva-IN", "und-035": "id-Latn-ID", "und-039": "it-Latn-IT", "und-053": "en-Latn-AU", "und-054": "en-Latn-PG", "und-057": "en-Latn-GU", "und-061": "sm-Latn-WS", "und-142": "zh-Hans-CN", "und-143": "uz-Latn-UZ", "und-145": "ar-Arab-SA", "und-150": "ru-Cyrl-RU", "und-151": "ru-Cyrl-RU", "und-154": "en-Latn-GB", "und-155": "de-Latn-DE", "und-202": "en-Latn-NG", "und-419": "es-Latn-419", "und-AD": "ca-Latn-AD", "und-Adlm": "ff-Adlm-GN", "und-AE": "ar-Arab-AE", "und-AF": "fa-Arab-AF", "und-Aghb": "udi-Aghb-RU", "und-Ahom": "aho-Ahom-IN", "und-AL": "sq-Latn-AL", "und-AM": "hy-Armn-AM", "und-AO": "pt-Latn-AO", "und-AQ": "und-Latn-AQ", "und-AR": "es-Latn-AR", "und-Arab": "ar-Arab-EG", "und-Arab-CC": "ms-Arab-CC", "und-Arab-CN": "ug-Arab-CN", "und-Arab-GB": "ks-Arab-GB", "und-Arab-ID": "ms-Arab-ID", "und-Arab-IN": "ur-Arab-IN", "und-Arab-KH": "cja-Arab-KH", "und-Arab-MM": "rhg-Arab-MM", "und-Arab-MN": "kk-Arab-MN", "und-Arab-MU": "ur-Arab-MU", "und-Arab-NG": "ha-Arab-NG", "und-Arab-PK": "ur-Arab-PK", "und-Arab-TG": "apd-Arab-TG", "und-Arab-TH": "mfa-Arab-TH", "und-Arab-TJ": "fa-Arab-TJ", "und-Arab-TR": "az-Arab-TR", "und-Arab-YT": "swb-Arab-YT", "und-Armi": "arc-Armi-IR", "und-Armn": "hy-Armn-AM", "und-AS": "sm-Latn-AS", "und-AT": "de-Latn-AT", "und-Avst": "ae-Avst-IR", "und-AW": "nl-Latn-AW", "und-AX": "sv-Latn-AX", "und-AZ": "az-Latn-AZ", "und-BA": "bs-Latn-BA", "und-Bali": "ban-Bali-ID", "und-Bamu": "bax-Bamu-CM", "und-Bass": "bsq-Bass-LR", "und-Batk": "bbc-Batk-ID", "und-BD": "bn-Beng-BD", "und-BE": "nl-Latn-BE", "und-Beng": "bn-Beng-BD", "und-BF": "fr-Latn-BF", "und-BG": "bg-Cyrl-BG", "und-BH": "ar-Arab-BH", "und-Bhks": "sa-Bhks-IN", "und-BI": "rn-Latn-BI", "und-BJ": "fr-Latn-BJ", "und-BL": "fr-Latn-BL", "und-BN": "ms-Latn-BN", "und-BO": "es-Latn-BO", "und-Bopo": "zh-Bopo-TW", "und-BQ": "pap-Latn-BQ", "und-BR": "pt-Latn-BR", "und-Brah": "pka-Brah-IN", "und-Brai": "fr-Brai-FR", "und-BT": "dz-Tibt-BT", "und-Bugi": "bug-Bugi-ID", "und-Buhd": "bku-Buhd-PH", "und-BV": "und-Latn-BV", "und-BY": "be-Cyrl-BY", "und-Cakm": "ccp-Cakm-BD", "und-Cans": "cr-Cans-CA", "und-Cari": "xcr-Cari-TR", "und-CD": "sw-Latn-CD", "und-CF": "fr-Latn-CF", "und-CG": "fr-Latn-CG", "und-CH": "de-Latn-CH", "und-Cham": "cjm-Cham-VN", "und-Cher": "chr-Cher-US", "und-Chrs": "xco-Chrs-UZ", "und-CI": "fr-Latn-CI", "und-CL": "es-Latn-CL", "und-CM": "fr-Latn-CM", "und-CN": "zh-Hans-CN", "und-CO": "es-Latn-CO", "und-Copt": "cop-Copt-EG", "und-CP": "und-Latn-CP", "und-Cprt": "grc-Cprt-CY", "und-CR": "es-Latn-CR", "und-CU": "es-Latn-CU", "und-CV": "pt-Latn-CV", "und-CW": "pap-Latn-CW", "und-CY": "el-Grek-CY", "und-Cyrl": "ru-Cyrl-RU", "und-Cyrl-AL": "mk-Cyrl-AL", "und-Cyrl-BA": "sr-Cyrl-BA", "und-Cyrl-GE": "os-Cyrl-GE", "und-Cyrl-GR": "mk-Cyrl-GR", "und-Cyrl-MD": "uk-Cyrl-MD", "und-Cyrl-RO": "bg-Cyrl-RO", "und-Cyrl-SK": "uk-Cyrl-SK", "und-Cyrl-TR": "kbd-Cyrl-TR", "und-Cyrl-XK": "sr-Cyrl-XK", "und-CZ": "cs-Latn-CZ", "und-DE": "de-Latn-DE", "und-Deva": "hi-Deva-IN", "und-Deva-BT": "ne-Deva-BT", "und-Deva-FJ": "hif-Deva-FJ", "und-Deva-MU": "bho-Deva-MU", "und-Deva-PK": "btv-Deva-PK", "und-Diak": "dv-Diak-MV", "und-DJ": "aa-Latn-DJ", "und-DK": "da-Latn-DK", "und-DO": "es-Latn-DO", "und-Dogr": "doi-Dogr-IN", "und-Dupl": "fr-Dupl-FR", "und-DZ": "ar-Arab-DZ", "und-EA": "es-Latn-EA", "und-EC": "es-Latn-EC", "und-EE": "et-Latn-EE", "und-EG": "ar-Arab-EG", "und-Egyp": "egy-Egyp-EG", "und-EH": "ar-Arab-EH", "und-Elba": "sq-Elba-AL", "und-Elym": "arc-Elym-IR", "und-ER": "ti-Ethi-ER", "und-ES": "es-Latn-ES", "und-ET": "am-Ethi-ET", "und-Ethi": "am-Ethi-ET", "und-EU": "en-Latn-IE", "und-EZ": "de-Latn-EZ", "und-FI": "fi-Latn-FI", "und-FO": "fo-Latn-FO", "und-FR": "fr-Latn-FR", "und-GA": "fr-Latn-GA", "und-GE": "ka-Geor-GE", "und-Geor": "ka-Geor-GE", "und-GF": "fr-Latn-GF", "und-GH": "ak-Latn-GH", "und-GL": "kl-Latn-GL", "und-Glag": "cu-Glag-BG", "und-GN": "fr-Latn-GN", "und-Gong": "wsg-Gong-IN", "und-Gonm": "esg-Gonm-IN", "und-Goth": "got-Goth-UA", "und-GP": "fr-Latn-GP", "und-GQ": "es-Latn-GQ", "und-GR": "el-Grek-GR", "und-Gran": "sa-Gran-IN", "und-Grek": "el-Grek-GR", "und-Grek-TR": "bgx-Grek-TR", "und-GS": "und-Latn-GS", "und-GT": "es-Latn-GT", "und-Gujr": "gu-Gujr-IN", "und-Guru": "pa-Guru-IN", "und-GW": "pt-Latn-GW", "und-Hanb": "zh-Hanb-TW", "und-Hang": "ko-Hang-KR", "und-Hani": "zh-Hani-CN", "und-Hano": "hnn-Hano-PH", "und-Hans": "zh-Hans-CN", "und-Hant": "zh-Hant-TW", "und-Hebr": "he-Hebr-IL", "und-Hebr-CA": "yi-Hebr-CA", "und-Hebr-GB": "yi-Hebr-GB", "und-Hebr-SE": "yi-Hebr-SE", "und-Hebr-UA": "yi-Hebr-UA", "und-Hebr-US": "yi-Hebr-US", "und-Hira": "ja-Hira-JP", "und-HK": "zh-Hant-HK", "und-Hluw": "hlu-Hluw-TR", "und-HM": "und-Latn-HM", "und-Hmng": "hnj-Hmng-LA", "und-Hmnp": "mww-Hmnp-US", "und-HN": "es-Latn-HN", "und-HR": "hr-Latn-HR", "und-HT": "ht-Latn-HT", "und-HU": "hu-Latn-HU", "und-Hung": "hu-Hung-HU", "und-IC": "es-Latn-IC", "und-ID": "id-Latn-ID", "und-IL": "he-Hebr-IL", "und-IN": "hi-Deva-IN", "und-IQ": "ar-Arab-IQ", "und-IR": "fa-Arab-IR", "und-IS": "is-Latn-IS", "und-IT": "it-Latn-IT", "und-Ital": "ett-Ital-IT", "und-Jamo": "ko-Jamo-KR", "und-Java": "jv-Java-ID", "und-JO": "ar-Arab-JO", "und-JP": "ja-Jpan-JP", "und-Jpan": "ja-Jpan-JP", "und-Kali": "eky-Kali-MM", "und-Kana": "ja-Kana-JP", "und-KE": "sw-Latn-KE", "und-KG": "ky-Cyrl-KG", "und-KH": "km-Khmr-KH", "und-Khar": "pra-Khar-PK", "und-Khmr": "km-Khmr-KH", "und-Khoj": "sd-Khoj-IN", "und-Kits": "zkt-Kits-CN", "und-KM": "ar-Arab-KM", "und-Knda": "kn-Knda-IN", "und-Kore": "ko-Kore-KR", "und-KP": "ko-Kore-KP", "und-KR": "ko-Kore-KR", "und-Kthi": "bho-Kthi-IN", "und-KW": "ar-Arab-KW", "und-KZ": "ru-Cyrl-KZ", "und-LA": "lo-Laoo-LA", "und-Lana": "nod-Lana-TH", "und-Laoo": "lo-Laoo-LA", "und-Latn-AF": "tk-Latn-AF", "und-Latn-AM": "ku-Latn-AM", "und-Latn-CN": "za-Latn-CN", "und-Latn-CY": "tr-Latn-CY", "und-Latn-DZ": "fr-Latn-DZ", "und-Latn-ET": "en-Latn-ET", "und-Latn-GE": "ku-Latn-GE", "und-Latn-IR": "tk-Latn-IR", "und-Latn-KM": "fr-Latn-KM", "und-Latn-MA": "fr-Latn-MA", "und-Latn-MK": "sq-Latn-MK", "und-Latn-MM": "kac-Latn-MM", "und-Latn-MO": "pt-Latn-MO", "und-Latn-MR": "fr-Latn-MR", "und-Latn-RU": "krl-Latn-RU", "und-Latn-SY": "fr-Latn-SY", "und-Latn-TN": "fr-Latn-TN", "und-Latn-TW": "trv-Latn-TW", "und-Latn-UA": "pl-Latn-UA", "und-LB": "ar-Arab-LB", "und-Lepc": "lep-Lepc-IN", "und-LI": "de-Latn-LI", "und-Limb": "lif-Limb-IN", "und-Lina": "lab-Lina-GR", "und-Linb": "grc-Linb-GR", "und-Lisu": "lis-Lisu-CN", "und-LK": "si-Sinh-LK", "und-LS": "st-Latn-LS", "und-LT": "lt-Latn-LT", "und-LU": "fr-Latn-LU", "und-LV": "lv-Latn-LV", "und-LY": "ar-Arab-LY", "und-Lyci": "xlc-Lyci-TR", "und-Lydi": "xld-Lydi-TR", "und-MA": "ar-Arab-MA", "und-Mahj": "hi-Mahj-IN", "und-Maka": "mak-Maka-ID", "und-Mand": "myz-Mand-IR", "und-Mani": "xmn-Mani-CN", "und-Marc": "bo-Marc-CN", "und-MC": "fr-Latn-MC", "und-MD": "ro-Latn-MD", "und-ME": "sr-Latn-ME", "und-Medf": "dmf-Medf-NG", "und-Mend": "men-Mend-SL", "und-Merc": "xmr-Merc-SD", "und-Mero": "xmr-Mero-SD", "und-MF": "fr-Latn-MF", "und-MG": "mg-Latn-MG", "und-MK": "mk-Cyrl-MK", "und-ML": "bm-Latn-ML", "und-Mlym": "ml-Mlym-IN", "und-MM": "my-Mymr-MM", "und-MN": "mn-Cyrl-MN", "und-MO": "zh-Hant-MO", "und-Modi": "mr-Modi-IN", "und-Mong": "mn-Mong-CN", "und-MQ": "fr-Latn-MQ", "und-MR": "ar-Arab-MR", "und-Mroo": "mro-Mroo-BD", "und-MT": "mt-Latn-MT", "und-Mtei": "mni-Mtei-IN", "und-MU": "mfe-Latn-MU", "und-Mult": "skr-Mult-PK", "und-MV": "dv-Thaa-MV", "und-MX": "es-Latn-MX", "und-MY": "ms-Latn-MY", "und-Mymr": "my-Mymr-MM", "und-Mymr-IN": "kht-Mymr-IN", "und-Mymr-TH": "mnw-Mymr-TH", "und-MZ": "pt-Latn-MZ", "und-NA": "af-Latn-NA", "und-Nand": "sa-Nand-IN", "und-Narb": "xna-Narb-SA", "und-Nbat": "arc-Nbat-JO", "und-NC": "fr-Latn-NC", "und-NE": "ha-Latn-NE", "und-Newa": "new-Newa-NP", "und-NI": "es-Latn-NI", "und-Nkoo": "man-Nkoo-GN", "und-NL": "nl-Latn-NL", "und-NO": "nb-Latn-NO", "und-NP": "ne-Deva-NP", "und-Nshu": "zhx-Nshu-CN", "und-Ogam": "sga-Ogam-IE", "und-Olck": "sat-Olck-IN", "und-OM": "ar-Arab-OM", "und-Orkh": "otk-Orkh-MN", "und-Orya": "or-Orya-IN", "und-Osge": "osa-Osge-US", "und-Osma": "so-Osma-SO", "und-PA": "es-Latn-PA", "und-Palm": "arc-Palm-SY", "und-Pauc": "ctd-Pauc-MM", "und-PE": "es-Latn-PE", "und-Perm": "kv-Perm-RU", "und-PF": "fr-Latn-PF", "und-PG": "tpi-Latn-PG", "und-PH": "fil-Latn-PH", "und-Phag": "lzh-Phag-CN", "und-Phli": "pal-Phli-IR", "und-Phlp": "pal-Phlp-CN", "und-Phnx": "phn-Phnx-LB", "und-PK": "ur-Arab-PK", "und-PL": "pl-Latn-PL", "und-Plrd": "hmd-Plrd-CN", "und-PM": "fr-Latn-PM", "und-PR": "es-Latn-PR", "und-Prti": "xpr-Prti-IR", "und-PS": "ar-Arab-PS", "und-PT": "pt-Latn-PT", "und-PW": "pau-Latn-PW", "und-PY": "gn-Latn-PY", "und-QA": "ar-Arab-QA", "und-QO": "en-Latn-DG", "und-RE": "fr-Latn-RE", "und-Rjng": "rej-Rjng-ID", "und-RO": "ro-Latn-RO", "und-Rohg": "rhg-Rohg-MM", "und-RS": "sr-Cyrl-RS", "und-RU": "ru-Cyrl-RU", "und-Runr": "non-Runr-SE", "und-RW": "rw-Latn-RW", "und-SA": "ar-Arab-SA", "und-Samr": "smp-Samr-IL", "und-Sarb": "xsa-Sarb-YE", "und-Saur": "saz-Saur-IN", "und-SC": "fr-Latn-SC", "und-SD": "ar-Arab-SD", "und-SE": "sv-Latn-SE", "und-Sgnw": "ase-Sgnw-US", "und-Shaw": "en-Shaw-GB", "und-Shrd": "sa-Shrd-IN", "und-SI": "sl-Latn-SI", "und-Sidd": "sa-Sidd-IN", "und-Sind": "sd-Sind-IN", "und-Sinh": "si-Sinh-LK", "und-SJ": "nb-Latn-SJ", "und-SK": "sk-Latn-SK", "und-SM": "it-Latn-SM", "und-SN": "fr-Latn-SN", "und-SO": "so-Latn-SO", "und-Sogd": "sog-Sogd-UZ", "und-Sogo": "sog-Sogo-UZ", "und-Sora": "srb-Sora-IN", "und-Soyo": "cmg-Soyo-MN", "und-SR": "nl-Latn-SR", "und-ST": "pt-Latn-ST", "und-Sund": "su-Sund-ID", "und-SV": "es-Latn-SV", "und-SY": "ar-Arab-SY", "und-Sylo": "syl-Sylo-BD", "und-Syrc": "syr-Syrc-IQ", "und-Tagb": "tbw-Tagb-PH", "und-Takr": "doi-Takr-IN", "und-Tale": "tdd-Tale-CN", "und-Talu": "khb-Talu-CN", "und-Taml": "ta-Taml-IN", "und-Tang": "txg-Tang-CN", "und-Tavt": "blt-Tavt-VN", "und-TD": "fr-Latn-TD", "und-Telu": "te-Telu-IN", "und-TF": "fr-Latn-TF", "und-Tfng": "zgh-Tfng-MA", "und-TG": "fr-Latn-TG", "und-Tglg": "fil-Tglg-PH", "und-TH": "th-Thai-TH", "und-Thaa": "dv-Thaa-MV", "und-Thai": "th-Thai-TH", "und-Thai-CN": "lcp-Thai-CN", "und-Thai-KH": "kdt-Thai-KH", "und-Thai-LA": "kdt-Thai-LA", "und-Tibt": "bo-Tibt-CN", "und-Tirh": "mai-Tirh-IN", "und-TJ": "tg-Cyrl-TJ", "und-TK": "tkl-Latn-TK", "und-TL": "pt-Latn-TL", "und-TM": "tk-Latn-TM", "und-TN": "ar-Arab-TN", "und-TO": "to-Latn-TO", "und-TR": "tr-Latn-TR", "und-TV": "tvl-Latn-TV", "und-TW": "zh-Hant-TW", "und-TZ": "sw-Latn-TZ", "und-UA": "uk-Cyrl-UA", "und-UG": "sw-Latn-UG", "und-Ugar": "uga-Ugar-SY", "und-UY": "es-Latn-UY", "und-UZ": "uz-Latn-UZ", "und-VA": "it-Latn-VA", "und-Vaii": "vai-Vaii-LR", "und-VE": "es-Latn-VE", "und-VN": "vi-Latn-VN", "und-VU": "bi-Latn-VU", "und-Wara": "hoc-Wara-IN", "und-Wcho": "nnp-Wcho-IN", "und-WF": "fr-Latn-WF", "und-WS": "sm-Latn-WS", "und-XK": "sq-Latn-XK", "und-Xpeo": "peo-Xpeo-IR", "und-Xsux": "akk-Xsux-IQ", "und-YE": "ar-Arab-YE", "und-Yezi": "ku-Yezi-GE", "und-Yiii": "ii-Yiii-CN", "und-YT": "fr-Latn-YT", "und-Zanb": "cmg-Zanb-MN", "und-ZW": "sn-Latn-ZW", unr: "unr-Beng-IN", "unr-Deva": "unr-Deva-NP", "unr-NP": "unr-Deva-NP", unx: "unx-Beng-IN", uok: "uok-Latn-ZZ", ur: "ur-Arab-PK", uri: "uri-Latn-ZZ", urt: "urt-Latn-ZZ", urw: "urw-Latn-ZZ", usa: "usa-Latn-ZZ", uth: "uth-Latn-ZZ", utr: "utr-Latn-ZZ", uvh: "uvh-Latn-ZZ", uvl: "uvl-Latn-ZZ", uz: "uz-Latn-UZ", "uz-AF": "uz-Arab-AF", "uz-Arab": "uz-Arab-AF", "uz-CN": "uz-Cyrl-CN", vag: "vag-Latn-ZZ", vai: "vai-Vaii-LR", van: "van-Latn-ZZ", ve: "ve-Latn-ZA", vec: "vec-Latn-IT", vep: "vep-Latn-RU", vi: "vi-Latn-VN", vic: "vic-Latn-SX", viv: "viv-Latn-ZZ", vls: "vls-Latn-BE", vmf: "vmf-Latn-DE", vmw: "vmw-Latn-MZ", vo: "vo-Latn-001", vot: "vot-Latn-RU", vro: "vro-Latn-EE", vun: "vun-Latn-TZ", vut: "vut-Latn-ZZ", wa: "wa-Latn-BE", wae: "wae-Latn-CH", waj: "waj-Latn-ZZ", wal: "wal-Ethi-ET", wan: "wan-Latn-ZZ", war: "war-Latn-PH", wbp: "wbp-Latn-AU", wbq: "wbq-Telu-IN", wbr: "wbr-Deva-IN", wci: "wci-Latn-ZZ", wer: "wer-Latn-ZZ", wgi: "wgi-Latn-ZZ", whg: "whg-Latn-ZZ", wib: "wib-Latn-ZZ", wiu: "wiu-Latn-ZZ", wiv: "wiv-Latn-ZZ", wja: "wja-Latn-ZZ", wji: "wji-Latn-ZZ", wls: "wls-Latn-WF", wmo: "wmo-Latn-ZZ", wnc: "wnc-Latn-ZZ", wni: "wni-Arab-KM", wnu: "wnu-Latn-ZZ", wo: "wo-Latn-SN", wob: "wob-Latn-ZZ", wos: "wos-Latn-ZZ", wrs: "wrs-Latn-ZZ", wsg: "wsg-Gong-IN", wsk: "wsk-Latn-ZZ", wtm: "wtm-Deva-IN", wuu: "wuu-Hans-CN", wuv: "wuv-Latn-ZZ", wwa: "wwa-Latn-ZZ", xav: "xav-Latn-BR", xbi: "xbi-Latn-ZZ", xco: "xco-Chrs-UZ", xcr: "xcr-Cari-TR", xes: "xes-Latn-ZZ", xh: "xh-Latn-ZA", xla: "xla-Latn-ZZ", xlc: "xlc-Lyci-TR", xld: "xld-Lydi-TR", xmf: "xmf-Geor-GE", xmn: "xmn-Mani-CN", xmr: "xmr-Merc-SD", xna: "xna-Narb-SA", xnr: "xnr-Deva-IN", xog: "xog-Latn-UG", xon: "xon-Latn-ZZ", xpr: "xpr-Prti-IR", xrb: "xrb-Latn-ZZ", xsa: "xsa-Sarb-YE", xsi: "xsi-Latn-ZZ", xsm: "xsm-Latn-ZZ", xsr: "xsr-Deva-NP", xwe: "xwe-Latn-ZZ", yam: "yam-Latn-ZZ", yao: "yao-Latn-MZ", yap: "yap-Latn-FM", yas: "yas-Latn-ZZ", yat: "yat-Latn-ZZ", yav: "yav-Latn-CM", yay: "yay-Latn-ZZ", yaz: "yaz-Latn-ZZ", yba: "yba-Latn-ZZ", ybb: "ybb-Latn-CM", yby: "yby-Latn-ZZ", yer: "yer-Latn-ZZ", ygr: "ygr-Latn-ZZ", ygw: "ygw-Latn-ZZ", yi: "yi-Hebr-001", yko: "yko-Latn-ZZ", yle: "yle-Latn-ZZ", ylg: "ylg-Latn-ZZ", yll: "yll-Latn-ZZ", yml: "yml-Latn-ZZ", yo: "yo-Latn-NG", yon: "yon-Latn-ZZ", yrb: "yrb-Latn-ZZ", yre: "yre-Latn-ZZ", yrl: "yrl-Latn-BR", yss: "yss-Latn-ZZ", yua: "yua-Latn-MX", yue: "yue-Hant-HK", "yue-CN": "yue-Hans-CN", "yue-Hans": "yue-Hans-CN", yuj: "yuj-Latn-ZZ", yut: "yut-Latn-ZZ", yuw: "yuw-Latn-ZZ", za: "za-Latn-CN", zag: "zag-Latn-SD", zdj: "zdj-Arab-KM", zea: "zea-Latn-NL", zgh: "zgh-Tfng-MA", zh: "zh-Hans-CN", "zh-AU": "zh-Hant-AU", "zh-BN": "zh-Hant-BN", "zh-Bopo": "zh-Bopo-TW", "zh-GB": "zh-Hant-GB", "zh-GF": "zh-Hant-GF", "zh-Hanb": "zh-Hanb-TW", "zh-Hant": "zh-Hant-TW", "zh-HK": "zh-Hant-HK", "zh-ID": "zh-Hant-ID", "zh-MO": "zh-Hant-MO", "zh-PA": "zh-Hant-PA", "zh-PF": "zh-Hant-PF", "zh-PH": "zh-Hant-PH", "zh-SR": "zh-Hant-SR", "zh-TH": "zh-Hant-TH", "zh-TW": "zh-Hant-TW", "zh-US": "zh-Hant-US", "zh-VN": "zh-Hant-VN", zhx: "zhx-Nshu-CN", zia: "zia-Latn-ZZ", zkt: "zkt-Kits-CN", zlm: "zlm-Latn-TG", zmi: "zmi-Latn-MY", zne: "zne-Latn-ZZ", zu: "zu-Latn-ZA", zza: "zza-Latn-TR" } } }; } }); // bazel-out/darwin-fastbuild/bin/packages/intl-getcanonicallocales/src/canonicalizer.js var require_canonicalizer = __commonJS({ "bazel-out/darwin-fastbuild/bin/packages/intl-getcanonicallocales/src/canonicalizer.js": function(exports) { "use strict"; Object.defineProperty(exports, "__esModule", {value: true}); exports.canonicalizeUnicodeLocaleId = exports.canonicalizeUnicodeLanguageId = void 0; var tslib_1 = require_tslib(); var aliases_1 = require_aliases(); var parser_1 = require_parser(); var likelySubtags2 = tslib_1.__importStar(require_likelySubtags()); var emitter_1 = require_emitter(); function canonicalizeAttrs(strs) { return Object.keys(strs.reduce(function(all, str) { all[str.toLowerCase()] = 1; return all; }, {})).sort(); } function canonicalizeKVs(arr) { var all = {}; var result = []; for (var _i = 0, arr_1 = arr; _i < arr_1.length; _i++) { var kv = arr_1[_i]; if (kv[0] in all) { continue; } all[kv[0]] = 1; if (!kv[1] || kv[1] === "true") { result.push([kv[0].toLowerCase()]); } else { result.push([kv[0].toLowerCase(), kv[1].toLowerCase()]); } } return result.sort(compareKV); } function compareKV(t1, t2) { return t1[0] < t2[0] ? -1 : t1[0] > t2[0] ? 1 : 0; } function compareExtension(e1, e2) { return e1.type < e2.type ? -1 : e1.type > e2.type ? 1 : 0; } function mergeVariants(v1, v2) { var result = tslib_1.__spreadArray([], v1); for (var _i = 0, v2_1 = v2; _i < v2_1.length; _i++) { var v = v2_1[_i]; if (v1.indexOf(v) < 0) { result.push(v); } } return result; } function canonicalizeUnicodeLanguageId(unicodeLanguageId) { var finalLangAst = unicodeLanguageId; if (unicodeLanguageId.variants.length) { var replacedLang_1 = ""; for (var _i = 0, _a = unicodeLanguageId.variants; _i < _a.length; _i++) { var variant = _a[_i]; if (replacedLang_1 = aliases_1.languageAlias[emitter_1.emitUnicodeLanguageId({ lang: unicodeLanguageId.lang, variants: [variant] })]) { var replacedLangAst = parser_1.parseUnicodeLanguageId(replacedLang_1.split(parser_1.SEPARATOR)); finalLangAst = { lang: replacedLangAst.lang, script: finalLangAst.script || replacedLangAst.script, region: finalLangAst.region || replacedLangAst.region, variants: mergeVariants(finalLangAst.variants, replacedLangAst.variants) }; break; } } } if (finalLangAst.script && finalLangAst.region) { var replacedLang_2 = aliases_1.languageAlias[emitter_1.emitUnicodeLanguageId({ lang: finalLangAst.lang, script: finalLangAst.script, region: finalLangAst.region, variants: [] })]; if (replacedLang_2) { var replacedLangAst = parser_1.parseUnicodeLanguageId(replacedLang_2.split(parser_1.SEPARATOR)); finalLangAst = { lang: replacedLangAst.lang, script: replacedLangAst.script, region: replacedLangAst.region, variants: finalLangAst.variants }; } } if (finalLangAst.region) { var replacedLang_3 = aliases_1.languageAlias[emitter_1.emitUnicodeLanguageId({ lang: finalLangAst.lang, region: finalLangAst.region, variants: [] })]; if (replacedLang_3) { var replacedLangAst = parser_1.parseUnicodeLanguageId(replacedLang_3.split(parser_1.SEPARATOR)); finalLangAst = { lang: replacedLangAst.lang, script: finalLangAst.script || replacedLangAst.script, region: replacedLangAst.region, variants: finalLangAst.variants }; } } var replacedLang = aliases_1.languageAlias[emitter_1.emitUnicodeLanguageId({ lang: finalLangAst.lang, variants: [] })]; if (replacedLang) { var replacedLangAst = parser_1.parseUnicodeLanguageId(replacedLang.split(parser_1.SEPARATOR)); finalLangAst = { lang: replacedLangAst.lang, script: finalLangAst.script || replacedLangAst.script, region: finalLangAst.region || replacedLangAst.region, variants: finalLangAst.variants }; } if (finalLangAst.region) { var region = finalLangAst.region.toUpperCase(); var regionAlias = aliases_1.territoryAlias[region]; var replacedRegion = void 0; if (regionAlias) { var regions = regionAlias.split(" "); replacedRegion = regions[0]; var likelySubtag = likelySubtags2.supplemental.likelySubtags[emitter_1.emitUnicodeLanguageId({ lang: finalLangAst.lang, script: finalLangAst.script, variants: [] })]; if (likelySubtag) { var likelyRegion = parser_1.parseUnicodeLanguageId(likelySubtag.split(parser_1.SEPARATOR)).region; if (likelyRegion && regions.indexOf(likelyRegion) > -1) { replacedRegion = likelyRegion; } } } if (replacedRegion) { finalLangAst.region = replacedRegion; } finalLangAst.region = finalLangAst.region.toUpperCase(); } if (finalLangAst.script) { finalLangAst.script = finalLangAst.script[0].toUpperCase() + finalLangAst.script.slice(1).toLowerCase(); if (aliases_1.scriptAlias[finalLangAst.script]) { finalLangAst.script = aliases_1.scriptAlias[finalLangAst.script]; } } if (finalLangAst.variants.length) { for (var i = 0; i < finalLangAst.variants.length; i++) { var variant = finalLangAst.variants[i].toLowerCase(); if (aliases_1.variantAlias[variant]) { var alias = aliases_1.variantAlias[variant]; if (parser_1.isUnicodeVariantSubtag(alias)) { finalLangAst.variants[i] = alias; } else if (parser_1.isUnicodeLanguageSubtag(alias)) { finalLangAst.lang = alias; } } } finalLangAst.variants.sort(); } return finalLangAst; } exports.canonicalizeUnicodeLanguageId = canonicalizeUnicodeLanguageId; function canonicalizeUnicodeLocaleId(locale) { locale.lang = canonicalizeUnicodeLanguageId(locale.lang); if (locale.extensions) { for (var _i = 0, _a = locale.extensions; _i < _a.length; _i++) { var extension = _a[_i]; switch (extension.type) { case "u": extension.keywords = canonicalizeKVs(extension.keywords); if (extension.attributes) { extension.attributes = canonicalizeAttrs(extension.attributes); } break; case "t": if (extension.lang) { extension.lang = canonicalizeUnicodeLanguageId(extension.lang); } extension.fields = canonicalizeKVs(extension.fields); break; default: extension.value = extension.value.toLowerCase(); break; } } locale.extensions.sort(compareExtension); } return locale; } exports.canonicalizeUnicodeLocaleId = canonicalizeUnicodeLocaleId; } }); // bazel-out/darwin-fastbuild/bin/packages/intl-getcanonicallocales/src/types.js var require_types = __commonJS({ "bazel-out/darwin-fastbuild/bin/packages/intl-getcanonicallocales/src/types.js": function(exports) { "use strict"; Object.defineProperty(exports, "__esModule", {value: true}); } }); // bazel-out/darwin-fastbuild/bin/packages/intl-getcanonicallocales/index.js var require_intl_getcanonicallocales = __commonJS({ "bazel-out/darwin-fastbuild/bin/packages/intl-getcanonicallocales/index.js": function(exports) { "use strict"; Object.defineProperty(exports, "__esModule", {value: true}); exports.isUnicodeLanguageSubtag = exports.isUnicodeScriptSubtag = exports.isUnicodeRegionSubtag = exports.isStructurallyValidLanguageTag = exports.parseUnicodeLanguageId = exports.parseUnicodeLocaleId = exports.getCanonicalLocales = void 0; var tslib_1 = require_tslib(); var parser_1 = require_parser(); var emitter_1 = require_emitter(); var canonicalizer_1 = require_canonicalizer(); function CanonicalizeLocaleList2(locales) { if (locales === void 0) { return []; } var seen = []; if (typeof locales === "string") { locales = [locales]; } for (var _i = 0, locales_1 = locales; _i < locales_1.length; _i++) { var locale = locales_1[_i]; var canonicalizedTag = emitter_1.emitUnicodeLocaleId(canonicalizer_1.canonicalizeUnicodeLocaleId(parser_1.parseUnicodeLocaleId(locale))); if (seen.indexOf(canonicalizedTag) < 0) { seen.push(canonicalizedTag); } } return seen; } function getCanonicalLocales(locales) { return CanonicalizeLocaleList2(locales); } exports.getCanonicalLocales = getCanonicalLocales; var parser_2 = require_parser(); Object.defineProperty(exports, "parseUnicodeLocaleId", {enumerable: true, get: function() { return parser_2.parseUnicodeLocaleId; }}); Object.defineProperty(exports, "parseUnicodeLanguageId", {enumerable: true, get: function() { return parser_2.parseUnicodeLanguageId; }}); Object.defineProperty(exports, "isStructurallyValidLanguageTag", {enumerable: true, get: function() { return parser_2.isStructurallyValidLanguageTag; }}); Object.defineProperty(exports, "isUnicodeRegionSubtag", {enumerable: true, get: function() { return parser_2.isUnicodeRegionSubtag; }}); Object.defineProperty(exports, "isUnicodeScriptSubtag", {enumerable: true, get: function() { return parser_2.isUnicodeScriptSubtag; }}); Object.defineProperty(exports, "isUnicodeLanguageSubtag", {enumerable: true, get: function() { return parser_2.isUnicodeLanguageSubtag; }}); tslib_1.__exportStar(require_types(), exports); tslib_1.__exportStar(require_emitter(), exports); } }); // bazel-out/darwin-fastbuild/bin/packages/intl-locale/lib/index.js var import_tslib5 = __toModule(require_tslib()); // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/DateTimeFormat/BestFitFormatMatcher.js var import_tslib2 = __toModule(require_tslib()); // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/utils.js function invariant(condition, message, Err) { if (Err === void 0) { Err = Error; } if (!condition) { throw new Err(message); } } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/DateTimeFormat/skeleton.js var import_tslib = __toModule(require_tslib()); // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/types/date-time.js var RangePatternType; (function(RangePatternType2) { RangePatternType2["startRange"] = "startRange"; RangePatternType2["shared"] = "shared"; RangePatternType2["endRange"] = "endRange"; })(RangePatternType || (RangePatternType = {})); // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/262.js function ToString(o) { if (typeof o === "symbol") { throw TypeError("Cannot convert a Symbol value to a string"); } return String(o); } function ToObject(arg) { if (arg == null) { throw new TypeError("undefined/null cannot be converted to object"); } return Object(arg); } function SameValue(x, y) { if (Object.is) { return Object.is(x, y); } if (x === y) { return x !== 0 || 1 / x === 1 / y; } return x !== x && y !== y; } var MINUTES_PER_HOUR = 60; var SECONDS_PER_MINUTE = 60; var MS_PER_SECOND = 1e3; var MS_PER_MINUTE = MS_PER_SECOND * SECONDS_PER_MINUTE; var MS_PER_HOUR = MS_PER_MINUTE * MINUTES_PER_HOUR; // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/CoerceOptionsToObject.js function CoerceOptionsToObject(options) { if (typeof options === "undefined") { return Object.create(null); } return ToObject(options); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/DateTimeFormat/BasicFormatMatcher.js var import_tslib3 = __toModule(require_tslib()); // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/GetOption.js function GetOption(opts, prop, type, values, fallback) { if (typeof opts !== "object") { throw new TypeError("Options must be an object"); } var value = opts[prop]; if (value !== void 0) { if (type !== "boolean" && type !== "string") { throw new TypeError("invalid type"); } if (type === "boolean") { value = Boolean(value); } if (type === "string") { value = ToString(value); } if (values !== void 0 && !values.filter(function(val) { return val == value; }).length) { throw new RangeError(value + " is not within " + values.join(", ")); } return value; } return fallback; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/IsSanctionedSimpleUnitIdentifier.js var SANCTIONED_UNITS = [ "angle-degree", "area-acre", "area-hectare", "concentr-percent", "digital-bit", "digital-byte", "digital-gigabit", "digital-gigabyte", "digital-kilobit", "digital-kilobyte", "digital-megabit", "digital-megabyte", "digital-petabyte", "digital-terabit", "digital-terabyte", "duration-day", "duration-hour", "duration-millisecond", "duration-minute", "duration-month", "duration-second", "duration-week", "duration-year", "length-centimeter", "length-foot", "length-inch", "length-kilometer", "length-meter", "length-mile-scandinavian", "length-mile", "length-millimeter", "length-yard", "mass-gram", "mass-kilogram", "mass-ounce", "mass-pound", "mass-stone", "temperature-celsius", "temperature-fahrenheit", "volume-fluid-ounce", "volume-gallon", "volume-liter", "volume-milliliter" ]; function removeUnitNamespace(unit) { return unit.slice(unit.indexOf("-") + 1); } var SIMPLE_UNITS = SANCTIONED_UNITS.map(removeUnitNamespace); // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/regex.generated.js var S_UNICODE_REGEX = /[\$\+<->\^`\|~\xA2-\xA6\xA8\xA9\xAC\xAE-\xB1\xB4\xB8\xD7\xF7\u02C2-\u02C5\u02D2-\u02DF\u02E5-\u02EB\u02ED\u02EF-\u02FF\u0375\u0384\u0385\u03F6\u0482\u058D-\u058F\u0606-\u0608\u060B\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u07FE\u07FF\u09F2\u09F3\u09FA\u09FB\u0AF1\u0B70\u0BF3-\u0BFA\u0C7F\u0D4F\u0D79\u0E3F\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u166D\u17DB\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u1FBD\u1FBF-\u1FC1\u1FCD-\u1FCF\u1FDD-\u1FDF\u1FED-\u1FEF\u1FFD\u1FFE\u2044\u2052\u207A-\u207C\u208A-\u208C\u20A0-\u20BF\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u214F\u218A\u218B\u2190-\u2307\u230C-\u2328\u232B-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u2767\u2794-\u27C4\u27C7-\u27E5\u27F0-\u2982\u2999-\u29D7\u29DC-\u29FB\u29FE-\u2B73\u2B76-\u2B95\u2B97-\u2BFF\u2CE5-\u2CEA\u2E50\u2E51\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u309B\u309C\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA700-\uA716\uA720\uA721\uA789\uA78A\uA828-\uA82B\uA836-\uA839\uAA77-\uAA79\uAB5B\uAB6A\uAB6B\uFB29\uFBB2-\uFBC1\uFDFC\uFDFD\uFE62\uFE64-\uFE66\uFE69\uFF04\uFF0B\uFF1C-\uFF1E\uFF3E\uFF40\uFF5C\uFF5E\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFFC\uFFFD]|\uD800[\uDD37-\uDD3F\uDD79-\uDD89\uDD8C-\uDD8E\uDD90-\uDD9C\uDDA0\uDDD0-\uDDFC]|\uD802[\uDC77\uDC78\uDEC8]|\uD805\uDF3F|\uD807[\uDFD5-\uDFF1]|\uD81A[\uDF3C-\uDF3F\uDF45]|\uD82F\uDC9C|\uD834[\uDC00-\uDCF5\uDD00-\uDD26\uDD29-\uDD64\uDD6A-\uDD6C\uDD83\uDD84\uDD8C-\uDDA9\uDDAE-\uDDE8\uDE00-\uDE41\uDE45\uDF00-\uDF56]|\uD835[\uDEC1\uDEDB\uDEFB\uDF15\uDF35\uDF4F\uDF6F\uDF89\uDFA9\uDFC3]|\uD836[\uDC00-\uDDFF\uDE37-\uDE3A\uDE6D-\uDE74\uDE76-\uDE83\uDE85\uDE86]|\uD838[\uDD4F\uDEFF]|\uD83B[\uDCAC\uDCB0\uDD2E\uDEF0\uDEF1]|\uD83C[\uDC00-\uDC2B\uDC30-\uDC93\uDCA0-\uDCAE\uDCB1-\uDCBF\uDCC1-\uDCCF\uDCD1-\uDCF5\uDD0D-\uDDAD\uDDE6-\uDE02\uDE10-\uDE3B\uDE40-\uDE48\uDE50\uDE51\uDE60-\uDE65\uDF00-\uDFFF]|\uD83D[\uDC00-\uDED7\uDEE0-\uDEEC\uDEF0-\uDEFC\uDF00-\uDF73\uDF80-\uDFD8\uDFE0-\uDFEB]|\uD83E[\uDC00-\uDC0B\uDC10-\uDC47\uDC50-\uDC59\uDC60-\uDC87\uDC90-\uDCAD\uDCB0\uDCB1\uDD00-\uDD78\uDD7A-\uDDCB\uDDCD-\uDE53\uDE60-\uDE6D\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6\uDF00-\uDF92\uDF94-\uDFCA]/; // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/format_to_parts.js var CARET_S_UNICODE_REGEX = new RegExp("^" + S_UNICODE_REGEX.source); var S_DOLLAR_UNICODE_REGEX = new RegExp(S_UNICODE_REGEX.source + "$"); // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/data.js var import_tslib4 = __toModule(require_tslib()); var MissingLocaleDataError = function(_super) { (0, import_tslib4.__extends)(MissingLocaleDataError2, _super); function MissingLocaleDataError2() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.type = "MISSING_LOCALE_DATA"; return _this; } return MissingLocaleDataError2; }(Error); // bazel-out/darwin-fastbuild/bin/packages/intl-locale/lib/index.js var import_intl_getcanonicallocales = __toModule(require_intl_getcanonicallocales()); var likelySubtagsData = __toModule(require_likelySubtags()); // bazel-out/darwin-fastbuild/bin/packages/intl-locale/lib/get_internal_slots.js var internalSlotMap = new WeakMap(); function getInternalSlots(x) { var internalSlots = internalSlotMap.get(x); if (!internalSlots) { internalSlots = Object.create(null); internalSlotMap.set(x, internalSlots); } return internalSlots; } // bazel-out/darwin-fastbuild/bin/packages/intl-locale/lib/index.js var likelySubtags = likelySubtagsData.supplemental.likelySubtags; var RELEVANT_EXTENSION_KEYS = ["ca", "co", "hc", "kf", "kn", "nu"]; var UNICODE_TYPE_REGEX = /^[a-z0-9]{3,8}(-[a-z0-9]{3,8})*$/i; function applyOptionsToTag(tag, options) { invariant(typeof tag === "string", "language tag must be a string"); invariant((0, import_intl_getcanonicallocales.isStructurallyValidLanguageTag)(tag), "malformed language tag", RangeError); var language = GetOption(options, "language", "string", void 0, void 0); if (language !== void 0) { invariant((0, import_intl_getcanonicallocales.isUnicodeLanguageSubtag)(language), "Malformed unicode_language_subtag", RangeError); } var script = GetOption(options, "script", "string", void 0, void 0); if (script !== void 0) { invariant((0, import_intl_getcanonicallocales.isUnicodeScriptSubtag)(script), "Malformed unicode_script_subtag", RangeError); } var region = GetOption(options, "region", "string", void 0, void 0); if (region !== void 0) { invariant((0, import_intl_getcanonicallocales.isUnicodeRegionSubtag)(region), "Malformed unicode_region_subtag", RangeError); } var languageId = (0, import_intl_getcanonicallocales.parseUnicodeLanguageId)(tag); if (language !== void 0) { languageId.lang = language; } if (script !== void 0) { languageId.script = script; } if (region !== void 0) { languageId.region = region; } return Intl.getCanonicalLocales((0, import_intl_getcanonicallocales.emitUnicodeLocaleId)((0, import_tslib5.__assign)((0, import_tslib5.__assign)({}, (0, import_intl_getcanonicallocales.parseUnicodeLocaleId)(tag)), {lang: languageId})))[0]; } function applyUnicodeExtensionToTag(tag, options, relevantExtensionKeys) { var unicodeExtension; var keywords = []; var ast = (0, import_intl_getcanonicallocales.parseUnicodeLocaleId)(tag); for (var _i = 0, _a = ast.extensions; _i < _a.length; _i++) { var ext = _a[_i]; if (ext.type === "u") { unicodeExtension = ext; if (Array.isArray(ext.keywords)) keywords = ext.keywords; } } var result = Object.create(null); for (var _b = 0, relevantExtensionKeys_1 = relevantExtensionKeys; _b < relevantExtensionKeys_1.length; _b++) { var key = relevantExtensionKeys_1[_b]; var value = void 0, entry = void 0; for (var _c = 0, keywords_1 = keywords; _c < keywords_1.length; _c++) { var keyword = keywords_1[_c]; if (keyword[0] === key) { entry = keyword; value = entry[1]; } } invariant(key in options, key + " must be in options"); var optionsValue = options[key]; if (optionsValue !== void 0) { invariant(typeof optionsValue === "string", "Value for " + key + " must be a string"); value = optionsValue; if (entry) { entry[1] = value; } else { keywords.push([key, value]); } } result[key] = value; } if (!unicodeExtension) { if (keywords.length) { ast.extensions.push({ type: "u", keywords: keywords, attributes: [] }); } } else { unicodeExtension.keywords = keywords; } result.locale = Intl.getCanonicalLocales((0, import_intl_getcanonicallocales.emitUnicodeLocaleId)(ast))[0]; return result; } function mergeUnicodeLanguageId(lang, script, region, variants, replacement) { if (variants === void 0) { variants = []; } if (!replacement) { return { lang: lang || "und", script: script, region: region, variants: variants }; } return { lang: !lang || lang === "und" ? replacement.lang : lang, script: script || replacement.script, region: region || replacement.region, variants: (0, import_tslib5.__spreadArray)((0, import_tslib5.__spreadArray)([], variants), replacement.variants) }; } function addLikelySubtags(tag) { var ast = (0, import_intl_getcanonicallocales.parseUnicodeLocaleId)(tag); var unicodeLangId = ast.lang; var lang = unicodeLangId.lang, script = unicodeLangId.script, region = unicodeLangId.region, variants = unicodeLangId.variants; if (script && region) { var match_1 = likelySubtags[(0, import_intl_getcanonicallocales.emitUnicodeLanguageId)({lang: lang, script: script, region: region, variants: []})]; if (match_1) { var parts_1 = (0, import_intl_getcanonicallocales.parseUnicodeLanguageId)(match_1); ast.lang = mergeUnicodeLanguageId(void 0, void 0, void 0, variants, parts_1); return (0, import_intl_getcanonicallocales.emitUnicodeLocaleId)(ast); } } if (script) { var match_2 = likelySubtags[(0, import_intl_getcanonicallocales.emitUnicodeLanguageId)({lang: lang, script: script, variants: []})]; if (match_2) { var parts_2 = (0, import_intl_getcanonicallocales.parseUnicodeLanguageId)(match_2); ast.lang = mergeUnicodeLanguageId(void 0, void 0, region, variants, parts_2); return (0, import_intl_getcanonicallocales.emitUnicodeLocaleId)(ast); } } if (region) { var match_3 = likelySubtags[(0, import_intl_getcanonicallocales.emitUnicodeLanguageId)({lang: lang, region: region, variants: []})]; if (match_3) { var parts_3 = (0, import_intl_getcanonicallocales.parseUnicodeLanguageId)(match_3); ast.lang = mergeUnicodeLanguageId(void 0, script, void 0, variants, parts_3); return (0, import_intl_getcanonicallocales.emitUnicodeLocaleId)(ast); } } var match = likelySubtags[lang] || likelySubtags[(0, import_intl_getcanonicallocales.emitUnicodeLanguageId)({lang: "und", script: script, variants: []})]; if (!match) { throw new Error("No match for addLikelySubtags"); } var parts = (0, import_intl_getcanonicallocales.parseUnicodeLanguageId)(match); ast.lang = mergeUnicodeLanguageId(void 0, script, region, variants, parts); return (0, import_intl_getcanonicallocales.emitUnicodeLocaleId)(ast); } function removeLikelySubtags(tag) { var maxLocale = addLikelySubtags(tag); if (!maxLocale) { return tag; } maxLocale = (0, import_intl_getcanonicallocales.emitUnicodeLanguageId)((0, import_tslib5.__assign)((0, import_tslib5.__assign)({}, (0, import_intl_getcanonicallocales.parseUnicodeLanguageId)(maxLocale)), {variants: []})); var ast = (0, import_intl_getcanonicallocales.parseUnicodeLocaleId)(tag); var _a = ast.lang, lang = _a.lang, script = _a.script, region = _a.region, variants = _a.variants; var trial = addLikelySubtags((0, import_intl_getcanonicallocales.emitUnicodeLanguageId)({lang: lang, variants: []})); if (trial === maxLocale) { return (0, import_intl_getcanonicallocales.emitUnicodeLocaleId)((0, import_tslib5.__assign)((0, import_tslib5.__assign)({}, ast), {lang: mergeUnicodeLanguageId(lang, void 0, void 0, variants)})); } if (region) { var trial_1 = addLikelySubtags((0, import_intl_getcanonicallocales.emitUnicodeLanguageId)({lang: lang, region: region, variants: []})); if (trial_1 === maxLocale) { return (0, import_intl_getcanonicallocales.emitUnicodeLocaleId)((0, import_tslib5.__assign)((0, import_tslib5.__assign)({}, ast), {lang: mergeUnicodeLanguageId(lang, void 0, region, variants)})); } } if (script) { var trial_2 = addLikelySubtags((0, import_intl_getcanonicallocales.emitUnicodeLanguageId)({lang: lang, script: script, variants: []})); if (trial_2 === maxLocale) { return (0, import_intl_getcanonicallocales.emitUnicodeLocaleId)((0, import_tslib5.__assign)((0, import_tslib5.__assign)({}, ast), {lang: mergeUnicodeLanguageId(lang, script, void 0, variants)})); } } return tag; } var Locale = function() { function Locale2(tag, opts) { var newTarget = this && this instanceof Locale2 ? this.constructor : void 0; if (!newTarget) { throw new TypeError("Intl.Locale must be called with 'new'"); } var relevantExtensionKeys = Locale2.relevantExtensionKeys; var internalSlotsList = [ "initializedLocale", "locale", "calendar", "collation", "hourCycle", "numberingSystem" ]; if (relevantExtensionKeys.indexOf("kf") > -1) { internalSlotsList.push("caseFirst"); } if (relevantExtensionKeys.indexOf("kn") > -1) { internalSlotsList.push("numeric"); } if (tag === void 0) { throw new TypeError("First argument to Intl.Locale constructor can't be empty or missing"); } if (typeof tag !== "string" && typeof tag !== "object") { throw new TypeError("tag must be a string or object"); } var internalSlots; if (typeof tag === "object" && (internalSlots = getInternalSlots(tag)) && internalSlots.initializedLocale) { tag = internalSlots.locale; } else { tag = tag.toString(); } internalSlots = getInternalSlots(this); var options = CoerceOptionsToObject(opts); tag = applyOptionsToTag(tag, options); var opt = Object.create(null); var calendar = GetOption(options, "calendar", "string", void 0, void 0); if (calendar !== void 0) { if (!UNICODE_TYPE_REGEX.test(calendar)) { throw new RangeError("invalid calendar"); } } opt.ca = calendar; var collation = GetOption(options, "collation", "string", void 0, void 0); if (collation !== void 0) { if (!UNICODE_TYPE_REGEX.test(collation)) { throw new RangeError("invalid collation"); } } opt.co = collation; var hc = GetOption(options, "hourCycle", "string", ["h11", "h12", "h23", "h24"], void 0); opt.hc = hc; var kf = GetOption(options, "caseFirst", "string", ["upper", "lower", "false"], void 0); opt.kf = kf; var _kn = GetOption(options, "numeric", "boolean", void 0, void 0); var kn; if (_kn !== void 0) { kn = String(_kn); } opt.kn = kn; var numberingSystem = GetOption(options, "numberingSystem", "string", void 0, void 0); if (numberingSystem !== void 0) { if (!UNICODE_TYPE_REGEX.test(numberingSystem)) { throw new RangeError("Invalid numberingSystem"); } } opt.nu = numberingSystem; var r = applyUnicodeExtensionToTag(tag, opt, relevantExtensionKeys); internalSlots.locale = r.locale; internalSlots.calendar = r.ca; internalSlots.collation = r.co; internalSlots.hourCycle = r.hc; if (relevantExtensionKeys.indexOf("kf") > -1) { internalSlots.caseFirst = r.kf; } if (relevantExtensionKeys.indexOf("kn") > -1) { internalSlots.numeric = SameValue(r.kn, "true"); } internalSlots.numberingSystem = r.nu; } Locale2.prototype.maximize = function() { var locale = getInternalSlots(this).locale; try { var maximizedLocale = addLikelySubtags(locale); return new Locale2(maximizedLocale); } catch (e) { return new Locale2(locale); } }; Locale2.prototype.minimize = function() { var locale = getInternalSlots(this).locale; try { var minimizedLocale = removeLikelySubtags(locale); return new Locale2(minimizedLocale); } catch (e) { return new Locale2(locale); } }; Locale2.prototype.toString = function() { return getInternalSlots(this).locale; }; Object.defineProperty(Locale2.prototype, "baseName", { get: function() { var locale = getInternalSlots(this).locale; return (0, import_intl_getcanonicallocales.emitUnicodeLanguageId)((0, import_intl_getcanonicallocales.parseUnicodeLanguageId)(locale)); }, enumerable: false, configurable: true }); Object.defineProperty(Locale2.prototype, "calendar", { get: function() { return getInternalSlots(this).calendar; }, enumerable: false, configurable: true }); Object.defineProperty(Locale2.prototype, "collation", { get: function() { return getInternalSlots(this).collation; }, enumerable: false, configurable: true }); Object.defineProperty(Locale2.prototype, "hourCycle", { get: function() { return getInternalSlots(this).hourCycle; }, enumerable: false, configurable: true }); Object.defineProperty(Locale2.prototype, "caseFirst", { get: function() { return getInternalSlots(this).caseFirst; }, enumerable: false, configurable: true }); Object.defineProperty(Locale2.prototype, "numeric", { get: function() { return getInternalSlots(this).numeric; }, enumerable: false, configurable: true }); Object.defineProperty(Locale2.prototype, "numberingSystem", { get: function() { return getInternalSlots(this).numberingSystem; }, enumerable: false, configurable: true }); Object.defineProperty(Locale2.prototype, "language", { get: function() { var locale = getInternalSlots(this).locale; return (0, import_intl_getcanonicallocales.parseUnicodeLanguageId)(locale).lang; }, enumerable: false, configurable: true }); Object.defineProperty(Locale2.prototype, "script", { get: function() { var locale = getInternalSlots(this).locale; return (0, import_intl_getcanonicallocales.parseUnicodeLanguageId)(locale).script; }, enumerable: false, configurable: true }); Object.defineProperty(Locale2.prototype, "region", { get: function() { var locale = getInternalSlots(this).locale; return (0, import_intl_getcanonicallocales.parseUnicodeLanguageId)(locale).region; }, enumerable: false, configurable: true }); Locale2.relevantExtensionKeys = RELEVANT_EXTENSION_KEYS; return Locale2; }(); try { if (typeof Symbol !== "undefined") { Object.defineProperty(Locale.prototype, Symbol.toStringTag, { value: "Intl.Locale", writable: false, enumerable: false, configurable: true }); } Object.defineProperty(Locale.prototype.constructor, "length", { value: 1, writable: false, enumerable: false, configurable: true }); } catch (e) { } // bazel-out/darwin-fastbuild/bin/packages/intl-locale/lib/should-polyfill.js function hasIntlGetCanonicalLocalesBug() { try { return new Intl.Locale("und-x-private").toString() === "x-private"; } catch (e) { return true; } } function shouldPolyfill() { return typeof Intl === "undefined" || !("Locale" in Intl) || hasIntlGetCanonicalLocalesBug(); } // bazel-out/darwin-fastbuild/bin/packages/intl-locale/lib/polyfill.js if (shouldPolyfill()) { Object.defineProperty(Intl, "Locale", { value: Locale, writable: true, enumerable: false, configurable: true }); } })(); /*! ***************************************************************************** Copyright (c) Microsoft Corporation. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ***************************************************************************** */ } if (!("Intl"in self&&"DisplayNames"in self.Intl )) { // Intl.DisplayNames (function() { // node_modules/tslib/tslib.es6.js var extendStatics = function(d, b) { extendStatics = Object.setPrototypeOf || {__proto__: []} instanceof Array && function(d2, b2) { d2.__proto__ = b2; } || function(d2, b2) { for (var p in b2) if (Object.prototype.hasOwnProperty.call(b2, p)) d2[p] = b2[p]; }; return extendStatics(d, b); }; function __extends(d, b) { if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); } var __assign = function() { __assign = Object.assign || function __assign2(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; return __assign.apply(this, arguments); }; // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/utils.js function setInternalSlot(map, pl, field, value) { if (!map.get(pl)) { map.set(pl, Object.create(null)); } var slots = map.get(pl); slots[field] = value; } function getInternalSlot(map, pl, field) { return getMultiInternalSlots(map, pl, field)[field]; } function getMultiInternalSlots(map, pl) { var fields = []; for (var _i = 2; _i < arguments.length; _i++) { fields[_i - 2] = arguments[_i]; } var slots = map.get(pl); if (!slots) { throw new TypeError(pl + " InternalSlot has not been initialized"); } return fields.reduce(function(all, f) { all[f] = slots[f]; return all; }, Object.create(null)); } var UNICODE_EXTENSION_SEQUENCE_REGEX = /-u(?:-[0-9a-z]{2,8})+/gi; function invariant(condition, message, Err) { if (Err === void 0) { Err = Error; } if (!condition) { throw new Err(message); } } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/types/date-time.js var RangePatternType; (function(RangePatternType2) { RangePatternType2["startRange"] = "startRange"; RangePatternType2["shared"] = "shared"; RangePatternType2["endRange"] = "endRange"; })(RangePatternType || (RangePatternType = {})); // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/CanonicalizeLocaleList.js function CanonicalizeLocaleList(locales) { return Intl.getCanonicalLocales(locales); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/262.js function ToString(o) { if (typeof o === "symbol") { throw TypeError("Cannot convert a Symbol value to a string"); } return String(o); } function ToObject(arg) { if (arg == null) { throw new TypeError("undefined/null cannot be converted to object"); } return Object(arg); } var MINUTES_PER_HOUR = 60; var SECONDS_PER_MINUTE = 60; var MS_PER_SECOND = 1e3; var MS_PER_MINUTE = MS_PER_SECOND * SECONDS_PER_MINUTE; var MS_PER_HOUR = MS_PER_MINUTE * MINUTES_PER_HOUR; // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/GetOption.js function GetOption(opts, prop, type, values, fallback) { if (typeof opts !== "object") { throw new TypeError("Options must be an object"); } var value = opts[prop]; if (value !== void 0) { if (type !== "boolean" && type !== "string") { throw new TypeError("invalid type"); } if (type === "boolean") { value = Boolean(value); } if (type === "string") { value = ToString(value); } if (values !== void 0 && !values.filter(function(val) { return val == value; }).length) { throw new RangeError(value + " is not within " + values.join(", ")); } return value; } return fallback; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/BestAvailableLocale.js function BestAvailableLocale(availableLocales, locale) { var candidate = locale; while (true) { if (availableLocales.has(candidate)) { return candidate; } var pos = candidate.lastIndexOf("-"); if (!~pos) { return void 0; } if (pos >= 2 && candidate[pos - 2] === "-") { pos -= 2; } candidate = candidate.slice(0, pos); } } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/LookupMatcher.js function LookupMatcher(availableLocales, requestedLocales, getDefaultLocale) { var result = {locale: ""}; for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) { var locale = requestedLocales_1[_i]; var noExtensionLocale = locale.replace(UNICODE_EXTENSION_SEQUENCE_REGEX, ""); var availableLocale = BestAvailableLocale(availableLocales, noExtensionLocale); if (availableLocale) { result.locale = availableLocale; if (locale !== noExtensionLocale) { result.extension = locale.slice(noExtensionLocale.length + 1, locale.length); } return result; } } result.locale = getDefaultLocale(); return result; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/BestFitMatcher.js function BestFitMatcher(availableLocales, requestedLocales, getDefaultLocale) { var minimizedAvailableLocaleMap = {}; var minimizedAvailableLocales = new Set(); availableLocales.forEach(function(locale2) { var minimizedLocale = new Intl.Locale(locale2).minimize().toString(); minimizedAvailableLocaleMap[minimizedLocale] = locale2; minimizedAvailableLocales.add(minimizedLocale); }); var foundLocale; for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) { var l = requestedLocales_1[_i]; if (foundLocale) { break; } var noExtensionLocale = l.replace(UNICODE_EXTENSION_SEQUENCE_REGEX, ""); if (availableLocales.has(noExtensionLocale)) { foundLocale = noExtensionLocale; break; } if (minimizedAvailableLocales.has(noExtensionLocale)) { foundLocale = minimizedAvailableLocaleMap[noExtensionLocale]; break; } var locale = new Intl.Locale(noExtensionLocale); var maximizedRequestedLocale = locale.maximize().toString(); var minimizedRequestedLocale = locale.minimize().toString(); if (minimizedAvailableLocales.has(minimizedRequestedLocale)) { foundLocale = minimizedAvailableLocaleMap[minimizedRequestedLocale]; break; } foundLocale = BestAvailableLocale(minimizedAvailableLocales, maximizedRequestedLocale); } return { locale: foundLocale || getDefaultLocale() }; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/UnicodeExtensionValue.js function UnicodeExtensionValue(extension, key) { invariant(key.length === 2, "key must have 2 elements"); var size = extension.length; var searchValue = "-" + key + "-"; var pos = extension.indexOf(searchValue); if (pos !== -1) { var start = pos + 4; var end = start; var k = start; var done = false; while (!done) { var e = extension.indexOf("-", k); var len = void 0; if (e === -1) { len = size - k; } else { len = e - k; } if (len === 2) { done = true; } else if (e === -1) { end = size; done = true; } else { end = e; k = e + 1; } } return extension.slice(start, end); } searchValue = "-" + key; pos = extension.indexOf(searchValue); if (pos !== -1 && pos + 3 === size) { return ""; } return void 0; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/ResolveLocale.js function ResolveLocale(availableLocales, requestedLocales, options, relevantExtensionKeys, localeData, getDefaultLocale) { var matcher = options.localeMatcher; var r; if (matcher === "lookup") { r = LookupMatcher(availableLocales, requestedLocales, getDefaultLocale); } else { r = BestFitMatcher(availableLocales, requestedLocales, getDefaultLocale); } var foundLocale = r.locale; var result = {locale: "", dataLocale: foundLocale}; var supportedExtension = "-u"; for (var _i = 0, relevantExtensionKeys_1 = relevantExtensionKeys; _i < relevantExtensionKeys_1.length; _i++) { var key = relevantExtensionKeys_1[_i]; invariant(foundLocale in localeData, "Missing locale data for " + foundLocale); var foundLocaleData = localeData[foundLocale]; invariant(typeof foundLocaleData === "object" && foundLocaleData !== null, "locale data " + key + " must be an object"); var keyLocaleData = foundLocaleData[key]; invariant(Array.isArray(keyLocaleData), "keyLocaleData for " + key + " must be an array"); var value = keyLocaleData[0]; invariant(typeof value === "string" || value === null, "value must be string or null but got " + typeof value + " in key " + key); var supportedExtensionAddition = ""; if (r.extension) { var requestedValue = UnicodeExtensionValue(r.extension, key); if (requestedValue !== void 0) { if (requestedValue !== "") { if (~keyLocaleData.indexOf(requestedValue)) { value = requestedValue; supportedExtensionAddition = "-" + key + "-" + value; } } else if (~requestedValue.indexOf("true")) { value = "true"; supportedExtensionAddition = "-" + key; } } } if (key in options) { var optionsValue = options[key]; invariant(typeof optionsValue === "string" || typeof optionsValue === "undefined" || optionsValue === null, "optionsValue must be String, Undefined or Null"); if (~keyLocaleData.indexOf(optionsValue)) { if (optionsValue !== value) { value = optionsValue; supportedExtensionAddition = ""; } } } result[key] = value; supportedExtension += supportedExtensionAddition; } if (supportedExtension.length > 2) { var privateIndex = foundLocale.indexOf("-x-"); if (privateIndex === -1) { foundLocale = foundLocale + supportedExtension; } else { var preExtension = foundLocale.slice(0, privateIndex); var postExtension = foundLocale.slice(privateIndex, foundLocale.length); foundLocale = preExtension + supportedExtension + postExtension; } foundLocale = Intl.getCanonicalLocales(foundLocale)[0]; } result.locale = foundLocale; return result; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/IsWellFormedCurrencyCode.js function toUpperCase(str) { return str.replace(/([a-z])/g, function(_, c) { return c.toUpperCase(); }); } var NOT_A_Z_REGEX = /[^A-Z]/; function IsWellFormedCurrencyCode(currency) { currency = toUpperCase(currency); if (currency.length !== 3) { return false; } if (NOT_A_Z_REGEX.test(currency)) { return false; } return true; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/DisplayNames/CanonicalCodeForDisplayNames.js var UNICODE_REGION_SUBTAG_REGEX = /^([a-z]{2}|[0-9]{3})$/i; var ALPHA_4 = /^[a-z]{4}$/i; function isUnicodeRegionSubtag(region) { return UNICODE_REGION_SUBTAG_REGEX.test(region); } function isUnicodeScriptSubtag(script) { return ALPHA_4.test(script); } function CanonicalCodeForDisplayNames(type, code) { if (type === "language") { return CanonicalizeLocaleList([code])[0]; } if (type === "region") { if (!isUnicodeRegionSubtag(code)) { throw RangeError("invalid region"); } return code.toUpperCase(); } if (type === "script") { if (!isUnicodeScriptSubtag(code)) { throw RangeError("invalid script"); } return "" + code[0].toUpperCase() + code.slice(1).toLowerCase(); } invariant(type === "currency", "invalid type"); if (!IsWellFormedCurrencyCode(code)) { throw RangeError("invalid currency"); } return code.toUpperCase(); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/GetOptionsObject.js function GetOptionsObject(options) { if (typeof options === "undefined") { return Object.create(null); } if (typeof options === "object") { return options; } throw new TypeError("Options must be an object"); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/IsSanctionedSimpleUnitIdentifier.js var SANCTIONED_UNITS = [ "angle-degree", "area-acre", "area-hectare", "concentr-percent", "digital-bit", "digital-byte", "digital-gigabit", "digital-gigabyte", "digital-kilobit", "digital-kilobyte", "digital-megabit", "digital-megabyte", "digital-petabyte", "digital-terabit", "digital-terabyte", "duration-day", "duration-hour", "duration-millisecond", "duration-minute", "duration-month", "duration-second", "duration-week", "duration-year", "length-centimeter", "length-foot", "length-inch", "length-kilometer", "length-meter", "length-mile-scandinavian", "length-mile", "length-millimeter", "length-yard", "mass-gram", "mass-kilogram", "mass-ounce", "mass-pound", "mass-stone", "temperature-celsius", "temperature-fahrenheit", "volume-fluid-ounce", "volume-gallon", "volume-liter", "volume-milliliter" ]; function removeUnitNamespace(unit) { return unit.slice(unit.indexOf("-") + 1); } var SIMPLE_UNITS = SANCTIONED_UNITS.map(removeUnitNamespace); // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/regex.generated.js var S_UNICODE_REGEX = /[\$\+<->\^`\|~\xA2-\xA6\xA8\xA9\xAC\xAE-\xB1\xB4\xB8\xD7\xF7\u02C2-\u02C5\u02D2-\u02DF\u02E5-\u02EB\u02ED\u02EF-\u02FF\u0375\u0384\u0385\u03F6\u0482\u058D-\u058F\u0606-\u0608\u060B\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u07FE\u07FF\u09F2\u09F3\u09FA\u09FB\u0AF1\u0B70\u0BF3-\u0BFA\u0C7F\u0D4F\u0D79\u0E3F\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u166D\u17DB\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u1FBD\u1FBF-\u1FC1\u1FCD-\u1FCF\u1FDD-\u1FDF\u1FED-\u1FEF\u1FFD\u1FFE\u2044\u2052\u207A-\u207C\u208A-\u208C\u20A0-\u20BF\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u214F\u218A\u218B\u2190-\u2307\u230C-\u2328\u232B-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u2767\u2794-\u27C4\u27C7-\u27E5\u27F0-\u2982\u2999-\u29D7\u29DC-\u29FB\u29FE-\u2B73\u2B76-\u2B95\u2B97-\u2BFF\u2CE5-\u2CEA\u2E50\u2E51\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u309B\u309C\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA700-\uA716\uA720\uA721\uA789\uA78A\uA828-\uA82B\uA836-\uA839\uAA77-\uAA79\uAB5B\uAB6A\uAB6B\uFB29\uFBB2-\uFBC1\uFDFC\uFDFD\uFE62\uFE64-\uFE66\uFE69\uFF04\uFF0B\uFF1C-\uFF1E\uFF3E\uFF40\uFF5C\uFF5E\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFFC\uFFFD]|\uD800[\uDD37-\uDD3F\uDD79-\uDD89\uDD8C-\uDD8E\uDD90-\uDD9C\uDDA0\uDDD0-\uDDFC]|\uD802[\uDC77\uDC78\uDEC8]|\uD805\uDF3F|\uD807[\uDFD5-\uDFF1]|\uD81A[\uDF3C-\uDF3F\uDF45]|\uD82F\uDC9C|\uD834[\uDC00-\uDCF5\uDD00-\uDD26\uDD29-\uDD64\uDD6A-\uDD6C\uDD83\uDD84\uDD8C-\uDDA9\uDDAE-\uDDE8\uDE00-\uDE41\uDE45\uDF00-\uDF56]|\uD835[\uDEC1\uDEDB\uDEFB\uDF15\uDF35\uDF4F\uDF6F\uDF89\uDFA9\uDFC3]|\uD836[\uDC00-\uDDFF\uDE37-\uDE3A\uDE6D-\uDE74\uDE76-\uDE83\uDE85\uDE86]|\uD838[\uDD4F\uDEFF]|\uD83B[\uDCAC\uDCB0\uDD2E\uDEF0\uDEF1]|\uD83C[\uDC00-\uDC2B\uDC30-\uDC93\uDCA0-\uDCAE\uDCB1-\uDCBF\uDCC1-\uDCCF\uDCD1-\uDCF5\uDD0D-\uDDAD\uDDE6-\uDE02\uDE10-\uDE3B\uDE40-\uDE48\uDE50\uDE51\uDE60-\uDE65\uDF00-\uDFFF]|\uD83D[\uDC00-\uDED7\uDEE0-\uDEEC\uDEF0-\uDEFC\uDF00-\uDF73\uDF80-\uDFD8\uDFE0-\uDFEB]|\uD83E[\uDC00-\uDC0B\uDC10-\uDC47\uDC50-\uDC59\uDC60-\uDC87\uDC90-\uDCAD\uDCB0\uDCB1\uDD00-\uDD78\uDD7A-\uDDCB\uDDCD-\uDE53\uDE60-\uDE6D\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6\uDF00-\uDF92\uDF94-\uDFCA]/; // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/format_to_parts.js var CARET_S_UNICODE_REGEX = new RegExp("^" + S_UNICODE_REGEX.source); var S_DOLLAR_UNICODE_REGEX = new RegExp(S_UNICODE_REGEX.source + "$"); // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/LookupSupportedLocales.js function LookupSupportedLocales(availableLocales, requestedLocales) { var subset = []; for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) { var locale = requestedLocales_1[_i]; var noExtensionLocale = locale.replace(UNICODE_EXTENSION_SEQUENCE_REGEX, ""); var availableLocale = BestAvailableLocale(availableLocales, noExtensionLocale); if (availableLocale) { subset.push(availableLocale); } } return subset; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/SupportedLocales.js function SupportedLocales(availableLocales, requestedLocales, options) { var matcher = "best fit"; if (options !== void 0) { options = ToObject(options); matcher = GetOption(options, "localeMatcher", "string", ["lookup", "best fit"], "best fit"); } if (matcher === "best fit") { return LookupSupportedLocales(availableLocales, requestedLocales); } return LookupSupportedLocales(availableLocales, requestedLocales); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/data.js var MissingLocaleDataError = function(_super) { __extends(MissingLocaleDataError2, _super); function MissingLocaleDataError2() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.type = "MISSING_LOCALE_DATA"; return _this; } return MissingLocaleDataError2; }(Error); // bazel-out/darwin-fastbuild/bin/packages/intl-displaynames/lib/index.js var DisplayNames = function() { function DisplayNames2(locales, options) { var _newTarget = this.constructor; if (_newTarget === void 0) { throw TypeError("Constructor Intl.DisplayNames requires 'new'"); } var requestedLocales = CanonicalizeLocaleList(locales); options = GetOptionsObject(options); var opt = Object.create(null); var localeData = DisplayNames2.localeData; var matcher = GetOption(options, "localeMatcher", "string", ["lookup", "best fit"], "best fit"); opt.localeMatcher = matcher; var r = ResolveLocale(DisplayNames2.availableLocales, requestedLocales, opt, [], DisplayNames2.localeData, DisplayNames2.getDefaultLocale); var style = GetOption(options, "style", "string", ["narrow", "short", "long"], "long"); setSlot(this, "style", style); var type = GetOption(options, "type", "string", ["language", "currency", "region", "script"], void 0); if (type === void 0) { throw TypeError('Intl.DisplayNames constructor requires "type" option'); } setSlot(this, "type", type); var fallback = GetOption(options, "fallback", "string", ["code", "none"], "code"); setSlot(this, "fallback", fallback); setSlot(this, "locale", r.locale); var dataLocale = r.dataLocale; var dataLocaleData = localeData[dataLocale]; invariant(!!dataLocaleData, "Missing locale data for " + dataLocale); setSlot(this, "localeData", dataLocaleData); invariant(dataLocaleData !== void 0, "locale data for " + r.locale + " does not exist."); var types = dataLocaleData.types; invariant(typeof types === "object" && types != null, "invalid types data"); var typeFields = types[type]; invariant(typeof typeFields === "object" && typeFields != null, "invalid typeFields data"); var styleFields = typeFields[style]; invariant(typeof styleFields === "object" && styleFields != null, "invalid styleFields data"); setSlot(this, "fields", styleFields); } DisplayNames2.supportedLocalesOf = function(locales, options) { return SupportedLocales(DisplayNames2.availableLocales, CanonicalizeLocaleList(locales), options); }; DisplayNames2.__addLocaleData = function() { var data = []; for (var _i = 0; _i < arguments.length; _i++) { data[_i] = arguments[_i]; } for (var _a = 0, data_1 = data; _a < data_1.length; _a++) { var _b = data_1[_a], d = _b.data, locale = _b.locale; var minimizedLocale = new Intl.Locale(locale).minimize().toString(); DisplayNames2.localeData[locale] = DisplayNames2.localeData[minimizedLocale] = d; DisplayNames2.availableLocales.add(minimizedLocale); DisplayNames2.availableLocales.add(locale); if (!DisplayNames2.__defaultLocale) { DisplayNames2.__defaultLocale = minimizedLocale; } } }; DisplayNames2.prototype.of = function(code) { checkReceiver(this, "of"); var type = getSlot(this, "type"); var codeAsString = ToString(code); if (!isValidCodeForDisplayNames(type, codeAsString)) { throw RangeError("invalid code for Intl.DisplayNames.prototype.of"); } var _a = getMultiInternalSlots(__INTERNAL_SLOT_MAP__, this, "localeData", "style", "fallback"), localeData = _a.localeData, style = _a.style, fallback = _a.fallback; var canonicalCode = CanonicalCodeForDisplayNames(type, codeAsString); var regionSubTag; if (type === "language") { var regionMatch = /-([a-z]{2}|\d{3})\b/i.exec(canonicalCode); if (regionMatch) { canonicalCode = canonicalCode.substring(0, regionMatch.index) + canonicalCode.substring(regionMatch.index + regionMatch[0].length); regionSubTag = regionMatch[1]; } } var typesData = localeData.types[type]; var name = typesData[style][canonicalCode] || typesData.long[canonicalCode]; if (name !== void 0) { if (regionSubTag) { var regionsData = localeData.types.region; var regionDisplayName = regionsData[style][regionSubTag] || regionsData.long[regionSubTag]; if (regionDisplayName || fallback === "code") { var pattern = localeData.patterns.locale; return pattern.replace("{0}", name).replace("{1}", regionDisplayName || regionSubTag); } } else { return name; } } if (fallback === "code") { return codeAsString; } }; DisplayNames2.prototype.resolvedOptions = function() { checkReceiver(this, "resolvedOptions"); return __assign({}, getMultiInternalSlots(__INTERNAL_SLOT_MAP__, this, "locale", "style", "type", "fallback")); }; DisplayNames2.getDefaultLocale = function() { return DisplayNames2.__defaultLocale; }; DisplayNames2.localeData = {}; DisplayNames2.availableLocales = new Set(); DisplayNames2.__defaultLocale = ""; DisplayNames2.polyfilled = true; return DisplayNames2; }(); function isValidCodeForDisplayNames(type, code) { switch (type) { case "language": return /^[a-z]{2,3}(-[a-z]{4})?(-([a-z]{2}|\d{3}))?(-([a-z\d]{5,8}|\d[a-z\d]{3}))*$/i.test(code); case "region": return /^([a-z]{2}|\d{3})$/i.test(code); case "script": return /^[a-z]{4}$/i.test(code); case "currency": return IsWellFormedCurrencyCode(code); } } try { if (typeof Symbol !== "undefined" && Symbol.toStringTag) { Object.defineProperty(DisplayNames.prototype, Symbol.toStringTag, { value: "Intl.DisplayNames", configurable: true, enumerable: false, writable: false }); } Object.defineProperty(DisplayNames, "length", { value: 2, writable: false, enumerable: false, configurable: true }); } catch (e) { } var __INTERNAL_SLOT_MAP__ = new WeakMap(); function getSlot(instance, key) { return getInternalSlot(__INTERNAL_SLOT_MAP__, instance, key); } function setSlot(instance, key, value) { setInternalSlot(__INTERNAL_SLOT_MAP__, instance, key, value); } function checkReceiver(receiver, methodName) { if (!(receiver instanceof DisplayNames)) { throw TypeError("Method Intl.DisplayNames.prototype." + methodName + " called on incompatible receiver"); } } // bazel-out/darwin-fastbuild/bin/packages/intl-displaynames/lib/should-polyfill.js function hasMissingICUBug() { var DisplayNames2 = Intl.DisplayNames; if (DisplayNames2 && !DisplayNames2.polyfilled) { return new DisplayNames2(["en"], { type: "region" }).of("CA") === "CA"; } return false; } function hasScriptBug() { var DisplayNames2 = Intl.DisplayNames; if (DisplayNames2 && !DisplayNames2.polyfilled) { return new DisplayNames2(["en"], { type: "script" }).of("arab") !== "Arabic"; } return false; } function shouldPolyfill() { return !Intl.DisplayNames || hasMissingICUBug() || hasScriptBug(); } // bazel-out/darwin-fastbuild/bin/packages/intl-displaynames/lib/polyfill.js if (shouldPolyfill()) { Object.defineProperty(Intl, "DisplayNames", { value: DisplayNames, enumerable: false, writable: true, configurable: true }); } })(); /*! ***************************************************************************** Copyright (c) Microsoft Corporation. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ***************************************************************************** */ } if (!("Intl"in self&&Intl.DisplayNames&&Intl.DisplayNames.supportedLocalesOf&&1===Intl.DisplayNames.supportedLocalesOf("en").length )) { // Intl.DisplayNames.~locale.en /* @generated */ // prettier-ignore if (Intl.DisplayNames && typeof Intl.DisplayNames.__addLocaleData === 'function') { Intl.DisplayNames.__addLocaleData({"data":{"types":{"language":{"long":{"aa":"Afar","ab":"Abkhazian","ace":"Achinese","ach":"Acoli","ada":"Adangme","ady":"Adyghe","ae":"Avestan","aeb":"Tunisian Arabic","af":"Afrikaans","afh":"Afrihili","agq":"Aghem","ain":"Ainu","ak":"Akan","akk":"Akkadian","akz":"Alabama","ale":"Aleut","aln":"Gheg Albanian","alt":"Southern Altai","am":"Amharic","an":"Aragonese","ang":"Old English","anp":"Angika","ar":"Arabic","ar-001":"Modern Standard Arabic","arc":"Aramaic","arn":"Mapuche","aro":"Araona","arp":"Arapaho","arq":"Algerian Arabic","ars":"Najdi Arabic","arw":"Arawak","ary":"Moroccan Arabic","arz":"Egyptian Arabic","as":"Assamese","asa":"Asu","ase":"American Sign Language","ast":"Asturian","av":"Avaric","avk":"Kotava","awa":"Awadhi","ay":"Aymara","az":"Azerbaijani","ba":"Bashkir","bal":"Baluchi","ban":"Balinese","bar":"Bavarian","bas":"Basaa","bax":"Bamun","bbc":"Batak Toba","bbj":"Ghomala","be":"Belarusian","bej":"Beja","bem":"Bemba","bew":"Betawi","bez":"Bena","bfd":"Bafut","bfq":"Badaga","bg":"Bulgarian","bgn":"Western Balochi","bho":"Bhojpuri","bi":"Bislama","bik":"Bikol","bin":"Bini","bjn":"Banjar","bkm":"Kom","bla":"Siksika","bm":"Bambara","bn":"Bangla","bo":"Tibetan","bpy":"Bishnupriya","bqi":"Bakhtiari","br":"Breton","bra":"Braj","brh":"Brahui","brx":"Bodo","bs":"Bosnian","bss":"Akoose","bua":"Buriat","bug":"Buginese","bum":"Bulu","byn":"Blin","byv":"Medumba","ca":"Catalan","cad":"Caddo","car":"Carib","cay":"Cayuga","cch":"Atsam","ccp":"Chakma","ce":"Chechen","ceb":"Cebuano","cgg":"Chiga","ch":"Chamorro","chb":"Chibcha","chg":"Chagatai","chk":"Chuukese","chm":"Mari","chn":"Chinook Jargon","cho":"Choctaw","chp":"Chipewyan","chr":"Cherokee","chy":"Cheyenne","cic":"Chickasaw","ckb":"Central Kurdish","co":"Corsican","cop":"Coptic","cps":"Capiznon","cr":"Cree","crh":"Crimean Turkish","crs":"Seselwa Creole French","cs":"Czech","csb":"Kashubian","cu":"Church Slavic","cv":"Chuvash","cy":"Welsh","da":"Danish","dak":"Dakota","dar":"Dargwa","dav":"Taita","de":"German","de-AT":"Austrian German","de-CH":"Swiss High German","del":"Delaware","den":"Slave","dgr":"Dogrib","din":"Dinka","dje":"Zarma","doi":"Dogri","dsb":"Lower Sorbian","dtp":"Central Dusun","dua":"Duala","dum":"Middle Dutch","dv":"Divehi","dyo":"Jola-Fonyi","dyu":"Dyula","dz":"Dzongkha","dzg":"Dazaga","ebu":"Embu","ee":"Ewe","efi":"Efik","egl":"Emilian","egy":"Ancient Egyptian","eka":"Ekajuk","el":"Greek","elx":"Elamite","en":"English","en-AU":"Australian English","en-CA":"Canadian English","en-GB":"British English","en-US":"American English","enm":"Middle English","eo":"Esperanto","es":"Spanish","es-419":"Latin American Spanish","es-ES":"European Spanish","es-MX":"Mexican Spanish","esu":"Central Yupik","et":"Estonian","eu":"Basque","ewo":"Ewondo","ext":"Extremaduran","fa":"Persian","fa-AF":"Dari","fan":"Fang","fat":"Fanti","ff":"Fulah","fi":"Finnish","fil":"Filipino","fit":"Tornedalen Finnish","fj":"Fijian","fo":"Faroese","fon":"Fon","fr":"French","fr-CA":"Canadian French","fr-CH":"Swiss French","frc":"Cajun French","frm":"Middle French","fro":"Old French","frp":"Arpitan","frr":"Northern Frisian","frs":"Eastern Frisian","fur":"Friulian","fy":"Western Frisian","ga":"Irish","gaa":"Ga","gag":"Gagauz","gan":"Gan Chinese","gay":"Gayo","gba":"Gbaya","gbz":"Zoroastrian Dari","gd":"Scottish Gaelic","gez":"Geez","gil":"Gilbertese","gl":"Galician","glk":"Gilaki","gmh":"Middle High German","gn":"Guarani","goh":"Old High German","gom":"Goan Konkani","gon":"Gondi","gor":"Gorontalo","got":"Gothic","grb":"Grebo","grc":"Ancient Greek","gsw":"Swiss German","gu":"Gujarati","guc":"Wayuu","gur":"Frafra","guz":"Gusii","gv":"Manx","gwi":"Gwichʼin","ha":"Hausa","hai":"Haida","hak":"Hakka Chinese","haw":"Hawaiian","he":"Hebrew","hi":"Hindi","hif":"Fiji Hindi","hil":"Hiligaynon","hit":"Hittite","hmn":"Hmong","ho":"Hiri Motu","hr":"Croatian","hsb":"Upper Sorbian","hsn":"Xiang Chinese","ht":"Haitian Creole","hu":"Hungarian","hup":"Hupa","hy":"Armenian","hz":"Herero","ia":"Interlingua","iba":"Iban","ibb":"Ibibio","id":"Indonesian","ie":"Interlingue","ig":"Igbo","ii":"Sichuan Yi","ik":"Inupiaq","ilo":"Iloko","inh":"Ingush","io":"Ido","is":"Icelandic","it":"Italian","iu":"Inuktitut","izh":"Ingrian","ja":"Japanese","jam":"Jamaican Creole English","jbo":"Lojban","jgo":"Ngomba","jmc":"Machame","jpr":"Judeo-Persian","jrb":"Judeo-Arabic","jut":"Jutish","jv":"Javanese","ka":"Georgian","kaa":"Kara-Kalpak","kab":"Kabyle","kac":"Kachin","kaj":"Jju","kam":"Kamba","kaw":"Kawi","kbd":"Kabardian","kbl":"Kanembu","kcg":"Tyap","kde":"Makonde","kea":"Kabuverdianu","ken":"Kenyang","kfo":"Koro","kg":"Kongo","kgp":"Kaingang","kha":"Khasi","kho":"Khotanese","khq":"Koyra Chiini","khw":"Khowar","ki":"Kikuyu","kiu":"Kirmanjki","kj":"Kuanyama","kk":"Kazakh","kkj":"Kako","kl":"Kalaallisut","kln":"Kalenjin","km":"Khmer","kmb":"Kimbundu","kn":"Kannada","ko":"Korean","koi":"Komi-Permyak","kok":"Konkani","kos":"Kosraean","kpe":"Kpelle","kr":"Kanuri","krc":"Karachay-Balkar","kri":"Krio","krj":"Kinaray-a","krl":"Karelian","kru":"Kurukh","ks":"Kashmiri","ksb":"Shambala","ksf":"Bafia","ksh":"Colognian","ku":"Kurdish","kum":"Kumyk","kut":"Kutenai","kv":"Komi","kw":"Cornish","ky":"Kyrgyz","la":"Latin","lad":"Ladino","lag":"Langi","lah":"Lahnda","lam":"Lamba","lb":"Luxembourgish","lez":"Lezghian","lfn":"Lingua Franca Nova","lg":"Ganda","li":"Limburgish","lij":"Ligurian","liv":"Livonian","lkt":"Lakota","lmo":"Lombard","ln":"Lingala","lo":"Lao","lol":"Mongo","lou":"Louisiana Creole","loz":"Lozi","lrc":"Northern Luri","lt":"Lithuanian","ltg":"Latgalian","lu":"Luba-Katanga","lua":"Luba-Lulua","lui":"Luiseno","lun":"Lunda","luo":"Luo","lus":"Mizo","luy":"Luyia","lv":"Latvian","lzh":"Literary Chinese","lzz":"Laz","mad":"Madurese","maf":"Mafa","mag":"Magahi","mai":"Maithili","mak":"Makasar","man":"Mandingo","mas":"Masai","mde":"Maba","mdf":"Moksha","mdr":"Mandar","men":"Mende","mer":"Meru","mfe":"Morisyen","mg":"Malagasy","mga":"Middle Irish","mgh":"Makhuwa-Meetto","mgo":"Metaʼ","mh":"Marshallese","mi":"Maori","mic":"Mi'kmaq","min":"Minangkabau","mk":"Macedonian","ml":"Malayalam","mn":"Mongolian","mnc":"Manchu","mni":"Manipuri","moh":"Mohawk","mos":"Mossi","mr":"Marathi","mrj":"Western Mari","ms":"Malay","mt":"Maltese","mua":"Mundang","mul":"Multiple languages","mus":"Muscogee","mwl":"Mirandese","mwr":"Marwari","mwv":"Mentawai","my":"Burmese","mye":"Myene","myv":"Erzya","mzn":"Mazanderani","na":"Nauru","nan":"Min Nan Chinese","nap":"Neapolitan","naq":"Nama","nb":"Norwegian Bokmål","nd":"North Ndebele","nds":"Low German","nds-NL":"Low Saxon","ne":"Nepali","new":"Newari","ng":"Ndonga","nia":"Nias","niu":"Niuean","njo":"Ao Naga","nl":"Dutch","nl-BE":"Flemish","nmg":"Kwasio","nn":"Norwegian Nynorsk","nnh":"Ngiemboon","no":"Norwegian","nog":"Nogai","non":"Old Norse","nov":"Novial","nqo":"N’Ko","nr":"South Ndebele","nso":"Northern Sotho","nus":"Nuer","nv":"Navajo","nwc":"Classical Newari","ny":"Nyanja","nym":"Nyamwezi","nyn":"Nyankole","nyo":"Nyoro","nzi":"Nzima","oc":"Occitan","oj":"Ojibwa","om":"Oromo","or":"Odia","os":"Ossetic","osa":"Osage","ota":"Ottoman Turkish","pa":"Punjabi","pag":"Pangasinan","pal":"Pahlavi","pam":"Pampanga","pap":"Papiamento","pau":"Palauan","pcd":"Picard","pcm":"Nigerian Pidgin","pdc":"Pennsylvania German","pdt":"Plautdietsch","peo":"Old Persian","pfl":"Palatine German","phn":"Phoenician","pi":"Pali","pl":"Polish","pms":"Piedmontese","pnt":"Pontic","pon":"Pohnpeian","prg":"Prussian","pro":"Old Provençal","ps":"Pashto","pt":"Portuguese","pt-BR":"Brazilian Portuguese","pt-PT":"European Portuguese","qu":"Quechua","quc":"Kʼicheʼ","qug":"Chimborazo Highland Quichua","raj":"Rajasthani","rap":"Rapanui","rar":"Rarotongan","rgn":"Romagnol","rif":"Riffian","rm":"Romansh","rn":"Rundi","ro":"Romanian","ro-MD":"Moldavian","rof":"Rombo","rom":"Romany","rtm":"Rotuman","ru":"Russian","rue":"Rusyn","rug":"Roviana","rup":"Aromanian","rw":"Kinyarwanda","rwk":"Rwa","sa":"Sanskrit","sad":"Sandawe","sah":"Sakha","sam":"Samaritan Aramaic","saq":"Samburu","sas":"Sasak","sat":"Santali","saz":"Saurashtra","sba":"Ngambay","sbp":"Sangu","sc":"Sardinian","scn":"Sicilian","sco":"Scots","sd":"Sindhi","sdc":"Sassarese Sardinian","sdh":"Southern Kurdish","se":"Northern Sami","see":"Seneca","seh":"Sena","sei":"Seri","sel":"Selkup","ses":"Koyraboro Senni","sg":"Sango","sga":"Old Irish","sgs":"Samogitian","sh":"Serbo-Croatian","shi":"Tachelhit","shn":"Shan","shu":"Chadian Arabic","si":"Sinhala","sid":"Sidamo","sk":"Slovak","sl":"Slovenian","sli":"Lower Silesian","sly":"Selayar","sm":"Samoan","sma":"Southern Sami","smj":"Lule Sami","smn":"Inari Sami","sms":"Skolt Sami","sn":"Shona","snk":"Soninke","so":"Somali","sog":"Sogdien","sq":"Albanian","sr":"Serbian","sr-ME":"Montenegrin","srn":"Sranan Tongo","srr":"Serer","ss":"Swati","ssy":"Saho","st":"Southern Sotho","stq":"Saterland Frisian","su":"Sundanese","suk":"Sukuma","sus":"Susu","sux":"Sumerian","sv":"Swedish","sw":"Swahili","sw-CD":"Congo Swahili","swb":"Comorian","syc":"Classical Syriac","syr":"Syriac","szl":"Silesian","ta":"Tamil","tcy":"Tulu","te":"Telugu","tem":"Timne","teo":"Teso","ter":"Tereno","tet":"Tetum","tg":"Tajik","th":"Thai","ti":"Tigrinya","tig":"Tigre","tiv":"Tiv","tk":"Turkmen","tkl":"Tokelau","tkr":"Tsakhur","tl":"Tagalog","tlh":"Klingon","tli":"Tlingit","tly":"Talysh","tmh":"Tamashek","tn":"Tswana","to":"Tongan","tog":"Nyasa Tonga","tpi":"Tok Pisin","tr":"Turkish","tru":"Turoyo","trv":"Taroko","ts":"Tsonga","tsd":"Tsakonian","tsi":"Tsimshian","tt":"Tatar","ttt":"Muslim Tat","tum":"Tumbuka","tvl":"Tuvalu","tw":"Twi","twq":"Tasawaq","ty":"Tahitian","tyv":"Tuvinian","tzm":"Central Atlas Tamazight","udm":"Udmurt","ug":"Uyghur","uga":"Ugaritic","uk":"Ukrainian","umb":"Umbundu","und":"Unknown language","ur":"Urdu","uz":"Uzbek","vai":"Vai","ve":"Venda","vec":"Venetian","vep":"Veps","vi":"Vietnamese","vls":"West Flemish","vmf":"Main-Franconian","vo":"Volapük","vot":"Votic","vro":"Võro","vun":"Vunjo","wa":"Walloon","wae":"Walser","wal":"Wolaytta","war":"Waray","was":"Washo","wbp":"Warlpiri","wo":"Wolof","wuu":"Wu Chinese","xal":"Kalmyk","xh":"Xhosa","xmf":"Mingrelian","xog":"Soga","yao":"Yao","yap":"Yapese","yav":"Yangben","ybb":"Yemba","yi":"Yiddish","yo":"Yoruba","yrl":"Nheengatu","yue":"Cantonese","za":"Zhuang","zap":"Zapotec","zbl":"Blissymbols","zea":"Zeelandic","zen":"Zenaga","zgh":"Standard Moroccan Tamazight","zh":"Chinese","zh-Hans":"Simplified Chinese","zh-Hant":"Traditional Chinese","zu":"Zulu","zun":"Zuni","zxx":"No linguistic content","zza":"Zaza"},"short":{"az":"Azeri","en-GB":"UK English","en-US":"US English"},"narrow":{}},"region":{"long":{"142":"Asia","143":"Central Asia","145":"Western Asia","150":"Europe","151":"Eastern Europe","154":"Northern Europe","155":"Western Europe","202":"Sub-Saharan Africa","419":"Latin America","001":"world","002":"Africa","003":"North America","005":"South America","009":"Oceania","011":"Western Africa","013":"Central America","014":"Eastern Africa","015":"Northern Africa","017":"Middle Africa","018":"Southern Africa","019":"Americas","021":"Northern America","029":"Caribbean","030":"Eastern Asia","034":"Southern Asia","035":"Southeast Asia","039":"Southern Europe","053":"Australasia","054":"Melanesia","057":"Micronesian Region","061":"Polynesia","AC":"Ascension Island","AD":"Andorra","AE":"United Arab Emirates","AF":"Afghanistan","AG":"Antigua & Barbuda","AI":"Anguilla","AL":"Albania","AM":"Armenia","AO":"Angola","AQ":"Antarctica","AR":"Argentina","AS":"American Samoa","AT":"Austria","AU":"Australia","AW":"Aruba","AX":"Åland Islands","AZ":"Azerbaijan","BA":"Bosnia & Herzegovina","BB":"Barbados","BD":"Bangladesh","BE":"Belgium","BF":"Burkina Faso","BG":"Bulgaria","BH":"Bahrain","BI":"Burundi","BJ":"Benin","BL":"St. Barthélemy","BM":"Bermuda","BN":"Brunei","BO":"Bolivia","BQ":"Caribbean Netherlands","BR":"Brazil","BS":"Bahamas","BT":"Bhutan","BV":"Bouvet Island","BW":"Botswana","BY":"Belarus","BZ":"Belize","CA":"Canada","CC":"Cocos (Keeling) Islands","CD":"Congo - Kinshasa","CF":"Central African Republic","CG":"Congo - Brazzaville","CH":"Switzerland","CI":"Côte d’Ivoire","CK":"Cook Islands","CL":"Chile","CM":"Cameroon","CN":"China","CO":"Colombia","CP":"Clipperton Island","CR":"Costa Rica","CU":"Cuba","CV":"Cape Verde","CW":"Curaçao","CX":"Christmas Island","CY":"Cyprus","CZ":"Czechia","DE":"Germany","DG":"Diego Garcia","DJ":"Djibouti","DK":"Denmark","DM":"Dominica","DO":"Dominican Republic","DZ":"Algeria","EA":"Ceuta & Melilla","EC":"Ecuador","EE":"Estonia","EG":"Egypt","EH":"Western Sahara","ER":"Eritrea","ES":"Spain","ET":"Ethiopia","EU":"European Union","EZ":"Eurozone","FI":"Finland","FJ":"Fiji","FK":"Falkland Islands","FM":"Micronesia","FO":"Faroe Islands","FR":"France","GA":"Gabon","GB":"United Kingdom","GD":"Grenada","GE":"Georgia","GF":"French Guiana","GG":"Guernsey","GH":"Ghana","GI":"Gibraltar","GL":"Greenland","GM":"Gambia","GN":"Guinea","GP":"Guadeloupe","GQ":"Equatorial Guinea","GR":"Greece","GS":"South Georgia & South Sandwich Islands","GT":"Guatemala","GU":"Guam","GW":"Guinea-Bissau","GY":"Guyana","HK":"Hong Kong SAR China","HM":"Heard & McDonald Islands","HN":"Honduras","HR":"Croatia","HT":"Haiti","HU":"Hungary","IC":"Canary Islands","ID":"Indonesia","IE":"Ireland","IL":"Israel","IM":"Isle of Man","IN":"India","IO":"British Indian Ocean Territory","IQ":"Iraq","IR":"Iran","IS":"Iceland","IT":"Italy","JE":"Jersey","JM":"Jamaica","JO":"Jordan","JP":"Japan","KE":"Kenya","KG":"Kyrgyzstan","KH":"Cambodia","KI":"Kiribati","KM":"Comoros","KN":"St. Kitts & Nevis","KP":"North Korea","KR":"South Korea","KW":"Kuwait","KY":"Cayman Islands","KZ":"Kazakhstan","LA":"Laos","LB":"Lebanon","LC":"St. Lucia","LI":"Liechtenstein","LK":"Sri Lanka","LR":"Liberia","LS":"Lesotho","LT":"Lithuania","LU":"Luxembourg","LV":"Latvia","LY":"Libya","MA":"Morocco","MC":"Monaco","MD":"Moldova","ME":"Montenegro","MF":"St. Martin","MG":"Madagascar","MH":"Marshall Islands","MK":"North Macedonia","ML":"Mali","MM":"Myanmar (Burma)","MN":"Mongolia","MO":"Macao SAR China","MP":"Northern Mariana Islands","MQ":"Martinique","MR":"Mauritania","MS":"Montserrat","MT":"Malta","MU":"Mauritius","MV":"Maldives","MW":"Malawi","MX":"Mexico","MY":"Malaysia","MZ":"Mozambique","NA":"Namibia","NC":"New Caledonia","NE":"Niger","NF":"Norfolk Island","NG":"Nigeria","NI":"Nicaragua","NL":"Netherlands","NO":"Norway","NP":"Nepal","NR":"Nauru","NU":"Niue","NZ":"New Zealand","OM":"Oman","PA":"Panama","PE":"Peru","PF":"French Polynesia","PG":"Papua New Guinea","PH":"Philippines","PK":"Pakistan","PL":"Poland","PM":"St. Pierre & Miquelon","PN":"Pitcairn Islands","PR":"Puerto Rico","PS":"Palestinian Territories","PT":"Portugal","PW":"Palau","PY":"Paraguay","QA":"Qatar","QO":"Outlying Oceania","RE":"Réunion","RO":"Romania","RS":"Serbia","RU":"Russia","RW":"Rwanda","SA":"Saudi Arabia","SB":"Solomon Islands","SC":"Seychelles","SD":"Sudan","SE":"Sweden","SG":"Singapore","SH":"St. Helena","SI":"Slovenia","SJ":"Svalbard & Jan Mayen","SK":"Slovakia","SL":"Sierra Leone","SM":"San Marino","SN":"Senegal","SO":"Somalia","SR":"Suriname","SS":"South Sudan","ST":"São Tomé & Príncipe","SV":"El Salvador","SX":"Sint Maarten","SY":"Syria","SZ":"Eswatini","TA":"Tristan da Cunha","TC":"Turks & Caicos Islands","TD":"Chad","TF":"French Southern Territories","TG":"Togo","TH":"Thailand","TJ":"Tajikistan","TK":"Tokelau","TL":"Timor-Leste","TM":"Turkmenistan","TN":"Tunisia","TO":"Tonga","TR":"Turkey","TT":"Trinidad & Tobago","TV":"Tuvalu","TW":"Taiwan","TZ":"Tanzania","UA":"Ukraine","UG":"Uganda","UM":"U.S. Outlying Islands","UN":"United Nations","US":"United States","UY":"Uruguay","UZ":"Uzbekistan","VA":"Vatican City","VC":"St. Vincent & Grenadines","VE":"Venezuela","VG":"British Virgin Islands","VI":"U.S. Virgin Islands","VN":"Vietnam","VU":"Vanuatu","WF":"Wallis & Futuna","WS":"Samoa","XA":"Pseudo-Accents","XB":"Pseudo-Bidi","XK":"Kosovo","YE":"Yemen","YT":"Mayotte","ZA":"South Africa","ZM":"Zambia","ZW":"Zimbabwe","ZZ":"Unknown Region"},"short":{"BA":"Bosnia","GB":"UK","HK":"Hong Kong","MM":"Myanmar","MO":"Macao","PS":"Palestine","UN":"UN","US":"US"},"narrow":{}},"script":{"long":{"Adlm":"Adlam","Afak":"Afaka","Aghb":"Caucasian Albanian","Ahom":"Ahom","Arab":"Arabic","Aran":"Nastaliq","Armi":"Imperial Aramaic","Armn":"Armenian","Avst":"Avestan","Bali":"Balinese","Bamu":"Bamum","Bass":"Bassa Vah","Batk":"Batak","Beng":"Bangla","Bhks":"Bhaiksuki","Blis":"Blissymbols","Bopo":"Bopomofo","Brah":"Brahmi","Brai":"Braille","Bugi":"Buginese","Buhd":"Buhid","Cakm":"Chakma","Cans":"Unified Canadian Aboriginal Syllabics","Cari":"Carian","Cham":"Cham","Cher":"Cherokee","Chrs":"Chorasmian","Cirt":"Cirth","Copt":"Coptic","Cprt":"Cypriot","Cyrl":"Cyrillic","Cyrs":"Old Church Slavonic Cyrillic","Deva":"Devanagari","Diak":"Dives Akuru","Dogr":"Dogra","Dsrt":"Deseret","Dupl":"Duployan shorthand","Egyd":"Egyptian demotic","Egyh":"Egyptian hieratic","Egyp":"Egyptian hieroglyphs","Elba":"Elbasan","Elym":"Elymaic","Ethi":"Ethiopic","Geok":"Georgian Khutsuri","Geor":"Georgian","Glag":"Glagolitic","Gong":"Gunjala Gondi","Gonm":"Masaram Gondi","Goth":"Gothic","Gran":"Grantha","Grek":"Greek","Gujr":"Gujarati","Guru":"Gurmukhi","Hanb":"Han with Bopomofo","Hang":"Hangul","Hani":"Han","Hano":"Hanunoo","Hans":"Simplified","Hant":"Traditional","Hatr":"Hatran","Hebr":"Hebrew","Hira":"Hiragana","Hluw":"Anatolian Hieroglyphs","Hmng":"Pahawh Hmong","Hmnp":"Nyiakeng Puachue Hmong","Hrkt":"Japanese syllabaries","Hung":"Old Hungarian","Inds":"Indus","Ital":"Old Italic","Jamo":"Jamo","Java":"Javanese","Jpan":"Japanese","Jurc":"Jurchen","Kali":"Kayah Li","Kana":"Katakana","Khar":"Kharoshthi","Khmr":"Khmer","Khoj":"Khojki","Kits":"Khitan small script","Knda":"Kannada","Kore":"Korean","Kpel":"Kpelle","Kthi":"Kaithi","Lana":"Lanna","Laoo":"Lao","Latf":"Fraktur Latin","Latg":"Gaelic Latin","Latn":"Latin","Lepc":"Lepcha","Limb":"Limbu","Lina":"Linear A","Linb":"Linear B","Lisu":"Fraser","Loma":"Loma","Lyci":"Lycian","Lydi":"Lydian","Mahj":"Mahajani","Maka":"Makasar","Mand":"Mandaean","Mani":"Manichaean","Marc":"Marchen","Maya":"Mayan hieroglyphs","Medf":"Medefaidrin","Mend":"Mende","Merc":"Meroitic Cursive","Mero":"Meroitic","Mlym":"Malayalam","Modi":"Modi","Mong":"Mongolian","Moon":"Moon","Mroo":"Mro","Mtei":"Meitei Mayek","Mult":"Multani","Mymr":"Myanmar","Nand":"Nandinagari","Narb":"Old North Arabian","Nbat":"Nabataean","Newa":"Newa","Nkgb":"Naxi Geba","Nkoo":"N’Ko","Nshu":"Nüshu","Ogam":"Ogham","Olck":"Ol Chiki","Orkh":"Orkhon","Orya":"Odia","Osge":"Osage","Osma":"Osmanya","Palm":"Palmyrene","Pauc":"Pau Cin Hau","Perm":"Old Permic","Phag":"Phags-pa","Phli":"Inscriptional Pahlavi","Phlp":"Psalter Pahlavi","Phlv":"Book Pahlavi","Phnx":"Phoenician","Plrd":"Pollard Phonetic","Prti":"Inscriptional Parthian","Qaag":"Zawgyi","Rjng":"Rejang","Rohg":"Hanifi Rohingya","Roro":"Rongorongo","Runr":"Runic","Samr":"Samaritan","Sara":"Sarati","Sarb":"Old South Arabian","Saur":"Saurashtra","Sgnw":"SignWriting","Shaw":"Shavian","Shrd":"Sharada","Sidd":"Siddham","Sind":"Khudawadi","Sinh":"Sinhala","Sogd":"Sogdian","Sogo":"Old Sogdian","Sora":"Sora Sompeng","Soyo":"Soyombo","Sund":"Sundanese","Sylo":"Syloti Nagri","Syrc":"Syriac","Syre":"Estrangelo Syriac","Syrj":"Western Syriac","Syrn":"Eastern Syriac","Tagb":"Tagbanwa","Takr":"Takri","Tale":"Tai Le","Talu":"New Tai Lue","Taml":"Tamil","Tang":"Tangut","Tavt":"Tai Viet","Telu":"Telugu","Teng":"Tengwar","Tfng":"Tifinagh","Tglg":"Tagalog","Thaa":"Thaana","Thai":"Thai","Tibt":"Tibetan","Tirh":"Tirhuta","Ugar":"Ugaritic","Vaii":"Vai","Visp":"Visible Speech","Wara":"Varang Kshiti","Wcho":"Wancho","Wole":"Woleai","Xpeo":"Old Persian","Xsux":"Sumero-Akkadian Cuneiform","Yezi":"Yezidi","Yiii":"Yi","Zanb":"Zanabazar Square","Zinh":"Inherited","Zmth":"Mathematical Notation","Zsye":"Emoji","Zsym":"Symbols","Zxxx":"Unwritten","Zyyy":"Common","Zzzz":"Unknown Script"},"short":{"Cans":"UCAS","Xsux":"S-A Cuneiform"},"narrow":{}},"currency":{"long":{"ADP":"Andorran Peseta","AED":"United Arab Emirates Dirham","AFA":"Afghan Afghani (1927–2002)","AFN":"Afghan Afghani","ALK":"Albanian Lek (1946–1965)","ALL":"Albanian Lek","AMD":"Armenian Dram","ANG":"Netherlands Antillean Guilder","AOA":"Angolan Kwanza","AOK":"Angolan Kwanza (1977–1991)","AON":"Angolan New Kwanza (1990–2000)","AOR":"Angolan Readjusted Kwanza (1995–1999)","ARA":"Argentine Austral","ARL":"Argentine Peso Ley (1970–1983)","ARM":"Argentine Peso (1881–1970)","ARP":"Argentine Peso (1983–1985)","ARS":"Argentine Peso","ATS":"Austrian Schilling","AUD":"Australian Dollar","AWG":"Aruban Florin","AZM":"Azerbaijani Manat (1993–2006)","AZN":"Azerbaijani Manat","BAD":"Bosnia-Herzegovina Dinar (1992–1994)","BAM":"Bosnia-Herzegovina Convertible Mark","BAN":"Bosnia-Herzegovina New Dinar (1994–1997)","BBD":"Barbadian Dollar","BDT":"Bangladeshi Taka","BEC":"Belgian Franc (convertible)","BEF":"Belgian Franc","BEL":"Belgian Franc (financial)","BGL":"Bulgarian Hard Lev","BGM":"Bulgarian Socialist Lev","BGN":"Bulgarian Lev","BGO":"Bulgarian Lev (1879–1952)","BHD":"Bahraini Dinar","BIF":"Burundian Franc","BMD":"Bermudan Dollar","BND":"Brunei Dollar","BOB":"Bolivian Boliviano","BOL":"Bolivian Boliviano (1863–1963)","BOP":"Bolivian Peso","BOV":"Bolivian Mvdol","BRB":"Brazilian New Cruzeiro (1967–1986)","BRC":"Brazilian Cruzado (1986–1989)","BRE":"Brazilian Cruzeiro (1990–1993)","BRL":"Brazilian Real","BRN":"Brazilian New Cruzado (1989–1990)","BRR":"Brazilian Cruzeiro (1993–1994)","BRZ":"Brazilian Cruzeiro (1942–1967)","BSD":"Bahamian Dollar","BTN":"Bhutanese Ngultrum","BUK":"Burmese Kyat","BWP":"Botswanan Pula","BYB":"Belarusian Ruble (1994–1999)","BYN":"Belarusian Ruble","BYR":"Belarusian Ruble (2000–2016)","BZD":"Belize Dollar","CAD":"Canadian Dollar","CDF":"Congolese Franc","CHE":"WIR Euro","CHF":"Swiss Franc","CHW":"WIR Franc","CLE":"Chilean Escudo","CLF":"Chilean Unit of Account (UF)","CLP":"Chilean Peso","CNH":"Chinese Yuan (offshore)","CNX":"Chinese People’s Bank Dollar","CNY":"Chinese Yuan","COP":"Colombian Peso","COU":"Colombian Real Value Unit","CRC":"Costa Rican Colón","CSD":"Serbian Dinar (2002–2006)","CSK":"Czechoslovak Hard Koruna","CUC":"Cuban Convertible Peso","CUP":"Cuban Peso","CVE":"Cape Verdean Escudo","CYP":"Cypriot Pound","CZK":"Czech Koruna","DDM":"East German Mark","DEM":"German Mark","DJF":"Djiboutian Franc","DKK":"Danish Krone","DOP":"Dominican Peso","DZD":"Algerian Dinar","ECS":"Ecuadorian Sucre","ECV":"Ecuadorian Unit of Constant Value","EEK":"Estonian Kroon","EGP":"Egyptian Pound","ERN":"Eritrean Nakfa","ESA":"Spanish Peseta (A account)","ESB":"Spanish Peseta (convertible account)","ESP":"Spanish Peseta","ETB":"Ethiopian Birr","EUR":"Euro","FIM":"Finnish Markka","FJD":"Fijian Dollar","FKP":"Falkland Islands Pound","FRF":"French Franc","GBP":"British Pound","GEK":"Georgian Kupon Larit","GEL":"Georgian Lari","GHC":"Ghanaian Cedi (1979–2007)","GHS":"Ghanaian Cedi","GIP":"Gibraltar Pound","GMD":"Gambian Dalasi","GNF":"Guinean Franc","GNS":"Guinean Syli","GQE":"Equatorial Guinean Ekwele","GRD":"Greek Drachma","GTQ":"Guatemalan Quetzal","GWE":"Portuguese Guinea Escudo","GWP":"Guinea-Bissau Peso","GYD":"Guyanaese Dollar","HKD":"Hong Kong Dollar","HNL":"Honduran Lempira","HRD":"Croatian Dinar","HRK":"Croatian Kuna","HTG":"Haitian Gourde","HUF":"Hungarian Forint","IDR":"Indonesian Rupiah","IEP":"Irish Pound","ILP":"Israeli Pound","ILR":"Israeli Shekel (1980–1985)","ILS":"Israeli New Shekel","INR":"Indian Rupee","IQD":"Iraqi Dinar","IRR":"Iranian Rial","ISJ":"Icelandic Króna (1918–1981)","ISK":"Icelandic Króna","ITL":"Italian Lira","JMD":"Jamaican Dollar","JOD":"Jordanian Dinar","JPY":"Japanese Yen","KES":"Kenyan Shilling","KGS":"Kyrgystani Som","KHR":"Cambodian Riel","KMF":"Comorian Franc","KPW":"North Korean Won","KRH":"South Korean Hwan (1953–1962)","KRO":"South Korean Won (1945–1953)","KRW":"South Korean Won","KWD":"Kuwaiti Dinar","KYD":"Cayman Islands Dollar","KZT":"Kazakhstani Tenge","LAK":"Laotian Kip","LBP":"Lebanese Pound","LKR":"Sri Lankan Rupee","LRD":"Liberian Dollar","LSL":"Lesotho Loti","LTL":"Lithuanian Litas","LTT":"Lithuanian Talonas","LUC":"Luxembourgian Convertible Franc","LUF":"Luxembourgian Franc","LUL":"Luxembourg Financial Franc","LVL":"Latvian Lats","LVR":"Latvian Ruble","LYD":"Libyan Dinar","MAD":"Moroccan Dirham","MAF":"Moroccan Franc","MCF":"Monegasque Franc","MDC":"Moldovan Cupon","MDL":"Moldovan Leu","MGA":"Malagasy Ariary","MGF":"Malagasy Franc","MKD":"Macedonian Denar","MKN":"Macedonian Denar (1992–1993)","MLF":"Malian Franc","MMK":"Myanmar Kyat","MNT":"Mongolian Tugrik","MOP":"Macanese Pataca","MRO":"Mauritanian Ouguiya (1973–2017)","MRU":"Mauritanian Ouguiya","MTL":"Maltese Lira","MTP":"Maltese Pound","MUR":"Mauritian Rupee","MVP":"Maldivian Rupee (1947–1981)","MVR":"Maldivian Rufiyaa","MWK":"Malawian Kwacha","MXN":"Mexican Peso","MXP":"Mexican Silver Peso (1861–1992)","MXV":"Mexican Investment Unit","MYR":"Malaysian Ringgit","MZE":"Mozambican Escudo","MZM":"Mozambican Metical (1980–2006)","MZN":"Mozambican Metical","NAD":"Namibian Dollar","NGN":"Nigerian Naira","NIC":"Nicaraguan Córdoba (1988–1991)","NIO":"Nicaraguan Córdoba","NLG":"Dutch Guilder","NOK":"Norwegian Krone","NPR":"Nepalese Rupee","NZD":"New Zealand Dollar","OMR":"Omani Rial","PAB":"Panamanian Balboa","PEI":"Peruvian Inti","PEN":"Peruvian Sol","PES":"Peruvian Sol (1863–1965)","PGK":"Papua New Guinean Kina","PHP":"Philippine Piso","PKR":"Pakistani Rupee","PLN":"Polish Zloty","PLZ":"Polish Zloty (1950–1995)","PTE":"Portuguese Escudo","PYG":"Paraguayan Guarani","QAR":"Qatari Rial","RHD":"Rhodesian Dollar","ROL":"Romanian Leu (1952–2006)","RON":"Romanian Leu","RSD":"Serbian Dinar","RUB":"Russian Ruble","RUR":"Russian Ruble (1991–1998)","RWF":"Rwandan Franc","SAR":"Saudi Riyal","SBD":"Solomon Islands Dollar","SCR":"Seychellois Rupee","SDD":"Sudanese Dinar (1992–2007)","SDG":"Sudanese Pound","SDP":"Sudanese Pound (1957–1998)","SEK":"Swedish Krona","SGD":"Singapore Dollar","SHP":"St. Helena Pound","SIT":"Slovenian Tolar","SKK":"Slovak Koruna","SLL":"Sierra Leonean Leone","SOS":"Somali Shilling","SRD":"Surinamese Dollar","SRG":"Surinamese Guilder","SSP":"South Sudanese Pound","STD":"São Tomé & Príncipe Dobra (1977–2017)","STN":"São Tomé & Príncipe Dobra","SUR":"Soviet Rouble","SVC":"Salvadoran Colón","SYP":"Syrian Pound","SZL":"Swazi Lilangeni","THB":"Thai Baht","TJR":"Tajikistani Ruble","TJS":"Tajikistani Somoni","TMM":"Turkmenistani Manat (1993–2009)","TMT":"Turkmenistani Manat","TND":"Tunisian Dinar","TOP":"Tongan Paʻanga","TPE":"Timorese Escudo","TRL":"Turkish Lira (1922–2005)","TRY":"Turkish Lira","TTD":"Trinidad & Tobago Dollar","TWD":"New Taiwan Dollar","TZS":"Tanzanian Shilling","UAH":"Ukrainian Hryvnia","UAK":"Ukrainian Karbovanets","UGS":"Ugandan Shilling (1966–1987)","UGX":"Ugandan Shilling","USD":"US Dollar","USN":"US Dollar (Next day)","USS":"US Dollar (Same day)","UYI":"Uruguayan Peso (Indexed Units)","UYP":"Uruguayan Peso (1975–1993)","UYU":"Uruguayan Peso","UYW":"Uruguayan Nominal Wage Index Unit","UZS":"Uzbekistani Som","VEB":"Venezuelan Bolívar (1871–2008)","VEF":"Venezuelan Bolívar (2008–2018)","VES":"Venezuelan Bolívar","VND":"Vietnamese Dong","VNN":"Vietnamese Dong (1978–1985)","VUV":"Vanuatu Vatu","WST":"Samoan Tala","XAF":"Central African CFA Franc","XAG":"Silver","XAU":"Gold","XBA":"European Composite Unit","XBB":"European Monetary Unit","XBC":"European Unit of Account (XBC)","XBD":"European Unit of Account (XBD)","XCD":"East Caribbean Dollar","XDR":"Special Drawing Rights","XEU":"European Currency Unit","XFO":"French Gold Franc","XFU":"French UIC-Franc","XOF":"West African CFA Franc","XPD":"Palladium","XPF":"CFP Franc","XPT":"Platinum","XRE":"RINET Funds","XSU":"Sucre","XTS":"Testing Currency Code","XUA":"ADB Unit of Account","XXX":"Unknown Currency","YDD":"Yemeni Dinar","YER":"Yemeni Rial","YUD":"Yugoslavian Hard Dinar (1966–1990)","YUM":"Yugoslavian New Dinar (1994–2002)","YUN":"Yugoslavian Convertible Dinar (1990–1992)","YUR":"Yugoslavian Reformed Dinar (1992–1993)","ZAL":"South African Rand (financial)","ZAR":"South African Rand","ZMK":"Zambian Kwacha (1968–2012)","ZMW":"Zambian Kwacha","ZRN":"Zairean New Zaire (1993–1998)","ZRZ":"Zairean Zaire (1971–1993)","ZWD":"Zimbabwean Dollar (1980–2008)","ZWL":"Zimbabwean Dollar (2009)","ZWR":"Zimbabwean Dollar (2008)"},"short":{},"narrow":{}}},"patterns":{"locale":"{0} ({1})"}},"locale":"en"} ) } } if (!("Intl"in self&&"ListFormat"in self.Intl )) { // Intl.ListFormat (function() { // node_modules/tslib/tslib.es6.js var extendStatics = function(d, b) { extendStatics = Object.setPrototypeOf || {__proto__: []} instanceof Array && function(d2, b2) { d2.__proto__ = b2; } || function(d2, b2) { for (var p in b2) if (Object.prototype.hasOwnProperty.call(b2, p)) d2[p] = b2[p]; }; return extendStatics(d, b); }; function __extends(d, b) { if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); } var __assign = function() { __assign = Object.assign || function __assign2(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; return __assign.apply(this, arguments); }; // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/utils.js function setInternalSlot(map, pl, field, value) { if (!map.get(pl)) { map.set(pl, Object.create(null)); } var slots = map.get(pl); slots[field] = value; } function getInternalSlot(map, pl, field) { return getMultiInternalSlots(map, pl, field)[field]; } function getMultiInternalSlots(map, pl) { var fields = []; for (var _i = 2; _i < arguments.length; _i++) { fields[_i - 2] = arguments[_i]; } var slots = map.get(pl); if (!slots) { throw new TypeError(pl + " InternalSlot has not been initialized"); } return fields.reduce(function(all, f) { all[f] = slots[f]; return all; }, Object.create(null)); } function isLiteralPart(patternPart) { return patternPart.type === "literal"; } var UNICODE_EXTENSION_SEQUENCE_REGEX = /-u(?:-[0-9a-z]{2,8})+/gi; function invariant(condition, message, Err) { if (Err === void 0) { Err = Error; } if (!condition) { throw new Err(message); } } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/types/date-time.js var RangePatternType; (function(RangePatternType2) { RangePatternType2["startRange"] = "startRange"; RangePatternType2["shared"] = "shared"; RangePatternType2["endRange"] = "endRange"; })(RangePatternType || (RangePatternType = {})); // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/CanonicalizeLocaleList.js function CanonicalizeLocaleList(locales) { return Intl.getCanonicalLocales(locales); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/262.js function ToString(o) { if (typeof o === "symbol") { throw TypeError("Cannot convert a Symbol value to a string"); } return String(o); } function ToObject(arg) { if (arg == null) { throw new TypeError("undefined/null cannot be converted to object"); } return Object(arg); } var MINUTES_PER_HOUR = 60; var SECONDS_PER_MINUTE = 60; var MS_PER_SECOND = 1e3; var MS_PER_MINUTE = MS_PER_SECOND * SECONDS_PER_MINUTE; var MS_PER_HOUR = MS_PER_MINUTE * MINUTES_PER_HOUR; // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/PartitionPattern.js function PartitionPattern(pattern) { var result = []; var beginIndex = pattern.indexOf("{"); var endIndex = 0; var nextIndex = 0; var length = pattern.length; while (beginIndex < pattern.length && beginIndex > -1) { endIndex = pattern.indexOf("}", beginIndex); invariant(endIndex > beginIndex, "Invalid pattern " + pattern); if (beginIndex > nextIndex) { result.push({ type: "literal", value: pattern.substring(nextIndex, beginIndex) }); } result.push({ type: pattern.substring(beginIndex + 1, endIndex), value: void 0 }); nextIndex = endIndex + 1; beginIndex = pattern.indexOf("{", nextIndex); } if (nextIndex < length) { result.push({ type: "literal", value: pattern.substring(nextIndex, length) }); } return result; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/GetOption.js function GetOption(opts, prop, type, values, fallback) { if (typeof opts !== "object") { throw new TypeError("Options must be an object"); } var value = opts[prop]; if (value !== void 0) { if (type !== "boolean" && type !== "string") { throw new TypeError("invalid type"); } if (type === "boolean") { value = Boolean(value); } if (type === "string") { value = ToString(value); } if (values !== void 0 && !values.filter(function(val) { return val == value; }).length) { throw new RangeError(value + " is not within " + values.join(", ")); } return value; } return fallback; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/BestAvailableLocale.js function BestAvailableLocale(availableLocales, locale) { var candidate = locale; while (true) { if (availableLocales.has(candidate)) { return candidate; } var pos = candidate.lastIndexOf("-"); if (!~pos) { return void 0; } if (pos >= 2 && candidate[pos - 2] === "-") { pos -= 2; } candidate = candidate.slice(0, pos); } } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/LookupMatcher.js function LookupMatcher(availableLocales, requestedLocales, getDefaultLocale) { var result = {locale: ""}; for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) { var locale = requestedLocales_1[_i]; var noExtensionLocale = locale.replace(UNICODE_EXTENSION_SEQUENCE_REGEX, ""); var availableLocale = BestAvailableLocale(availableLocales, noExtensionLocale); if (availableLocale) { result.locale = availableLocale; if (locale !== noExtensionLocale) { result.extension = locale.slice(noExtensionLocale.length + 1, locale.length); } return result; } } result.locale = getDefaultLocale(); return result; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/BestFitMatcher.js function BestFitMatcher(availableLocales, requestedLocales, getDefaultLocale) { var minimizedAvailableLocaleMap = {}; var minimizedAvailableLocales = new Set(); availableLocales.forEach(function(locale2) { var minimizedLocale = new Intl.Locale(locale2).minimize().toString(); minimizedAvailableLocaleMap[minimizedLocale] = locale2; minimizedAvailableLocales.add(minimizedLocale); }); var foundLocale; for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) { var l = requestedLocales_1[_i]; if (foundLocale) { break; } var noExtensionLocale = l.replace(UNICODE_EXTENSION_SEQUENCE_REGEX, ""); if (availableLocales.has(noExtensionLocale)) { foundLocale = noExtensionLocale; break; } if (minimizedAvailableLocales.has(noExtensionLocale)) { foundLocale = minimizedAvailableLocaleMap[noExtensionLocale]; break; } var locale = new Intl.Locale(noExtensionLocale); var maximizedRequestedLocale = locale.maximize().toString(); var minimizedRequestedLocale = locale.minimize().toString(); if (minimizedAvailableLocales.has(minimizedRequestedLocale)) { foundLocale = minimizedAvailableLocaleMap[minimizedRequestedLocale]; break; } foundLocale = BestAvailableLocale(minimizedAvailableLocales, maximizedRequestedLocale); } return { locale: foundLocale || getDefaultLocale() }; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/UnicodeExtensionValue.js function UnicodeExtensionValue(extension, key) { invariant(key.length === 2, "key must have 2 elements"); var size = extension.length; var searchValue = "-" + key + "-"; var pos = extension.indexOf(searchValue); if (pos !== -1) { var start = pos + 4; var end = start; var k = start; var done = false; while (!done) { var e = extension.indexOf("-", k); var len = void 0; if (e === -1) { len = size - k; } else { len = e - k; } if (len === 2) { done = true; } else if (e === -1) { end = size; done = true; } else { end = e; k = e + 1; } } return extension.slice(start, end); } searchValue = "-" + key; pos = extension.indexOf(searchValue); if (pos !== -1 && pos + 3 === size) { return ""; } return void 0; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/ResolveLocale.js function ResolveLocale(availableLocales, requestedLocales, options, relevantExtensionKeys, localeData, getDefaultLocale) { var matcher = options.localeMatcher; var r; if (matcher === "lookup") { r = LookupMatcher(availableLocales, requestedLocales, getDefaultLocale); } else { r = BestFitMatcher(availableLocales, requestedLocales, getDefaultLocale); } var foundLocale = r.locale; var result = {locale: "", dataLocale: foundLocale}; var supportedExtension = "-u"; for (var _i = 0, relevantExtensionKeys_1 = relevantExtensionKeys; _i < relevantExtensionKeys_1.length; _i++) { var key = relevantExtensionKeys_1[_i]; invariant(foundLocale in localeData, "Missing locale data for " + foundLocale); var foundLocaleData = localeData[foundLocale]; invariant(typeof foundLocaleData === "object" && foundLocaleData !== null, "locale data " + key + " must be an object"); var keyLocaleData = foundLocaleData[key]; invariant(Array.isArray(keyLocaleData), "keyLocaleData for " + key + " must be an array"); var value = keyLocaleData[0]; invariant(typeof value === "string" || value === null, "value must be string or null but got " + typeof value + " in key " + key); var supportedExtensionAddition = ""; if (r.extension) { var requestedValue = UnicodeExtensionValue(r.extension, key); if (requestedValue !== void 0) { if (requestedValue !== "") { if (~keyLocaleData.indexOf(requestedValue)) { value = requestedValue; supportedExtensionAddition = "-" + key + "-" + value; } } else if (~requestedValue.indexOf("true")) { value = "true"; supportedExtensionAddition = "-" + key; } } } if (key in options) { var optionsValue = options[key]; invariant(typeof optionsValue === "string" || typeof optionsValue === "undefined" || optionsValue === null, "optionsValue must be String, Undefined or Null"); if (~keyLocaleData.indexOf(optionsValue)) { if (optionsValue !== value) { value = optionsValue; supportedExtensionAddition = ""; } } } result[key] = value; supportedExtension += supportedExtensionAddition; } if (supportedExtension.length > 2) { var privateIndex = foundLocale.indexOf("-x-"); if (privateIndex === -1) { foundLocale = foundLocale + supportedExtension; } else { var preExtension = foundLocale.slice(0, privateIndex); var postExtension = foundLocale.slice(privateIndex, foundLocale.length); foundLocale = preExtension + supportedExtension + postExtension; } foundLocale = Intl.getCanonicalLocales(foundLocale)[0]; } result.locale = foundLocale; return result; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/GetOptionsObject.js function GetOptionsObject(options) { if (typeof options === "undefined") { return Object.create(null); } if (typeof options === "object") { return options; } throw new TypeError("Options must be an object"); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/IsSanctionedSimpleUnitIdentifier.js var SANCTIONED_UNITS = [ "angle-degree", "area-acre", "area-hectare", "concentr-percent", "digital-bit", "digital-byte", "digital-gigabit", "digital-gigabyte", "digital-kilobit", "digital-kilobyte", "digital-megabit", "digital-megabyte", "digital-petabyte", "digital-terabit", "digital-terabyte", "duration-day", "duration-hour", "duration-millisecond", "duration-minute", "duration-month", "duration-second", "duration-week", "duration-year", "length-centimeter", "length-foot", "length-inch", "length-kilometer", "length-meter", "length-mile-scandinavian", "length-mile", "length-millimeter", "length-yard", "mass-gram", "mass-kilogram", "mass-ounce", "mass-pound", "mass-stone", "temperature-celsius", "temperature-fahrenheit", "volume-fluid-ounce", "volume-gallon", "volume-liter", "volume-milliliter" ]; function removeUnitNamespace(unit) { return unit.slice(unit.indexOf("-") + 1); } var SIMPLE_UNITS = SANCTIONED_UNITS.map(removeUnitNamespace); // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/regex.generated.js var S_UNICODE_REGEX = /[\$\+<->\^`\|~\xA2-\xA6\xA8\xA9\xAC\xAE-\xB1\xB4\xB8\xD7\xF7\u02C2-\u02C5\u02D2-\u02DF\u02E5-\u02EB\u02ED\u02EF-\u02FF\u0375\u0384\u0385\u03F6\u0482\u058D-\u058F\u0606-\u0608\u060B\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u07FE\u07FF\u09F2\u09F3\u09FA\u09FB\u0AF1\u0B70\u0BF3-\u0BFA\u0C7F\u0D4F\u0D79\u0E3F\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u166D\u17DB\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u1FBD\u1FBF-\u1FC1\u1FCD-\u1FCF\u1FDD-\u1FDF\u1FED-\u1FEF\u1FFD\u1FFE\u2044\u2052\u207A-\u207C\u208A-\u208C\u20A0-\u20BF\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u214F\u218A\u218B\u2190-\u2307\u230C-\u2328\u232B-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u2767\u2794-\u27C4\u27C7-\u27E5\u27F0-\u2982\u2999-\u29D7\u29DC-\u29FB\u29FE-\u2B73\u2B76-\u2B95\u2B97-\u2BFF\u2CE5-\u2CEA\u2E50\u2E51\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u309B\u309C\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA700-\uA716\uA720\uA721\uA789\uA78A\uA828-\uA82B\uA836-\uA839\uAA77-\uAA79\uAB5B\uAB6A\uAB6B\uFB29\uFBB2-\uFBC1\uFDFC\uFDFD\uFE62\uFE64-\uFE66\uFE69\uFF04\uFF0B\uFF1C-\uFF1E\uFF3E\uFF40\uFF5C\uFF5E\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFFC\uFFFD]|\uD800[\uDD37-\uDD3F\uDD79-\uDD89\uDD8C-\uDD8E\uDD90-\uDD9C\uDDA0\uDDD0-\uDDFC]|\uD802[\uDC77\uDC78\uDEC8]|\uD805\uDF3F|\uD807[\uDFD5-\uDFF1]|\uD81A[\uDF3C-\uDF3F\uDF45]|\uD82F\uDC9C|\uD834[\uDC00-\uDCF5\uDD00-\uDD26\uDD29-\uDD64\uDD6A-\uDD6C\uDD83\uDD84\uDD8C-\uDDA9\uDDAE-\uDDE8\uDE00-\uDE41\uDE45\uDF00-\uDF56]|\uD835[\uDEC1\uDEDB\uDEFB\uDF15\uDF35\uDF4F\uDF6F\uDF89\uDFA9\uDFC3]|\uD836[\uDC00-\uDDFF\uDE37-\uDE3A\uDE6D-\uDE74\uDE76-\uDE83\uDE85\uDE86]|\uD838[\uDD4F\uDEFF]|\uD83B[\uDCAC\uDCB0\uDD2E\uDEF0\uDEF1]|\uD83C[\uDC00-\uDC2B\uDC30-\uDC93\uDCA0-\uDCAE\uDCB1-\uDCBF\uDCC1-\uDCCF\uDCD1-\uDCF5\uDD0D-\uDDAD\uDDE6-\uDE02\uDE10-\uDE3B\uDE40-\uDE48\uDE50\uDE51\uDE60-\uDE65\uDF00-\uDFFF]|\uD83D[\uDC00-\uDED7\uDEE0-\uDEEC\uDEF0-\uDEFC\uDF00-\uDF73\uDF80-\uDFD8\uDFE0-\uDFEB]|\uD83E[\uDC00-\uDC0B\uDC10-\uDC47\uDC50-\uDC59\uDC60-\uDC87\uDC90-\uDCAD\uDCB0\uDCB1\uDD00-\uDD78\uDD7A-\uDDCB\uDDCD-\uDE53\uDE60-\uDE6D\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6\uDF00-\uDF92\uDF94-\uDFCA]/; // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/format_to_parts.js var CARET_S_UNICODE_REGEX = new RegExp("^" + S_UNICODE_REGEX.source); var S_DOLLAR_UNICODE_REGEX = new RegExp(S_UNICODE_REGEX.source + "$"); // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/LookupSupportedLocales.js function LookupSupportedLocales(availableLocales, requestedLocales) { var subset = []; for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) { var locale = requestedLocales_1[_i]; var noExtensionLocale = locale.replace(UNICODE_EXTENSION_SEQUENCE_REGEX, ""); var availableLocale = BestAvailableLocale(availableLocales, noExtensionLocale); if (availableLocale) { subset.push(availableLocale); } } return subset; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/SupportedLocales.js function SupportedLocales(availableLocales, requestedLocales, options) { var matcher = "best fit"; if (options !== void 0) { options = ToObject(options); matcher = GetOption(options, "localeMatcher", "string", ["lookup", "best fit"], "best fit"); } if (matcher === "best fit") { return LookupSupportedLocales(availableLocales, requestedLocales); } return LookupSupportedLocales(availableLocales, requestedLocales); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/data.js var MissingLocaleDataError = function(_super) { __extends(MissingLocaleDataError2, _super); function MissingLocaleDataError2() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.type = "MISSING_LOCALE_DATA"; return _this; } return MissingLocaleDataError2; }(Error); // bazel-out/darwin-fastbuild/bin/packages/intl-listformat/lib/index.js function validateInstance(instance, method) { if (!(instance instanceof ListFormat)) { throw new TypeError("Method Intl.ListFormat.prototype." + method + " called on incompatible receiver " + String(instance)); } } function stringListFromIterable(list) { if (list === void 0) { return []; } var result = []; for (var _i = 0, list_1 = list; _i < list_1.length; _i++) { var el = list_1[_i]; if (typeof el !== "string") { throw new TypeError("array list[" + list.indexOf(el) + "] is not type String"); } result.push(el); } return result; } function createPartsFromList(internalSlotMap, lf, list) { var size = list.length; if (size === 0) { return []; } if (size === 2) { var pattern = getInternalSlot(internalSlotMap, lf, "templatePair"); var first = {type: "element", value: list[0]}; var second = {type: "element", value: list[1]}; return deconstructPattern(pattern, {"0": first, "1": second}); } var last = { type: "element", value: list[size - 1] }; var parts = last; var i = size - 2; while (i >= 0) { var pattern = void 0; if (i === 0) { pattern = getInternalSlot(internalSlotMap, lf, "templateStart"); } else if (i < size - 2) { pattern = getInternalSlot(internalSlotMap, lf, "templateMiddle"); } else { pattern = getInternalSlot(internalSlotMap, lf, "templateEnd"); } var head = {type: "element", value: list[i]}; parts = deconstructPattern(pattern, {"0": head, "1": parts}); i--; } return parts; } function deconstructPattern(pattern, placeables) { var patternParts = PartitionPattern(pattern); var result = []; for (var _i = 0, patternParts_1 = patternParts; _i < patternParts_1.length; _i++) { var patternPart = patternParts_1[_i]; var part = patternPart.type; if (isLiteralPart(patternPart)) { result.push({ type: "literal", value: patternPart.value }); } else { invariant(part in placeables, part + " is missing from placables"); var subst = placeables[part]; if (Array.isArray(subst)) { result.push.apply(result, subst); } else { result.push(subst); } } } return result; } var ListFormat = function() { function ListFormat2(locales, options) { var newTarget = this && this instanceof ListFormat2 ? this.constructor : void 0; if (!newTarget) { throw new TypeError("Intl.ListFormat must be called with 'new'"); } setInternalSlot(ListFormat2.__INTERNAL_SLOT_MAP__, this, "initializedListFormat", true); var requestedLocales = CanonicalizeLocaleList(locales); var opt = Object.create(null); var opts = GetOptionsObject(options); var matcher = GetOption(opts, "localeMatcher", "string", ["best fit", "lookup"], "best fit"); opt.localeMatcher = matcher; var localeData = ListFormat2.localeData; var r = ResolveLocale(ListFormat2.availableLocales, requestedLocales, opt, ListFormat2.relevantExtensionKeys, localeData, ListFormat2.getDefaultLocale); setInternalSlot(ListFormat2.__INTERNAL_SLOT_MAP__, this, "locale", r.locale); var type = GetOption(opts, "type", "string", ["conjunction", "disjunction", "unit"], "conjunction"); setInternalSlot(ListFormat2.__INTERNAL_SLOT_MAP__, this, "type", type); var style = GetOption(opts, "style", "string", ["long", "short", "narrow"], "long"); setInternalSlot(ListFormat2.__INTERNAL_SLOT_MAP__, this, "style", style); var dataLocale = r.dataLocale; var dataLocaleData = localeData[dataLocale]; invariant(!!dataLocaleData, "Missing locale data for " + dataLocale); var dataLocaleTypes = dataLocaleData[type]; var templates = dataLocaleTypes[style]; setInternalSlot(ListFormat2.__INTERNAL_SLOT_MAP__, this, "templatePair", templates.pair); setInternalSlot(ListFormat2.__INTERNAL_SLOT_MAP__, this, "templateStart", templates.start); setInternalSlot(ListFormat2.__INTERNAL_SLOT_MAP__, this, "templateMiddle", templates.middle); setInternalSlot(ListFormat2.__INTERNAL_SLOT_MAP__, this, "templateEnd", templates.end); } ListFormat2.prototype.format = function(elements) { validateInstance(this, "format"); var result = ""; var parts = createPartsFromList(ListFormat2.__INTERNAL_SLOT_MAP__, this, stringListFromIterable(elements)); if (!Array.isArray(parts)) { return parts.value; } for (var _i = 0, parts_1 = parts; _i < parts_1.length; _i++) { var p = parts_1[_i]; result += p.value; } return result; }; ListFormat2.prototype.formatToParts = function(elements) { validateInstance(this, "format"); var parts = createPartsFromList(ListFormat2.__INTERNAL_SLOT_MAP__, this, stringListFromIterable(elements)); if (!Array.isArray(parts)) { return [parts]; } var result = []; for (var _i = 0, parts_2 = parts; _i < parts_2.length; _i++) { var part = parts_2[_i]; result.push(__assign({}, part)); } return result; }; ListFormat2.prototype.resolvedOptions = function() { validateInstance(this, "resolvedOptions"); return { locale: getInternalSlot(ListFormat2.__INTERNAL_SLOT_MAP__, this, "locale"), type: getInternalSlot(ListFormat2.__INTERNAL_SLOT_MAP__, this, "type"), style: getInternalSlot(ListFormat2.__INTERNAL_SLOT_MAP__, this, "style") }; }; ListFormat2.supportedLocalesOf = function(locales, options) { return SupportedLocales(ListFormat2.availableLocales, CanonicalizeLocaleList(locales), options); }; ListFormat2.__addLocaleData = function() { var data = []; for (var _i = 0; _i < arguments.length; _i++) { data[_i] = arguments[_i]; } for (var _a = 0, data_1 = data; _a < data_1.length; _a++) { var _b = data_1[_a], d = _b.data, locale = _b.locale; var minimizedLocale = new Intl.Locale(locale).minimize().toString(); ListFormat2.localeData[locale] = ListFormat2.localeData[minimizedLocale] = d; ListFormat2.availableLocales.add(minimizedLocale); ListFormat2.availableLocales.add(locale); if (!ListFormat2.__defaultLocale) { ListFormat2.__defaultLocale = minimizedLocale; } } }; ListFormat2.getDefaultLocale = function() { return ListFormat2.__defaultLocale; }; ListFormat2.localeData = {}; ListFormat2.availableLocales = new Set(); ListFormat2.__defaultLocale = ""; ListFormat2.relevantExtensionKeys = []; ListFormat2.polyfilled = true; ListFormat2.__INTERNAL_SLOT_MAP__ = new WeakMap(); return ListFormat2; }(); var lib_default = ListFormat; try { if (typeof Symbol !== "undefined") { Object.defineProperty(ListFormat.prototype, Symbol.toStringTag, { value: "Intl.ListFormat", writable: false, enumerable: false, configurable: true }); } Object.defineProperty(ListFormat.prototype.constructor, "length", { value: 0, writable: false, enumerable: false, configurable: true }); Object.defineProperty(ListFormat.supportedLocalesOf, "length", { value: 1, writable: false, enumerable: false, configurable: true }); } catch (e) { } // bazel-out/darwin-fastbuild/bin/packages/intl-listformat/lib/should-polyfill.js function shouldPolyfill() { return typeof Intl === "undefined" || !("ListFormat" in Intl); } // bazel-out/darwin-fastbuild/bin/packages/intl-listformat/lib/polyfill.js if (shouldPolyfill()) { Object.defineProperty(Intl, "ListFormat", { value: lib_default, writable: true, enumerable: false, configurable: true }); } })(); /*! ***************************************************************************** Copyright (c) Microsoft Corporation. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ***************************************************************************** */ } if (!("Intl"in self&&Intl.ListFormat&&Intl.ListFormat.supportedLocalesOf&&1===Intl.ListFormat.supportedLocalesOf("en").length )) { // Intl.ListFormat.~locale.en /* @generated */ // prettier-ignore if (Intl.ListFormat && typeof Intl.ListFormat.__addLocaleData === 'function') { Intl.ListFormat.__addLocaleData({"data":{"conjunction":{"long":{"start":"{0}, {1}","middle":"{0}, {1}","end":"{0}, and {1}","pair":"{0} and {1}"},"short":{"start":"{0}, {1}","middle":"{0}, {1}","end":"{0}, & {1}","pair":"{0} & {1}"},"narrow":{"start":"{0}, {1}","middle":"{0}, {1}","end":"{0}, {1}","pair":"{0}, {1}"}},"disjunction":{"long":{"start":"{0}, {1}","middle":"{0}, {1}","end":"{0}, or {1}","pair":"{0} or {1}"},"short":{"start":"{0}, {1}","middle":"{0}, {1}","end":"{0}, or {1}","pair":"{0} or {1}"},"narrow":{"start":"{0}, {1}","middle":"{0}, {1}","end":"{0}, or {1}","pair":"{0} or {1}"}},"unit":{"long":{"start":"{0}, {1}","middle":"{0}, {1}","end":"{0}, {1}","pair":"{0}, {1}"},"short":{"start":"{0}, {1}","middle":"{0}, {1}","end":"{0}, {1}","pair":"{0}, {1}"},"narrow":{"start":"{0} {1}","middle":"{0} {1}","end":"{0} {1}","pair":"{0} {1}"}}},"locale":"en"} ) } } if (!("Intl"in self&&"PluralRules"in self.Intl )) { // Intl.PluralRules (function() { // node_modules/tslib/tslib.es6.js var extendStatics = function(d, b) { extendStatics = Object.setPrototypeOf || {__proto__: []} instanceof Array && function(d2, b2) { d2.__proto__ = b2; } || function(d2, b2) { for (var p in b2) if (Object.prototype.hasOwnProperty.call(b2, p)) d2[p] = b2[p]; }; return extendStatics(d, b); }; function __extends(d, b) { if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); } function __spreadArray(to, from) { for (var i = 0, il = from.length, j = to.length; i < il; i++, j++) to[j] = from[i]; return to; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/utils.js function getMagnitude(x) { return Math.floor(Math.log(x) * Math.LOG10E); } function repeat(s, times) { if (typeof s.repeat === "function") { return s.repeat(times); } var arr = new Array(times); for (var i = 0; i < arr.length; i++) { arr[i] = s; } return arr.join(""); } var UNICODE_EXTENSION_SEQUENCE_REGEX = /-u(?:-[0-9a-z]{2,8})+/gi; function invariant(condition, message, Err) { if (Err === void 0) { Err = Error; } if (!condition) { throw new Err(message); } } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/types/date-time.js var RangePatternType; (function(RangePatternType2) { RangePatternType2["startRange"] = "startRange"; RangePatternType2["shared"] = "shared"; RangePatternType2["endRange"] = "endRange"; })(RangePatternType || (RangePatternType = {})); // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/CanonicalizeLocaleList.js function CanonicalizeLocaleList(locales) { return Intl.getCanonicalLocales(locales); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/262.js function ToString(o) { if (typeof o === "symbol") { throw TypeError("Cannot convert a Symbol value to a string"); } return String(o); } function ToNumber(val) { if (val === void 0) { return NaN; } if (val === null) { return 0; } if (typeof val === "boolean") { return val ? 1 : 0; } if (typeof val === "number") { return val; } if (typeof val === "symbol" || typeof val === "bigint") { throw new TypeError("Cannot convert symbol/bigint to number"); } return Number(val); } function ToObject(arg) { if (arg == null) { throw new TypeError("undefined/null cannot be converted to object"); } return Object(arg); } function SameValue(x, y) { if (Object.is) { return Object.is(x, y); } if (x === y) { return x !== 0 || 1 / x === 1 / y; } return x !== x && y !== y; } function Type(x) { if (x === null) { return "Null"; } if (typeof x === "undefined") { return "Undefined"; } if (typeof x === "function" || typeof x === "object") { return "Object"; } if (typeof x === "number") { return "Number"; } if (typeof x === "boolean") { return "Boolean"; } if (typeof x === "string") { return "String"; } if (typeof x === "symbol") { return "Symbol"; } if (typeof x === "bigint") { return "BigInt"; } } var MINUTES_PER_HOUR = 60; var SECONDS_PER_MINUTE = 60; var MS_PER_SECOND = 1e3; var MS_PER_MINUTE = MS_PER_SECOND * SECONDS_PER_MINUTE; var MS_PER_HOUR = MS_PER_MINUTE * MINUTES_PER_HOUR; // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/CoerceOptionsToObject.js function CoerceOptionsToObject(options) { if (typeof options === "undefined") { return Object.create(null); } return ToObject(options); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/GetOption.js function GetOption(opts, prop, type, values, fallback) { if (typeof opts !== "object") { throw new TypeError("Options must be an object"); } var value = opts[prop]; if (value !== void 0) { if (type !== "boolean" && type !== "string") { throw new TypeError("invalid type"); } if (type === "boolean") { value = Boolean(value); } if (type === "string") { value = ToString(value); } if (values !== void 0 && !values.filter(function(val) { return val == value; }).length) { throw new RangeError(value + " is not within " + values.join(", ")); } return value; } return fallback; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/BestAvailableLocale.js function BestAvailableLocale(availableLocales, locale) { var candidate = locale; while (true) { if (availableLocales.has(candidate)) { return candidate; } var pos = candidate.lastIndexOf("-"); if (!~pos) { return void 0; } if (pos >= 2 && candidate[pos - 2] === "-") { pos -= 2; } candidate = candidate.slice(0, pos); } } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/LookupMatcher.js function LookupMatcher(availableLocales, requestedLocales, getDefaultLocale) { var result = {locale: ""}; for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) { var locale = requestedLocales_1[_i]; var noExtensionLocale = locale.replace(UNICODE_EXTENSION_SEQUENCE_REGEX, ""); var availableLocale = BestAvailableLocale(availableLocales, noExtensionLocale); if (availableLocale) { result.locale = availableLocale; if (locale !== noExtensionLocale) { result.extension = locale.slice(noExtensionLocale.length + 1, locale.length); } return result; } } result.locale = getDefaultLocale(); return result; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/BestFitMatcher.js function BestFitMatcher(availableLocales, requestedLocales, getDefaultLocale) { var minimizedAvailableLocaleMap = {}; var minimizedAvailableLocales = new Set(); availableLocales.forEach(function(locale2) { var minimizedLocale = new Intl.Locale(locale2).minimize().toString(); minimizedAvailableLocaleMap[minimizedLocale] = locale2; minimizedAvailableLocales.add(minimizedLocale); }); var foundLocale; for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) { var l = requestedLocales_1[_i]; if (foundLocale) { break; } var noExtensionLocale = l.replace(UNICODE_EXTENSION_SEQUENCE_REGEX, ""); if (availableLocales.has(noExtensionLocale)) { foundLocale = noExtensionLocale; break; } if (minimizedAvailableLocales.has(noExtensionLocale)) { foundLocale = minimizedAvailableLocaleMap[noExtensionLocale]; break; } var locale = new Intl.Locale(noExtensionLocale); var maximizedRequestedLocale = locale.maximize().toString(); var minimizedRequestedLocale = locale.minimize().toString(); if (minimizedAvailableLocales.has(minimizedRequestedLocale)) { foundLocale = minimizedAvailableLocaleMap[minimizedRequestedLocale]; break; } foundLocale = BestAvailableLocale(minimizedAvailableLocales, maximizedRequestedLocale); } return { locale: foundLocale || getDefaultLocale() }; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/UnicodeExtensionValue.js function UnicodeExtensionValue(extension, key) { invariant(key.length === 2, "key must have 2 elements"); var size = extension.length; var searchValue = "-" + key + "-"; var pos = extension.indexOf(searchValue); if (pos !== -1) { var start = pos + 4; var end = start; var k = start; var done = false; while (!done) { var e = extension.indexOf("-", k); var len = void 0; if (e === -1) { len = size - k; } else { len = e - k; } if (len === 2) { done = true; } else if (e === -1) { end = size; done = true; } else { end = e; k = e + 1; } } return extension.slice(start, end); } searchValue = "-" + key; pos = extension.indexOf(searchValue); if (pos !== -1 && pos + 3 === size) { return ""; } return void 0; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/ResolveLocale.js function ResolveLocale(availableLocales, requestedLocales, options, relevantExtensionKeys, localeData, getDefaultLocale) { var matcher = options.localeMatcher; var r; if (matcher === "lookup") { r = LookupMatcher(availableLocales, requestedLocales, getDefaultLocale); } else { r = BestFitMatcher(availableLocales, requestedLocales, getDefaultLocale); } var foundLocale = r.locale; var result = {locale: "", dataLocale: foundLocale}; var supportedExtension = "-u"; for (var _i = 0, relevantExtensionKeys_1 = relevantExtensionKeys; _i < relevantExtensionKeys_1.length; _i++) { var key = relevantExtensionKeys_1[_i]; invariant(foundLocale in localeData, "Missing locale data for " + foundLocale); var foundLocaleData = localeData[foundLocale]; invariant(typeof foundLocaleData === "object" && foundLocaleData !== null, "locale data " + key + " must be an object"); var keyLocaleData = foundLocaleData[key]; invariant(Array.isArray(keyLocaleData), "keyLocaleData for " + key + " must be an array"); var value = keyLocaleData[0]; invariant(typeof value === "string" || value === null, "value must be string or null but got " + typeof value + " in key " + key); var supportedExtensionAddition = ""; if (r.extension) { var requestedValue = UnicodeExtensionValue(r.extension, key); if (requestedValue !== void 0) { if (requestedValue !== "") { if (~keyLocaleData.indexOf(requestedValue)) { value = requestedValue; supportedExtensionAddition = "-" + key + "-" + value; } } else if (~requestedValue.indexOf("true")) { value = "true"; supportedExtensionAddition = "-" + key; } } } if (key in options) { var optionsValue = options[key]; invariant(typeof optionsValue === "string" || typeof optionsValue === "undefined" || optionsValue === null, "optionsValue must be String, Undefined or Null"); if (~keyLocaleData.indexOf(optionsValue)) { if (optionsValue !== value) { value = optionsValue; supportedExtensionAddition = ""; } } } result[key] = value; supportedExtension += supportedExtensionAddition; } if (supportedExtension.length > 2) { var privateIndex = foundLocale.indexOf("-x-"); if (privateIndex === -1) { foundLocale = foundLocale + supportedExtension; } else { var preExtension = foundLocale.slice(0, privateIndex); var postExtension = foundLocale.slice(privateIndex, foundLocale.length); foundLocale = preExtension + supportedExtension + postExtension; } foundLocale = Intl.getCanonicalLocales(foundLocale)[0]; } result.locale = foundLocale; return result; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/DefaultNumberOption.js function DefaultNumberOption(val, min, max, fallback) { if (val !== void 0) { val = Number(val); if (isNaN(val) || val < min || val > max) { throw new RangeError(val + " is outside of range [" + min + ", " + max + "]"); } return Math.floor(val); } return fallback; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/GetNumberOption.js function GetNumberOption(options, property, minimum, maximum, fallback) { var val = options[property]; return DefaultNumberOption(val, minimum, maximum, fallback); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/IsSanctionedSimpleUnitIdentifier.js var SANCTIONED_UNITS = [ "angle-degree", "area-acre", "area-hectare", "concentr-percent", "digital-bit", "digital-byte", "digital-gigabit", "digital-gigabyte", "digital-kilobit", "digital-kilobyte", "digital-megabit", "digital-megabyte", "digital-petabyte", "digital-terabit", "digital-terabyte", "duration-day", "duration-hour", "duration-millisecond", "duration-minute", "duration-month", "duration-second", "duration-week", "duration-year", "length-centimeter", "length-foot", "length-inch", "length-kilometer", "length-meter", "length-mile-scandinavian", "length-mile", "length-millimeter", "length-yard", "mass-gram", "mass-kilogram", "mass-ounce", "mass-pound", "mass-stone", "temperature-celsius", "temperature-fahrenheit", "volume-fluid-ounce", "volume-gallon", "volume-liter", "volume-milliliter" ]; function removeUnitNamespace(unit) { return unit.slice(unit.indexOf("-") + 1); } var SIMPLE_UNITS = SANCTIONED_UNITS.map(removeUnitNamespace); // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/ToRawPrecision.js function ToRawPrecision(x, minPrecision, maxPrecision) { var p = maxPrecision; var m; var e; var xFinal; if (x === 0) { m = repeat("0", p); e = 0; xFinal = 0; } else { var xToString = x.toString(); var xToStringExponentIndex = xToString.indexOf("e"); var _a = xToString.split("e"), xToStringMantissa = _a[0], xToStringExponent = _a[1]; var xToStringMantissaWithoutDecimalPoint = xToStringMantissa.replace(".", ""); if (xToStringExponentIndex >= 0 && xToStringMantissaWithoutDecimalPoint.length <= p) { e = +xToStringExponent; m = xToStringMantissaWithoutDecimalPoint + repeat("0", p - xToStringMantissaWithoutDecimalPoint.length); xFinal = x; } else { e = getMagnitude(x); var decimalPlaceOffset = e - p + 1; var n = Math.round(adjustDecimalPlace(x, decimalPlaceOffset)); if (adjustDecimalPlace(n, p - 1) >= 10) { e = e + 1; n = Math.floor(n / 10); } m = n.toString(); xFinal = adjustDecimalPlace(n, p - 1 - e); } } var int; if (e >= p - 1) { m = m + repeat("0", e - p + 1); int = e + 1; } else if (e >= 0) { m = m.slice(0, e + 1) + "." + m.slice(e + 1); int = e + 1; } else { m = "0." + repeat("0", -e - 1) + m; int = 1; } if (m.indexOf(".") >= 0 && maxPrecision > minPrecision) { var cut = maxPrecision - minPrecision; while (cut > 0 && m[m.length - 1] === "0") { m = m.slice(0, -1); cut--; } if (m[m.length - 1] === ".") { m = m.slice(0, -1); } } return {formattedString: m, roundedNumber: xFinal, integerDigitsCount: int}; function adjustDecimalPlace(x2, magnitude) { return magnitude < 0 ? x2 * Math.pow(10, -magnitude) : x2 / Math.pow(10, magnitude); } } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/ToRawFixed.js function ToRawFixed(x, minFraction, maxFraction) { var f = maxFraction; var n = Math.round(x * Math.pow(10, f)); var xFinal = n / Math.pow(10, f); var m; if (n < 1e21) { m = n.toString(); } else { m = n.toString(); var _a = m.split("e"), mantissa = _a[0], exponent = _a[1]; m = mantissa.replace(".", ""); m = m + repeat("0", Math.max(+exponent - m.length + 1, 0)); } var int; if (f !== 0) { var k = m.length; if (k <= f) { var z = repeat("0", f + 1 - k); m = z + m; k = f + 1; } var a = m.slice(0, k - f); var b = m.slice(k - f); m = a + "." + b; int = a.length; } else { int = m.length; } var cut = maxFraction - minFraction; while (cut > 0 && m[m.length - 1] === "0") { m = m.slice(0, -1); cut--; } if (m[m.length - 1] === ".") { m = m.slice(0, -1); } return {formattedString: m, roundedNumber: xFinal, integerDigitsCount: int}; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/FormatNumericToString.js function FormatNumericToString(intlObject, x) { var isNegative = x < 0 || SameValue(x, -0); if (isNegative) { x = -x; } var result; var rourndingType = intlObject.roundingType; switch (rourndingType) { case "significantDigits": result = ToRawPrecision(x, intlObject.minimumSignificantDigits, intlObject.maximumSignificantDigits); break; case "fractionDigits": result = ToRawFixed(x, intlObject.minimumFractionDigits, intlObject.maximumFractionDigits); break; default: result = ToRawPrecision(x, 1, 2); if (result.integerDigitsCount > 1) { result = ToRawFixed(x, 0, 0); } break; } x = result.roundedNumber; var string = result.formattedString; var int = result.integerDigitsCount; var minInteger = intlObject.minimumIntegerDigits; if (int < minInteger) { var forwardZeros = repeat("0", minInteger - int); string = forwardZeros + string; } if (isNegative) { x = -x; } return {roundedNumber: x, formattedString: string}; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/regex.generated.js var S_UNICODE_REGEX = /[\$\+<->\^`\|~\xA2-\xA6\xA8\xA9\xAC\xAE-\xB1\xB4\xB8\xD7\xF7\u02C2-\u02C5\u02D2-\u02DF\u02E5-\u02EB\u02ED\u02EF-\u02FF\u0375\u0384\u0385\u03F6\u0482\u058D-\u058F\u0606-\u0608\u060B\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u07FE\u07FF\u09F2\u09F3\u09FA\u09FB\u0AF1\u0B70\u0BF3-\u0BFA\u0C7F\u0D4F\u0D79\u0E3F\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u166D\u17DB\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u1FBD\u1FBF-\u1FC1\u1FCD-\u1FCF\u1FDD-\u1FDF\u1FED-\u1FEF\u1FFD\u1FFE\u2044\u2052\u207A-\u207C\u208A-\u208C\u20A0-\u20BF\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u214F\u218A\u218B\u2190-\u2307\u230C-\u2328\u232B-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u2767\u2794-\u27C4\u27C7-\u27E5\u27F0-\u2982\u2999-\u29D7\u29DC-\u29FB\u29FE-\u2B73\u2B76-\u2B95\u2B97-\u2BFF\u2CE5-\u2CEA\u2E50\u2E51\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u309B\u309C\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA700-\uA716\uA720\uA721\uA789\uA78A\uA828-\uA82B\uA836-\uA839\uAA77-\uAA79\uAB5B\uAB6A\uAB6B\uFB29\uFBB2-\uFBC1\uFDFC\uFDFD\uFE62\uFE64-\uFE66\uFE69\uFF04\uFF0B\uFF1C-\uFF1E\uFF3E\uFF40\uFF5C\uFF5E\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFFC\uFFFD]|\uD800[\uDD37-\uDD3F\uDD79-\uDD89\uDD8C-\uDD8E\uDD90-\uDD9C\uDDA0\uDDD0-\uDDFC]|\uD802[\uDC77\uDC78\uDEC8]|\uD805\uDF3F|\uD807[\uDFD5-\uDFF1]|\uD81A[\uDF3C-\uDF3F\uDF45]|\uD82F\uDC9C|\uD834[\uDC00-\uDCF5\uDD00-\uDD26\uDD29-\uDD64\uDD6A-\uDD6C\uDD83\uDD84\uDD8C-\uDDA9\uDDAE-\uDDE8\uDE00-\uDE41\uDE45\uDF00-\uDF56]|\uD835[\uDEC1\uDEDB\uDEFB\uDF15\uDF35\uDF4F\uDF6F\uDF89\uDFA9\uDFC3]|\uD836[\uDC00-\uDDFF\uDE37-\uDE3A\uDE6D-\uDE74\uDE76-\uDE83\uDE85\uDE86]|\uD838[\uDD4F\uDEFF]|\uD83B[\uDCAC\uDCB0\uDD2E\uDEF0\uDEF1]|\uD83C[\uDC00-\uDC2B\uDC30-\uDC93\uDCA0-\uDCAE\uDCB1-\uDCBF\uDCC1-\uDCCF\uDCD1-\uDCF5\uDD0D-\uDDAD\uDDE6-\uDE02\uDE10-\uDE3B\uDE40-\uDE48\uDE50\uDE51\uDE60-\uDE65\uDF00-\uDFFF]|\uD83D[\uDC00-\uDED7\uDEE0-\uDEEC\uDEF0-\uDEFC\uDF00-\uDF73\uDF80-\uDFD8\uDFE0-\uDFEB]|\uD83E[\uDC00-\uDC0B\uDC10-\uDC47\uDC50-\uDC59\uDC60-\uDC87\uDC90-\uDCAD\uDCB0\uDCB1\uDD00-\uDD78\uDD7A-\uDDCB\uDDCD-\uDE53\uDE60-\uDE6D\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6\uDF00-\uDF92\uDF94-\uDFCA]/; // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/format_to_parts.js var CARET_S_UNICODE_REGEX = new RegExp("^" + S_UNICODE_REGEX.source); var S_DOLLAR_UNICODE_REGEX = new RegExp(S_UNICODE_REGEX.source + "$"); // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/SetNumberFormatDigitOptions.js function SetNumberFormatDigitOptions(internalSlots, opts, mnfdDefault, mxfdDefault, notation) { var mnid = GetNumberOption(opts, "minimumIntegerDigits", 1, 21, 1); var mnfd = opts.minimumFractionDigits; var mxfd = opts.maximumFractionDigits; var mnsd = opts.minimumSignificantDigits; var mxsd = opts.maximumSignificantDigits; internalSlots.minimumIntegerDigits = mnid; if (mnsd !== void 0 || mxsd !== void 0) { internalSlots.roundingType = "significantDigits"; mnsd = DefaultNumberOption(mnsd, 1, 21, 1); mxsd = DefaultNumberOption(mxsd, mnsd, 21, 21); internalSlots.minimumSignificantDigits = mnsd; internalSlots.maximumSignificantDigits = mxsd; } else if (mnfd !== void 0 || mxfd !== void 0) { internalSlots.roundingType = "fractionDigits"; mnfd = DefaultNumberOption(mnfd, 0, 20, mnfdDefault); var mxfdActualDefault = Math.max(mnfd, mxfdDefault); mxfd = DefaultNumberOption(mxfd, mnfd, 20, mxfdActualDefault); internalSlots.minimumFractionDigits = mnfd; internalSlots.maximumFractionDigits = mxfd; } else if (notation === "compact") { internalSlots.roundingType = "compactRounding"; } else { internalSlots.roundingType = "fractionDigits"; internalSlots.minimumFractionDigits = mnfdDefault; internalSlots.maximumFractionDigits = mxfdDefault; } } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/PluralRules/GetOperands.js function GetOperands(s) { invariant(typeof s === "string", "GetOperands should have been called with a string"); var n = ToNumber(s); invariant(isFinite(n), "n should be finite"); var dp = s.indexOf("."); var iv; var f; var v; var fv = ""; if (dp === -1) { iv = n; f = 0; v = 0; } else { iv = s.slice(0, dp); fv = s.slice(dp, s.length); f = ToNumber(fv); v = fv.length; } var i = Math.abs(ToNumber(iv)); var w; var t; if (f !== 0) { var ft = fv.replace(/0+$/, ""); w = ft.length; t = ToNumber(ft); } else { w = 0; t = 0; } return { Number: n, IntegerDigits: i, NumberOfFractionDigits: v, NumberOfFractionDigitsWithoutTrailing: w, FractionDigits: f, FractionDigitsWithoutTrailing: t }; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/PluralRules/InitializePluralRules.js function InitializePluralRules(pl, locales, options, _a) { var availableLocales = _a.availableLocales, relevantExtensionKeys = _a.relevantExtensionKeys, localeData = _a.localeData, getDefaultLocale = _a.getDefaultLocale, getInternalSlots2 = _a.getInternalSlots; var requestedLocales = CanonicalizeLocaleList(locales); var opt = Object.create(null); var opts = CoerceOptionsToObject(options); var internalSlots = getInternalSlots2(pl); internalSlots.initializedPluralRules = true; var matcher = GetOption(opts, "localeMatcher", "string", ["best fit", "lookup"], "best fit"); opt.localeMatcher = matcher; internalSlots.type = GetOption(opts, "type", "string", ["cardinal", "ordinal"], "cardinal"); SetNumberFormatDigitOptions(internalSlots, opts, 0, 3, "standard"); var r = ResolveLocale(availableLocales, requestedLocales, opt, relevantExtensionKeys, localeData, getDefaultLocale); internalSlots.locale = r.locale; return pl; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/PluralRules/ResolvePlural.js function ResolvePlural(pl, n, _a) { var getInternalSlots2 = _a.getInternalSlots, PluralRuleSelect2 = _a.PluralRuleSelect; var internalSlots = getInternalSlots2(pl); invariant(Type(internalSlots) === "Object", "pl has to be an object"); invariant("initializedPluralRules" in internalSlots, "pluralrules must be initialized"); invariant(Type(n) === "Number", "n must be a number"); if (!isFinite(n)) { return "other"; } var locale = internalSlots.locale, type = internalSlots.type; var res = FormatNumericToString(internalSlots, n); var s = res.formattedString; var operands = GetOperands(s); return PluralRuleSelect2(locale, type, n, operands); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/LookupSupportedLocales.js function LookupSupportedLocales(availableLocales, requestedLocales) { var subset = []; for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) { var locale = requestedLocales_1[_i]; var noExtensionLocale = locale.replace(UNICODE_EXTENSION_SEQUENCE_REGEX, ""); var availableLocale = BestAvailableLocale(availableLocales, noExtensionLocale); if (availableLocale) { subset.push(availableLocale); } } return subset; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/SupportedLocales.js function SupportedLocales(availableLocales, requestedLocales, options) { var matcher = "best fit"; if (options !== void 0) { options = ToObject(options); matcher = GetOption(options, "localeMatcher", "string", ["lookup", "best fit"], "best fit"); } if (matcher === "best fit") { return LookupSupportedLocales(availableLocales, requestedLocales); } return LookupSupportedLocales(availableLocales, requestedLocales); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/data.js var MissingLocaleDataError = function(_super) { __extends(MissingLocaleDataError2, _super); function MissingLocaleDataError2() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.type = "MISSING_LOCALE_DATA"; return _this; } return MissingLocaleDataError2; }(Error); // bazel-out/darwin-fastbuild/bin/packages/intl-pluralrules/lib/get_internal_slots.js var internalSlotMap = new WeakMap(); function getInternalSlots(x) { var internalSlots = internalSlotMap.get(x); if (!internalSlots) { internalSlots = Object.create(null); internalSlotMap.set(x, internalSlots); } return internalSlots; } // bazel-out/darwin-fastbuild/bin/packages/intl-pluralrules/lib/index.js function validateInstance(instance, method) { if (!(instance instanceof PluralRules)) { throw new TypeError("Method Intl.PluralRules.prototype." + method + " called on incompatible receiver " + String(instance)); } } function PluralRuleSelect(locale, type, _n, _a) { var IntegerDigits = _a.IntegerDigits, NumberOfFractionDigits = _a.NumberOfFractionDigits, FractionDigits = _a.FractionDigits; return PluralRules.localeData[locale].fn(NumberOfFractionDigits ? IntegerDigits + "." + FractionDigits : IntegerDigits, type === "ordinal"); } var PluralRules = function() { function PluralRules2(locales, options) { var newTarget = this && this instanceof PluralRules2 ? this.constructor : void 0; if (!newTarget) { throw new TypeError("Intl.PluralRules must be called with 'new'"); } return InitializePluralRules(this, locales, options, { availableLocales: PluralRules2.availableLocales, relevantExtensionKeys: PluralRules2.relevantExtensionKeys, localeData: PluralRules2.localeData, getDefaultLocale: PluralRules2.getDefaultLocale, getInternalSlots: getInternalSlots }); } PluralRules2.prototype.resolvedOptions = function() { validateInstance(this, "resolvedOptions"); var opts = Object.create(null); var internalSlots = getInternalSlots(this); opts.locale = internalSlots.locale; opts.type = internalSlots.type; [ "minimumIntegerDigits", "minimumFractionDigits", "maximumFractionDigits", "minimumSignificantDigits", "maximumSignificantDigits" ].forEach(function(field) { var val = internalSlots[field]; if (val !== void 0) { opts[field] = val; } }); opts.pluralCategories = __spreadArray([], PluralRules2.localeData[opts.locale].categories[opts.type]); return opts; }; PluralRules2.prototype.select = function(val) { var pr = this; validateInstance(pr, "select"); var n = ToNumber(val); return ResolvePlural(pr, n, {getInternalSlots: getInternalSlots, PluralRuleSelect: PluralRuleSelect}); }; PluralRules2.prototype.toString = function() { return "[object Intl.PluralRules]"; }; PluralRules2.supportedLocalesOf = function(locales, options) { return SupportedLocales(PluralRules2.availableLocales, CanonicalizeLocaleList(locales), options); }; PluralRules2.__addLocaleData = function() { var data = []; for (var _i = 0; _i < arguments.length; _i++) { data[_i] = arguments[_i]; } for (var _a = 0, data_1 = data; _a < data_1.length; _a++) { var _b = data_1[_a], d = _b.data, locale = _b.locale; PluralRules2.localeData[locale] = d; PluralRules2.availableLocales.add(locale); if (!PluralRules2.__defaultLocale) { PluralRules2.__defaultLocale = locale; } } }; PluralRules2.getDefaultLocale = function() { return PluralRules2.__defaultLocale; }; PluralRules2.localeData = {}; PluralRules2.availableLocales = new Set(); PluralRules2.__defaultLocale = ""; PluralRules2.relevantExtensionKeys = []; PluralRules2.polyfilled = true; return PluralRules2; }(); try { if (typeof Symbol !== "undefined") { Object.defineProperty(PluralRules.prototype, Symbol.toStringTag, { value: "Intl.PluralRules", writable: false, enumerable: false, configurable: true }); } try { Object.defineProperty(PluralRules, "length", { value: 0, writable: false, enumerable: false, configurable: true }); } catch (error) { } Object.defineProperty(PluralRules.prototype.constructor, "length", { value: 0, writable: false, enumerable: false, configurable: true }); Object.defineProperty(PluralRules.supportedLocalesOf, "length", { value: 1, writable: false, enumerable: false, configurable: true }); } catch (ex) { } // bazel-out/darwin-fastbuild/bin/packages/intl-pluralrules/lib/should-polyfill.js function shouldPolyfill() { return typeof Intl === "undefined" || !("PluralRules" in Intl) || new Intl.PluralRules("en", {minimumFractionDigits: 2}).select(1) === "one"; } // bazel-out/darwin-fastbuild/bin/packages/intl-pluralrules/lib/polyfill.js if (shouldPolyfill()) { Object.defineProperty(Intl, "PluralRules", { value: PluralRules, writable: true, enumerable: false, configurable: true }); } })(); /*! ***************************************************************************** Copyright (c) Microsoft Corporation. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ***************************************************************************** */ } if (!("Intl"in self&&"NumberFormat"in self.Intl&&function(){try{new Intl.NumberFormat(void 0,{style:"unit",unit:"byte"})}catch(t){return!1}return!0}() )) { // Intl.NumberFormat (function() { var __defProp = Object.defineProperty; var __export = function(target, all) { for (var name in all) __defProp(target, name, {get: all[name], enumerable: true}); }; // node_modules/tslib/tslib.es6.js var extendStatics = function(d, b) { extendStatics = Object.setPrototypeOf || {__proto__: []} instanceof Array && function(d2, b2) { d2.__proto__ = b2; } || function(d2, b2) { for (var p in b2) if (Object.prototype.hasOwnProperty.call(b2, p)) d2[p] = b2[p]; }; return extendStatics(d, b); }; function __extends(d, b) { if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/utils.js function getMagnitude(x) { return Math.floor(Math.log(x) * Math.LOG10E); } function repeat(s, times) { if (typeof s.repeat === "function") { return s.repeat(times); } var arr = new Array(times); for (var i = 0; i < arr.length; i++) { arr[i] = s; } return arr.join(""); } function defineProperty(target, name, _a) { var value = _a.value; Object.defineProperty(target, name, { configurable: true, enumerable: false, writable: true, value: value }); } var UNICODE_EXTENSION_SEQUENCE_REGEX = /-u(?:-[0-9a-z]{2,8})+/gi; function invariant(condition, message, Err) { if (Err === void 0) { Err = Error; } if (!condition) { throw new Err(message); } } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/types/date-time.js var RangePatternType; (function(RangePatternType2) { RangePatternType2["startRange"] = "startRange"; RangePatternType2["shared"] = "shared"; RangePatternType2["endRange"] = "endRange"; })(RangePatternType || (RangePatternType = {})); // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/CanonicalizeLocaleList.js function CanonicalizeLocaleList(locales) { return Intl.getCanonicalLocales(locales); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/262.js function ToString(o) { if (typeof o === "symbol") { throw TypeError("Cannot convert a Symbol value to a string"); } return String(o); } function ToNumber(val) { if (val === void 0) { return NaN; } if (val === null) { return 0; } if (typeof val === "boolean") { return val ? 1 : 0; } if (typeof val === "number") { return val; } if (typeof val === "symbol" || typeof val === "bigint") { throw new TypeError("Cannot convert symbol/bigint to number"); } return Number(val); } function ToObject(arg) { if (arg == null) { throw new TypeError("undefined/null cannot be converted to object"); } return Object(arg); } function SameValue(x, y) { if (Object.is) { return Object.is(x, y); } if (x === y) { return x !== 0 || 1 / x === 1 / y; } return x !== x && y !== y; } function ArrayCreate(len) { return new Array(len); } function HasOwnProperty(o, prop) { return Object.prototype.hasOwnProperty.call(o, prop); } var MINUTES_PER_HOUR = 60; var SECONDS_PER_MINUTE = 60; var MS_PER_SECOND = 1e3; var MS_PER_MINUTE = MS_PER_SECOND * SECONDS_PER_MINUTE; var MS_PER_HOUR = MS_PER_MINUTE * MINUTES_PER_HOUR; function IsCallable(fn) { return typeof fn === "function"; } function OrdinaryHasInstance(C, O, internalSlots) { if (!IsCallable(C)) { return false; } if (internalSlots === null || internalSlots === void 0 ? void 0 : internalSlots.boundTargetFunction) { var BC = internalSlots === null || internalSlots === void 0 ? void 0 : internalSlots.boundTargetFunction; return O instanceof BC; } if (typeof O !== "object") { return false; } var P = C.prototype; if (typeof P !== "object") { throw new TypeError("OrdinaryHasInstance called on an object with an invalid prototype property."); } return Object.prototype.isPrototypeOf.call(P, O); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/CoerceOptionsToObject.js function CoerceOptionsToObject(options) { if (typeof options === "undefined") { return Object.create(null); } return ToObject(options); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/GetOption.js function GetOption(opts, prop, type, values, fallback) { if (typeof opts !== "object") { throw new TypeError("Options must be an object"); } var value = opts[prop]; if (value !== void 0) { if (type !== "boolean" && type !== "string") { throw new TypeError("invalid type"); } if (type === "boolean") { value = Boolean(value); } if (type === "string") { value = ToString(value); } if (values !== void 0 && !values.filter(function(val) { return val == value; }).length) { throw new RangeError(value + " is not within " + values.join(", ")); } return value; } return fallback; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/BestAvailableLocale.js function BestAvailableLocale(availableLocales, locale) { var candidate = locale; while (true) { if (availableLocales.has(candidate)) { return candidate; } var pos = candidate.lastIndexOf("-"); if (!~pos) { return void 0; } if (pos >= 2 && candidate[pos - 2] === "-") { pos -= 2; } candidate = candidate.slice(0, pos); } } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/LookupMatcher.js function LookupMatcher(availableLocales, requestedLocales, getDefaultLocale) { var result = {locale: ""}; for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) { var locale = requestedLocales_1[_i]; var noExtensionLocale = locale.replace(UNICODE_EXTENSION_SEQUENCE_REGEX, ""); var availableLocale = BestAvailableLocale(availableLocales, noExtensionLocale); if (availableLocale) { result.locale = availableLocale; if (locale !== noExtensionLocale) { result.extension = locale.slice(noExtensionLocale.length + 1, locale.length); } return result; } } result.locale = getDefaultLocale(); return result; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/BestFitMatcher.js function BestFitMatcher(availableLocales, requestedLocales, getDefaultLocale) { var minimizedAvailableLocaleMap = {}; var minimizedAvailableLocales = new Set(); availableLocales.forEach(function(locale2) { var minimizedLocale = new Intl.Locale(locale2).minimize().toString(); minimizedAvailableLocaleMap[minimizedLocale] = locale2; minimizedAvailableLocales.add(minimizedLocale); }); var foundLocale; for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) { var l = requestedLocales_1[_i]; if (foundLocale) { break; } var noExtensionLocale = l.replace(UNICODE_EXTENSION_SEQUENCE_REGEX, ""); if (availableLocales.has(noExtensionLocale)) { foundLocale = noExtensionLocale; break; } if (minimizedAvailableLocales.has(noExtensionLocale)) { foundLocale = minimizedAvailableLocaleMap[noExtensionLocale]; break; } var locale = new Intl.Locale(noExtensionLocale); var maximizedRequestedLocale = locale.maximize().toString(); var minimizedRequestedLocale = locale.minimize().toString(); if (minimizedAvailableLocales.has(minimizedRequestedLocale)) { foundLocale = minimizedAvailableLocaleMap[minimizedRequestedLocale]; break; } foundLocale = BestAvailableLocale(minimizedAvailableLocales, maximizedRequestedLocale); } return { locale: foundLocale || getDefaultLocale() }; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/UnicodeExtensionValue.js function UnicodeExtensionValue(extension, key) { invariant(key.length === 2, "key must have 2 elements"); var size = extension.length; var searchValue = "-" + key + "-"; var pos = extension.indexOf(searchValue); if (pos !== -1) { var start = pos + 4; var end = start; var k = start; var done = false; while (!done) { var e = extension.indexOf("-", k); var len = void 0; if (e === -1) { len = size - k; } else { len = e - k; } if (len === 2) { done = true; } else if (e === -1) { end = size; done = true; } else { end = e; k = e + 1; } } return extension.slice(start, end); } searchValue = "-" + key; pos = extension.indexOf(searchValue); if (pos !== -1 && pos + 3 === size) { return ""; } return void 0; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/ResolveLocale.js function ResolveLocale(availableLocales, requestedLocales, options, relevantExtensionKeys, localeData, getDefaultLocale) { var matcher = options.localeMatcher; var r; if (matcher === "lookup") { r = LookupMatcher(availableLocales, requestedLocales, getDefaultLocale); } else { r = BestFitMatcher(availableLocales, requestedLocales, getDefaultLocale); } var foundLocale = r.locale; var result = {locale: "", dataLocale: foundLocale}; var supportedExtension = "-u"; for (var _i = 0, relevantExtensionKeys_1 = relevantExtensionKeys; _i < relevantExtensionKeys_1.length; _i++) { var key = relevantExtensionKeys_1[_i]; invariant(foundLocale in localeData, "Missing locale data for " + foundLocale); var foundLocaleData = localeData[foundLocale]; invariant(typeof foundLocaleData === "object" && foundLocaleData !== null, "locale data " + key + " must be an object"); var keyLocaleData = foundLocaleData[key]; invariant(Array.isArray(keyLocaleData), "keyLocaleData for " + key + " must be an array"); var value = keyLocaleData[0]; invariant(typeof value === "string" || value === null, "value must be string or null but got " + typeof value + " in key " + key); var supportedExtensionAddition = ""; if (r.extension) { var requestedValue = UnicodeExtensionValue(r.extension, key); if (requestedValue !== void 0) { if (requestedValue !== "") { if (~keyLocaleData.indexOf(requestedValue)) { value = requestedValue; supportedExtensionAddition = "-" + key + "-" + value; } } else if (~requestedValue.indexOf("true")) { value = "true"; supportedExtensionAddition = "-" + key; } } } if (key in options) { var optionsValue = options[key]; invariant(typeof optionsValue === "string" || typeof optionsValue === "undefined" || optionsValue === null, "optionsValue must be String, Undefined or Null"); if (~keyLocaleData.indexOf(optionsValue)) { if (optionsValue !== value) { value = optionsValue; supportedExtensionAddition = ""; } } } result[key] = value; supportedExtension += supportedExtensionAddition; } if (supportedExtension.length > 2) { var privateIndex = foundLocale.indexOf("-x-"); if (privateIndex === -1) { foundLocale = foundLocale + supportedExtension; } else { var preExtension = foundLocale.slice(0, privateIndex); var postExtension = foundLocale.slice(privateIndex, foundLocale.length); foundLocale = preExtension + supportedExtension + postExtension; } foundLocale = Intl.getCanonicalLocales(foundLocale)[0]; } result.locale = foundLocale; return result; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/DefaultNumberOption.js function DefaultNumberOption(val, min, max, fallback) { if (val !== void 0) { val = Number(val); if (isNaN(val) || val < min || val > max) { throw new RangeError(val + " is outside of range [" + min + ", " + max + "]"); } return Math.floor(val); } return fallback; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/GetNumberOption.js function GetNumberOption(options, property, minimum, maximum, fallback) { var val = options[property]; return DefaultNumberOption(val, minimum, maximum, fallback); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/IsWellFormedCurrencyCode.js function toUpperCase(str) { return str.replace(/([a-z])/g, function(_, c) { return c.toUpperCase(); }); } var NOT_A_Z_REGEX = /[^A-Z]/; function IsWellFormedCurrencyCode(currency) { currency = toUpperCase(currency); if (currency.length !== 3) { return false; } if (NOT_A_Z_REGEX.test(currency)) { return false; } return true; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/IsSanctionedSimpleUnitIdentifier.js var SANCTIONED_UNITS = [ "angle-degree", "area-acre", "area-hectare", "concentr-percent", "digital-bit", "digital-byte", "digital-gigabit", "digital-gigabyte", "digital-kilobit", "digital-kilobyte", "digital-megabit", "digital-megabyte", "digital-petabyte", "digital-terabit", "digital-terabyte", "duration-day", "duration-hour", "duration-millisecond", "duration-minute", "duration-month", "duration-second", "duration-week", "duration-year", "length-centimeter", "length-foot", "length-inch", "length-kilometer", "length-meter", "length-mile-scandinavian", "length-mile", "length-millimeter", "length-yard", "mass-gram", "mass-kilogram", "mass-ounce", "mass-pound", "mass-stone", "temperature-celsius", "temperature-fahrenheit", "volume-fluid-ounce", "volume-gallon", "volume-liter", "volume-milliliter" ]; function removeUnitNamespace(unit) { return unit.slice(unit.indexOf("-") + 1); } var SIMPLE_UNITS = SANCTIONED_UNITS.map(removeUnitNamespace); function IsSanctionedSimpleUnitIdentifier(unitIdentifier) { return SIMPLE_UNITS.indexOf(unitIdentifier) > -1; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/IsWellFormedUnitIdentifier.js function toLowerCase(str) { return str.replace(/([A-Z])/g, function(_, c) { return c.toLowerCase(); }); } function IsWellFormedUnitIdentifier(unit) { unit = toLowerCase(unit); if (IsSanctionedSimpleUnitIdentifier(unit)) { return true; } var units = unit.split("-per-"); if (units.length !== 2) { return false; } var numerator = units[0], denominator = units[1]; if (!IsSanctionedSimpleUnitIdentifier(numerator) || !IsSanctionedSimpleUnitIdentifier(denominator)) { return false; } return true; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/ComputeExponentForMagnitude.js function ComputeExponentForMagnitude(numberFormat, magnitude, _a) { var getInternalSlots2 = _a.getInternalSlots; var internalSlots = getInternalSlots2(numberFormat); var notation = internalSlots.notation, dataLocaleData = internalSlots.dataLocaleData, numberingSystem = internalSlots.numberingSystem; switch (notation) { case "standard": return 0; case "scientific": return magnitude; case "engineering": return Math.floor(magnitude / 3) * 3; default: { var compactDisplay = internalSlots.compactDisplay, style = internalSlots.style, currencyDisplay = internalSlots.currencyDisplay; var thresholdMap = void 0; if (style === "currency" && currencyDisplay !== "name") { var currency = dataLocaleData.numbers.currency[numberingSystem] || dataLocaleData.numbers.currency[dataLocaleData.numbers.nu[0]]; thresholdMap = currency.short; } else { var decimal = dataLocaleData.numbers.decimal[numberingSystem] || dataLocaleData.numbers.decimal[dataLocaleData.numbers.nu[0]]; thresholdMap = compactDisplay === "long" ? decimal.long : decimal.short; } if (!thresholdMap) { return 0; } var num = String(Math.pow(10, magnitude)); var thresholds = Object.keys(thresholdMap); if (num < thresholds[0]) { return 0; } if (num > thresholds[thresholds.length - 1]) { return thresholds[thresholds.length - 1].length - 1; } var i = thresholds.indexOf(num); if (i === -1) { return 0; } var magnitudeKey = thresholds[i]; var compactPattern = thresholdMap[magnitudeKey].other; if (compactPattern === "0") { return 0; } return magnitudeKey.length - thresholdMap[magnitudeKey].other.match(/0+/)[0].length; } } } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/ToRawPrecision.js function ToRawPrecision(x, minPrecision, maxPrecision) { var p = maxPrecision; var m; var e; var xFinal; if (x === 0) { m = repeat("0", p); e = 0; xFinal = 0; } else { var xToString = x.toString(); var xToStringExponentIndex = xToString.indexOf("e"); var _a = xToString.split("e"), xToStringMantissa = _a[0], xToStringExponent = _a[1]; var xToStringMantissaWithoutDecimalPoint = xToStringMantissa.replace(".", ""); if (xToStringExponentIndex >= 0 && xToStringMantissaWithoutDecimalPoint.length <= p) { e = +xToStringExponent; m = xToStringMantissaWithoutDecimalPoint + repeat("0", p - xToStringMantissaWithoutDecimalPoint.length); xFinal = x; } else { e = getMagnitude(x); var decimalPlaceOffset = e - p + 1; var n = Math.round(adjustDecimalPlace(x, decimalPlaceOffset)); if (adjustDecimalPlace(n, p - 1) >= 10) { e = e + 1; n = Math.floor(n / 10); } m = n.toString(); xFinal = adjustDecimalPlace(n, p - 1 - e); } } var int; if (e >= p - 1) { m = m + repeat("0", e - p + 1); int = e + 1; } else if (e >= 0) { m = m.slice(0, e + 1) + "." + m.slice(e + 1); int = e + 1; } else { m = "0." + repeat("0", -e - 1) + m; int = 1; } if (m.indexOf(".") >= 0 && maxPrecision > minPrecision) { var cut = maxPrecision - minPrecision; while (cut > 0 && m[m.length - 1] === "0") { m = m.slice(0, -1); cut--; } if (m[m.length - 1] === ".") { m = m.slice(0, -1); } } return {formattedString: m, roundedNumber: xFinal, integerDigitsCount: int}; function adjustDecimalPlace(x2, magnitude) { return magnitude < 0 ? x2 * Math.pow(10, -magnitude) : x2 / Math.pow(10, magnitude); } } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/ToRawFixed.js function ToRawFixed(x, minFraction, maxFraction) { var f = maxFraction; var n = Math.round(x * Math.pow(10, f)); var xFinal = n / Math.pow(10, f); var m; if (n < 1e21) { m = n.toString(); } else { m = n.toString(); var _a = m.split("e"), mantissa = _a[0], exponent = _a[1]; m = mantissa.replace(".", ""); m = m + repeat("0", Math.max(+exponent - m.length + 1, 0)); } var int; if (f !== 0) { var k = m.length; if (k <= f) { var z = repeat("0", f + 1 - k); m = z + m; k = f + 1; } var a = m.slice(0, k - f); var b = m.slice(k - f); m = a + "." + b; int = a.length; } else { int = m.length; } var cut = maxFraction - minFraction; while (cut > 0 && m[m.length - 1] === "0") { m = m.slice(0, -1); cut--; } if (m[m.length - 1] === ".") { m = m.slice(0, -1); } return {formattedString: m, roundedNumber: xFinal, integerDigitsCount: int}; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/FormatNumericToString.js function FormatNumericToString(intlObject, x) { var isNegative = x < 0 || SameValue(x, -0); if (isNegative) { x = -x; } var result; var rourndingType = intlObject.roundingType; switch (rourndingType) { case "significantDigits": result = ToRawPrecision(x, intlObject.minimumSignificantDigits, intlObject.maximumSignificantDigits); break; case "fractionDigits": result = ToRawFixed(x, intlObject.minimumFractionDigits, intlObject.maximumFractionDigits); break; default: result = ToRawPrecision(x, 1, 2); if (result.integerDigitsCount > 1) { result = ToRawFixed(x, 0, 0); } break; } x = result.roundedNumber; var string = result.formattedString; var int = result.integerDigitsCount; var minInteger = intlObject.minimumIntegerDigits; if (int < minInteger) { var forwardZeros = repeat("0", minInteger - int); string = forwardZeros + string; } if (isNegative) { x = -x; } return {roundedNumber: x, formattedString: string}; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/ComputeExponent.js function ComputeExponent(numberFormat, x, _a) { var getInternalSlots2 = _a.getInternalSlots; if (x === 0) { return [0, 0]; } if (x < 0) { x = -x; } var magnitude = getMagnitude(x); var exponent = ComputeExponentForMagnitude(numberFormat, magnitude, { getInternalSlots: getInternalSlots2 }); x = exponent < 0 ? x * Math.pow(10, -exponent) : x / Math.pow(10, exponent); var formatNumberResult = FormatNumericToString(getInternalSlots2(numberFormat), x); if (formatNumberResult.roundedNumber === 0) { return [exponent, magnitude]; } var newMagnitude = getMagnitude(formatNumberResult.roundedNumber); if (newMagnitude === magnitude - exponent) { return [exponent, magnitude]; } return [ ComputeExponentForMagnitude(numberFormat, magnitude + 1, { getInternalSlots: getInternalSlots2 }), magnitude + 1 ]; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/CurrencyDigits.js function CurrencyDigits(c, _a) { var currencyDigitsData = _a.currencyDigitsData; return HasOwnProperty(currencyDigitsData, c) ? currencyDigitsData[c] : 2; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/digit-mapping.json var digit_mapping_exports = {}; __export(digit_mapping_exports, { adlm: function() { return adlm; }, ahom: function() { return ahom; }, arab: function() { return arab; }, arabext: function() { return arabext; }, bali: function() { return bali; }, beng: function() { return beng; }, bhks: function() { return bhks; }, brah: function() { return brah; }, cakm: function() { return cakm; }, cham: function() { return cham; }, default: function() { return digit_mapping_default; }, deva: function() { return deva; }, diak: function() { return diak; }, fullwide: function() { return fullwide; }, gong: function() { return gong; }, gonm: function() { return gonm; }, gujr: function() { return gujr; }, guru: function() { return guru; }, hanidec: function() { return hanidec; }, hmng: function() { return hmng; }, hmnp: function() { return hmnp; }, java: function() { return java; }, kali: function() { return kali; }, khmr: function() { return khmr; }, knda: function() { return knda; }, lana: function() { return lana; }, lanatham: function() { return lanatham; }, laoo: function() { return laoo; }, lepc: function() { return lepc; }, limb: function() { return limb; }, mathbold: function() { return mathbold; }, mathdbl: function() { return mathdbl; }, mathmono: function() { return mathmono; }, mathsanb: function() { return mathsanb; }, mathsans: function() { return mathsans; }, mlym: function() { return mlym; }, modi: function() { return modi; }, mong: function() { return mong; }, mroo: function() { return mroo; }, mtei: function() { return mtei; }, mymr: function() { return mymr; }, mymrshan: function() { return mymrshan; }, mymrtlng: function() { return mymrtlng; }, newa: function() { return newa; }, nkoo: function() { return nkoo; }, olck: function() { return olck; }, orya: function() { return orya; }, osma: function() { return osma; }, rohg: function() { return rohg; }, saur: function() { return saur; }, segment: function() { return segment; }, shrd: function() { return shrd; }, sind: function() { return sind; }, sinh: function() { return sinh; }, sora: function() { return sora; }, sund: function() { return sund; }, takr: function() { return takr; }, talu: function() { return talu; }, tamldec: function() { return tamldec; }, telu: function() { return telu; }, thai: function() { return thai; }, tibt: function() { return tibt; }, tirh: function() { return tirh; }, vaii: function() { return vaii; }, wara: function() { return wara; }, wcho: function() { return wcho; } }); var adlm = ["\uD83A\uDD50", "\uD83A\uDD51", "\uD83A\uDD52", "\uD83A\uDD53", "\uD83A\uDD54", "\uD83A\uDD55", "\uD83A\uDD56", "\uD83A\uDD57", "\uD83A\uDD58", "\uD83A\uDD59"]; var ahom = ["\uD805\uDF30", "\uD805\uDF31", "\uD805\uDF32", "\uD805\uDF33", "\uD805\uDF34", "\uD805\uDF35", "\uD805\uDF36", "\uD805\uDF37", "\uD805\uDF38", "\uD805\uDF39"]; var arab = ["\u0660", "\u0661", "\u0662", "\u0663", "\u0664", "\u0665", "\u0666", "\u0667", "\u0668", "\u0669"]; var arabext = ["\u06F0", "\u06F1", "\u06F2", "\u06F3", "\u06F4", "\u06F5", "\u06F6", "\u06F7", "\u06F8", "\u06F9"]; var bali = ["\u1B50", "\u1B51", "\u1B52", "\u1B53", "\u1B54", "\u1B55", "\u1B56", "\u1B57", "\u1B58", "\u1B59"]; var beng = ["\u09E6", "\u09E7", "\u09E8", "\u09E9", "\u09EA", "\u09EB", "\u09EC", "\u09ED", "\u09EE", "\u09EF"]; var bhks = ["\uD807\uDC50", "\uD807\uDC51", "\uD807\uDC52", "\uD807\uDC53", "\uD807\uDC54", "\uD807\uDC55", "\uD807\uDC56", "\uD807\uDC57", "\uD807\uDC58", "\uD807\uDC59"]; var brah = ["\uD804\uDC66", "\uD804\uDC67", "\uD804\uDC68", "\uD804\uDC69", "\uD804\uDC6A", "\uD804\uDC6B", "\uD804\uDC6C", "\uD804\uDC6D", "\uD804\uDC6E", "\uD804\uDC6F"]; var cakm = ["\uD804\uDD36", "\uD804\uDD37", "\uD804\uDD38", "\uD804\uDD39", "\uD804\uDD3A", "\uD804\uDD3B", "\uD804\uDD3C", "\uD804\uDD3D", "\uD804\uDD3E", "\uD804\uDD3F"]; var cham = ["\uAA50", "\uAA51", "\uAA52", "\uAA53", "\uAA54", "\uAA55", "\uAA56", "\uAA57", "\uAA58", "\uAA59"]; var deva = ["\u0966", "\u0967", "\u0968", "\u0969", "\u096A", "\u096B", "\u096C", "\u096D", "\u096E", "\u096F"]; var diak = ["\uD806\uDD50", "\uD806\uDD51", "\uD806\uDD52", "\uD806\uDD53", "\uD806\uDD54", "\uD806\uDD55", "\uD806\uDD56", "\uD806\uDD57", "\uD806\uDD58", "\uD806\uDD59"]; var fullwide = ["\uFF10", "\uFF11", "\uFF12", "\uFF13", "\uFF14", "\uFF15", "\uFF16", "\uFF17", "\uFF18", "\uFF19"]; var gong = ["\uD807\uDDA0", "\uD807\uDDA1", "\uD807\uDDA2", "\uD807\uDDA3", "\uD807\uDDA4", "\uD807\uDDA5", "\uD807\uDDA6", "\uD807\uDDA7", "\uD807\uDDA8", "\uD807\uDDA9"]; var gonm = ["\uD807\uDD50", "\uD807\uDD51", "\uD807\uDD52", "\uD807\uDD53", "\uD807\uDD54", "\uD807\uDD55", "\uD807\uDD56", "\uD807\uDD57", "\uD807\uDD58", "\uD807\uDD59"]; var gujr = ["\u0AE6", "\u0AE7", "\u0AE8", "\u0AE9", "\u0AEA", "\u0AEB", "\u0AEC", "\u0AED", "\u0AEE", "\u0AEF"]; var guru = ["\u0A66", "\u0A67", "\u0A68", "\u0A69", "\u0A6A", "\u0A6B", "\u0A6C", "\u0A6D", "\u0A6E", "\u0A6F"]; var hanidec = ["\u3007", "\u4E00", "\u4E8C", "\u4E09", "\u56DB", "\u4E94", "\u516D", "\u4E03", "\u516B", "\u4E5D"]; var hmng = ["\uD81A\uDF50", "\uD81A\uDF51", "\uD81A\uDF52", "\uD81A\uDF53", "\uD81A\uDF54", "\uD81A\uDF55", "\uD81A\uDF56", "\uD81A\uDF57", "\uD81A\uDF58", "\uD81A\uDF59"]; var hmnp = ["\uD838\uDD40", "\uD838\uDD41", "\uD838\uDD42", "\uD838\uDD43", "\uD838\uDD44", "\uD838\uDD45", "\uD838\uDD46", "\uD838\uDD47", "\uD838\uDD48", "\uD838\uDD49"]; var java = ["\uA9D0", "\uA9D1", "\uA9D2", "\uA9D3", "\uA9D4", "\uA9D5", "\uA9D6", "\uA9D7", "\uA9D8", "\uA9D9"]; var kali = ["\uA900", "\uA901", "\uA902", "\uA903", "\uA904", "\uA905", "\uA906", "\uA907", "\uA908", "\uA909"]; var khmr = ["\u17E0", "\u17E1", "\u17E2", "\u17E3", "\u17E4", "\u17E5", "\u17E6", "\u17E7", "\u17E8", "\u17E9"]; var knda = ["\u0CE6", "\u0CE7", "\u0CE8", "\u0CE9", "\u0CEA", "\u0CEB", "\u0CEC", "\u0CED", "\u0CEE", "\u0CEF"]; var lana = ["\u1A80", "\u1A81", "\u1A82", "\u1A83", "\u1A84", "\u1A85", "\u1A86", "\u1A87", "\u1A88", "\u1A89"]; var lanatham = ["\u1A90", "\u1A91", "\u1A92", "\u1A93", "\u1A94", "\u1A95", "\u1A96", "\u1A97", "\u1A98", "\u1A99"]; var laoo = ["\u0ED0", "\u0ED1", "\u0ED2", "\u0ED3", "\u0ED4", "\u0ED5", "\u0ED6", "\u0ED7", "\u0ED8", "\u0ED9"]; var lepc = ["\u1A90", "\u1A91", "\u1A92", "\u1A93", "\u1A94", "\u1A95", "\u1A96", "\u1A97", "\u1A98", "\u1A99"]; var limb = ["\u1946", "\u1947", "\u1948", "\u1949", "\u194A", "\u194B", "\u194C", "\u194D", "\u194E", "\u194F"]; var mathbold = ["\uD835\uDFCE", "\uD835\uDFCF", "\uD835\uDFD0", "\uD835\uDFD1", "\uD835\uDFD2", "\uD835\uDFD3", "\uD835\uDFD4", "\uD835\uDFD5", "\uD835\uDFD6", "\uD835\uDFD7"]; var mathdbl = ["\uD835\uDFD8", "\uD835\uDFD9", "\uD835\uDFDA", "\uD835\uDFDB", "\uD835\uDFDC", "\uD835\uDFDD", "\uD835\uDFDE", "\uD835\uDFDF", "\uD835\uDFE0", "\uD835\uDFE1"]; var mathmono = ["\uD835\uDFF6", "\uD835\uDFF7", "\uD835\uDFF8", "\uD835\uDFF9", "\uD835\uDFFA", "\uD835\uDFFB", "\uD835\uDFFC", "\uD835\uDFFD", "\uD835\uDFFE", "\uD835\uDFFF"]; var mathsanb = ["\uD835\uDFEC", "\uD835\uDFED", "\uD835\uDFEE", "\uD835\uDFEF", "\uD835\uDFF0", "\uD835\uDFF1", "\uD835\uDFF2", "\uD835\uDFF3", "\uD835\uDFF4", "\uD835\uDFF5"]; var mathsans = ["\uD835\uDFE2", "\uD835\uDFE3", "\uD835\uDFE4", "\uD835\uDFE5", "\uD835\uDFE6", "\uD835\uDFE7", "\uD835\uDFE8", "\uD835\uDFE9", "\uD835\uDFEA", "\uD835\uDFEB"]; var mlym = ["\u0D66", "\u0D67", "\u0D68", "\u0D69", "\u0D6A", "\u0D6B", "\u0D6C", "\u0D6D", "\u0D6E", "\u0D6F"]; var modi = ["\uD805\uDE50", "\uD805\uDE51", "\uD805\uDE52", "\uD805\uDE53", "\uD805\uDE54", "\uD805\uDE55", "\uD805\uDE56", "\uD805\uDE57", "\uD805\uDE58", "\uD805\uDE59"]; var mong = ["\u1810", "\u1811", "\u1812", "\u1813", "\u1814", "\u1815", "\u1816", "\u1817", "\u1818", "\u1819"]; var mroo = ["\uD81A\uDE60", "\uD81A\uDE61", "\uD81A\uDE62", "\uD81A\uDE63", "\uD81A\uDE64", "\uD81A\uDE65", "\uD81A\uDE66", "\uD81A\uDE67", "\uD81A\uDE68", "\uD81A\uDE69"]; var mtei = ["\uABF0", "\uABF1", "\uABF2", "\uABF3", "\uABF4", "\uABF5", "\uABF6", "\uABF7", "\uABF8", "\uABF9"]; var mymr = ["\u1040", "\u1041", "\u1042", "\u1043", "\u1044", "\u1045", "\u1046", "\u1047", "\u1048", "\u1049"]; var mymrshan = ["\u1090", "\u1091", "\u1092", "\u1093", "\u1094", "\u1095", "\u1096", "\u1097", "\u1098", "\u1099"]; var mymrtlng = ["\uA9F0", "\uA9F1", "\uA9F2", "\uA9F3", "\uA9F4", "\uA9F5", "\uA9F6", "\uA9F7", "\uA9F8", "\uA9F9"]; var newa = ["\uD805\uDC50", "\uD805\uDC51", "\uD805\uDC52", "\uD805\uDC53", "\uD805\uDC54", "\uD805\uDC55", "\uD805\uDC56", "\uD805\uDC57", "\uD805\uDC58", "\uD805\uDC59"]; var nkoo = ["\u07C0", "\u07C1", "\u07C2", "\u07C3", "\u07C4", "\u07C5", "\u07C6", "\u07C7", "\u07C8", "\u07C9"]; var olck = ["\u1C50", "\u1C51", "\u1C52", "\u1C53", "\u1C54", "\u1C55", "\u1C56", "\u1C57", "\u1C58", "\u1C59"]; var orya = ["\u0B66", "\u0B67", "\u0B68", "\u0B69", "\u0B6A", "\u0B6B", "\u0B6C", "\u0B6D", "\u0B6E", "\u0B6F"]; var osma = ["\uD801\uDCA0", "\uD801\uDCA1", "\uD801\uDCA2", "\uD801\uDCA3", "\uD801\uDCA4", "\uD801\uDCA5", "\uD801\uDCA6", "\uD801\uDCA7", "\uD801\uDCA8", "\uD801\uDCA9"]; var rohg = ["\uD803\uDD30", "\uD803\uDD31", "\uD803\uDD32", "\uD803\uDD33", "\uD803\uDD34", "\uD803\uDD35", "\uD803\uDD36", "\uD803\uDD37", "\uD803\uDD38", "\uD803\uDD39"]; var saur = ["\uA8D0", "\uA8D1", "\uA8D2", "\uA8D3", "\uA8D4", "\uA8D5", "\uA8D6", "\uA8D7", "\uA8D8", "\uA8D9"]; var segment = ["\uD83E\uDFF0", "\uD83E\uDFF1", "\uD83E\uDFF2", "\uD83E\uDFF3", "\uD83E\uDFF4", "\uD83E\uDFF5", "\uD83E\uDFF6", "\uD83E\uDFF7", "\uD83E\uDFF8", "\uD83E\uDFF9"]; var shrd = ["\uD804\uDDD0", "\uD804\uDDD1", "\uD804\uDDD2", "\uD804\uDDD3", "\uD804\uDDD4", "\uD804\uDDD5", "\uD804\uDDD6", "\uD804\uDDD7", "\uD804\uDDD8", "\uD804\uDDD9"]; var sind = ["\uD804\uDEF0", "\uD804\uDEF1", "\uD804\uDEF2", "\uD804\uDEF3", "\uD804\uDEF4", "\uD804\uDEF5", "\uD804\uDEF6", "\uD804\uDEF7", "\uD804\uDEF8", "\uD804\uDEF9"]; var sinh = ["\u0DE6", "\u0DE7", "\u0DE8", "\u0DE9", "\u0DEA", "\u0DEB", "\u0DEC", "\u0DED", "\u0DEE", "\u0DEF"]; var sora = ["\uD804\uDCF0", "\uD804\uDCF1", "\uD804\uDCF2", "\uD804\uDCF3", "\uD804\uDCF4", "\uD804\uDCF5", "\uD804\uDCF6", "\uD804\uDCF7", "\uD804\uDCF8", "\uD804\uDCF9"]; var sund = ["\u1BB0", "\u1BB1", "\u1BB2", "\u1BB3", "\u1BB4", "\u1BB5", "\u1BB6", "\u1BB7", "\u1BB8", "\u1BB9"]; var takr = ["\uD805\uDEC0", "\uD805\uDEC1", "\uD805\uDEC2", "\uD805\uDEC3", "\uD805\uDEC4", "\uD805\uDEC5", "\uD805\uDEC6", "\uD805\uDEC7", "\uD805\uDEC8", "\uD805\uDEC9"]; var talu = ["\u19D0", "\u19D1", "\u19D2", "\u19D3", "\u19D4", "\u19D5", "\u19D6", "\u19D7", "\u19D8", "\u19D9"]; var tamldec = ["\u0BE6", "\u0BE7", "\u0BE8", "\u0BE9", "\u0BEA", "\u0BEB", "\u0BEC", "\u0BED", "\u0BEE", "\u0BEF"]; var telu = ["\u0C66", "\u0C67", "\u0C68", "\u0C69", "\u0C6A", "\u0C6B", "\u0C6C", "\u0C6D", "\u0C6E", "\u0C6F"]; var thai = ["\u0E50", "\u0E51", "\u0E52", "\u0E53", "\u0E54", "\u0E55", "\u0E56", "\u0E57", "\u0E58", "\u0E59"]; var tibt = ["\u0F20", "\u0F21", "\u0F22", "\u0F23", "\u0F24", "\u0F25", "\u0F26", "\u0F27", "\u0F28", "\u0F29"]; var tirh = ["\uD805\uDCD0", "\uD805\uDCD1", "\uD805\uDCD2", "\uD805\uDCD3", "\uD805\uDCD4", "\uD805\uDCD5", "\uD805\uDCD6", "\uD805\uDCD7", "\uD805\uDCD8", "\uD805\uDCD9"]; var vaii = ["\u1620", "\u1621", "\u1622", "\u1623", "\u1624", "\u1625", "\u1626", "\u1627", "\u1628", "\u1629"]; var wara = ["\uD806\uDCE0", "\uD806\uDCE1", "\uD806\uDCE2", "\uD806\uDCE3", "\uD806\uDCE4", "\uD806\uDCE5", "\uD806\uDCE6", "\uD806\uDCE7", "\uD806\uDCE8", "\uD806\uDCE9"]; var wcho = ["\uD838\uDEF0", "\uD838\uDEF1", "\uD838\uDEF2", "\uD838\uDEF3", "\uD838\uDEF4", "\uD838\uDEF5", "\uD838\uDEF6", "\uD838\uDEF7", "\uD838\uDEF8", "\uD838\uDEF9"]; var digit_mapping_default = {adlm: adlm, ahom: ahom, arab: arab, arabext: arabext, bali: bali, beng: beng, bhks: bhks, brah: brah, cakm: cakm, cham: cham, deva: deva, diak: diak, fullwide: fullwide, gong: gong, gonm: gonm, gujr: gujr, guru: guru, hanidec: hanidec, hmng: hmng, hmnp: hmnp, java: java, kali: kali, khmr: khmr, knda: knda, lana: lana, lanatham: lanatham, laoo: laoo, lepc: lepc, limb: limb, mathbold: mathbold, mathdbl: mathdbl, mathmono: mathmono, mathsanb: mathsanb, mathsans: mathsans, mlym: mlym, modi: modi, mong: mong, mroo: mroo, mtei: mtei, mymr: mymr, mymrshan: mymrshan, mymrtlng: mymrtlng, newa: newa, nkoo: nkoo, olck: olck, orya: orya, osma: osma, rohg: rohg, saur: saur, segment: segment, shrd: shrd, sind: sind, sinh: sinh, sora: sora, sund: sund, takr: takr, talu: talu, tamldec: tamldec, telu: telu, thai: thai, tibt: tibt, tirh: tirh, vaii: vaii, wara: wara, wcho: wcho}; // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/regex.generated.js var S_UNICODE_REGEX = /[\$\+<->\^`\|~\xA2-\xA6\xA8\xA9\xAC\xAE-\xB1\xB4\xB8\xD7\xF7\u02C2-\u02C5\u02D2-\u02DF\u02E5-\u02EB\u02ED\u02EF-\u02FF\u0375\u0384\u0385\u03F6\u0482\u058D-\u058F\u0606-\u0608\u060B\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u07FE\u07FF\u09F2\u09F3\u09FA\u09FB\u0AF1\u0B70\u0BF3-\u0BFA\u0C7F\u0D4F\u0D79\u0E3F\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u166D\u17DB\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u1FBD\u1FBF-\u1FC1\u1FCD-\u1FCF\u1FDD-\u1FDF\u1FED-\u1FEF\u1FFD\u1FFE\u2044\u2052\u207A-\u207C\u208A-\u208C\u20A0-\u20BF\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u214F\u218A\u218B\u2190-\u2307\u230C-\u2328\u232B-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u2767\u2794-\u27C4\u27C7-\u27E5\u27F0-\u2982\u2999-\u29D7\u29DC-\u29FB\u29FE-\u2B73\u2B76-\u2B95\u2B97-\u2BFF\u2CE5-\u2CEA\u2E50\u2E51\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u309B\u309C\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA700-\uA716\uA720\uA721\uA789\uA78A\uA828-\uA82B\uA836-\uA839\uAA77-\uAA79\uAB5B\uAB6A\uAB6B\uFB29\uFBB2-\uFBC1\uFDFC\uFDFD\uFE62\uFE64-\uFE66\uFE69\uFF04\uFF0B\uFF1C-\uFF1E\uFF3E\uFF40\uFF5C\uFF5E\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFFC\uFFFD]|\uD800[\uDD37-\uDD3F\uDD79-\uDD89\uDD8C-\uDD8E\uDD90-\uDD9C\uDDA0\uDDD0-\uDDFC]|\uD802[\uDC77\uDC78\uDEC8]|\uD805\uDF3F|\uD807[\uDFD5-\uDFF1]|\uD81A[\uDF3C-\uDF3F\uDF45]|\uD82F\uDC9C|\uD834[\uDC00-\uDCF5\uDD00-\uDD26\uDD29-\uDD64\uDD6A-\uDD6C\uDD83\uDD84\uDD8C-\uDDA9\uDDAE-\uDDE8\uDE00-\uDE41\uDE45\uDF00-\uDF56]|\uD835[\uDEC1\uDEDB\uDEFB\uDF15\uDF35\uDF4F\uDF6F\uDF89\uDFA9\uDFC3]|\uD836[\uDC00-\uDDFF\uDE37-\uDE3A\uDE6D-\uDE74\uDE76-\uDE83\uDE85\uDE86]|\uD838[\uDD4F\uDEFF]|\uD83B[\uDCAC\uDCB0\uDD2E\uDEF0\uDEF1]|\uD83C[\uDC00-\uDC2B\uDC30-\uDC93\uDCA0-\uDCAE\uDCB1-\uDCBF\uDCC1-\uDCCF\uDCD1-\uDCF5\uDD0D-\uDDAD\uDDE6-\uDE02\uDE10-\uDE3B\uDE40-\uDE48\uDE50\uDE51\uDE60-\uDE65\uDF00-\uDFFF]|\uD83D[\uDC00-\uDED7\uDEE0-\uDEEC\uDEF0-\uDEFC\uDF00-\uDF73\uDF80-\uDFD8\uDFE0-\uDFEB]|\uD83E[\uDC00-\uDC0B\uDC10-\uDC47\uDC50-\uDC59\uDC60-\uDC87\uDC90-\uDCAD\uDCB0\uDCB1\uDD00-\uDD78\uDD7A-\uDDCB\uDDCD-\uDE53\uDE60-\uDE6D\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6\uDF00-\uDF92\uDF94-\uDFCA]/; // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/format_to_parts.js var CARET_S_UNICODE_REGEX = new RegExp("^" + S_UNICODE_REGEX.source); var S_DOLLAR_UNICODE_REGEX = new RegExp(S_UNICODE_REGEX.source + "$"); var CLDR_NUMBER_PATTERN = /[#0](?:[\.,][#0]+)*/g; function formatToParts(numberResult, data, pl, options) { var sign = numberResult.sign, exponent = numberResult.exponent, magnitude = numberResult.magnitude; var notation = options.notation, style = options.style, numberingSystem = options.numberingSystem; var defaultNumberingSystem = data.numbers.nu[0]; var compactNumberPattern = null; if (notation === "compact" && magnitude) { compactNumberPattern = getCompactDisplayPattern(numberResult, pl, data, style, options.compactDisplay, options.currencyDisplay, numberingSystem); } var nonNameCurrencyPart; if (style === "currency" && options.currencyDisplay !== "name") { var byCurrencyDisplay = data.currencies[options.currency]; if (byCurrencyDisplay) { switch (options.currencyDisplay) { case "code": nonNameCurrencyPart = options.currency; break; case "symbol": nonNameCurrencyPart = byCurrencyDisplay.symbol; break; default: nonNameCurrencyPart = byCurrencyDisplay.narrow; break; } } else { nonNameCurrencyPart = options.currency; } } var numberPattern; if (!compactNumberPattern) { if (style === "decimal" || style === "unit" || style === "currency" && options.currencyDisplay === "name") { var decimalData = data.numbers.decimal[numberingSystem] || data.numbers.decimal[defaultNumberingSystem]; numberPattern = getPatternForSign(decimalData.standard, sign); } else if (style === "currency") { var currencyData = data.numbers.currency[numberingSystem] || data.numbers.currency[defaultNumberingSystem]; numberPattern = getPatternForSign(currencyData[options.currencySign], sign); } else { var percentPattern = data.numbers.percent[numberingSystem] || data.numbers.percent[defaultNumberingSystem]; numberPattern = getPatternForSign(percentPattern, sign); } } else { numberPattern = compactNumberPattern; } var decimalNumberPattern = CLDR_NUMBER_PATTERN.exec(numberPattern)[0]; numberPattern = numberPattern.replace(CLDR_NUMBER_PATTERN, "{0}").replace(/'(.)'/g, "$1"); if (style === "currency" && options.currencyDisplay !== "name") { var currencyData = data.numbers.currency[numberingSystem] || data.numbers.currency[defaultNumberingSystem]; var afterCurrency = currencyData.currencySpacing.afterInsertBetween; if (afterCurrency && !S_DOLLAR_UNICODE_REGEX.test(nonNameCurrencyPart)) { numberPattern = numberPattern.replace("\xA4{0}", "\xA4" + afterCurrency + "{0}"); } var beforeCurrency = currencyData.currencySpacing.beforeInsertBetween; if (beforeCurrency && !CARET_S_UNICODE_REGEX.test(nonNameCurrencyPart)) { numberPattern = numberPattern.replace("{0}\xA4", "{0}" + beforeCurrency + "\xA4"); } } var numberPatternParts = numberPattern.split(/({c:[^}]+}|\{0\}|[¤%\-\+])/g); var numberParts = []; var symbols = data.numbers.symbols[numberingSystem] || data.numbers.symbols[defaultNumberingSystem]; for (var _i = 0, numberPatternParts_1 = numberPatternParts; _i < numberPatternParts_1.length; _i++) { var part = numberPatternParts_1[_i]; if (!part) { continue; } switch (part) { case "{0}": { numberParts.push.apply(numberParts, paritionNumberIntoParts(symbols, numberResult, notation, exponent, numberingSystem, !compactNumberPattern && options.useGrouping, decimalNumberPattern)); break; } case "-": numberParts.push({type: "minusSign", value: symbols.minusSign}); break; case "+": numberParts.push({type: "plusSign", value: symbols.plusSign}); break; case "%": numberParts.push({type: "percentSign", value: symbols.percentSign}); break; case "\xA4": numberParts.push({type: "currency", value: nonNameCurrencyPart}); break; default: if (/^\{c:/.test(part)) { numberParts.push({ type: "compact", value: part.substring(3, part.length - 1) }); } else { numberParts.push({type: "literal", value: part}); } break; } } switch (style) { case "currency": { if (options.currencyDisplay === "name") { var unitPattern = (data.numbers.currency[numberingSystem] || data.numbers.currency[defaultNumberingSystem]).unitPattern; var unitName = void 0; var currencyNameData = data.currencies[options.currency]; if (currencyNameData) { unitName = selectPlural(pl, numberResult.roundedNumber * Math.pow(10, exponent), currencyNameData.displayName); } else { unitName = options.currency; } var unitPatternParts = unitPattern.split(/(\{[01]\})/g); var result = []; for (var _a = 0, unitPatternParts_1 = unitPatternParts; _a < unitPatternParts_1.length; _a++) { var part = unitPatternParts_1[_a]; switch (part) { case "{0}": result.push.apply(result, numberParts); break; case "{1}": result.push({type: "currency", value: unitName}); break; default: if (part) { result.push({type: "literal", value: part}); } break; } } return result; } else { return numberParts; } } case "unit": { var unit = options.unit, unitDisplay = options.unitDisplay; var unitData = data.units.simple[unit]; var unitPattern = void 0; if (unitData) { unitPattern = selectPlural(pl, numberResult.roundedNumber * Math.pow(10, exponent), data.units.simple[unit][unitDisplay]); } else { var _b = unit.split("-per-"), numeratorUnit = _b[0], denominatorUnit = _b[1]; unitData = data.units.simple[numeratorUnit]; var numeratorUnitPattern = selectPlural(pl, numberResult.roundedNumber * Math.pow(10, exponent), data.units.simple[numeratorUnit][unitDisplay]); var perUnitPattern = data.units.simple[denominatorUnit].perUnit[unitDisplay]; if (perUnitPattern) { unitPattern = perUnitPattern.replace("{0}", numeratorUnitPattern); } else { var perPattern = data.units.compound.per[unitDisplay]; var denominatorPattern = selectPlural(pl, 1, data.units.simple[denominatorUnit][unitDisplay]); unitPattern = unitPattern = perPattern.replace("{0}", numeratorUnitPattern).replace("{1}", denominatorPattern.replace("{0}", "")); } } var result = []; for (var _c = 0, _d = unitPattern.split(/(\s*\{0\}\s*)/); _c < _d.length; _c++) { var part = _d[_c]; var interpolateMatch = /^(\s*)\{0\}(\s*)$/.exec(part); if (interpolateMatch) { if (interpolateMatch[1]) { result.push({type: "literal", value: interpolateMatch[1]}); } result.push.apply(result, numberParts); if (interpolateMatch[2]) { result.push({type: "literal", value: interpolateMatch[2]}); } } else if (part) { result.push({type: "unit", value: part}); } } return result; } default: return numberParts; } } function paritionNumberIntoParts(symbols, numberResult, notation, exponent, numberingSystem, useGrouping, decimalNumberPattern) { var result = []; var n = numberResult.formattedString, x = numberResult.roundedNumber; if (isNaN(x)) { return [{type: "nan", value: n}]; } else if (!isFinite(x)) { return [{type: "infinity", value: n}]; } var digitReplacementTable = digit_mapping_exports[numberingSystem]; if (digitReplacementTable) { n = n.replace(/\d/g, function(digit) { return digitReplacementTable[+digit] || digit; }); } var decimalSepIndex = n.indexOf("."); var integer; var fraction; if (decimalSepIndex > 0) { integer = n.slice(0, decimalSepIndex); fraction = n.slice(decimalSepIndex + 1); } else { integer = n; } if (useGrouping && (notation !== "compact" || x >= 1e4)) { var groupSepSymbol = symbols.group; var groups = []; var integerNumberPattern = decimalNumberPattern.split(".")[0]; var patternGroups = integerNumberPattern.split(","); var primaryGroupingSize = 3; var secondaryGroupingSize = 3; if (patternGroups.length > 1) { primaryGroupingSize = patternGroups[patternGroups.length - 1].length; } if (patternGroups.length > 2) { secondaryGroupingSize = patternGroups[patternGroups.length - 2].length; } var i = integer.length - primaryGroupingSize; if (i > 0) { groups.push(integer.slice(i, i + primaryGroupingSize)); for (i -= secondaryGroupingSize; i > 0; i -= secondaryGroupingSize) { groups.push(integer.slice(i, i + secondaryGroupingSize)); } groups.push(integer.slice(0, i + secondaryGroupingSize)); } else { groups.push(integer); } while (groups.length > 0) { var integerGroup = groups.pop(); result.push({type: "integer", value: integerGroup}); if (groups.length > 0) { result.push({type: "group", value: groupSepSymbol}); } } } else { result.push({type: "integer", value: integer}); } if (fraction !== void 0) { result.push({type: "decimal", value: symbols.decimal}, {type: "fraction", value: fraction}); } if ((notation === "scientific" || notation === "engineering") && isFinite(x)) { result.push({type: "exponentSeparator", value: symbols.exponential}); if (exponent < 0) { result.push({type: "exponentMinusSign", value: symbols.minusSign}); exponent = -exponent; } var exponentResult = ToRawFixed(exponent, 0, 0); result.push({ type: "exponentInteger", value: exponentResult.formattedString }); } return result; } function getPatternForSign(pattern, sign) { if (pattern.indexOf(";") < 0) { pattern = pattern + ";-" + pattern; } var _a = pattern.split(";"), zeroPattern = _a[0], negativePattern = _a[1]; switch (sign) { case 0: return zeroPattern; case -1: return negativePattern; default: return negativePattern.indexOf("-") >= 0 ? negativePattern.replace(/-/g, "+") : "+" + zeroPattern; } } function getCompactDisplayPattern(numberResult, pl, data, style, compactDisplay, currencyDisplay, numberingSystem) { var _a; var roundedNumber = numberResult.roundedNumber, sign = numberResult.sign, magnitude = numberResult.magnitude; var magnitudeKey = String(Math.pow(10, magnitude)); var defaultNumberingSystem = data.numbers.nu[0]; var pattern; if (style === "currency" && currencyDisplay !== "name") { var byNumberingSystem = data.numbers.currency; var currencyData = byNumberingSystem[numberingSystem] || byNumberingSystem[defaultNumberingSystem]; var compactPluralRules = (_a = currencyData.short) === null || _a === void 0 ? void 0 : _a[magnitudeKey]; if (!compactPluralRules) { return null; } pattern = selectPlural(pl, roundedNumber, compactPluralRules); } else { var byNumberingSystem = data.numbers.decimal; var byCompactDisplay = byNumberingSystem[numberingSystem] || byNumberingSystem[defaultNumberingSystem]; var compactPlaralRule = byCompactDisplay[compactDisplay][magnitudeKey]; if (!compactPlaralRule) { return null; } pattern = selectPlural(pl, roundedNumber, compactPlaralRule); } if (pattern === "0") { return null; } pattern = getPatternForSign(pattern, sign).replace(/([^\s;\-\+\d¤]+)/g, "{c:$1}").replace(/0+/, "0"); return pattern; } function selectPlural(pl, x, rules) { return rules[pl.select(x)] || rules.other; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/PartitionNumberPattern.js function PartitionNumberPattern(numberFormat, x, _a) { var _b; var getInternalSlots2 = _a.getInternalSlots; var internalSlots = getInternalSlots2(numberFormat); var pl = internalSlots.pl, dataLocaleData = internalSlots.dataLocaleData, numberingSystem = internalSlots.numberingSystem; var symbols = dataLocaleData.numbers.symbols[numberingSystem] || dataLocaleData.numbers.symbols[dataLocaleData.numbers.nu[0]]; var magnitude = 0; var exponent = 0; var n; if (isNaN(x)) { n = symbols.nan; } else if (!isFinite(x)) { n = symbols.infinity; } else { if (internalSlots.style === "percent") { x *= 100; } ; _b = ComputeExponent(numberFormat, x, { getInternalSlots: getInternalSlots2 }), exponent = _b[0], magnitude = _b[1]; x = exponent < 0 ? x * Math.pow(10, -exponent) : x / Math.pow(10, exponent); var formatNumberResult = FormatNumericToString(internalSlots, x); n = formatNumberResult.formattedString; x = formatNumberResult.roundedNumber; } var sign; var signDisplay = internalSlots.signDisplay; switch (signDisplay) { case "never": sign = 0; break; case "auto": if (SameValue(x, 0) || x > 0 || isNaN(x)) { sign = 0; } else { sign = -1; } break; case "always": if (SameValue(x, 0) || x > 0 || isNaN(x)) { sign = 1; } else { sign = -1; } break; default: if (x === 0 || isNaN(x)) { sign = 0; } else if (x > 0) { sign = 1; } else { sign = -1; } } return formatToParts({roundedNumber: x, formattedString: n, exponent: exponent, magnitude: magnitude, sign: sign}, internalSlots.dataLocaleData, pl, internalSlots); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/FormatNumericToParts.js function FormatNumericToParts(nf, x, implDetails) { var parts = PartitionNumberPattern(nf, x, implDetails); var result = ArrayCreate(0); for (var _i = 0, parts_1 = parts; _i < parts_1.length; _i++) { var part = parts_1[_i]; result.push({ type: part.type, value: part.value }); } return result; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/SetNumberFormatUnitOptions.js function SetNumberFormatUnitOptions(nf, options, _a) { if (options === void 0) { options = Object.create(null); } var getInternalSlots2 = _a.getInternalSlots; var internalSlots = getInternalSlots2(nf); var style = GetOption(options, "style", "string", ["decimal", "percent", "currency", "unit"], "decimal"); internalSlots.style = style; var currency = GetOption(options, "currency", "string", void 0, void 0); if (currency !== void 0 && !IsWellFormedCurrencyCode(currency)) { throw RangeError("Malformed currency code"); } if (style === "currency" && currency === void 0) { throw TypeError("currency cannot be undefined"); } var currencyDisplay = GetOption(options, "currencyDisplay", "string", ["code", "symbol", "narrowSymbol", "name"], "symbol"); var currencySign = GetOption(options, "currencySign", "string", ["standard", "accounting"], "standard"); var unit = GetOption(options, "unit", "string", void 0, void 0); if (unit !== void 0 && !IsWellFormedUnitIdentifier(unit)) { throw RangeError("Invalid unit argument for Intl.NumberFormat()"); } if (style === "unit" && unit === void 0) { throw TypeError("unit cannot be undefined"); } var unitDisplay = GetOption(options, "unitDisplay", "string", ["short", "narrow", "long"], "short"); if (style === "currency") { internalSlots.currency = currency.toUpperCase(); internalSlots.currencyDisplay = currencyDisplay; internalSlots.currencySign = currencySign; } if (style === "unit") { internalSlots.unit = unit; internalSlots.unitDisplay = unitDisplay; } } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/SetNumberFormatDigitOptions.js function SetNumberFormatDigitOptions(internalSlots, opts, mnfdDefault, mxfdDefault, notation) { var mnid = GetNumberOption(opts, "minimumIntegerDigits", 1, 21, 1); var mnfd = opts.minimumFractionDigits; var mxfd = opts.maximumFractionDigits; var mnsd = opts.minimumSignificantDigits; var mxsd = opts.maximumSignificantDigits; internalSlots.minimumIntegerDigits = mnid; if (mnsd !== void 0 || mxsd !== void 0) { internalSlots.roundingType = "significantDigits"; mnsd = DefaultNumberOption(mnsd, 1, 21, 1); mxsd = DefaultNumberOption(mxsd, mnsd, 21, 21); internalSlots.minimumSignificantDigits = mnsd; internalSlots.maximumSignificantDigits = mxsd; } else if (mnfd !== void 0 || mxfd !== void 0) { internalSlots.roundingType = "fractionDigits"; mnfd = DefaultNumberOption(mnfd, 0, 20, mnfdDefault); var mxfdActualDefault = Math.max(mnfd, mxfdDefault); mxfd = DefaultNumberOption(mxfd, mnfd, 20, mxfdActualDefault); internalSlots.minimumFractionDigits = mnfd; internalSlots.maximumFractionDigits = mxfd; } else if (notation === "compact") { internalSlots.roundingType = "compactRounding"; } else { internalSlots.roundingType = "fractionDigits"; internalSlots.minimumFractionDigits = mnfdDefault; internalSlots.maximumFractionDigits = mxfdDefault; } } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/InitializeNumberFormat.js function InitializeNumberFormat(nf, locales, opts, _a) { var getInternalSlots2 = _a.getInternalSlots, localeData = _a.localeData, availableLocales = _a.availableLocales, numberingSystemNames2 = _a.numberingSystemNames, getDefaultLocale = _a.getDefaultLocale, currencyDigitsData = _a.currencyDigitsData; var requestedLocales = CanonicalizeLocaleList(locales); var options = CoerceOptionsToObject(opts); var opt = Object.create(null); var matcher = GetOption(options, "localeMatcher", "string", ["lookup", "best fit"], "best fit"); opt.localeMatcher = matcher; var numberingSystem = GetOption(options, "numberingSystem", "string", void 0, void 0); if (numberingSystem !== void 0 && numberingSystemNames2.indexOf(numberingSystem) < 0) { throw RangeError("Invalid numberingSystems: " + numberingSystem); } opt.nu = numberingSystem; var r = ResolveLocale(availableLocales, requestedLocales, opt, ["nu"], localeData, getDefaultLocale); var dataLocaleData = localeData[r.dataLocale]; invariant(!!dataLocaleData, "Missing locale data for " + r.dataLocale); var internalSlots = getInternalSlots2(nf); internalSlots.locale = r.locale; internalSlots.dataLocale = r.dataLocale; internalSlots.numberingSystem = r.nu; internalSlots.dataLocaleData = dataLocaleData; SetNumberFormatUnitOptions(nf, options, {getInternalSlots: getInternalSlots2}); var style = internalSlots.style; var mnfdDefault; var mxfdDefault; if (style === "currency") { var currency = internalSlots.currency; var cDigits = CurrencyDigits(currency, {currencyDigitsData: currencyDigitsData}); mnfdDefault = cDigits; mxfdDefault = cDigits; } else { mnfdDefault = 0; mxfdDefault = style === "percent" ? 0 : 3; } var notation = GetOption(options, "notation", "string", ["standard", "scientific", "engineering", "compact"], "standard"); internalSlots.notation = notation; SetNumberFormatDigitOptions(internalSlots, options, mnfdDefault, mxfdDefault, notation); var compactDisplay = GetOption(options, "compactDisplay", "string", ["short", "long"], "short"); if (notation === "compact") { internalSlots.compactDisplay = compactDisplay; } var useGrouping = GetOption(options, "useGrouping", "boolean", void 0, true); internalSlots.useGrouping = useGrouping; var signDisplay = GetOption(options, "signDisplay", "string", ["auto", "never", "always", "exceptZero"], "auto"); internalSlots.signDisplay = signDisplay; return nf; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/LookupSupportedLocales.js function LookupSupportedLocales(availableLocales, requestedLocales) { var subset = []; for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) { var locale = requestedLocales_1[_i]; var noExtensionLocale = locale.replace(UNICODE_EXTENSION_SEQUENCE_REGEX, ""); var availableLocale = BestAvailableLocale(availableLocales, noExtensionLocale); if (availableLocale) { subset.push(availableLocale); } } return subset; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/SupportedLocales.js function SupportedLocales(availableLocales, requestedLocales, options) { var matcher = "best fit"; if (options !== void 0) { options = ToObject(options); matcher = GetOption(options, "localeMatcher", "string", ["lookup", "best fit"], "best fit"); } if (matcher === "best fit") { return LookupSupportedLocales(availableLocales, requestedLocales); } return LookupSupportedLocales(availableLocales, requestedLocales); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/data.js var MissingLocaleDataError = function(_super) { __extends(MissingLocaleDataError2, _super); function MissingLocaleDataError2() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.type = "MISSING_LOCALE_DATA"; return _this; } return MissingLocaleDataError2; }(Error); // bazel-out/darwin-fastbuild/bin/packages/intl-numberformat/lib/src/data/currency-digits.json var currency_digits_exports = {}; __export(currency_digits_exports, { ADP: function() { return ADP; }, AFN: function() { return AFN; }, ALL: function() { return ALL; }, AMD: function() { return AMD; }, BHD: function() { return BHD; }, BIF: function() { return BIF; }, BYN: function() { return BYN; }, BYR: function() { return BYR; }, CAD: function() { return CAD; }, CHF: function() { return CHF; }, CLF: function() { return CLF; }, CLP: function() { return CLP; }, COP: function() { return COP; }, CRC: function() { return CRC; }, CZK: function() { return CZK; }, DEFAULT: function() { return DEFAULT; }, DJF: function() { return DJF; }, DKK: function() { return DKK; }, ESP: function() { return ESP; }, GNF: function() { return GNF; }, GYD: function() { return GYD; }, HUF: function() { return HUF; }, IDR: function() { return IDR; }, IQD: function() { return IQD; }, IRR: function() { return IRR; }, ISK: function() { return ISK; }, ITL: function() { return ITL; }, JOD: function() { return JOD; }, JPY: function() { return JPY; }, KMF: function() { return KMF; }, KPW: function() { return KPW; }, KRW: function() { return KRW; }, KWD: function() { return KWD; }, LAK: function() { return LAK; }, LBP: function() { return LBP; }, LUF: function() { return LUF; }, LYD: function() { return LYD; }, MGA: function() { return MGA; }, MGF: function() { return MGF; }, MMK: function() { return MMK; }, MNT: function() { return MNT; }, MRO: function() { return MRO; }, MUR: function() { return MUR; }, NOK: function() { return NOK; }, OMR: function() { return OMR; }, PKR: function() { return PKR; }, PYG: function() { return PYG; }, RSD: function() { return RSD; }, RWF: function() { return RWF; }, SEK: function() { return SEK; }, SLL: function() { return SLL; }, SOS: function() { return SOS; }, STD: function() { return STD; }, SYP: function() { return SYP; }, TMM: function() { return TMM; }, TND: function() { return TND; }, TRL: function() { return TRL; }, TWD: function() { return TWD; }, TZS: function() { return TZS; }, UGX: function() { return UGX; }, UYI: function() { return UYI; }, UYW: function() { return UYW; }, UZS: function() { return UZS; }, VEF: function() { return VEF; }, VND: function() { return VND; }, VUV: function() { return VUV; }, XAF: function() { return XAF; }, XOF: function() { return XOF; }, XPF: function() { return XPF; }, YER: function() { return YER; }, ZMK: function() { return ZMK; }, ZWD: function() { return ZWD; }, default: function() { return currency_digits_default; } }); var ADP = 0; var AFN = 0; var ALL = 0; var AMD = 2; var BHD = 3; var BIF = 0; var BYN = 2; var BYR = 0; var CAD = 2; var CHF = 2; var CLF = 4; var CLP = 0; var COP = 2; var CRC = 2; var CZK = 2; var DEFAULT = 2; var DJF = 0; var DKK = 2; var ESP = 0; var GNF = 0; var GYD = 2; var HUF = 2; var IDR = 2; var IQD = 0; var IRR = 0; var ISK = 0; var ITL = 0; var JOD = 3; var JPY = 0; var KMF = 0; var KPW = 0; var KRW = 0; var KWD = 3; var LAK = 0; var LBP = 0; var LUF = 0; var LYD = 3; var MGA = 0; var MGF = 0; var MMK = 0; var MNT = 2; var MRO = 0; var MUR = 2; var NOK = 2; var OMR = 3; var PKR = 2; var PYG = 0; var RSD = 0; var RWF = 0; var SEK = 2; var SLL = 0; var SOS = 0; var STD = 0; var SYP = 0; var TMM = 0; var TND = 3; var TRL = 0; var TWD = 2; var TZS = 2; var UGX = 0; var UYI = 0; var UYW = 4; var UZS = 2; var VEF = 2; var VND = 0; var VUV = 0; var XAF = 0; var XOF = 0; var XPF = 0; var YER = 0; var ZMK = 0; var ZWD = 0; var currency_digits_default = {ADP: ADP, AFN: AFN, ALL: ALL, AMD: AMD, BHD: BHD, BIF: BIF, BYN: BYN, BYR: BYR, CAD: CAD, CHF: CHF, CLF: CLF, CLP: CLP, COP: COP, CRC: CRC, CZK: CZK, DEFAULT: DEFAULT, DJF: DJF, DKK: DKK, ESP: ESP, GNF: GNF, GYD: GYD, HUF: HUF, IDR: IDR, IQD: IQD, IRR: IRR, ISK: ISK, ITL: ITL, JOD: JOD, JPY: JPY, KMF: KMF, KPW: KPW, KRW: KRW, KWD: KWD, LAK: LAK, LBP: LBP, LUF: LUF, LYD: LYD, MGA: MGA, MGF: MGF, MMK: MMK, MNT: MNT, MRO: MRO, MUR: MUR, NOK: NOK, OMR: OMR, PKR: PKR, PYG: PYG, RSD: RSD, RWF: RWF, SEK: SEK, SLL: SLL, SOS: SOS, STD: STD, SYP: SYP, TMM: TMM, TND: TND, TRL: TRL, TWD: TWD, TZS: TZS, UGX: UGX, UYI: UYI, UYW: UYW, UZS: UZS, VEF: VEF, VND: VND, VUV: VUV, XAF: XAF, XOF: XOF, XPF: XPF, YER: YER, ZMK: ZMK, ZWD: ZWD}; // bazel-out/darwin-fastbuild/bin/packages/intl-numberformat/lib/src/data/numbering-systems.json var names = ["adlm", "ahom", "arab", "arabext", "armn", "armnlow", "bali", "beng", "bhks", "brah", "cakm", "cham", "cyrl", "deva", "diak", "ethi", "fullwide", "geor", "gong", "gonm", "grek", "greklow", "gujr", "guru", "hanidays", "hanidec", "hans", "hansfin", "hant", "hantfin", "hebr", "hmng", "hmnp", "java", "jpan", "jpanfin", "jpanyear", "kali", "khmr", "knda", "lana", "lanatham", "laoo", "latn", "lepc", "limb", "mathbold", "mathdbl", "mathmono", "mathsanb", "mathsans", "mlym", "modi", "mong", "mroo", "mtei", "mymr", "mymrshan", "mymrtlng", "newa", "nkoo", "olck", "orya", "osma", "rohg", "roman", "romanlow", "saur", "segment", "shrd", "sind", "sinh", "sora", "sund", "takr", "talu", "taml", "tamldec", "telu", "thai", "tibt", "tirh", "vaii", "wara", "wcho"]; // bazel-out/darwin-fastbuild/bin/packages/intl-numberformat/lib/src/get_internal_slots.js var internalSlotMap = new WeakMap(); function getInternalSlots(x) { var internalSlots = internalSlotMap.get(x); if (!internalSlots) { internalSlots = Object.create(null); internalSlotMap.set(x, internalSlots); } return internalSlots; } // bazel-out/darwin-fastbuild/bin/packages/intl-numberformat/lib/src/core.js var numberingSystemNames = names; var RESOLVED_OPTIONS_KEYS = [ "locale", "numberingSystem", "style", "currency", "currencyDisplay", "currencySign", "unit", "unitDisplay", "minimumIntegerDigits", "minimumFractionDigits", "maximumFractionDigits", "minimumSignificantDigits", "maximumSignificantDigits", "useGrouping", "notation", "compactDisplay", "signDisplay" ]; var NumberFormat = function(locales, options) { if (!this || !OrdinaryHasInstance(NumberFormat, this)) { return new NumberFormat(locales, options); } InitializeNumberFormat(this, locales, options, { getInternalSlots: getInternalSlots, localeData: NumberFormat.localeData, availableLocales: NumberFormat.availableLocales, getDefaultLocale: NumberFormat.getDefaultLocale, currencyDigitsData: currency_digits_exports, numberingSystemNames: numberingSystemNames }); var internalSlots = getInternalSlots(this); var dataLocale = internalSlots.dataLocale; var dataLocaleData = NumberFormat.localeData[dataLocale]; invariant(dataLocaleData !== void 0, "Cannot load locale-dependent data for " + dataLocale + "."); internalSlots.pl = new Intl.PluralRules(dataLocale, { minimumFractionDigits: internalSlots.minimumFractionDigits, maximumFractionDigits: internalSlots.maximumFractionDigits, minimumIntegerDigits: internalSlots.minimumIntegerDigits, minimumSignificantDigits: internalSlots.minimumSignificantDigits, maximumSignificantDigits: internalSlots.maximumSignificantDigits }); return this; }; function formatToParts2(x) { return FormatNumericToParts(this, toNumeric(x), { getInternalSlots: getInternalSlots }); } try { Object.defineProperty(formatToParts2, "name", { value: "formatToParts", enumerable: false, writable: false, configurable: true }); } catch (e) { } defineProperty(NumberFormat.prototype, "formatToParts", { value: formatToParts2 }); defineProperty(NumberFormat.prototype, "resolvedOptions", { value: function resolvedOptions() { if (typeof this !== "object" || !OrdinaryHasInstance(NumberFormat, this)) { throw TypeError("Method Intl.NumberFormat.prototype.resolvedOptions called on incompatible receiver"); } var internalSlots = getInternalSlots(this); var ro = {}; for (var _i = 0, RESOLVED_OPTIONS_KEYS_1 = RESOLVED_OPTIONS_KEYS; _i < RESOLVED_OPTIONS_KEYS_1.length; _i++) { var key = RESOLVED_OPTIONS_KEYS_1[_i]; var value = internalSlots[key]; if (value !== void 0) { ro[key] = value; } } return ro; } }); var formatDescriptor = { enumerable: false, configurable: true, get: function() { if (typeof this !== "object" || !OrdinaryHasInstance(NumberFormat, this)) { throw TypeError("Intl.NumberFormat format property accessor called on incompatible receiver"); } var internalSlots = getInternalSlots(this); var numberFormat = this; var boundFormat = internalSlots.boundFormat; if (boundFormat === void 0) { boundFormat = function(value) { var x = toNumeric(value); return numberFormat.formatToParts(x).map(function(x2) { return x2.value; }).join(""); }; try { Object.defineProperty(boundFormat, "name", { configurable: true, enumerable: false, writable: false, value: "" }); } catch (e) { } internalSlots.boundFormat = boundFormat; } return boundFormat; } }; try { Object.defineProperty(formatDescriptor.get, "name", { configurable: true, enumerable: false, writable: false, value: "get format" }); } catch (e) { } Object.defineProperty(NumberFormat.prototype, "format", formatDescriptor); defineProperty(NumberFormat, "supportedLocalesOf", { value: function supportedLocalesOf(locales, options) { return SupportedLocales(NumberFormat.availableLocales, CanonicalizeLocaleList(locales), options); } }); NumberFormat.__addLocaleData = function __addLocaleData() { var data = []; for (var _i = 0; _i < arguments.length; _i++) { data[_i] = arguments[_i]; } for (var _a = 0, data_1 = data; _a < data_1.length; _a++) { var _b = data_1[_a], d = _b.data, locale = _b.locale; var minimizedLocale = new Intl.Locale(locale).minimize().toString(); NumberFormat.localeData[locale] = NumberFormat.localeData[minimizedLocale] = d; NumberFormat.availableLocales.add(minimizedLocale); NumberFormat.availableLocales.add(locale); if (!NumberFormat.__defaultLocale) { NumberFormat.__defaultLocale = minimizedLocale; } } }; NumberFormat.__addUnitData = function __addUnitData(locale, unitsData) { var _a = NumberFormat.localeData, _b = locale, existingData = _a[_b]; if (!existingData) { throw new Error('Locale data for "' + locale + '" has not been loaded in NumberFormat. \nPlease __addLocaleData before adding additional unit data'); } for (var unit in unitsData.simple) { existingData.units.simple[unit] = unitsData.simple[unit]; } for (var unit in unitsData.compound) { existingData.units.compound[unit] = unitsData.compound[unit]; } }; NumberFormat.__defaultLocale = ""; NumberFormat.localeData = {}; NumberFormat.availableLocales = new Set(); NumberFormat.getDefaultLocale = function() { return NumberFormat.__defaultLocale; }; NumberFormat.polyfilled = true; function toNumeric(val) { if (typeof val === "bigint") { return val; } return ToNumber(val); } try { if (typeof Symbol !== "undefined") { Object.defineProperty(NumberFormat.prototype, Symbol.toStringTag, { configurable: true, enumerable: false, writable: false, value: "Intl.NumberFormat" }); } Object.defineProperty(NumberFormat.prototype.constructor, "length", { configurable: true, enumerable: false, writable: false, value: 0 }); Object.defineProperty(NumberFormat.supportedLocalesOf, "length", { configurable: true, enumerable: false, writable: false, value: 1 }); Object.defineProperty(NumberFormat, "prototype", { configurable: false, enumerable: false, writable: false, value: NumberFormat.prototype }); } catch (e) { } // bazel-out/darwin-fastbuild/bin/packages/intl-numberformat/lib/src/to_locale_string.js function toLocaleString(x, locales, options) { var numberFormat = new NumberFormat(locales, options); return numberFormat.format(x); } // bazel-out/darwin-fastbuild/bin/packages/intl-numberformat/lib/should-polyfill.js function onlySupportsEn() { return !Intl.NumberFormat.polyfilled && !Intl.NumberFormat.supportedLocalesOf(["es"]).length; } function supportsES2020() { try { var s = new Intl.NumberFormat("en", { style: "unit", unit: "bit", unitDisplay: "long", notation: "scientific" }).format(1e4); if (s !== "1E4 bits") { return false; } } catch (e) { return false; } return true; } function shouldPolyfill() { return typeof Intl === "undefined" || !("NumberFormat" in Intl) || !supportsES2020() || onlySupportsEn(); } // bazel-out/darwin-fastbuild/bin/packages/intl-numberformat/lib/polyfill.js if (shouldPolyfill()) { defineProperty(Intl, "NumberFormat", {value: NumberFormat}); defineProperty(Number.prototype, "toLocaleString", { value: function toLocaleString2(locales, options) { return toLocaleString(this, locales, options); } }); } })(); /*! ***************************************************************************** Copyright (c) Microsoft Corporation. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ***************************************************************************** */ } if (!("Intl"in self&&"DateTimeFormat"in self.Intl&&"formatToParts"in self.Intl.DateTimeFormat.prototype&&"dayPeriod"===new self.Intl.DateTimeFormat("en",{hourCycle:"h11",hour:"numeric"}).formatToParts(0)[2].type&&"formatRangeToParts"in self.Intl.DateTimeFormat.prototype&&"dayPeriod"===new self.Intl.DateTimeFormat("en",{hourCycle:"h11",hour:"numeric"}).formatRangeToParts(0,1)[2].type )) { // Intl.DateTimeFormat (function() { // node_modules/tslib/tslib.es6.js var extendStatics = function(d, b) { extendStatics = Object.setPrototypeOf || {__proto__: []} instanceof Array && function(d2, b2) { d2.__proto__ = b2; } || function(d2, b2) { for (var p in b2) if (Object.prototype.hasOwnProperty.call(b2, p)) d2[p] = b2[p]; }; return extendStatics(d, b); }; function __extends(d, b) { if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); } var __assign = function() { __assign = Object.assign || function __assign2(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; return __assign.apply(this, arguments); }; function __rest(s, e) { var t = {}; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p]; if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]]; } return t; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/utils.js function defineProperty(target, name, _a) { var value = _a.value; Object.defineProperty(target, name, { configurable: true, enumerable: false, writable: true, value: value }); } var UNICODE_EXTENSION_SEQUENCE_REGEX = /-u(?:-[0-9a-z]{2,8})+/gi; function invariant(condition, message, Err) { if (Err === void 0) { Err = Error; } if (!condition) { throw new Err(message); } } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/DateTimeFormat/utils.js var DATE_TIME_PROPS = [ "weekday", "era", "year", "month", "day", "hour", "minute", "second", "timeZoneName" ]; var removalPenalty = 120; var additionPenalty = 20; var differentNumericTypePenalty = 15; var longLessPenalty = 8; var longMorePenalty = 6; var shortLessPenalty = 6; var shortMorePenalty = 3; // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/types/date-time.js var RangePatternType; (function(RangePatternType2) { RangePatternType2["startRange"] = "startRange"; RangePatternType2["shared"] = "shared"; RangePatternType2["endRange"] = "endRange"; })(RangePatternType || (RangePatternType = {})); // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/DateTimeFormat/skeleton.js var DATE_TIME_REGEX = /(?:[Eec]{1,6}|G{1,5}|[Qq]{1,5}|(?:[yYur]+|U{1,5})|[ML]{1,5}|d{1,2}|D{1,3}|F{1}|[abB]{1,5}|[hkHK]{1,2}|w{1,2}|W{1}|m{1,2}|s{1,2}|[zZOvVxX]{1,4})(?=([^']*'[^']*')*[^']*$)/g; var expPatternTrimmer = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g; function matchSkeletonPattern(match, result) { var len = match.length; switch (match[0]) { case "G": result.era = len === 4 ? "long" : len === 5 ? "narrow" : "short"; return "{era}"; case "y": case "Y": case "u": case "U": case "r": result.year = len === 2 ? "2-digit" : "numeric"; return "{year}"; case "q": case "Q": throw new RangeError("`w/Q` (quarter) patterns are not supported"); case "M": case "L": result.month = ["numeric", "2-digit", "short", "long", "narrow"][len - 1]; return "{month}"; case "w": case "W": throw new RangeError("`w/W` (week of year) patterns are not supported"); case "d": result.day = ["numeric", "2-digit"][len - 1]; return "{day}"; case "D": case "F": case "g": result.day = "numeric"; return "{day}"; case "E": result.weekday = len === 4 ? "long" : len === 5 ? "narrow" : "short"; return "{weekday}"; case "e": result.weekday = [ void 0, void 0, "short", "long", "narrow", "short" ][len - 1]; return "{weekday}"; case "c": result.weekday = [ void 0, void 0, "short", "long", "narrow", "short" ][len - 1]; return "{weekday}"; case "a": case "b": case "B": result.hour12 = true; return "{ampm}"; case "h": result.hour = ["numeric", "2-digit"][len - 1]; result.hour12 = true; return "{hour}"; case "H": result.hour = ["numeric", "2-digit"][len - 1]; return "{hour}"; case "K": result.hour = ["numeric", "2-digit"][len - 1]; result.hour12 = true; return "{hour}"; case "k": result.hour = ["numeric", "2-digit"][len - 1]; return "{hour}"; case "j": case "J": case "C": throw new RangeError("`j/J/C` (hour) patterns are not supported, use `h/H/K/k` instead"); case "m": result.minute = ["numeric", "2-digit"][len - 1]; return "{minute}"; case "s": result.second = ["numeric", "2-digit"][len - 1]; return "{second}"; case "S": case "A": result.second = "numeric"; return "{second}"; case "z": case "Z": case "O": case "v": case "V": case "X": case "x": result.timeZoneName = len < 4 ? "short" : "long"; return "{timeZoneName}"; } return ""; } function skeletonTokenToTable2(c) { switch (c) { case "G": return "era"; case "y": case "Y": case "u": case "U": case "r": return "year"; case "M": case "L": return "month"; case "d": case "D": case "F": case "g": return "day"; case "a": case "b": case "B": return "ampm"; case "h": case "H": case "K": case "k": return "hour"; case "m": return "minute"; case "s": case "S": case "A": return "second"; default: throw new RangeError("Invalid range pattern token"); } } function processDateTimePattern(pattern, result) { var literals = []; var pattern12 = pattern.replace(/'{2}/g, "{apostrophe}").replace(/'(.*?)'/g, function(_, literal) { literals.push(literal); return "$$" + (literals.length - 1) + "$$"; }).replace(DATE_TIME_REGEX, function(m) { return matchSkeletonPattern(m, result || {}); }); if (literals.length) { pattern12 = pattern12.replace(/\$\$(\d+)\$\$/g, function(_, i) { return literals[+i]; }).replace(/\{apostrophe\}/g, "'"); } return [ pattern12.replace(/([\s\uFEFF\xA0])\{ampm\}([\s\uFEFF\xA0])/, "$1").replace("{ampm}", "").replace(expPatternTrimmer, ""), pattern12 ]; } function parseDateTimeSkeleton(skeleton, rawPattern, rangePatterns, intervalFormatFallback) { if (rawPattern === void 0) { rawPattern = skeleton; } var result = { pattern: "", pattern12: "", skeleton: skeleton, rawPattern: rawPattern, rangePatterns: {}, rangePatterns12: {} }; if (rangePatterns) { for (var k in rangePatterns) { var key = skeletonTokenToTable2(k); var rawPattern_1 = rangePatterns[k]; var intervalResult = { patternParts: [] }; var _a = processDateTimePattern(rawPattern_1, intervalResult), pattern_1 = _a[0], pattern12_1 = _a[1]; result.rangePatterns[key] = __assign(__assign({}, intervalResult), {patternParts: splitRangePattern(pattern_1)}); result.rangePatterns12[key] = __assign(__assign({}, intervalResult), {patternParts: splitRangePattern(pattern12_1)}); } } else if (intervalFormatFallback) { var patternParts = splitFallbackRangePattern(intervalFormatFallback); result.rangePatterns.default = { patternParts: patternParts }; result.rangePatterns12.default = { patternParts: patternParts }; } skeleton.replace(DATE_TIME_REGEX, function(m) { return matchSkeletonPattern(m, result); }); var _b = processDateTimePattern(rawPattern), pattern = _b[0], pattern12 = _b[1]; result.pattern = pattern; result.pattern12 = pattern12; return result; } function splitFallbackRangePattern(pattern) { var parts = pattern.split(/(\{[0|1]\})/g).filter(Boolean); return parts.map(function(pattern2) { switch (pattern2) { case "{0}": return { source: RangePatternType.startRange, pattern: pattern2 }; case "{1}": return { source: RangePatternType.endRange, pattern: pattern2 }; default: return { source: RangePatternType.shared, pattern: pattern2 }; } }); } function splitRangePattern(pattern) { var PART_REGEX = /\{(.*?)\}/g; var parts = {}; var match; var splitIndex = 0; while (match = PART_REGEX.exec(pattern)) { if (!(match[0] in parts)) { parts[match[0]] = match.index; } else { splitIndex = match.index; break; } } if (!splitIndex) { return [ { source: RangePatternType.startRange, pattern: pattern } ]; } return [ { source: RangePatternType.startRange, pattern: pattern.slice(0, splitIndex) }, { source: RangePatternType.endRange, pattern: pattern.slice(splitIndex) } ]; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/DateTimeFormat/BestFitFormatMatcher.js function isNumericType(t) { return t === "numeric" || t === "2-digit"; } function bestFitFormatMatcherScore(options, format) { var score = 0; if (options.hour12 && !format.hour12) { score -= removalPenalty; } else if (!options.hour12 && format.hour12) { score -= additionPenalty; } for (var _i = 0, DATE_TIME_PROPS_1 = DATE_TIME_PROPS; _i < DATE_TIME_PROPS_1.length; _i++) { var prop = DATE_TIME_PROPS_1[_i]; var optionsProp = options[prop]; var formatProp = format[prop]; if (optionsProp === void 0 && formatProp !== void 0) { score -= additionPenalty; } else if (optionsProp !== void 0 && formatProp === void 0) { score -= removalPenalty; } else if (optionsProp !== formatProp) { if (isNumericType(optionsProp) !== isNumericType(formatProp)) { score -= differentNumericTypePenalty; } else { var values = ["2-digit", "numeric", "narrow", "short", "long"]; var optionsPropIndex = values.indexOf(optionsProp); var formatPropIndex = values.indexOf(formatProp); var delta = Math.max(-2, Math.min(formatPropIndex - optionsPropIndex, 2)); if (delta === 2) { score -= longMorePenalty; } else if (delta === 1) { score -= shortMorePenalty; } else if (delta === -1) { score -= shortLessPenalty; } else if (delta === -2) { score -= longLessPenalty; } } } } return score; } function BestFitFormatMatcher(options, formats) { var bestScore = -Infinity; var bestFormat = formats[0]; invariant(Array.isArray(formats), "formats should be a list of things"); for (var _i = 0, formats_1 = formats; _i < formats_1.length; _i++) { var format = formats_1[_i]; var score = bestFitFormatMatcherScore(options, format); if (score > bestScore) { bestScore = score; bestFormat = format; } } var skeletonFormat = __assign({}, bestFormat); var patternFormat = {rawPattern: bestFormat.rawPattern}; processDateTimePattern(bestFormat.rawPattern, patternFormat); for (var prop in skeletonFormat) { var skeletonValue = skeletonFormat[prop]; var patternValue = patternFormat[prop]; var requestedValue = options[prop]; if (prop === "minute" || prop === "second") { continue; } if (!requestedValue) { continue; } if (isNumericType(patternValue) && !isNumericType(requestedValue)) { continue; } if (skeletonValue === requestedValue) { continue; } patternFormat[prop] = requestedValue; } patternFormat.pattern = skeletonFormat.pattern; patternFormat.pattern12 = skeletonFormat.pattern12; patternFormat.skeleton = skeletonFormat.skeleton; patternFormat.rangePatterns = skeletonFormat.rangePatterns; patternFormat.rangePatterns12 = skeletonFormat.rangePatterns12; return patternFormat; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/CanonicalizeLocaleList.js function CanonicalizeLocaleList(locales) { return Intl.getCanonicalLocales(locales); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/CanonicalizeTimeZoneName.js function CanonicalizeTimeZoneName(tz, _a) { var tzData = _a.tzData, uppercaseLinks = _a.uppercaseLinks; var uppercasedTz = tz.toUpperCase(); var uppercasedZones = Object.keys(tzData).reduce(function(all, z) { all[z.toUpperCase()] = z; return all; }, {}); var ianaTimeZone = uppercaseLinks[uppercasedTz] || uppercasedZones[uppercasedTz]; if (ianaTimeZone === "Etc/UTC" || ianaTimeZone === "Etc/GMT") { return "UTC"; } return ianaTimeZone; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/262.js function ToString(o) { if (typeof o === "symbol") { throw TypeError("Cannot convert a Symbol value to a string"); } return String(o); } function ToNumber(val) { if (val === void 0) { return NaN; } if (val === null) { return 0; } if (typeof val === "boolean") { return val ? 1 : 0; } if (typeof val === "number") { return val; } if (typeof val === "symbol" || typeof val === "bigint") { throw new TypeError("Cannot convert symbol/bigint to number"); } return Number(val); } function ToInteger(n) { var number = ToNumber(n); if (isNaN(number) || SameValue(number, -0)) { return 0; } if (isFinite(number)) { return number; } var integer = Math.floor(Math.abs(number)); if (number < 0) { integer = -integer; } if (SameValue(integer, -0)) { return 0; } return integer; } function TimeClip(time) { if (!isFinite(time)) { return NaN; } if (Math.abs(time) > 8.64 * 1e15) { return NaN; } return ToInteger(time); } function ToObject(arg) { if (arg == null) { throw new TypeError("undefined/null cannot be converted to object"); } return Object(arg); } function SameValue(x, y) { if (Object.is) { return Object.is(x, y); } if (x === y) { return x !== 0 || 1 / x === 1 / y; } return x !== x && y !== y; } function ArrayCreate(len) { return new Array(len); } function Type(x) { if (x === null) { return "Null"; } if (typeof x === "undefined") { return "Undefined"; } if (typeof x === "function" || typeof x === "object") { return "Object"; } if (typeof x === "number") { return "Number"; } if (typeof x === "boolean") { return "Boolean"; } if (typeof x === "string") { return "String"; } if (typeof x === "symbol") { return "Symbol"; } if (typeof x === "bigint") { return "BigInt"; } } var MS_PER_DAY = 864e5; function mod(x, y) { return x - Math.floor(x / y) * y; } function Day(t) { return Math.floor(t / MS_PER_DAY); } function WeekDay(t) { return mod(Day(t) + 4, 7); } function DayFromYear(y) { return Date.UTC(y, 0) / MS_PER_DAY; } function YearFromTime(t) { return new Date(t).getUTCFullYear(); } function DaysInYear(y) { if (y % 4 !== 0) { return 365; } if (y % 100 !== 0) { return 366; } if (y % 400 !== 0) { return 365; } return 366; } function DayWithinYear(t) { return Day(t) - DayFromYear(YearFromTime(t)); } function InLeapYear(t) { return DaysInYear(YearFromTime(t)) === 365 ? 0 : 1; } function MonthFromTime(t) { var dwy = DayWithinYear(t); var leap = InLeapYear(t); if (dwy >= 0 && dwy < 31) { return 0; } if (dwy < 59 + leap) { return 1; } if (dwy < 90 + leap) { return 2; } if (dwy < 120 + leap) { return 3; } if (dwy < 151 + leap) { return 4; } if (dwy < 181 + leap) { return 5; } if (dwy < 212 + leap) { return 6; } if (dwy < 243 + leap) { return 7; } if (dwy < 273 + leap) { return 8; } if (dwy < 304 + leap) { return 9; } if (dwy < 334 + leap) { return 10; } if (dwy < 365 + leap) { return 11; } throw new Error("Invalid time"); } function DateFromTime(t) { var dwy = DayWithinYear(t); var mft = MonthFromTime(t); var leap = InLeapYear(t); if (mft === 0) { return dwy + 1; } if (mft === 1) { return dwy - 30; } if (mft === 2) { return dwy - 58 - leap; } if (mft === 3) { return dwy - 89 - leap; } if (mft === 4) { return dwy - 119 - leap; } if (mft === 5) { return dwy - 150 - leap; } if (mft === 6) { return dwy - 180 - leap; } if (mft === 7) { return dwy - 211 - leap; } if (mft === 8) { return dwy - 242 - leap; } if (mft === 9) { return dwy - 272 - leap; } if (mft === 10) { return dwy - 303 - leap; } if (mft === 11) { return dwy - 333 - leap; } throw new Error("Invalid time"); } var HOURS_PER_DAY = 24; var MINUTES_PER_HOUR = 60; var SECONDS_PER_MINUTE = 60; var MS_PER_SECOND = 1e3; var MS_PER_MINUTE = MS_PER_SECOND * SECONDS_PER_MINUTE; var MS_PER_HOUR = MS_PER_MINUTE * MINUTES_PER_HOUR; function HourFromTime(t) { return mod(Math.floor(t / MS_PER_HOUR), HOURS_PER_DAY); } function MinFromTime(t) { return mod(Math.floor(t / MS_PER_MINUTE), MINUTES_PER_HOUR); } function SecFromTime(t) { return mod(Math.floor(t / MS_PER_SECOND), SECONDS_PER_MINUTE); } function IsCallable(fn) { return typeof fn === "function"; } function OrdinaryHasInstance(C, O, internalSlots) { if (!IsCallable(C)) { return false; } if (internalSlots === null || internalSlots === void 0 ? void 0 : internalSlots.boundTargetFunction) { var BC = internalSlots === null || internalSlots === void 0 ? void 0 : internalSlots.boundTargetFunction; return O instanceof BC; } if (typeof O !== "object") { return false; } var P = C.prototype; if (typeof P !== "object") { throw new TypeError("OrdinaryHasInstance called on an object with an invalid prototype property."); } return Object.prototype.isPrototypeOf.call(P, O); } function msFromTime(t) { return mod(t, MS_PER_SECOND); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/DateTimeFormat/BasicFormatMatcher.js function BasicFormatMatcher(options, formats) { var bestScore = -Infinity; var bestFormat = formats[0]; invariant(Array.isArray(formats), "formats should be a list of things"); for (var _i = 0, formats_1 = formats; _i < formats_1.length; _i++) { var format = formats_1[_i]; var score = 0; for (var _a = 0, DATE_TIME_PROPS_1 = DATE_TIME_PROPS; _a < DATE_TIME_PROPS_1.length; _a++) { var prop = DATE_TIME_PROPS_1[_a]; var optionsProp = options[prop]; var formatProp = format[prop]; if (optionsProp === void 0 && formatProp !== void 0) { score -= additionPenalty; } else if (optionsProp !== void 0 && formatProp === void 0) { score -= removalPenalty; } else if (optionsProp !== formatProp) { var values = void 0; if (prop === "fractionalSecondDigits") { values = [1, 2, 3]; } else { values = ["2-digit", "numeric", "narrow", "short", "long"]; } var optionsPropIndex = values.indexOf(optionsProp); var formatPropIndex = values.indexOf(formatProp); var delta = Math.max(-2, Math.min(formatPropIndex - optionsPropIndex, 2)); if (delta === 2) { score -= longMorePenalty; } else if (delta === 1) { score -= shortMorePenalty; } else if (delta === -1) { score -= shortLessPenalty; } else if (delta === -2) { score -= longLessPenalty; } } } if (score > bestScore) { bestScore = score; bestFormat = format; } } return __assign({}, bestFormat); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/DateTimeFormat/DateTimeStyleFormat.js function DateTimeStyleFormat(dateStyle, timeStyle, dataLocaleData) { var dateFormat, timeFormat; if (timeStyle !== void 0) { invariant(timeStyle === "full" || timeStyle === "long" || timeStyle === "medium" || timeStyle === "short", "invalid timeStyle"); timeFormat = dataLocaleData.timeFormat[timeStyle]; } if (dateStyle !== void 0) { invariant(dateStyle === "full" || dateStyle === "long" || dateStyle === "medium" || dateStyle === "short", "invalid dateStyle"); dateFormat = dataLocaleData.dateFormat[dateStyle]; } if (dateStyle !== void 0 && timeStyle !== void 0) { var format = {}; for (var field in dateFormat) { if (field !== "pattern") { format[field] = dateFormat[field]; } } for (var field in timeFormat) { if (field !== "pattern" && field !== "pattern12") { format[field] = timeFormat[field]; } } var connector = dataLocaleData.dateTimeFormat[dateStyle]; var pattern = connector.replace("{0}", timeFormat.pattern).replace("{1}", dateFormat.pattern); format.pattern = pattern; if ("pattern12" in timeFormat) { var pattern12 = connector.replace("{0}", timeFormat.pattern12).replace("{1}", dateFormat.pattern); format.pattern12 = pattern12; } return format; } if (timeStyle !== void 0) { return timeFormat; } invariant(dateStyle !== void 0, "dateStyle should not be undefined"); return dateFormat; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/DateTimeFormat/ToLocalTime.js function getApplicableZoneData(t, timeZone, tzData) { var _a; var zoneData = tzData[timeZone]; if (!zoneData) { return [0, false]; } var i = 0; var offset = 0; var dst = false; for (; i <= zoneData.length; i++) { if (i === zoneData.length || zoneData[i][0] * 1e3 > t) { ; _a = zoneData[i - 1], offset = _a[2], dst = _a[3]; break; } } return [offset * 1e3, dst]; } function ToLocalTime(t, calendar, timeZone, _a) { var tzData = _a.tzData; invariant(Type(t) === "Number", "invalid time"); invariant(calendar === "gregory", "We only support Gregory calendar right now"); var _b = getApplicableZoneData(t, timeZone, tzData), timeZoneOffset = _b[0], inDST = _b[1]; var tz = t + timeZoneOffset; var year = YearFromTime(tz); return { weekday: WeekDay(tz), era: year < 0 ? "BC" : "AD", year: year, relatedYear: void 0, yearName: void 0, month: MonthFromTime(tz), day: DateFromTime(tz), hour: HourFromTime(tz), minute: MinFromTime(tz), second: SecFromTime(tz), millisecond: msFromTime(tz), inDST: inDST, timeZoneOffset: timeZoneOffset }; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/DateTimeFormat/FormatDateTimePattern.js function pad(n) { if (n < 10) { return "0" + n; } return String(n); } function offsetToGmtString(gmtFormat, hourFormat, offsetInMs, style) { var offsetInMinutes = Math.floor(offsetInMs / 6e4); var mins = Math.abs(offsetInMinutes) % 60; var hours = Math.floor(Math.abs(offsetInMinutes) / 60); var _a = hourFormat.split(";"), positivePattern = _a[0], negativePattern = _a[1]; var offsetStr = ""; var pattern = offsetInMs < 0 ? negativePattern : positivePattern; if (style === "long") { offsetStr = pattern.replace("HH", pad(hours)).replace("H", String(hours)).replace("mm", pad(mins)).replace("m", String(mins)); } else if (mins || hours) { if (!mins) { pattern = pattern.replace(/:?m+/, ""); } offsetStr = pattern.replace(/H+/, String(hours)).replace(/m+/, String(mins)); } return gmtFormat.replace("{0}", offsetStr); } function FormatDateTimePattern(dtf, patternParts, x, _a) { var getInternalSlots2 = _a.getInternalSlots, localeData = _a.localeData, getDefaultTimeZone = _a.getDefaultTimeZone, tzData = _a.tzData; x = TimeClip(x); var internalSlots = getInternalSlots2(dtf); var dataLocale = internalSlots.dataLocale; var dataLocaleData = localeData[dataLocale]; var locale = internalSlots.locale; var nfOptions = Object.create(null); nfOptions.useGrouping = false; var nf = new Intl.NumberFormat(locale, nfOptions); var nf2Options = Object.create(null); nf2Options.minimumIntegerDigits = 2; nf2Options.useGrouping = false; var nf2 = new Intl.NumberFormat(locale, nf2Options); var fractionalSecondDigits = internalSlots.fractionalSecondDigits; var nf3; if (fractionalSecondDigits !== void 0) { var nf3Options = Object.create(null); nf3Options.minimumIntegerDigits = fractionalSecondDigits; nf3Options.useGrouping = false; nf3 = new Intl.NumberFormat(locale, nf3Options); } var tm = ToLocalTime(x, internalSlots.calendar, internalSlots.timeZone, {tzData: tzData}); var result = []; for (var _i = 0, patternParts_1 = patternParts; _i < patternParts_1.length; _i++) { var patternPart = patternParts_1[_i]; var p = patternPart.type; if (p === "literal") { result.push({ type: "literal", value: patternPart.value }); } else if (p === "fractionalSecondDigits") { var v = Math.floor(tm.millisecond * Math.pow(10, (fractionalSecondDigits || 0) - 3)); result.push({ type: "fractionalSecond", value: nf3.format(v) }); } else if (DATE_TIME_PROPS.indexOf(p) > -1) { var fv = ""; var f = internalSlots[p]; var v = tm[p]; if (p === "year" && v <= 0) { v = 1 - v; } if (p === "month") { v++; } var hourCycle = internalSlots.hourCycle; if (p === "hour" && (hourCycle === "h11" || hourCycle === "h12")) { v = v % 12; if (v === 0 && hourCycle === "h12") { v = 12; } } if (p === "hour" && hourCycle === "h24") { if (v === 0) { v = 24; } } if (f === "numeric") { fv = nf.format(v); } else if (f === "2-digit") { fv = nf2.format(v); if (fv.length > 2) { fv = fv.slice(fv.length - 2, fv.length); } } else if (f === "narrow" || f === "short" || f === "long") { if (p === "era") { fv = dataLocaleData[p][f][v]; } else if (p === "timeZoneName") { var timeZoneName = dataLocaleData.timeZoneName, gmtFormat = dataLocaleData.gmtFormat, hourFormat = dataLocaleData.hourFormat; var timeZone = internalSlots.timeZone || getDefaultTimeZone(); var timeZoneData = timeZoneName[timeZone]; if (timeZoneData && timeZoneData[f]) { fv = timeZoneData[f][+tm.inDST]; } else { fv = offsetToGmtString(gmtFormat, hourFormat, tm.timeZoneOffset, f); } } else if (p === "month") { fv = dataLocaleData.month[f][v - 1]; } else { fv = dataLocaleData[p][f][v]; } } result.push({ type: p, value: fv }); } else if (p === "ampm") { var v = tm.hour; var fv = void 0; if (v > 11) { fv = dataLocaleData.pm; } else { fv = dataLocaleData.am; } result.push({ type: "dayPeriod", value: fv }); } else if (p === "relatedYear") { var v = tm.relatedYear; var fv = nf.format(v); result.push({ type: "relatedYear", value: fv }); } else if (p === "yearName") { var v = tm.yearName; var fv = nf.format(v); result.push({ type: "yearName", value: fv }); } } return result; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/PartitionPattern.js function PartitionPattern(pattern) { var result = []; var beginIndex = pattern.indexOf("{"); var endIndex = 0; var nextIndex = 0; var length = pattern.length; while (beginIndex < pattern.length && beginIndex > -1) { endIndex = pattern.indexOf("}", beginIndex); invariant(endIndex > beginIndex, "Invalid pattern " + pattern); if (beginIndex > nextIndex) { result.push({ type: "literal", value: pattern.substring(nextIndex, beginIndex) }); } result.push({ type: pattern.substring(beginIndex + 1, endIndex), value: void 0 }); nextIndex = endIndex + 1; beginIndex = pattern.indexOf("{", nextIndex); } if (nextIndex < length) { result.push({ type: "literal", value: pattern.substring(nextIndex, length) }); } return result; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/DateTimeFormat/PartitionDateTimePattern.js function PartitionDateTimePattern(dtf, x, implDetails) { x = TimeClip(x); if (isNaN(x)) { throw new RangeError("invalid time"); } var getInternalSlots2 = implDetails.getInternalSlots; var internalSlots = getInternalSlots2(dtf); var pattern = internalSlots.pattern; return FormatDateTimePattern(dtf, PartitionPattern(pattern), x, implDetails); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/DateTimeFormat/FormatDateTime.js function FormatDateTime(dtf, x, implDetails) { var parts = PartitionDateTimePattern(dtf, x, implDetails); var result = ""; for (var _i = 0, parts_1 = parts; _i < parts_1.length; _i++) { var part = parts_1[_i]; result += part.value; } return result; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/DateTimeFormat/PartitionDateTimeRangePattern.js var TABLE_2_FIELDS = [ "era", "year", "month", "day", "ampm", "hour", "minute", "second", "fractionalSecondDigits" ]; function PartitionDateTimeRangePattern(dtf, x, y, implDetails) { x = TimeClip(x); if (isNaN(x)) { throw new RangeError("Invalid start time"); } y = TimeClip(y); if (isNaN(y)) { throw new RangeError("Invalid end time"); } var getInternalSlots2 = implDetails.getInternalSlots, tzData = implDetails.tzData; var internalSlots = getInternalSlots2(dtf); var tm1 = ToLocalTime(x, internalSlots.calendar, internalSlots.timeZone, {tzData: tzData}); var tm2 = ToLocalTime(y, internalSlots.calendar, internalSlots.timeZone, {tzData: tzData}); var pattern = internalSlots.pattern, rangePatterns = internalSlots.rangePatterns; var rangePattern; var dateFieldsPracticallyEqual = true; var patternContainsLargerDateField = false; for (var _i = 0, TABLE_2_FIELDS_1 = TABLE_2_FIELDS; _i < TABLE_2_FIELDS_1.length; _i++) { var fieldName = TABLE_2_FIELDS_1[_i]; if (dateFieldsPracticallyEqual && !patternContainsLargerDateField) { if (fieldName === "ampm") { var rp = rangePatterns.ampm; if (rangePattern !== void 0 && rp === void 0) { patternContainsLargerDateField = true; } else { var v1 = tm1.hour; var v2 = tm2.hour; if (v1 > 11 && v2 < 11 || v1 < 11 && v2 > 11) { dateFieldsPracticallyEqual = false; } rangePattern = rp; } } else if (fieldName === "fractionalSecondDigits") { var fractionalSecondDigits = internalSlots.fractionalSecondDigits; if (fractionalSecondDigits === void 0) { fractionalSecondDigits = 3; } var v1 = Math.floor(tm1.millisecond * Math.pow(10, fractionalSecondDigits - 3)); var v2 = Math.floor(tm2.millisecond * Math.pow(10, fractionalSecondDigits - 3)); if (v1 !== v2) { dateFieldsPracticallyEqual = false; } } else { var rp = rangePatterns[fieldName]; if (rangePattern !== void 0 && rp === void 0) { patternContainsLargerDateField = true; } else { var v1 = tm1[fieldName]; var v2 = tm2[fieldName]; if (!SameValue(v1, v2)) { dateFieldsPracticallyEqual = false; } rangePattern = rp; } } } } if (dateFieldsPracticallyEqual) { var result_2 = FormatDateTimePattern(dtf, PartitionPattern(pattern), x, implDetails); for (var _a = 0, result_1 = result_2; _a < result_1.length; _a++) { var r = result_1[_a]; r.source = RangePatternType.shared; } return result_2; } var result = []; if (rangePattern === void 0) { rangePattern = rangePatterns.default; for (var _b = 0, _c = rangePattern.patternParts; _b < _c.length; _b++) { var patternPart = _c[_b]; if (patternPart.pattern === "{0}" || patternPart.pattern === "{1}") { patternPart.pattern = pattern; } } } for (var _d = 0, _e = rangePattern.patternParts; _d < _e.length; _d++) { var rangePatternPart = _e[_d]; var source = rangePatternPart.source, pattern_1 = rangePatternPart.pattern; var z = void 0; if (source === RangePatternType.startRange || source === RangePatternType.shared) { z = x; } else { z = y; } var patternParts = PartitionPattern(pattern_1); var partResult = FormatDateTimePattern(dtf, patternParts, z, implDetails); for (var _f = 0, partResult_1 = partResult; _f < partResult_1.length; _f++) { var r = partResult_1[_f]; r.source = source; } result = result.concat(partResult); } return result; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/DateTimeFormat/FormatDateTimeRange.js function FormatDateTimeRange(dtf, x, y, implDetails) { var parts = PartitionDateTimeRangePattern(dtf, x, y, implDetails); var result = ""; for (var _i = 0, parts_1 = parts; _i < parts_1.length; _i++) { var part = parts_1[_i]; result += part.value; } return result; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/DateTimeFormat/FormatDateTimeRangeToParts.js function FormatDateTimeRangeToParts(dtf, x, y, implDetails) { var parts = PartitionDateTimeRangePattern(dtf, x, y, implDetails); var result = new Array(0); for (var _i = 0, parts_1 = parts; _i < parts_1.length; _i++) { var part = parts_1[_i]; result.push({ type: part.type, value: part.value, source: part.source }); } return result; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/DateTimeFormat/FormatDateTimeToParts.js function FormatDateTimeToParts(dtf, x, implDetails) { var parts = PartitionDateTimePattern(dtf, x, implDetails); var result = ArrayCreate(0); for (var _i = 0, parts_1 = parts; _i < parts_1.length; _i++) { var part = parts_1[_i]; result.push({ type: part.type, value: part.value }); } return result; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/DateTimeFormat/ToDateTimeOptions.js function ToDateTimeOptions(options, required, defaults) { if (options === void 0) { options = null; } else { options = ToObject(options); } options = Object.create(options); var needDefaults = true; if (required === "date" || required === "any") { for (var _i = 0, _a = ["weekday", "year", "month", "day"]; _i < _a.length; _i++) { var prop = _a[_i]; var value = options[prop]; if (value !== void 0) { needDefaults = false; } } } if (required === "time" || required === "any") { for (var _b = 0, _c = [ "dayPeriod", "hour", "minute", "second", "fractionalSecondDigits" ]; _b < _c.length; _b++) { var prop = _c[_b]; var value = options[prop]; if (value !== void 0) { needDefaults = false; } } } if (options.dateStyle !== void 0 || options.timeStyle !== void 0) { needDefaults = false; } if (required === "date" && options.timeStyle) { throw new TypeError("Intl.DateTimeFormat date was required but timeStyle was included"); } if (required === "time" && options.dateStyle) { throw new TypeError("Intl.DateTimeFormat time was required but dateStyle was included"); } if (needDefaults && (defaults === "date" || defaults === "all")) { for (var _d = 0, _e = ["year", "month", "day"]; _d < _e.length; _d++) { var prop = _e[_d]; options[prop] = "numeric"; } } if (needDefaults && (defaults === "time" || defaults === "all")) { for (var _f = 0, _g = ["hour", "minute", "second"]; _f < _g.length; _f++) { var prop = _g[_f]; options[prop] = "numeric"; } } return options; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/GetOption.js function GetOption(opts, prop, type, values, fallback) { if (typeof opts !== "object") { throw new TypeError("Options must be an object"); } var value = opts[prop]; if (value !== void 0) { if (type !== "boolean" && type !== "string") { throw new TypeError("invalid type"); } if (type === "boolean") { value = Boolean(value); } if (type === "string") { value = ToString(value); } if (values !== void 0 && !values.filter(function(val) { return val == value; }).length) { throw new RangeError(value + " is not within " + values.join(", ")); } return value; } return fallback; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/BestAvailableLocale.js function BestAvailableLocale(availableLocales, locale) { var candidate = locale; while (true) { if (availableLocales.has(candidate)) { return candidate; } var pos = candidate.lastIndexOf("-"); if (!~pos) { return void 0; } if (pos >= 2 && candidate[pos - 2] === "-") { pos -= 2; } candidate = candidate.slice(0, pos); } } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/LookupMatcher.js function LookupMatcher(availableLocales, requestedLocales, getDefaultLocale) { var result = {locale: ""}; for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) { var locale = requestedLocales_1[_i]; var noExtensionLocale = locale.replace(UNICODE_EXTENSION_SEQUENCE_REGEX, ""); var availableLocale = BestAvailableLocale(availableLocales, noExtensionLocale); if (availableLocale) { result.locale = availableLocale; if (locale !== noExtensionLocale) { result.extension = locale.slice(noExtensionLocale.length + 1, locale.length); } return result; } } result.locale = getDefaultLocale(); return result; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/BestFitMatcher.js function BestFitMatcher(availableLocales, requestedLocales, getDefaultLocale) { var minimizedAvailableLocaleMap = {}; var minimizedAvailableLocales = new Set(); availableLocales.forEach(function(locale2) { var minimizedLocale = new Intl.Locale(locale2).minimize().toString(); minimizedAvailableLocaleMap[minimizedLocale] = locale2; minimizedAvailableLocales.add(minimizedLocale); }); var foundLocale; for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) { var l = requestedLocales_1[_i]; if (foundLocale) { break; } var noExtensionLocale = l.replace(UNICODE_EXTENSION_SEQUENCE_REGEX, ""); if (availableLocales.has(noExtensionLocale)) { foundLocale = noExtensionLocale; break; } if (minimizedAvailableLocales.has(noExtensionLocale)) { foundLocale = minimizedAvailableLocaleMap[noExtensionLocale]; break; } var locale = new Intl.Locale(noExtensionLocale); var maximizedRequestedLocale = locale.maximize().toString(); var minimizedRequestedLocale = locale.minimize().toString(); if (minimizedAvailableLocales.has(minimizedRequestedLocale)) { foundLocale = minimizedAvailableLocaleMap[minimizedRequestedLocale]; break; } foundLocale = BestAvailableLocale(minimizedAvailableLocales, maximizedRequestedLocale); } return { locale: foundLocale || getDefaultLocale() }; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/UnicodeExtensionValue.js function UnicodeExtensionValue(extension, key) { invariant(key.length === 2, "key must have 2 elements"); var size = extension.length; var searchValue = "-" + key + "-"; var pos = extension.indexOf(searchValue); if (pos !== -1) { var start = pos + 4; var end = start; var k = start; var done = false; while (!done) { var e = extension.indexOf("-", k); var len = void 0; if (e === -1) { len = size - k; } else { len = e - k; } if (len === 2) { done = true; } else if (e === -1) { end = size; done = true; } else { end = e; k = e + 1; } } return extension.slice(start, end); } searchValue = "-" + key; pos = extension.indexOf(searchValue); if (pos !== -1 && pos + 3 === size) { return ""; } return void 0; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/ResolveLocale.js function ResolveLocale(availableLocales, requestedLocales, options, relevantExtensionKeys, localeData, getDefaultLocale) { var matcher = options.localeMatcher; var r; if (matcher === "lookup") { r = LookupMatcher(availableLocales, requestedLocales, getDefaultLocale); } else { r = BestFitMatcher(availableLocales, requestedLocales, getDefaultLocale); } var foundLocale = r.locale; var result = {locale: "", dataLocale: foundLocale}; var supportedExtension = "-u"; for (var _i = 0, relevantExtensionKeys_1 = relevantExtensionKeys; _i < relevantExtensionKeys_1.length; _i++) { var key = relevantExtensionKeys_1[_i]; invariant(foundLocale in localeData, "Missing locale data for " + foundLocale); var foundLocaleData = localeData[foundLocale]; invariant(typeof foundLocaleData === "object" && foundLocaleData !== null, "locale data " + key + " must be an object"); var keyLocaleData = foundLocaleData[key]; invariant(Array.isArray(keyLocaleData), "keyLocaleData for " + key + " must be an array"); var value = keyLocaleData[0]; invariant(typeof value === "string" || value === null, "value must be string or null but got " + typeof value + " in key " + key); var supportedExtensionAddition = ""; if (r.extension) { var requestedValue = UnicodeExtensionValue(r.extension, key); if (requestedValue !== void 0) { if (requestedValue !== "") { if (~keyLocaleData.indexOf(requestedValue)) { value = requestedValue; supportedExtensionAddition = "-" + key + "-" + value; } } else if (~requestedValue.indexOf("true")) { value = "true"; supportedExtensionAddition = "-" + key; } } } if (key in options) { var optionsValue = options[key]; invariant(typeof optionsValue === "string" || typeof optionsValue === "undefined" || optionsValue === null, "optionsValue must be String, Undefined or Null"); if (~keyLocaleData.indexOf(optionsValue)) { if (optionsValue !== value) { value = optionsValue; supportedExtensionAddition = ""; } } } result[key] = value; supportedExtension += supportedExtensionAddition; } if (supportedExtension.length > 2) { var privateIndex = foundLocale.indexOf("-x-"); if (privateIndex === -1) { foundLocale = foundLocale + supportedExtension; } else { var preExtension = foundLocale.slice(0, privateIndex); var postExtension = foundLocale.slice(privateIndex, foundLocale.length); foundLocale = preExtension + supportedExtension + postExtension; } foundLocale = Intl.getCanonicalLocales(foundLocale)[0]; } result.locale = foundLocale; return result; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/IsValidTimeZoneName.js function IsValidTimeZoneName(tz, _a) { var tzData = _a.tzData, uppercaseLinks = _a.uppercaseLinks; var uppercasedTz = tz.toUpperCase(); var zoneNames = new Set(); Object.keys(tzData).map(function(z) { return z.toUpperCase(); }).forEach(function(z) { return zoneNames.add(z); }); return zoneNames.has(uppercasedTz) || uppercasedTz in uppercaseLinks; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/DefaultNumberOption.js function DefaultNumberOption(val, min, max, fallback) { if (val !== void 0) { val = Number(val); if (isNaN(val) || val < min || val > max) { throw new RangeError(val + " is outside of range [" + min + ", " + max + "]"); } return Math.floor(val); } return fallback; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/GetNumberOption.js function GetNumberOption(options, property, minimum, maximum, fallback) { var val = options[property]; return DefaultNumberOption(val, minimum, maximum, fallback); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/DateTimeFormat/InitializeDateTimeFormat.js function isTimeRelated(opt) { for (var _i = 0, _a = ["hour", "minute", "second"]; _i < _a.length; _i++) { var prop = _a[_i]; var value = opt[prop]; if (value !== void 0) { return true; } } return false; } function resolveHourCycle(hc, hcDefault, hour12) { if (hc == null) { hc = hcDefault; } if (hour12 !== void 0) { if (hour12) { if (hcDefault === "h11" || hcDefault === "h23") { hc = "h11"; } else { hc = "h12"; } } else { invariant(!hour12, "hour12 must not be set"); if (hcDefault === "h11" || hcDefault === "h23") { hc = "h23"; } else { hc = "h24"; } } } return hc; } var TYPE_REGEX = /^[a-z0-9]{3,8}$/i; function InitializeDateTimeFormat(dtf, locales, opts, _a) { var getInternalSlots2 = _a.getInternalSlots, availableLocales = _a.availableLocales, localeData = _a.localeData, getDefaultLocale = _a.getDefaultLocale, getDefaultTimeZone = _a.getDefaultTimeZone, relevantExtensionKeys = _a.relevantExtensionKeys, tzData = _a.tzData, uppercaseLinks = _a.uppercaseLinks; var requestedLocales = CanonicalizeLocaleList(locales); var options = ToDateTimeOptions(opts, "any", "date"); var opt = Object.create(null); var matcher = GetOption(options, "localeMatcher", "string", ["lookup", "best fit"], "best fit"); opt.localeMatcher = matcher; var calendar = GetOption(options, "calendar", "string", void 0, void 0); if (calendar !== void 0 && !TYPE_REGEX.test(calendar)) { throw new RangeError("Malformed calendar"); } var internalSlots = getInternalSlots2(dtf); opt.ca = calendar; var numberingSystem = GetOption(options, "numberingSystem", "string", void 0, void 0); if (numberingSystem !== void 0 && !TYPE_REGEX.test(numberingSystem)) { throw new RangeError("Malformed numbering system"); } opt.nu = numberingSystem; var hour12 = GetOption(options, "hour12", "boolean", void 0, void 0); var hourCycle = GetOption(options, "hourCycle", "string", ["h11", "h12", "h23", "h24"], void 0); if (hour12 !== void 0) { hourCycle = null; } opt.hc = hourCycle; var r = ResolveLocale(availableLocales, requestedLocales, opt, relevantExtensionKeys, localeData, getDefaultLocale); internalSlots.locale = r.locale; calendar = r.ca; internalSlots.calendar = calendar; internalSlots.hourCycle = r.hc; internalSlots.numberingSystem = r.nu; var dataLocale = r.dataLocale; internalSlots.dataLocale = dataLocale; var timeZone = options.timeZone; if (timeZone !== void 0) { timeZone = String(timeZone); if (!IsValidTimeZoneName(timeZone, {tzData: tzData, uppercaseLinks: uppercaseLinks})) { throw new RangeError("Invalid timeZoneName"); } timeZone = CanonicalizeTimeZoneName(timeZone, {tzData: tzData, uppercaseLinks: uppercaseLinks}); } else { timeZone = getDefaultTimeZone(); } internalSlots.timeZone = timeZone; opt = Object.create(null); opt.weekday = GetOption(options, "weekday", "string", ["narrow", "short", "long"], void 0); opt.era = GetOption(options, "era", "string", ["narrow", "short", "long"], void 0); opt.year = GetOption(options, "year", "string", ["2-digit", "numeric"], void 0); opt.month = GetOption(options, "month", "string", ["2-digit", "numeric", "narrow", "short", "long"], void 0); opt.day = GetOption(options, "day", "string", ["2-digit", "numeric"], void 0); opt.hour = GetOption(options, "hour", "string", ["2-digit", "numeric"], void 0); opt.minute = GetOption(options, "minute", "string", ["2-digit", "numeric"], void 0); opt.second = GetOption(options, "second", "string", ["2-digit", "numeric"], void 0); opt.timeZoneName = GetOption(options, "timeZoneName", "string", ["short", "long"], void 0); opt.fractionalSecondDigits = GetNumberOption(options, "fractionalSecondDigits", 1, 3, void 0); var dataLocaleData = localeData[dataLocale]; invariant(!!dataLocaleData, "Missing locale data for " + dataLocale); var formats = dataLocaleData.formats[calendar]; if (!formats) { throw new RangeError('Calendar "' + calendar + '" is not supported. Try setting "calendar" to 1 of the following: ' + Object.keys(dataLocaleData.formats).join(", ")); } var formatMatcher = GetOption(options, "formatMatcher", "string", ["basic", "best fit"], "best fit"); var dateStyle = GetOption(options, "dateStyle", "string", ["full", "long", "medium", "short"], void 0); internalSlots.dateStyle = dateStyle; var timeStyle = GetOption(options, "timeStyle", "string", ["full", "long", "medium", "short"], void 0); internalSlots.timeStyle = timeStyle; var bestFormat; if (dateStyle === void 0 && timeStyle === void 0) { if (formatMatcher === "basic") { bestFormat = BasicFormatMatcher(opt, formats); } else { if (isTimeRelated(opt)) { var hc = resolveHourCycle(internalSlots.hourCycle, dataLocaleData.hourCycle, hour12); opt.hour12 = hc === "h11" || hc === "h12"; } bestFormat = BestFitFormatMatcher(opt, formats); } } else { for (var _i = 0, DATE_TIME_PROPS_1 = DATE_TIME_PROPS; _i < DATE_TIME_PROPS_1.length; _i++) { var prop = DATE_TIME_PROPS_1[_i]; var p = opt[prop]; if (p !== void 0) { throw new TypeError("Intl.DateTimeFormat can't set option " + prop + " when " + (dateStyle ? "dateStyle" : "timeStyle") + " is used"); } } bestFormat = DateTimeStyleFormat(dateStyle, timeStyle, dataLocaleData); } internalSlots.format = bestFormat; for (var prop in opt) { var p = bestFormat[prop]; if (p !== void 0) { internalSlots[prop] = p; } } var pattern; var rangePatterns; if (internalSlots.hour !== void 0) { var hc = resolveHourCycle(internalSlots.hourCycle, dataLocaleData.hourCycle, hour12); internalSlots.hourCycle = hc; if (hc === "h11" || hc === "h12") { pattern = bestFormat.pattern12; rangePatterns = bestFormat.rangePatterns12; } else { pattern = bestFormat.pattern; rangePatterns = bestFormat.rangePatterns; } } else { internalSlots.hourCycle = void 0; pattern = bestFormat.pattern; rangePatterns = bestFormat.rangePatterns; } internalSlots.pattern = pattern; internalSlots.rangePatterns = rangePatterns; return dtf; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/IsSanctionedSimpleUnitIdentifier.js var SANCTIONED_UNITS = [ "angle-degree", "area-acre", "area-hectare", "concentr-percent", "digital-bit", "digital-byte", "digital-gigabit", "digital-gigabyte", "digital-kilobit", "digital-kilobyte", "digital-megabit", "digital-megabyte", "digital-petabyte", "digital-terabit", "digital-terabyte", "duration-day", "duration-hour", "duration-millisecond", "duration-minute", "duration-month", "duration-second", "duration-week", "duration-year", "length-centimeter", "length-foot", "length-inch", "length-kilometer", "length-meter", "length-mile-scandinavian", "length-mile", "length-millimeter", "length-yard", "mass-gram", "mass-kilogram", "mass-ounce", "mass-pound", "mass-stone", "temperature-celsius", "temperature-fahrenheit", "volume-fluid-ounce", "volume-gallon", "volume-liter", "volume-milliliter" ]; function removeUnitNamespace(unit) { return unit.slice(unit.indexOf("-") + 1); } var SIMPLE_UNITS = SANCTIONED_UNITS.map(removeUnitNamespace); // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/regex.generated.js var S_UNICODE_REGEX = /[\$\+<->\^`\|~\xA2-\xA6\xA8\xA9\xAC\xAE-\xB1\xB4\xB8\xD7\xF7\u02C2-\u02C5\u02D2-\u02DF\u02E5-\u02EB\u02ED\u02EF-\u02FF\u0375\u0384\u0385\u03F6\u0482\u058D-\u058F\u0606-\u0608\u060B\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u07FE\u07FF\u09F2\u09F3\u09FA\u09FB\u0AF1\u0B70\u0BF3-\u0BFA\u0C7F\u0D4F\u0D79\u0E3F\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u166D\u17DB\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u1FBD\u1FBF-\u1FC1\u1FCD-\u1FCF\u1FDD-\u1FDF\u1FED-\u1FEF\u1FFD\u1FFE\u2044\u2052\u207A-\u207C\u208A-\u208C\u20A0-\u20BF\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u214F\u218A\u218B\u2190-\u2307\u230C-\u2328\u232B-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u2767\u2794-\u27C4\u27C7-\u27E5\u27F0-\u2982\u2999-\u29D7\u29DC-\u29FB\u29FE-\u2B73\u2B76-\u2B95\u2B97-\u2BFF\u2CE5-\u2CEA\u2E50\u2E51\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u309B\u309C\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA700-\uA716\uA720\uA721\uA789\uA78A\uA828-\uA82B\uA836-\uA839\uAA77-\uAA79\uAB5B\uAB6A\uAB6B\uFB29\uFBB2-\uFBC1\uFDFC\uFDFD\uFE62\uFE64-\uFE66\uFE69\uFF04\uFF0B\uFF1C-\uFF1E\uFF3E\uFF40\uFF5C\uFF5E\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFFC\uFFFD]|\uD800[\uDD37-\uDD3F\uDD79-\uDD89\uDD8C-\uDD8E\uDD90-\uDD9C\uDDA0\uDDD0-\uDDFC]|\uD802[\uDC77\uDC78\uDEC8]|\uD805\uDF3F|\uD807[\uDFD5-\uDFF1]|\uD81A[\uDF3C-\uDF3F\uDF45]|\uD82F\uDC9C|\uD834[\uDC00-\uDCF5\uDD00-\uDD26\uDD29-\uDD64\uDD6A-\uDD6C\uDD83\uDD84\uDD8C-\uDDA9\uDDAE-\uDDE8\uDE00-\uDE41\uDE45\uDF00-\uDF56]|\uD835[\uDEC1\uDEDB\uDEFB\uDF15\uDF35\uDF4F\uDF6F\uDF89\uDFA9\uDFC3]|\uD836[\uDC00-\uDDFF\uDE37-\uDE3A\uDE6D-\uDE74\uDE76-\uDE83\uDE85\uDE86]|\uD838[\uDD4F\uDEFF]|\uD83B[\uDCAC\uDCB0\uDD2E\uDEF0\uDEF1]|\uD83C[\uDC00-\uDC2B\uDC30-\uDC93\uDCA0-\uDCAE\uDCB1-\uDCBF\uDCC1-\uDCCF\uDCD1-\uDCF5\uDD0D-\uDDAD\uDDE6-\uDE02\uDE10-\uDE3B\uDE40-\uDE48\uDE50\uDE51\uDE60-\uDE65\uDF00-\uDFFF]|\uD83D[\uDC00-\uDED7\uDEE0-\uDEEC\uDEF0-\uDEFC\uDF00-\uDF73\uDF80-\uDFD8\uDFE0-\uDFEB]|\uD83E[\uDC00-\uDC0B\uDC10-\uDC47\uDC50-\uDC59\uDC60-\uDC87\uDC90-\uDCAD\uDCB0\uDCB1\uDD00-\uDD78\uDD7A-\uDDCB\uDDCD-\uDE53\uDE60-\uDE6D\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6\uDF00-\uDF92\uDF94-\uDFCA]/; // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/format_to_parts.js var CARET_S_UNICODE_REGEX = new RegExp("^" + S_UNICODE_REGEX.source); var S_DOLLAR_UNICODE_REGEX = new RegExp(S_UNICODE_REGEX.source + "$"); // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/LookupSupportedLocales.js function LookupSupportedLocales(availableLocales, requestedLocales) { var subset = []; for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) { var locale = requestedLocales_1[_i]; var noExtensionLocale = locale.replace(UNICODE_EXTENSION_SEQUENCE_REGEX, ""); var availableLocale = BestAvailableLocale(availableLocales, noExtensionLocale); if (availableLocale) { subset.push(availableLocale); } } return subset; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/SupportedLocales.js function SupportedLocales(availableLocales, requestedLocales, options) { var matcher = "best fit"; if (options !== void 0) { options = ToObject(options); matcher = GetOption(options, "localeMatcher", "string", ["lookup", "best fit"], "best fit"); } if (matcher === "best fit") { return LookupSupportedLocales(availableLocales, requestedLocales); } return LookupSupportedLocales(availableLocales, requestedLocales); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/data.js var MissingLocaleDataError = function(_super) { __extends(MissingLocaleDataError2, _super); function MissingLocaleDataError2() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.type = "MISSING_LOCALE_DATA"; return _this; } return MissingLocaleDataError2; }(Error); // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/src/get_internal_slots.js var internalSlotMap = new WeakMap(); function getInternalSlots(x) { var internalSlots = internalSlotMap.get(x); if (!internalSlots) { internalSlots = Object.create(null); internalSlotMap.set(x, internalSlots); } return internalSlots; } // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/src/data/links.js var links_default = { "Africa/Asmera": "Africa/Nairobi", "Africa/Timbuktu": "Africa/Abidjan", "America/Argentina/ComodRivadavia": "America/Argentina/Catamarca", "America/Atka": "America/Adak", "America/Buenos_Aires": "America/Argentina/Buenos_Aires", "America/Catamarca": "America/Argentina/Catamarca", "America/Coral_Harbour": "America/Atikokan", "America/Cordoba": "America/Argentina/Cordoba", "America/Ensenada": "America/Tijuana", "America/Fort_Wayne": "America/Indiana/Indianapolis", "America/Godthab": "America/Nuuk", "America/Indianapolis": "America/Indiana/Indianapolis", "America/Jujuy": "America/Argentina/Jujuy", "America/Knox_IN": "America/Indiana/Knox", "America/Louisville": "America/Kentucky/Louisville", "America/Mendoza": "America/Argentina/Mendoza", "America/Montreal": "America/Toronto", "America/Porto_Acre": "America/Rio_Branco", "America/Rosario": "America/Argentina/Cordoba", "America/Santa_Isabel": "America/Tijuana", "America/Shiprock": "America/Denver", "America/Virgin": "America/Port_of_Spain", "Antarctica/South_Pole": "Pacific/Auckland", "Asia/Ashkhabad": "Asia/Ashgabat", "Asia/Calcutta": "Asia/Kolkata", "Asia/Chongqing": "Asia/Shanghai", "Asia/Chungking": "Asia/Shanghai", "Asia/Dacca": "Asia/Dhaka", "Asia/Harbin": "Asia/Shanghai", "Asia/Kashgar": "Asia/Urumqi", "Asia/Katmandu": "Asia/Kathmandu", "Asia/Macao": "Asia/Macau", "Asia/Rangoon": "Asia/Yangon", "Asia/Saigon": "Asia/Ho_Chi_Minh", "Asia/Tel_Aviv": "Asia/Jerusalem", "Asia/Thimbu": "Asia/Thimphu", "Asia/Ujung_Pandang": "Asia/Makassar", "Asia/Ulan_Bator": "Asia/Ulaanbaatar", "Atlantic/Faeroe": "Atlantic/Faroe", "Atlantic/Jan_Mayen": "Europe/Oslo", "Australia/ACT": "Australia/Sydney", "Australia/Canberra": "Australia/Sydney", "Australia/Currie": "Australia/Hobart", "Australia/LHI": "Australia/Lord_Howe", "Australia/NSW": "Australia/Sydney", "Australia/North": "Australia/Darwin", "Australia/Queensland": "Australia/Brisbane", "Australia/South": "Australia/Adelaide", "Australia/Tasmania": "Australia/Hobart", "Australia/Victoria": "Australia/Melbourne", "Australia/West": "Australia/Perth", "Australia/Yancowinna": "Australia/Broken_Hill", "Brazil/Acre": "America/Rio_Branco", "Brazil/DeNoronha": "America/Noronha", "Brazil/East": "America/Sao_Paulo", "Brazil/West": "America/Manaus", "Canada/Atlantic": "America/Halifax", "Canada/Central": "America/Winnipeg", "Canada/Eastern": "America/Toronto", "Canada/Mountain": "America/Edmonton", "Canada/Newfoundland": "America/St_Johns", "Canada/Pacific": "America/Vancouver", "Canada/Saskatchewan": "America/Regina", "Canada/Yukon": "America/Whitehorse", "Chile/Continental": "America/Santiago", "Chile/EasterIsland": "Pacific/Easter", "Cuba": "America/Havana", "Egypt": "Africa/Cairo", "Eire": "Europe/Dublin", "Etc/UCT": "Etc/UTC", "Europe/Belfast": "Europe/London", "Europe/Tiraspol": "Europe/Chisinau", "GB": "Europe/London", "GB-Eire": "Europe/London", "GMT+0": "Etc/GMT", "GMT-0": "Etc/GMT", "GMT0": "Etc/GMT", "Greenwich": "Etc/GMT", "Hongkong": "Asia/Hong_Kong", "Iceland": "Atlantic/Reykjavik", "Iran": "Asia/Tehran", "Israel": "Asia/Jerusalem", "Jamaica": "America/Jamaica", "Japan": "Asia/Tokyo", "Kwajalein": "Pacific/Kwajalein", "Libya": "Africa/Tripoli", "Mexico/BajaNorte": "America/Tijuana", "Mexico/BajaSur": "America/Mazatlan", "Mexico/General": "America/Mexico_City", "NZ": "Pacific/Auckland", "NZ-CHAT": "Pacific/Chatham", "Navajo": "America/Denver", "PRC": "Asia/Shanghai", "Pacific/Johnston": "Pacific/Honolulu", "Pacific/Ponape": "Pacific/Pohnpei", "Pacific/Samoa": "Pacific/Pago_Pago", "Pacific/Truk": "Pacific/Chuuk", "Pacific/Yap": "Pacific/Chuuk", "Poland": "Europe/Warsaw", "Portugal": "Europe/Lisbon", "ROC": "Asia/Taipei", "ROK": "Asia/Seoul", "Singapore": "Asia/Singapore", "Turkey": "Europe/Istanbul", "UCT": "Etc/UTC", "US/Alaska": "America/Anchorage", "US/Aleutian": "America/Adak", "US/Arizona": "America/Phoenix", "US/Central": "America/Chicago", "US/East-Indiana": "America/Indiana/Indianapolis", "US/Eastern": "America/New_York", "US/Hawaii": "Pacific/Honolulu", "US/Indiana-Starke": "America/Indiana/Knox", "US/Michigan": "America/Detroit", "US/Mountain": "America/Denver", "US/Pacific": "America/Los_Angeles", "US/Samoa": "Pacific/Pago_Pago", "UTC": "Etc/UTC", "Universal": "Etc/UTC", "W-SU": "Europe/Moscow", "Zulu": "Etc/UTC" }; // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/src/packer.js function unpack(data) { var abbrvs = data.abbrvs.split("|"); var offsets = data.offsets.split("|").map(function(n) { return parseInt(n, 36); }); var packedZones = data.zones; var zones = {}; for (var _i = 0, packedZones_1 = packedZones; _i < packedZones_1.length; _i++) { var d = packedZones_1[_i]; var _a = d.split("|"), zone = _a[0], zoneData = _a.slice(1); zones[zone] = zoneData.map(function(z) { return z.split(","); }).map(function(_a2) { var ts = _a2[0], abbrvIndex = _a2[1], offsetIndex = _a2[2], dst = _a2[3]; return [ ts === "" ? -Infinity : parseInt(ts, 36), abbrvs[+abbrvIndex], offsets[+offsetIndex], dst === "1" ]; }); } return zones; } // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/src/core.js var UPPERCASED_LINKS = Object.keys(links_default).reduce(function(all, l) { all[l.toUpperCase()] = links_default[l]; return all; }, {}); var RESOLVED_OPTIONS_KEYS = [ "locale", "calendar", "numberingSystem", "dateStyle", "timeStyle", "timeZone", "hourCycle", "weekday", "era", "year", "month", "day", "hour", "minute", "second", "timeZoneName" ]; var formatDescriptor = { enumerable: false, configurable: true, get: function() { if (typeof this !== "object" || !OrdinaryHasInstance(DateTimeFormat, this)) { throw TypeError("Intl.DateTimeFormat format property accessor called on incompatible receiver"); } var internalSlots = getInternalSlots(this); var dtf = this; var boundFormat = internalSlots.boundFormat; if (boundFormat === void 0) { boundFormat = function(date) { var x; if (date === void 0) { x = Date.now(); } else { x = Number(date); } return FormatDateTime(dtf, x, { getInternalSlots: getInternalSlots, localeData: DateTimeFormat.localeData, tzData: DateTimeFormat.tzData, getDefaultTimeZone: DateTimeFormat.getDefaultTimeZone }); }; try { Object.defineProperty(boundFormat, "name", { configurable: true, enumerable: false, writable: false, value: "" }); } catch (e) { } internalSlots.boundFormat = boundFormat; } return boundFormat; } }; try { Object.defineProperty(formatDescriptor.get, "name", { configurable: true, enumerable: false, writable: false, value: "get format" }); } catch (e) { } var DateTimeFormat = function(locales, options) { if (!this || !OrdinaryHasInstance(DateTimeFormat, this)) { return new DateTimeFormat(locales, options); } InitializeDateTimeFormat(this, locales, options, { tzData: DateTimeFormat.tzData, uppercaseLinks: UPPERCASED_LINKS, availableLocales: DateTimeFormat.availableLocales, relevantExtensionKeys: DateTimeFormat.relevantExtensionKeys, getDefaultLocale: DateTimeFormat.getDefaultLocale, getDefaultTimeZone: DateTimeFormat.getDefaultTimeZone, getInternalSlots: getInternalSlots, localeData: DateTimeFormat.localeData }); var internalSlots = getInternalSlots(this); var dataLocale = internalSlots.dataLocale; var dataLocaleData = DateTimeFormat.localeData[dataLocale]; invariant(dataLocaleData !== void 0, "Cannot load locale-dependent data for " + dataLocale + "."); }; defineProperty(DateTimeFormat, "supportedLocalesOf", { value: function supportedLocalesOf(locales, options) { return SupportedLocales(DateTimeFormat.availableLocales, CanonicalizeLocaleList(locales), options); } }); defineProperty(DateTimeFormat.prototype, "resolvedOptions", { value: function resolvedOptions() { if (typeof this !== "object" || !OrdinaryHasInstance(DateTimeFormat, this)) { throw TypeError("Method Intl.DateTimeFormat.prototype.resolvedOptions called on incompatible receiver"); } var internalSlots = getInternalSlots(this); var ro = {}; for (var _i = 0, RESOLVED_OPTIONS_KEYS_1 = RESOLVED_OPTIONS_KEYS; _i < RESOLVED_OPTIONS_KEYS_1.length; _i++) { var key = RESOLVED_OPTIONS_KEYS_1[_i]; var value = internalSlots[key]; if (key === "hourCycle") { var hour12 = value === "h11" || value === "h12" ? true : value === "h23" || value === "h24" ? false : void 0; if (hour12 !== void 0) { ro.hour12 = hour12; } } if (DATE_TIME_PROPS.indexOf(key) > -1) { if (internalSlots.dateStyle !== void 0 || internalSlots.timeStyle !== void 0) { value = void 0; } } if (value !== void 0) { ro[key] = value; } } return ro; } }); defineProperty(DateTimeFormat.prototype, "formatToParts", { value: function formatToParts2(date) { if (date === void 0) { date = Date.now(); } else { date = ToNumber(date); } return FormatDateTimeToParts(this, date, { getInternalSlots: getInternalSlots, localeData: DateTimeFormat.localeData, tzData: DateTimeFormat.tzData, getDefaultTimeZone: DateTimeFormat.getDefaultTimeZone }); } }); defineProperty(DateTimeFormat.prototype, "formatRangeToParts", { value: function formatRangeToParts(startDate, endDate) { var dtf = this; if (typeof dtf !== "object") { throw new TypeError(); } if (startDate === void 0 || endDate === void 0) { throw new TypeError("startDate/endDate cannot be undefined"); } var x = ToNumber(startDate); var y = ToNumber(endDate); return FormatDateTimeRangeToParts(dtf, x, y, { getInternalSlots: getInternalSlots, localeData: DateTimeFormat.localeData, tzData: DateTimeFormat.tzData, getDefaultTimeZone: DateTimeFormat.getDefaultTimeZone }); } }); defineProperty(DateTimeFormat.prototype, "formatRange", { value: function formatRange(startDate, endDate) { var dtf = this; if (typeof dtf !== "object") { throw new TypeError(); } if (startDate === void 0 || endDate === void 0) { throw new TypeError("startDate/endDate cannot be undefined"); } var x = ToNumber(startDate); var y = ToNumber(endDate); return FormatDateTimeRange(dtf, x, y, { getInternalSlots: getInternalSlots, localeData: DateTimeFormat.localeData, tzData: DateTimeFormat.tzData, getDefaultTimeZone: DateTimeFormat.getDefaultTimeZone }); } }); var DEFAULT_TIMEZONE = "UTC"; DateTimeFormat.__setDefaultTimeZone = function(timeZone) { if (timeZone !== void 0) { timeZone = String(timeZone); if (!IsValidTimeZoneName(timeZone, { tzData: DateTimeFormat.tzData, uppercaseLinks: UPPERCASED_LINKS })) { throw new RangeError("Invalid timeZoneName"); } timeZone = CanonicalizeTimeZoneName(timeZone, { tzData: DateTimeFormat.tzData, uppercaseLinks: UPPERCASED_LINKS }); } else { timeZone = DEFAULT_TIMEZONE; } DateTimeFormat.__defaultTimeZone = timeZone; }; DateTimeFormat.relevantExtensionKeys = ["nu", "ca", "hc"]; DateTimeFormat.__defaultTimeZone = DEFAULT_TIMEZONE; DateTimeFormat.getDefaultTimeZone = function() { return DateTimeFormat.__defaultTimeZone; }; DateTimeFormat.__addLocaleData = function __addLocaleData() { var data = []; for (var _i = 0; _i < arguments.length; _i++) { data[_i] = arguments[_i]; } var _loop_1 = function(d2, locale2) { var dateFormat = d2.dateFormat, timeFormat = d2.timeFormat, dateTimeFormat = d2.dateTimeFormat, formats = d2.formats, intervalFormats = d2.intervalFormats, rawData = __rest(d2, ["dateFormat", "timeFormat", "dateTimeFormat", "formats", "intervalFormats"]); var processedData = __assign(__assign({}, rawData), {dateFormat: { full: parseDateTimeSkeleton(dateFormat.full), long: parseDateTimeSkeleton(dateFormat.long), medium: parseDateTimeSkeleton(dateFormat.medium), short: parseDateTimeSkeleton(dateFormat.short) }, timeFormat: { full: parseDateTimeSkeleton(timeFormat.full), long: parseDateTimeSkeleton(timeFormat.long), medium: parseDateTimeSkeleton(timeFormat.medium), short: parseDateTimeSkeleton(timeFormat.short) }, dateTimeFormat: { full: parseDateTimeSkeleton(dateTimeFormat.full).pattern, long: parseDateTimeSkeleton(dateTimeFormat.long).pattern, medium: parseDateTimeSkeleton(dateTimeFormat.medium).pattern, short: parseDateTimeSkeleton(dateTimeFormat.short).pattern }, formats: {}}); var _loop_2 = function(calendar2) { processedData.formats[calendar2] = Object.keys(formats[calendar2]).map(function(skeleton) { return parseDateTimeSkeleton(skeleton, formats[calendar2][skeleton], intervalFormats[skeleton], intervalFormats.intervalFormatFallback); }); }; for (var calendar in formats) { _loop_2(calendar); } var minimizedLocale = new Intl.Locale(locale2).minimize().toString(); DateTimeFormat.localeData[locale2] = DateTimeFormat.localeData[minimizedLocale] = processedData; DateTimeFormat.availableLocales.add(locale2); DateTimeFormat.availableLocales.add(minimizedLocale); if (!DateTimeFormat.__defaultLocale) { DateTimeFormat.__defaultLocale = minimizedLocale; } }; for (var _a = 0, data_1 = data; _a < data_1.length; _a++) { var _b = data_1[_a], d = _b.data, locale = _b.locale; _loop_1(d, locale); } }; Object.defineProperty(DateTimeFormat.prototype, "format", formatDescriptor); DateTimeFormat.__defaultLocale = ""; DateTimeFormat.localeData = {}; DateTimeFormat.availableLocales = new Set(); DateTimeFormat.getDefaultLocale = function() { return DateTimeFormat.__defaultLocale; }; DateTimeFormat.polyfilled = true; DateTimeFormat.tzData = {}; DateTimeFormat.__addTZData = function(d) { DateTimeFormat.tzData = unpack(d); }; try { if (typeof Symbol !== "undefined") { Object.defineProperty(DateTimeFormat.prototype, Symbol.toStringTag, { value: "Intl.DateTimeFormat", writable: false, enumerable: false, configurable: true }); } Object.defineProperty(DateTimeFormat.prototype.constructor, "length", { value: 1, writable: false, enumerable: false, configurable: true }); } catch (e) { } // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/should-polyfill.js function supportsDateStyle() { try { return !!new Intl.DateTimeFormat(void 0, { dateStyle: "short" }).resolvedOptions().dateStyle; } catch (e) { return false; } } function hasChromeLt71Bug() { try { return new Intl.DateTimeFormat("en", { hourCycle: "h11", hour: "numeric" }).formatToParts(0)[2].type !== "dayPeriod"; } catch (e) { return false; } } function hasUnthrownDateTimeStyleBug() { try { return !!new Intl.DateTimeFormat("en", { dateStyle: "short", hour: "numeric" }).format(new Date(0)); } catch (e) { return false; } } function shouldPolyfill() { return !("DateTimeFormat" in Intl) || !("formatToParts" in Intl.DateTimeFormat.prototype) || !("formatRange" in Intl.DateTimeFormat.prototype) || hasChromeLt71Bug() || hasUnthrownDateTimeStyleBug() || !supportsDateStyle(); } // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/src/to_locale_string.js function toLocaleString(x, locales, options) { var dtf = new DateTimeFormat(locales, options); return dtf.format(x); } function toLocaleDateString(x, locales, options) { var dtf = new DateTimeFormat(locales, ToDateTimeOptions(options, "date", "date")); return dtf.format(x); } function toLocaleTimeString(x, locales, options) { var dtf = new DateTimeFormat(locales, ToDateTimeOptions(options, "time", "time")); return dtf.format(x); } // bazel-out/darwin-fastbuild/bin/packages/intl-datetimeformat/lib/polyfill.js if (shouldPolyfill()) { defineProperty(Intl, "DateTimeFormat", {value: DateTimeFormat}); defineProperty(Date.prototype, "toLocaleString", { value: function toLocaleString2(locales, options) { return toLocaleString(this, locales, options); } }); defineProperty(Date.prototype, "toLocaleDateString", { value: function toLocaleDateString2(locales, options) { return toLocaleDateString(this, locales, options); } }); defineProperty(Date.prototype, "toLocaleTimeString", { value: function toLocaleTimeString2(locales, options) { return toLocaleTimeString(this, locales, options); } }); } })(); /*! ***************************************************************************** Copyright (c) Microsoft Corporation. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ***************************************************************************** */ } if (!((function(t){if("Intl"in t&&"DateTimeFormat"in t.Intl&&"format"in t.Intl.DateTimeFormat.prototype)try{return"Africa/Dakar"===new Intl.DateTimeFormat("en",{timeZone:"Africa/Dakar",timeZoneName:"short"}).resolvedOptions().timeZone}catch(t){return!1}return!1})(self) )) { // Intl.DateTimeFormat.~timeZone.all // @generated // prettier-ignore if ('DateTimeFormat' in Intl && Intl.DateTimeFormat.__addTZData) { Intl.DateTimeFormat.__addTZData({"zones":["Africa/Accra|,0,0,0|-s9p1ak,1,1,0|-q5eqo1,1,1,0|-q5eqo0,2,2,1|-q3g8pd,2,2,1|-q3g8pc,1,1,0|-pqwd41,1,1,0|-pqwd40,2,2,1|-pkmgpd,2,2,1|-pkmgpc,1,1,0|-p84fs1,1,1,0|-p84fs0,2,2,1|-p1ujdd,2,2,1|-p1ujdc,1,1,0|-opcig1,1,1,0|-opcig0,2,2,1|-oj2m1d,2,2,1|-oj2m1c,1,1,0|-o6kl41,1,1,0|-o6kl40,2,2,1|-o0aopd,2,2,1|-o0aopc,1,1,0|-nnqt41,1,1,0|-nnqt40,2,2,1|-nhgwpd,2,2,1|-nhgwpc,1,1,0|-n4yvs1,1,1,0|-n4yvs0,2,2,1|-myozdd,2,2,1|-myozdc,1,1,0|-mm6yg1,1,1,0|-mm6yg0,2,2,1|-mfx21d,2,2,1|-mfx21c,1,1,0|-m3f141,1,1,0|-m3f140,2,2,1|-lx54pd,2,2,1|-lx54pc,1,1,0|-lkl941,1,1,0|-lkl940,2,2,1|-lebcpd,2,2,1|-lebcpc,1,1,0|-l1tbs1,1,1,0|-l1tbs0,2,2,1|-kvjfdd,2,2,1|-kvjfdc,1,1,0|-kj1eg1,1,1,0|-kj1eg0,2,2,1|-kcri1d,2,2,1|-kcri1c,1,1,0|-k09h41,1,1,0|-k09h40,2,2,1|-jtzkpd,2,2,1|-jtzkpc,1,1,0|-jhfp41,1,1,0|-jhfp40,2,2,1|-jb5spd,2,2,1|-jb5spc,1,1,0|-iynrs1,1,1,0|-iynrs0,2,2,1|-isdvdd,2,2,1|-isdvdc,1,1,0|-ifvug1,1,1,0|-ifvug0,2,2,1|-i9ly1d,2,2,1|-i9ly1c,1,1,0|-hx3x41,1,1,0|-hx3x40,2,2,1|-hqu0pd,2,2,1|-hqu0pc,1,1,0|-hea541,1,1,0|-hea540,2,2,1|-h808pd,2,2,1|-h808pc,1,1,0|-gvi7s1,1,1,0|-gvi7s0,2,2,1|-gp8bdd,2,2,1|-gp8bdc,1,1,0|-gcqag1,1,1,0|-gcqag0,2,2,1|-g6ge1d,2,2,1|-g6ge1c,1,1,0|-ftyd41,1,1,0|-ftyd40,2,2,1|-fnogpd,2,2,1|-fnogpc,1,1,0|-fhgd41,1,1,0|-fhgd40,2,2,1|-f4uopd,2,2,1|-f4uopc,1,1,0|-eyofs1,1,1,0|-eyofs0,2,2,1|-em2rdd,2,2,1|-em2rdc,1,1,0|-ek4io1,1,1,0|-ek4io0,3,3,0|-cio421,3,3,0|-cio420,1,1,0|-a39mg1,1,1,0|-a39mg0,3,3,1|-9wzqi1,3,3,1|-9wzqi0,1,1,0|-9khp41,1,1,0|-9khp40,3,3,1|-9e7t61,3,3,1|-9e7t60,1,1,0|-91nx41,1,1,0|-91nx40,3,3,1|-8ve161,3,3,1|-8ve160,1,1,0|-8ivzs1,1,1,0|-8ivzs0,3,3,1|-8cm3u1,3,3,1|-8cm3u0,1,1,0|-8042g1,1,1,0|-8042g0,3,3,1|-7tu6i1,3,3,1|-7tu6i0,1,1,0|-7hc541,1,1,0|-7hc540,3,3,1|-7b2961,3,3,1|-7b2960,1,1,0","Africa/Addis_Ababa|,0,4,0|-w6p5hg,4,5,0|-lnsey1,4,5,0|-lnsey0,5,6,0|-kvcdo1,5,6,0|-kvcdo0,4,5,0|-h80ka1,4,5,0|-h80ka0,6,7,0|-eb6ib1,6,7,0|-eb6ib0,5,6,0","Africa/Algiers|,0,8,0|-154gb8c,7,9,0|-uozn3m,7,9,0|-uozn3l,8,1,0|-ry2lg1,8,1,0|-ry2lg0,9,10,1|-rsgqs1,9,10,1|-rsgqs0,8,1,0|-rjiis1,8,1,0|-rjiis0,9,10,1|-r9dpg1,9,10,1|-r9dpg0,8,1,0|-r1idg1,8,1,0|-r1idg0,9,10,1|-qqnms1,9,10,1|-qqnms0,8,1,0|-qj59g1,8,1,0|-qj59g0,9,10,1|-q7xk41,9,10,1|-q7xk40,8,1,0|-q15441,8,1,0|-q15440,9,10,1|-po6g41,9,10,1|-po6g40,8,1,0|-pgvhg1,8,1,0|-pgvhg0,9,10,1|-pbs5g1,9,10,1|-pbs5g0,8,1,0|-fte841,8,1,0|-fte840,9,10,1|-fpw801,9,10,1|-fpw800,8,1,0|-fkul41,8,1,0|-fkul40,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d62o01,11,11,1|-d62o00,10,10,0|-cx0nw1,10,10,0|-cx0nw0,11,11,1|-cofk41,11,11,1|-cofk40,10,10,0|-c4kqs1,10,10,0|-c4kqs0,8,1,0|-79mio1,8,1,0|-79mio0,10,10,0|-3i8is1,10,10,0|-3i8is0,8,1,0|oot7z,8,1,0|oot80,9,10,1|wlzvz,9,10,1|wlzw0,8,1,0|3tynzz,8,1,0|3tyo00,9,10,1|42lp7z,9,10,1|42lp80,10,10,0|4aiynz,10,10,0|4aiyo0,11,11,1|4jw2rz,11,11,1|4jw2s0,10,10,0|54et7z,10,10,0|54et80,8,1,0|5drxbz,8,1,0|5drxc0,9,10,1|5ni03z,9,10,1|5ni040,8,1,0|5wuynz,8,1,0|5wuyo0,10,10,0","Africa/Asmara|,0,4,0|-w6p5hg,4,5,0|-lnsey1,4,5,0|-lnsey0,5,6,0|-kvcdo1,5,6,0|-kvcdo0,4,5,0|-h80ka1,4,5,0|-h80ka0,6,7,0|-eb6ib1,6,7,0|-eb6ib0,5,6,0","Africa/Bamako|,0,12,0|-u9rgl4,1,1,0","Africa/Bangui|,0,13,0|-xnxnan,1,1,0|-w3k001,1,1,0|-w3k000,0,13,0|-t85smo,0,13,0|-t85smn,3,3,0|-q9qc21,3,3,0|-q9qc20,12,10,0","Africa/Banjul|,0,12,0|-u9rgl4,1,1,0","Africa/Bissau|,0,14,0|-u9rek0,13,15,0|2lxk3z,13,15,0|2lxk40,1,1,0","Africa/Blantyre|,0,16,0|-yvtfd8,14,11,0","Africa/Brazzaville|,0,13,0|-xnxnan,1,1,0|-w3k001,1,1,0|-w3k000,0,13,0|-t85smo,0,13,0|-t85smn,3,3,0|-q9qc21,3,3,0|-q9qc20,12,10,0","Africa/Bujumbura|,0,16,0|-yvtfd8,14,11,0","Africa/Cairo|,0,17,0|-1054wgl,15,11,0|-fdls81,15,11,0|-fdls80,16,6,1|-f9lf01,16,6,1|-f9lf00,15,11,0|-ezidk1,15,11,0|-ezidk0,16,6,1|-erl9o1,16,6,1|-erl9o0,15,11,0|-ehgdk1,15,11,0|-ehgdk0,16,6,1|-e6pf01,16,6,1|-e6pf00,15,11,0|-dyog81,15,11,0|-dyog80,16,6,1|-dno8c1,16,6,1|-dno8c0,15,11,0|-dfuo81,15,11,0|-dfuo80,16,6,1|-d4ugc1,16,6,1|-d4ugc0,15,11,0|-cwayw1,15,11,0|-cwayw0,16,6,1|-cm2j01,16,6,1|-cm2j00,15,11,0|-6lluw1,15,11,0|-6lluw0,16,6,1|-6e79o1,16,6,1|-6e79o0,15,11,0|-63alk1,15,11,0|-63alk0,16,6,1|-5vfcc1,16,6,1|-5vfcc0,15,11,0|-5kilg1,15,11,0|-5kilg0,16,6,1|-5cp1c1,16,6,1|-5cp1c0,15,11,0|-51otg1,15,11,0|-51otg0,16,6,1|-4tv9c1,16,6,1|-4tv9c0,15,11,0|-4iww41,15,11,0|-4iww40,16,6,1|-4b3c01,16,6,1|-4b3c00,15,11,0|-404ys1,15,11,0|-404ys0,16,6,1|-3sbeo1,16,6,1|-3sbeo0,15,11,0|-3hd1g1,15,11,0|-3hd1g0,16,6,1|-39jhc1,16,6,1|-39jhc0,15,11,0|-2yj9g1,15,11,0|-2yj9g0,16,6,1|-2qppc1,16,6,1|-2qppc0,15,11,0|-2frc41,15,11,0|-2frc40,16,6,1|-27xs01,16,6,1|-27xs00,15,11,0|-1wzes1,15,11,0|-1wzes0,16,6,1|-1p4001,16,6,1|-1p4000,15,11,0|-1e7hg1,15,11,0|-1e7hg0,16,6,1|-16c2o1,16,6,1|-16c2o0,15,11,0|-vdpg1,15,11,0|-vdpg0,16,6,1|-niao1,16,6,1|-niao0,15,11,0|-cls41,15,11,0|-cls40,16,6,1|-4qdc1,16,6,1|-4qdc0,15,11,0|6657z,15,11,0|66580,16,6,1|e1jzz,16,6,1|e1k00,15,11,0|oy2jz,15,11,0|oy2k0,16,6,1|wthbz,16,6,1|wthc0,15,11,0|17rujz,15,11,0|17ruk0,16,6,1|1fn9bz,16,6,1|1fn9c0,15,11,0|1qjrvz,15,11,0|1qjrw0,16,6,1|1yf6nz,16,6,1|1yf6o0,15,11,0|29bp7z,15,11,0|29bp80,16,6,1|2h73zz,16,6,1|2h7400,15,11,0|2s3mjz,15,11,0|2s3mk0,16,6,1|2zz1bz,16,6,1|2zz1c0,15,11,0|3axejz,15,11,0|3axek0,16,6,1|3istbz,16,6,1|3istc0,15,11,0|3tpbvz,15,11,0|3tpbw0,16,6,1|41kqnz,16,6,1|41kqo0,15,11,0|4ch97z,15,11,0|4ch980,16,6,1|4kcnzz,16,6,1|4kco00,15,11,0|4v96jz,15,11,0|4v96k0,16,6,1|534lbz,16,6,1|534lc0,15,11,0|5e2yjz,15,11,0|5e2yk0,16,6,1|5lydbz,16,6,1|5lydc0,15,11,0|5wuvvz,15,11,0|5wuvw0,16,6,1|64qanz,16,6,1|64qao0,15,11,0|6k07vz,15,11,0|6k07w0,16,6,1|6ni7zz,16,6,1|6ni800,15,11,0|7242jz,15,11,0|7242k0,16,6,1|76a5bz,16,6,1|76a5c0,15,11,0|7h8ijz,15,11,0|7h8ik0,16,6,1|7p3xbz,16,6,1|7p3xc0,15,11,0|800fvz,15,11,0|800fw0,16,6,1|87vunz,16,6,1|87vuo0,15,11,0|8isd7z,15,11,0|8isd80,16,6,1|8qnrzz,16,6,1|8qns00,15,11,0|91kajz,15,11,0|91kak0,16,6,1|99fpbz,16,6,1|99fpc0,15,11,0|9ke2jz,15,11,0|9ke2k0,16,6,1|9s9hbz,16,6,1|9s9hc0,15,11,0|a3f97z,15,11,0|a3f980,16,6,1|ab1enz,16,6,1|ab1eo0,15,11,0|alxx7z,15,11,0|alxx80,16,6,1|attbzz,16,6,1|attc00,15,11,0|b4pujz,15,11,0|b4puk0,16,6,1|bcl9bz,16,6,1|bcl9c0,15,11,0|bnjmjz,15,11,0|bnjmk0,16,6,1|bvf1bz,16,6,1|bvf1c0,15,11,0|c6bjvz,15,11,0|c6bjw0,16,6,1|ce6ynz,16,6,1|ce6yo0,15,11,0|cp3h7z,15,11,0|cp3h80,16,6,1|cwyvzz,16,6,1|cwyw00,15,11,0|d7prrz,15,11,0|d7prs0,16,6,1|dfmvnz,16,6,1|dfmvo0,15,11,0|dqfufz,15,11,0|dqfug0,16,6,1|dycybz,16,6,1|dycyc0,15,11,0|e95x3z,15,11,0|e95x40,16,6,1|eh30zz,16,6,1|eh3100,15,11,0|ervzrz,15,11,0|ervzs0,16,6,1|ezt3nz,16,6,1|ezt3o0,15,11,0|faz13z,15,11,0|faz140,16,6,1|fiw4zz,16,6,1|fiw500,15,11,0|ftp3rz,15,11,0|ftp3s0,16,6,1|g1m7nz,16,6,1|g1m7o0,15,11,0|gcf6fz,15,11,0|gcf6g0,16,6,1|gkcabz,16,6,1|gkcac0,15,11,0|gv593z,15,11,0|gv5940,16,6,1|h32czz,16,6,1|h32d00,15,11,0|hdvbrz,15,11,0|hdvbs0,16,6,1|hlsfnz,16,6,1|hlsfo0,15,11,0|hwyd3z,15,11,0|hwyd40,16,6,1|i4vgzz,16,6,1|i4vh00,15,11,0|ifofrz,15,11,0|ifofs0,16,6,1|inljnz,16,6,1|inljo0,15,11,0|iyeifz,15,11,0|iyeig0,16,6,1|j5ynnz,16,6,1|j5yno0,15,11,0|jh4l3z,15,11,0|jh4l40,16,6,1|jnyszz,16,6,1|jnyt00,15,11,0|jzunrz,15,11,0|jzuns0,16,6,1|k6bwzz,16,6,1|k6bx00,15,11,0|kikqfz,15,11,0|kikqg0,16,6,1|kop0zz,16,6,1|kop100,15,11,0|l1nrrz,15,11,0|l1nrs0,16,6,1|l6yfnz,16,6,1|l6yfo0,15,11,0|l8i2fz,15,11,0|l8i2g0,16,6,1|l9kvnz,16,6,1|l9kvo0,15,11,0|n5myfz,15,11,0|n5myg0,16,6,1|n7snnz,16,6,1|n7sno0,15,11,0|n9ljrz,15,11,0|n9ljs0,16,6,1|nch6bz,16,6,1|nch6c0,15,11,0","Africa/Casablanca|,0,18,0|-tblt9g,17,1,0|-fte5c1,17,1,0|-fte5c0,18,10,1|-fpwas1,18,10,1|-fpwas0,17,1,0|-fkuqo1,17,1,0|-fkuqo0,18,10,1|-cl6w41,18,10,1|-cl6w40,17,1,0|-a7hmo1,17,1,0|-a7hmo0,18,10,1|-a0ag41,18,10,1|-a0ag40,17,1,0|-1chdc1,17,1,0|-1chdc0,18,10,1|-16c5g1,18,10,1|-16c5g0,17,1,0|2c3rzz,17,1,0|2c3s00,18,10,1|2fnh7z,18,10,1|2fnh80,17,1,0|3axhbz,17,1,0|3axhc0,18,10,1|3fnrvz,18,10,1|3fnrw0,17,1,0|3tpenz,17,1,0|3tpeo0,18,10,1|41f3vz,18,10,1|41f3w0,17,1,0|4e2qnz,17,1,0|4e2qo0,18,10,1|4hd6jz,18,10,1|4hd6k0,17,1,0|7evenz,17,1,0|7eveo0,18,10,0|8cm57z,18,10,0|8cm580,17,1,0|k1rbzz,17,1,0|k1rc00,18,10,1|k6hmjz,18,10,1|k6hmk0,17,1,0|kkj9bz,17,1,0|kkj9c0,18,10,1|kop6jz,18,10,1|kop6k0,17,1,0|l1rmnz,17,1,0|l1rmo0,18,10,1|l6t17z,18,10,1|l6t180,17,1,0|lj1unz,17,1,0|lj1uo0,18,10,1|lp657z,18,10,1|lp6580,17,1,0|m37xjz,17,1,0|m37xk0,18,10,1|m7fs7z,18,10,1|m7fs80,17,1,0|m916vz,17,1,0|m916w0,18,10,1|mb547z,18,10,1|mb5480,17,1,0|mly07z,17,1,0|mly080,18,10,1|mpjmvz,18,10,1|mpjmw0,17,1,0|mraljz,17,1,0|mralk0,18,10,1|mvb1jz,18,10,1|mvb1k0,17,1,0|n3887z,17,1,0|n38880,18,10,1|n7uw7z,18,10,1|n7uw80,17,1,0|n9npjz,17,1,0|n9npk0,18,10,1|ne147z,18,10,1|ne1480,17,1,0|nlyavz,17,1,0|nlyaw0,18,10,1|npww7z,18,10,1|npww80,17,1,0|nrppjz,17,1,0|nrppk0,18,10,1|nwr6vz,18,10,1|nwr6w0,17,1,0|o4odjz,17,1,0|o4odk0,18,10,1|o8a07z,18,10,1|o8a080,17,1,0|oa2tjz,17,1,0|oa2tk0,18,10,1|ofu87z,18,10,1|ofu880,17,1,0|oneg7z,17,1,0|oneg80,18,10,1|oqa5jz,18,10,1|oqa5k0,17,1,0|osfxjz,17,1,0|osfxk0,18,10,1|oykavz,18,10,1|oykaw0,17,1,0|p64ivz,17,1,0|p64iw0,18,10,1|p8n9jz,18,10,1|p8n9k0,17,1,0|pag2vz,17,1,0|pag2w0,18,10,1|phadjz,18,10,1|phadk0,18,10,0|pr0djz,18,10,0|pr0dk0,17,1,1|pst6vz,17,1,1|pst6w0,18,10,0|q90ivz,18,10,0|q90iw0,17,1,1|qb6avz,17,1,1|qb6aw0,18,10,0|qrdmvz,18,10,0|qrdmw0,17,1,1|qt6g7z,17,1,1|qt6g80,18,10,0|r9ds7z,18,10,0|r9ds80,17,1,1|rbjk7z,17,1,1|rbjk80,18,10,0|rrqw7z,18,10,0|rrqw80,17,1,1|rtwo7z,17,1,1|rtwo80,18,10,0|sa407z,18,10,0|sa4080,17,1,1|sbwtjz,17,1,1|sbwtk0,18,10,0|ss45jz,18,10,0|ss45k0,17,1,1|su9xjz,17,1,1|su9xk0,18,10,0|tah9jz,18,10,0|tah9k0,17,1,1|tca2vz,17,1,1|tca2w0,18,10,0|tsudjz,18,10,0|tsudk0,17,1,1|tun6vz,17,1,1|tun6w0,18,10,0|uauivz,18,10,0|uauiw0,17,1,1|ud0avz,17,1,1|ud0aw0,18,10,0|ut7mvz,18,10,0|ut7mw0,17,1,1|uv0g7z,17,1,1|uv0g80,18,10,0|vb7s7z,18,10,0|vb7s80,17,1,1|vddk7z,17,1,1|vddk80,18,10,0|vtkw7z,18,10,0|vtkw80,17,1,1|vvqo7z,17,1,1|vvqo80,18,10,0|wby07z,18,10,0|wby080,17,1,1|wdqtjz,17,1,1|wdqtk0,18,10,0|wty5jz,18,10,0|wty5k0,17,1,1|ww3xjz,17,1,1|ww3xk0,18,10,0|xcb9jz,18,10,0|xcb9k0,17,1,1|xe42vz,17,1,1|xe42w0,18,10,0|xubevz,18,10,0|xubew0,17,1,1|xwh6vz,17,1,1|xwh6w0,18,10,0|ycoivz,18,10,0|ycoiw0,17,1,1|yeuavz,17,1,1|yeuaw0,18,10,0|yv1mvz,18,10,0|yv1mw0,17,1,1|ywug7z,17,1,1|ywug80,18,10,0|zd1s7z,18,10,0|zd1s80,17,1,1|zf7k7z,17,1,1|zf7k80,18,10,0","Africa/Ceuta|,0,19,0|-100edc0,8,1,0|-qyiys1,8,1,0|-qyiys0,9,10,1|-qqluw1,9,10,1|-qqluw0,8,1,0|-nusqs1,8,1,0|-nusqs0,9,10,1|-nm0001,9,10,1|-nm0000,8,1,0|-mt71g1,8,1,0|-mt71g0,9,10,1|-mkjuo1,9,10,1|-mkjuo0,8,1,0|-matxg1,8,1,0|-matxg0,9,10,1|-m1ts01,9,10,1|-m1ts00,8,1,0|-lrqtc1,8,1,0|-lrqtc0,9,10,1|-liqqo1,9,10,1|-liqqo0,8,1,0|-1chdc1,8,1,0|-1chdc0,9,10,1|-16c5g1,9,10,1|-16c5g0,8,1,0|2c3rzz,8,1,0|2c3s00,9,10,1|2fnh7z,9,10,1|2fnh80,8,1,0|3axhbz,8,1,0|3axhc0,9,10,1|3fnrvz,9,10,1|3fnrw0,8,1,0|3tpenz,8,1,0|3tpeo0,9,10,1|41f3vz,9,10,1|41f3w0,8,1,0|4e2qnz,8,1,0|4e2qo0,9,10,1|4hd6jz,9,10,1|4hd6k0,8,1,0|7evenz,8,1,0|7eveo0,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Africa/Conakry|,0,12,0|-u9rgl4,1,1,0","Africa/Dakar|,0,12,0|-u9rgl4,1,1,0","Africa/Dar_es_Salaam|,0,4,0|-w6p5hg,4,5,0|-lnsey1,4,5,0|-lnsey0,5,6,0|-kvcdo1,5,6,0|-kvcdo0,4,5,0|-h80ka1,4,5,0|-h80ka0,6,7,0|-eb6ib1,6,7,0|-eb6ib0,5,6,0","Africa/Djibouti|,0,4,0|-w6p5hg,4,5,0|-lnsey1,4,5,0|-lnsey0,5,6,0|-kvcdo1,5,6,0|-kvcdo0,4,5,0|-h80ka1,4,5,0|-h80ka0,6,7,0|-eb6ib1,6,7,0|-eb6ib0,5,6,0","Africa/Douala|,0,13,0|-xnxnan,1,1,0|-w3k001,1,1,0|-w3k000,0,13,0|-t85smo,0,13,0|-t85smn,3,3,0|-q9qc21,3,3,0|-q9qc20,12,10,0","Africa/El_Aaiun|,0,20,0|-isdxk0,13,15,0|3a22rz,13,15,0|3a22s0,17,1,0|3axhbz,17,1,0|3axhc0,18,10,1|3fnrvz,18,10,1|3fnrw0,17,1,0|3tpenz,17,1,0|3tpeo0,18,10,1|41f3vz,18,10,1|41f3w0,17,1,0|4e2qnz,17,1,0|4e2qo0,18,10,1|4hd6jz,18,10,1|4hd6k0,17,1,0|k1rbzz,17,1,0|k1rc00,18,10,1|k6hmjz,18,10,1|k6hmk0,17,1,0|kkj9bz,17,1,0|kkj9c0,18,10,1|kop6jz,18,10,1|kop6k0,17,1,0|l1rmnz,17,1,0|l1rmo0,18,10,1|l6t17z,18,10,1|l6t180,17,1,0|lj1unz,17,1,0|lj1uo0,18,10,1|lp657z,18,10,1|lp6580,17,1,0|m37xjz,17,1,0|m37xk0,18,10,1|m7fs7z,18,10,1|m7fs80,17,1,0|m916vz,17,1,0|m916w0,18,10,1|mb547z,18,10,1|mb5480,17,1,0|mly07z,17,1,0|mly080,18,10,1|mpjmvz,18,10,1|mpjmw0,17,1,0|mraljz,17,1,0|mralk0,18,10,1|mvb1jz,18,10,1|mvb1k0,17,1,0|n3887z,17,1,0|n38880,18,10,1|n7uw7z,18,10,1|n7uw80,17,1,0|n9npjz,17,1,0|n9npk0,18,10,1|ne147z,18,10,1|ne1480,17,1,0|nlyavz,17,1,0|nlyaw0,18,10,1|npww7z,18,10,1|npww80,17,1,0|nrppjz,17,1,0|nrppk0,18,10,1|nwr6vz,18,10,1|nwr6w0,17,1,0|o4odjz,17,1,0|o4odk0,18,10,1|o8a07z,18,10,1|o8a080,17,1,0|oa2tjz,17,1,0|oa2tk0,18,10,1|ofu87z,18,10,1|ofu880,17,1,0|oneg7z,17,1,0|oneg80,18,10,1|oqa5jz,18,10,1|oqa5k0,17,1,0|osfxjz,17,1,0|osfxk0,18,10,1|oykavz,18,10,1|oykaw0,17,1,0|p64ivz,17,1,0|p64iw0,18,10,1|p8n9jz,18,10,1|p8n9k0,17,1,0|pag2vz,17,1,0|pag2w0,18,10,1|phadjz,18,10,1|phadk0,18,10,0|pr0djz,18,10,0|pr0dk0,17,1,1|pst6vz,17,1,1|pst6w0,18,10,0|q90ivz,18,10,0|q90iw0,17,1,1|qb6avz,17,1,1|qb6aw0,18,10,0|qrdmvz,18,10,0|qrdmw0,17,1,1|qt6g7z,17,1,1|qt6g80,18,10,0|r9ds7z,18,10,0|r9ds80,17,1,1|rbjk7z,17,1,1|rbjk80,18,10,0|rrqw7z,18,10,0|rrqw80,17,1,1|rtwo7z,17,1,1|rtwo80,18,10,0|sa407z,18,10,0|sa4080,17,1,1|sbwtjz,17,1,1|sbwtk0,18,10,0|ss45jz,18,10,0|ss45k0,17,1,1|su9xjz,17,1,1|su9xk0,18,10,0|tah9jz,18,10,0|tah9k0,17,1,1|tca2vz,17,1,1|tca2w0,18,10,0|tsudjz,18,10,0|tsudk0,17,1,1|tun6vz,17,1,1|tun6w0,18,10,0|uauivz,18,10,0|uauiw0,17,1,1|ud0avz,17,1,1|ud0aw0,18,10,0|ut7mvz,18,10,0|ut7mw0,17,1,1|uv0g7z,17,1,1|uv0g80,18,10,0|vb7s7z,18,10,0|vb7s80,17,1,1|vddk7z,17,1,1|vddk80,18,10,0|vtkw7z,18,10,0|vtkw80,17,1,1|vvqo7z,17,1,1|vvqo80,18,10,0|wby07z,18,10,0|wby080,17,1,1|wdqtjz,17,1,1|wdqtk0,18,10,0|wty5jz,18,10,0|wty5k0,17,1,1|ww3xjz,17,1,1|ww3xk0,18,10,0|xcb9jz,18,10,0|xcb9k0,17,1,1|xe42vz,17,1,1|xe42w0,18,10,0|xubevz,18,10,0|xubew0,17,1,1|xwh6vz,17,1,1|xwh6w0,18,10,0|ycoivz,18,10,0|ycoiw0,17,1,1|yeuavz,17,1,1|yeuaw0,18,10,0|yv1mvz,18,10,0|yv1mw0,17,1,1|ywug7z,17,1,1|ywug80,18,10,0|zd1s7z,18,10,0|zd1s80,17,1,1|zf7k7z,17,1,1|zf7k80,18,10,0","Africa/Freetown|,0,12,0|-u9rgl4,1,1,0","Africa/Gaborone|,0,16,0|-yvtfd8,14,11,0","Africa/Harare|,0,16,0|-yvtfd8,14,11,0","Africa/Johannesburg|,0,21,0|-14nj6io,19,22,0|-yvtdi1,19,22,0|-yvtdi0,19,11,0|-e8lpc1,19,11,0|-e8lpc0,19,6,1|-dz8qs1,19,6,1|-dz8qs0,19,11,0|-dpvmo1,19,11,0|-dpvmo0,19,6,1|-dgio41,19,6,1|-dgio40,19,11,0","Africa/Juba|,0,23,0|-kcrsis,14,11,0|662fz,14,11,0|662g0,20,6,1|er8zz,20,6,1|er900,14,11,0|ow53z,14,11,0|ow540,20,6,1|xj6bz,20,6,1|xj6c0,14,11,0|17px3z,14,11,0|17px40,20,6,1|1gcybz,20,6,1|1gcyc0,14,11,0|1qfzrz,14,11,0|1qfzs0,20,6,1|1z4vnz,20,6,1|1z4vo0,14,11,0|2962fz,14,11,0|2962g0,20,6,1|2hwszz,20,6,1|2hwt00,14,11,0|2rw53z,14,11,0|2rw540,20,6,1|30oqbz,20,6,1|30oqc0,14,11,0|3am7rz,14,11,0|3am7s0,20,6,1|3jiibz,20,6,1|3jiic0,14,11,0|3tcafz,14,11,0|3tcag0,20,6,1|42afnz,20,6,1|42afo0,14,11,0|4cfbrz,14,11,0|4cfbs0,20,6,1|4l2czz,20,6,1|4l2d00,14,11,0|4v5efz,14,11,0|4v5eg0,20,6,1|53uabz,20,6,1|53uac0,14,11,0|5dvh3z,14,11,0|5dvh40,20,6,1|5mo2bz,20,6,1|5mo2c0,14,11,0|5wljrz,14,11,0|5wljs0,20,6,1|65fznz,20,6,1|65fzo0,14,11,0|6fbmfz,14,11,0|6fbmg0,20,6,1|6o7wzz,20,6,1|6o7x00,14,11,0|6y1p3z,14,11,0|6y1p40,20,6,1|76zubz,20,6,1|76zuc0,14,11,0|7h4qfz,14,11,0|7h4qg0,20,6,1|7ptmbz,20,6,1|7ptmc0,14,11,0|7zut3z,14,11,0|7zut40,20,6,1|88ljnz,20,6,1|88ljo0,14,11,0|fodfrz,14,11,0|fodfs0,5,6,0|qntgzz,5,6,0|qnth00,14,11,0","Africa/Kampala|,0,4,0|-w6p5hg,4,5,0|-lnsey1,4,5,0|-lnsey0,5,6,0|-kvcdo1,5,6,0|-kvcdo0,4,5,0|-h80ka1,4,5,0|-h80ka0,6,7,0|-eb6ib1,6,7,0|-eb6ib0,5,6,0","Africa/Khartoum|,0,24,0|-kcrsow,14,11,0|662fz,14,11,0|662g0,20,6,1|er8zz,20,6,1|er900,14,11,0|ow53z,14,11,0|ow540,20,6,1|xj6bz,20,6,1|xj6c0,14,11,0|17px3z,14,11,0|17px40,20,6,1|1gcybz,20,6,1|1gcyc0,14,11,0|1qfzrz,14,11,0|1qfzs0,20,6,1|1z4vnz,20,6,1|1z4vo0,14,11,0|2962fz,14,11,0|2962g0,20,6,1|2hwszz,20,6,1|2hwt00,14,11,0|2rw53z,14,11,0|2rw540,20,6,1|30oqbz,20,6,1|30oqc0,14,11,0|3am7rz,14,11,0|3am7s0,20,6,1|3jiibz,20,6,1|3jiic0,14,11,0|3tcafz,14,11,0|3tcag0,20,6,1|42afnz,20,6,1|42afo0,14,11,0|4cfbrz,14,11,0|4cfbs0,20,6,1|4l2czz,20,6,1|4l2d00,14,11,0|4v5efz,14,11,0|4v5eg0,20,6,1|53uabz,20,6,1|53uac0,14,11,0|5dvh3z,14,11,0|5dvh40,20,6,1|5mo2bz,20,6,1|5mo2c0,14,11,0|5wljrz,14,11,0|5wljs0,20,6,1|65fznz,20,6,1|65fzo0,14,11,0|6fbmfz,14,11,0|6fbmg0,20,6,1|6o7wzz,20,6,1|6o7x00,14,11,0|6y1p3z,14,11,0|6y1p40,20,6,1|76zubz,20,6,1|76zuc0,14,11,0|7h4qfz,14,11,0|7h4qg0,20,6,1|7ptmbz,20,6,1|7ptmc0,14,11,0|7zut3z,14,11,0|7zut40,20,6,1|88ljnz,20,6,1|88ljo0,14,11,0|fodfrz,14,11,0|fodfs0,5,6,0|oypgzz,5,6,0|oyph00,14,11,0","Africa/Kigali|,0,16,0|-yvtfd8,14,11,0","Africa/Kinshasa|,0,13,0|-xnxnan,1,1,0|-w3k001,1,1,0|-w3k000,0,13,0|-t85smo,0,13,0|-t85smn,3,3,0|-q9qc21,3,3,0|-q9qc20,12,10,0","Africa/Lagos|,0,13,0|-xnxnan,1,1,0|-w3k001,1,1,0|-w3k000,0,13,0|-t85smo,0,13,0|-t85smn,3,3,0|-q9qc21,3,3,0|-q9qc20,12,10,0","Africa/Libreville|,0,13,0|-xnxnan,1,1,0|-w3k001,1,1,0|-w3k000,0,13,0|-t85smo,0,13,0|-t85smn,3,3,0|-q9qc21,3,3,0|-q9qc20,12,10,0","Africa/Lome|,0,12,0|-u9rgl4,1,1,0","Africa/Luanda|,0,13,0|-xnxnan,1,1,0|-w3k001,1,1,0|-w3k000,0,13,0|-t85smo,0,13,0|-t85smn,3,3,0|-q9qc21,3,3,0|-q9qc20,12,10,0","Africa/Lubumbashi|,0,16,0|-yvtfd8,14,11,0","Africa/Lusaka|,0,16,0|-yvtfd8,14,11,0","Africa/Malabo|,0,13,0|-xnxnan,1,1,0|-w3k001,1,1,0|-w3k000,0,13,0|-t85smo,0,13,0|-t85smn,3,3,0|-q9qc21,3,3,0|-q9qc20,12,10,0","Africa/Maputo|,0,16,0|-yvtfd8,14,11,0","Africa/Maseru|,0,21,0|-14nj6io,19,22,0|-yvtdi1,19,22,0|-yvtdi0,19,11,0|-e8lpc1,19,11,0|-e8lpc0,19,6,1|-dz8qs1,19,6,1|-dz8qs0,19,11,0|-dpvmo1,19,11,0|-dpvmo0,19,6,1|-dgio41,19,6,1|-dgio40,19,11,0","Africa/Mbabane|,0,21,0|-14nj6io,19,22,0|-yvtdi1,19,22,0|-yvtdi0,19,11,0|-e8lpc1,19,11,0|-e8lpc0,19,6,1|-dz8qs1,19,6,1|-dz8qs0,19,11,0|-dpvmo1,19,11,0|-dpvmo0,19,6,1|-dgio41,19,6,1|-dgio40,19,11,0","Africa/Mogadishu|,0,4,0|-w6p5hg,4,5,0|-lnsey1,4,5,0|-lnsey0,5,6,0|-kvcdo1,5,6,0|-kvcdo0,4,5,0|-h80ka1,4,5,0|-h80ka0,6,7,0|-eb6ib1,6,7,0|-eb6ib0,5,6,0","Africa/Monrovia|,0,25,0|-19xcbc4,21,25,0|-qj6zc5,21,25,0|-qj6zc4,21,26,0|11v0q5,21,26,0|11v0q6,1,1,0","Africa/Nairobi|,0,4,0|-w6p5hg,4,5,0|-lnsey1,4,5,0|-lnsey0,5,6,0|-kvcdo1,5,6,0|-kvcdo0,4,5,0|-h80ka1,4,5,0|-h80ka0,6,7,0|-eb6ib1,6,7,0|-eb6ib0,5,6,0","Africa/Ndjamena|,0,27,0|-u9rk4c,12,10,0|53sl7z,12,10,0|53sl80,22,11,1|5bavrz,22,11,1|5bavs0,12,10,0","Africa/Niamey|,0,13,0|-xnxnan,1,1,0|-w3k001,1,1,0|-w3k000,0,13,0|-t85smo,0,13,0|-t85smn,3,3,0|-q9qc21,3,3,0|-q9qc20,12,10,0","Africa/Nouakchott|,0,12,0|-u9rgl4,1,1,0","Africa/Ouagadougou|,0,12,0|-u9rgl4,1,1,0","Africa/Porto-Novo|,0,13,0|-xnxnan,1,1,0|-w3k001,1,1,0|-w3k000,0,13,0|-t85smo,0,13,0|-t85smn,3,3,0|-q9qc21,3,3,0|-q9qc20,12,10,0","Africa/Sao_Tome|,0,28,0|-18vsjww,0,29,0|-u9rhc1,0,29,0|-u9rhc0,1,1,0|p1uqrz,1,1,0|p1uqs0,12,10,0|pkmo3z,12,10,0|pkmo40,1,1,0","Africa/Tripoli|,0,30,0|-q3gfrw,10,10,0|-9ia581,10,10,0|-9ia580,11,11,1|-9e82w1,11,11,1|-9e82w0,10,10,0|-8gxp81,10,10,0|-8gxp80,11,11,1|-8cmdk1,11,11,1|-8cmdk0,10,10,0|-7fuo41,10,10,0|-7fuo40,11,11,1|-7b2iw1,11,11,1|-7b2iw0,10,10,0|-5qotg1,10,10,0|-5qotg0,15,11,0|69gifz,15,11,0|69gig0,10,10,0|6e397z,10,10,0|6e3980,11,11,1|6ni2fz,11,11,1|6ni2g0,10,10,0|6wv6jz,10,10,0|6wv6k0,11,11,1|769zrz,11,11,1|769zs0,10,10,0|7foyjz,10,10,0|7foyk0,11,11,1|7p3rrz,11,11,1|7p3rs0,10,10,0|7yq57z,10,10,0|7yq580,11,11,1|87vp3z,11,11,1|87vp40,10,10,0|8hed7z,10,10,0|8hed80,11,11,1|8qrbrz,11,11,1|8qrbs0,10,10,0|900qjz,10,10,0|900qk0,11,11,1|99fjrz,11,11,1|99fjs0,10,10,0|9iuijz,10,10,0|9iuik0,11,11,1|9s9brz,11,11,1|9s9bs0,10,10,0|a1mfvz,10,10,0|a1mfw0,11,11,1|ab193z,11,11,1|ab1940,10,10,0|am3h7z,10,10,0|am3h80,15,11,0|dyil3z,15,11,0|dyil40,10,10,0|e833vz,10,10,0|e833w0,11,11,1|ehhx3z,11,11,1|ehhx40,15,11,0|md8vzz,15,11,0|md8w00,10,10,0|mkeanz,10,10,0|mkeao0,11,11,1|mv76nz,11,11,1|mv76o0,15,11,0","Africa/Tunis|,0,31,0|-1a9dr7w,7,9,0|-uozn3m,7,9,0|-uozn3l,10,10,0|-g12881,10,10,0|-g12880,11,11,1|-fpwdk1,11,11,1|-fpwdk0,10,10,0|-fkt1k1,10,10,0|-fkt1k0,11,11,1|-eqk5k1,11,11,1|-eqk5k0,10,10,0|-eimw41,10,10,0|-eimw40,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dxuo01,11,11,1|-dxuo00,10,10,0|-dxfrw1,10,10,0|-dxfrw0,11,11,1|-dp3uo1,11,11,1|-dp3uo0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d62tk1,11,11,1|-d62tk0,10,10,0|-cx0nw1,10,10,0|-cx0nw0,11,11,1|-cofmw1,11,11,1|-cofmw0,10,10,0|3tnh7z,10,10,0|3tnh80,11,11,1|417p7z,11,11,1|417p80,10,10,0|4ch97z,10,10,0|4ch980,11,11,1|4kcl7z,11,11,1|4kcl80,10,10,0|9lzh7z,10,10,0|9lzh80,11,11,1|9ryajz,11,11,1|9ryak0,10,10,0|a1bbvz,10,10,0|a1bbw0,11,11,1|aaod7z,11,11,1|aaod80,10,10,0|alxx7z,10,10,0|alxx80,11,11,1|atrejz,11,11,1|atrek0,10,10,0|ifs7vz,10,10,0|ifs7w0,11,11,1|inlrzz,11,11,1|inls00,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0","Africa/Windhoek|,0,32,0|-14nj4i0,23,22,0|-yvtdi1,23,22,0|-yvtdi0,19,11,0|-e8lpc1,19,11,0|-e8lpc0,19,6,1|-dz8qs1,19,6,1|-dz8qs0,19,11,0|ajtx3z,19,11,0|ajtx40,14,11,0|cmzh3z,14,11,0|cmzh40,12,10,1|cvkyrz,12,10,1|cvkys0,14,11,0|d6drzz,14,11,0|d6ds00,12,10,1|deb1fz,12,10,1|deb1g0,14,11,0|dpgtbz,14,11,0|dpgtc0,12,10,1|dx143z,12,10,1|dx1440,14,11,0|e86vzz,14,11,0|e86w00,12,10,1|eg45fz,12,10,1|eg45g0,14,11,0|eqwynz,14,11,0|eqwyo0,12,10,1|eyu83z,12,10,1|eyu840,14,11,0|f9n1bz,14,11,0|f9n1c0,12,10,1|fhkarz,12,10,1|fhkas0,14,11,0|fsd3zz,14,11,0|fsd400,12,10,1|g0adfz,12,10,1|g0adg0,14,11,0|gb36nz,14,11,0|gb36o0,12,10,1|gj0g3z,12,10,1|gj0g40,14,11,0|gu67zz,14,11,0|gu6800,12,10,1|h1qirz,12,10,1|h1qis0,14,11,0|hcwanz,14,11,0|hcwao0,12,10,1|hktk3z,12,10,1|hktk40,14,11,0|hvmdbz,14,11,0|hvmdc0,12,10,1|i3jmrz,12,10,1|i3jms0,14,11,0|iecfzz,14,11,0|iecg00,12,10,1|im9pfz,12,10,1|im9pg0,14,11,0|ix2inz,14,11,0|ix2io0,12,10,1|j4zs3z,12,10,1|j4zs40,14,11,0|jfslbz,14,11,0|jfslc0,12,10,1|jnpurz,12,10,1|jnpus0,14,11,0|jyvmnz,14,11,0|jyvmo0,12,10,1|k6sw3z,12,10,1|k6sw40,14,11,0|khlpbz,14,11,0|khlpc0,12,10,1|kpiyrz,12,10,1|kpiys0,14,11,0|l0brzz,14,11,0|l0bs00,12,10,1|l891fz,12,10,1|l891g0,14,11,0|lj1unz,14,11,0|lj1uo0,12,10,1|lqz43z,12,10,1|lqz440,14,11,0|m1rxbz,14,11,0|m1rxc0,12,10,1|m9p6rz,12,10,1|m9p6s0,14,11,0|mkuynz,14,11,0|mkuyo0,12,10,1|msf9fz,12,10,1|msf9g0,14,11,0|n3l1bz,14,11,0|n3l1c0,12,10,1|nbiarz,12,10,1|nbias0,14,11,0|nmb3zz,14,11,0|nmb400,12,10,1|nu8dfz,12,10,1|nu8dg0,14,11,0|o516nz,14,11,0|o516o0,12,10,1|ocyg3z,12,10,1|ocyg40,14,11,0|onr9bz,14,11,0|onr9c0,12,10,1|ovoirz,12,10,1|ovois0,14,11,0","America/Adak|,0,33,0|-1hc7qjz,0,34,0|-1078omb,0,34,0|-1078oma,24,35,0|-ek1nw1,24,35,0|-ek1nw0,25,36,1|-cq2tg1,25,36,1|-cq2tg0,26,36,1|-cnomo1,26,36,1|-cnomo0,24,35,0|-1fq441,24,35,0|-1fq440,27,35,0|-cs3w1,27,35,0|-cs3w0,28,36,1|-3f5c1,28,36,1|-3f5c0,27,35,0|5xyrz,27,35,0|5xys0,28,36,1|faxbz,28,36,1|faxc0,27,35,0|oo1fz,27,35,0|oo1g0,28,36,1|ydynz,28,36,1|ydyo0,27,35,0|17r2rz,27,35,0|17r2s0,28,36,1|1h41bz,28,36,1|1h41c0,27,35,0|1qh5fz,27,35,0|1qh5g0,28,36,1|1zu3zz,28,36,1|1zu400,27,35,0|23ftfz,27,35,0|23ftg0,28,36,1|2ik6nz,28,36,1|2ik6o0,27,35,0|2oomrz,27,35,0|2ooms0,28,36,1|31a9bz,28,36,1|31a9c0,27,35,0|3andfz,27,35,0|3andg0,28,36,1|3kdanz,28,36,1|3kdao0,27,35,0|3tdg3z,27,35,0|3tdg40,28,36,1|433dbz,28,36,1|433dc0,27,35,0|4cghfz,27,35,0|4cghg0,28,36,1|4ltfzz,28,36,1|4ltg00,27,35,0|4v6k3z,27,35,0|4v6k40,28,36,1|54jinz,28,36,1|54jio0,27,35,0|5dwmrz,27,35,0|5dwms0,28,36,1|5n9lbz,28,36,1|5n9lc0,27,35,0|5wmpfz,27,35,0|5wmpg0,28,36,1|65znzz,28,36,1|65zo00,27,35,0|6fcs3z,27,35,0|6fcs40,28,36,1|6p2pbz,28,36,1|6p2pc0,27,35,0|6y2urz,27,35,0|6y2us0,28,36,1|77srzz,28,36,1|77ss00,29,36,0|79e13z,29,36,0|79e140,30,36,0|7h5tbz,30,36,0|7h5tc0,31,37,1|7qirvz,31,37,1|7qirw0,30,36,0|7zvvzz,30,36,0|7zvw00,31,37,1|898ujz,31,37,1|898uk0,30,36,0|8ilynz,30,36,0|8ilyo0,31,37,1|8ryx7z,31,37,1|8ryx80,30,36,0|9095bz,30,36,0|9095c0,31,37,1|9aozvz,31,37,1|9aozw0,30,36,0|9iz7zz,30,36,0|9iz800,31,37,1|9ts17z,31,37,1|9ts180,30,36,0|a1panz,30,36,0|a1pao0,31,37,1|aci3vz,31,37,1|aci3w0,30,36,0|akfdbz,30,36,0|akfdc0,31,37,1|av86jz,31,37,1|av86k0,30,36,0|b3ienz,30,36,0|b3ieo0,31,37,1|bdy97z,31,37,1|bdy980,30,36,0|bm8hbz,30,36,0|bm8hc0,31,37,1|bwobvz,31,37,1|bwobw0,30,36,0|c4yjzz,30,36,0|c4yk00,31,37,1|cfrd7z,31,37,1|cfrd80,30,36,0|cnomnz,30,36,0|cnomo0,31,37,1|cyhfvz,31,37,1|cyhfw0,30,36,0|d6epbz,30,36,0|d6epc0,31,37,1|dh7ijz,31,37,1|dh7ik0,30,36,0|dphqnz,30,36,0|dphqo0,31,37,1|dzxl7z,31,37,1|dzxl80,30,36,0|e87tbz,30,36,0|e87tc0,31,37,1|einnvz,31,37,1|einnw0,30,36,0|eqxvzz,30,36,0|eqxw00,31,37,1|f1dqjz,31,37,1|f1dqk0,30,36,0|f9nynz,30,36,0|f9nyo0,31,37,1|fkgrvz,31,37,1|fkgrw0,30,36,0|fse1bz,30,36,0|fse1c0,31,37,1|g36ujz,31,37,1|g36uk0,30,36,0|gb43zz,30,36,0|gb4400,31,37,1|glwx7z,31,37,1|glwx80,30,36,0|gu75bz,30,36,0|gu75c0,31,37,1|h4mzvz,31,37,1|h4mzw0,30,36,0|hcx7zz,30,36,0|hcx800,31,37,1|hnd2jz,31,37,1|hnd2k0,30,36,0|hvnanz,30,36,0|hvnao0,31,37,1|i6g3vz,31,37,1|i6g3w0,30,36,0|ieddbz,30,36,0|ieddc0,31,37,1|ip66jz,31,37,1|ip66k0,30,36,0|ix3fzz,30,36,0|ix3g00,31,37,1|j7w97z,31,37,1|j7w980,30,36,0|jeqmnz,30,36,0|jeqmo0,31,37,1|jqzajz,31,37,1|jqzak0,30,36,0|jxgpbz,30,36,0|jxgpc0,31,37,1|k9pd7z,31,37,1|k9pd80,30,36,0|kg6rzz,30,36,0|kg6s00,31,37,1|ksffvz,31,37,1|ksffw0,30,36,0|kz9tbz,30,36,0|kz9tc0,31,37,1|lbih7z,31,37,1|lbih80,30,36,0|lhzvzz,30,36,0|lhzw00,31,37,1|lu8jvz,31,37,1|lu8jw0,30,36,0|m0pynz,30,36,0|m0pyo0,31,37,1|mcymjz,31,37,1|mcymk0,30,36,0|mjg1bz,30,36,0|mjg1c0,31,37,1|mvop7z,31,37,1|mvop80,30,36,0|n263zz,30,36,0|n26400,31,37,1|neervz,31,37,1|neerw0,30,36,0|nkw6nz,30,36,0|nkw6o0,31,37,1|nx4ujz,31,37,1|nx4uk0,30,36,0|o3z7zz,30,36,0|o3z800,31,37,1|og7vvz,31,37,1|og7vw0,30,36,0|ompanz,30,36,0|ompao0,31,37,1|oyxyjz,31,37,1|oyxyk0,30,36,0|p5fdbz,30,36,0|p5fdc0,31,37,1|pho17z,31,37,1|pho180,30,36,0|po5fzz,30,36,0|po5g00,31,37,1|q0e3vz,31,37,1|q0e3w0,30,36,0|q6vinz,30,36,0|q6vio0,31,37,1|qj46jz,31,37,1|qj46k0,30,36,0|qpyjzz,30,36,0|qpyk00,31,37,1|r277vz,31,37,1|r277w0,30,36,0|r8omnz,30,36,0|r8omo0,31,37,1|rkxajz,31,37,1|rkxak0,30,36,0|rrepbz,30,36,0|rrepc0,31,37,1|s3nd7z,31,37,1|s3nd80,30,36,0|sa4rzz,30,36,0|sa4s00,31,37,1|smdfvz,31,37,1|smdfw0,30,36,0|ssuunz,30,36,0|ssuuo0,31,37,1|t53ijz,31,37,1|t53ik0,30,36,0|tbkxbz,30,36,0|tbkxc0,31,37,1|tntl7z,31,37,1|tntl80,30,36,0|tunynz,30,36,0|tunyo0,31,37,1|u6wmjz,31,37,1|u6wmk0,30,36,0|ude1bz,30,36,0|ude1c0,31,37,1|upmp7z,31,37,1|upmp80,30,36,0|uw43zz,30,36,0|uw4400,31,37,1|v8crvz,31,37,1|v8crw0,30,36,0|veu6nz,30,36,0|veu6o0,31,37,1|vr2ujz,31,37,1|vr2uk0,30,36,0|vxk9bz,30,36,0|vxk9c0,31,37,1|w9sx7z,31,37,1|w9sx80,30,36,0|wgnanz,30,36,0|wgnao0,31,37,1|wsvyjz,31,37,1|wsvyk0,30,36,0|wzddbz,30,36,0|wzddc0,31,37,1|xbm17z,31,37,1|xbm180,30,36,0|xi3fzz,30,36,0|xi3g00,31,37,1|xuc3vz,31,37,1|xuc3w0,30,36,0|y0tinz,30,36,0|y0tio0,31,37,1|yd26jz,31,37,1|yd26k0,30,36,0|yjjlbz,30,36,0|yjjlc0,31,37,1|yvs97z,31,37,1|yvs980,30,36,0|z29nzz,30,36,0|z29o00,31,37,1|zeibvz,31,37,1|zeibw0,30,36,0","America/Anchorage|,0,38,0|-1hc7qjz,0,39,0|-1078tkp,0,39,0|-1078tko,32,36,0|-ek1qo1,32,36,0|-ek1qo0,33,37,1|-cq2tg1,33,37,1|-cq2tg0,34,37,1|-cnopg1,34,37,1|-cnopg0,32,36,0|-1fq6w1,32,36,0|-1fq6w0,29,36,0|-cs6o1,29,36,0|-cs6o0,35,37,1|-3f841,35,37,1|-3f840,29,36,0|5xvzz,29,36,0|5xw00,35,37,1|faujz,35,37,1|fauk0,29,36,0|onynz,29,36,0|onyo0,35,37,1|ydvvz,35,37,1|ydvw0,29,36,0|17qzzz,29,36,0|17r000,35,37,1|1h3yjz,35,37,1|1h3yk0,29,36,0|1qh2nz,29,36,0|1qh2o0,35,37,1|1zu17z,35,37,1|1zu180,29,36,0|23fqnz,29,36,0|23fqo0,35,37,1|2ik3vz,35,37,1|2ik3w0,29,36,0|2oojzz,29,36,0|2ook00,35,37,1|31a6jz,35,37,1|31a6k0,29,36,0|3ananz,29,36,0|3anao0,35,37,1|3kd7vz,35,37,1|3kd7w0,29,36,0|3tddbz,29,36,0|3tddc0,35,37,1|433ajz,35,37,1|433ak0,29,36,0|4cgenz,29,36,0|4cgeo0,35,37,1|4ltd7z,35,37,1|4ltd80,29,36,0|4v6hbz,29,36,0|4v6hc0,35,37,1|54jfvz,35,37,1|54jfw0,29,36,0|5dwjzz,29,36,0|5dwk00,35,37,1|5n9ijz,35,37,1|5n9ik0,29,36,0|5wmmnz,29,36,0|5wmmo0,35,37,1|65zl7z,35,37,1|65zl80,29,36,0|6fcpbz,29,36,0|6fcpc0,35,37,1|6p2mjz,35,37,1|6p2mk0,29,36,0|6y2rzz,29,36,0|6y2s00,35,37,1|77sp7z,35,37,1|77sp80,36,37,0|79dybz,36,37,0|79dyc0,37,37,0|7h5qjz,37,37,0|7h5qk0,38,40,1|7qip3z,38,40,1|7qip40,37,37,0|7zvt7z,37,37,0|7zvt80,38,40,1|898rrz,38,40,1|898rs0,37,37,0|8ilvvz,37,37,0|8ilvw0,38,40,1|8ryufz,38,40,1|8ryug0,37,37,0|9092jz,37,37,0|9092k0,38,40,1|9aox3z,38,40,1|9aox40,37,37,0|9iz57z,37,37,0|9iz580,38,40,1|9tryfz,38,40,1|9tryg0,37,37,0|a1p7vz,37,37,0|a1p7w0,38,40,1|aci13z,38,40,1|aci140,37,37,0|akfajz,37,37,0|akfak0,38,40,1|av83rz,38,40,1|av83s0,37,37,0|b3ibvz,37,37,0|b3ibw0,38,40,1|bdy6fz,38,40,1|bdy6g0,37,37,0|bm8ejz,37,37,0|bm8ek0,38,40,1|bwo93z,38,40,1|bwo940,37,37,0|c4yh7z,37,37,0|c4yh80,38,40,1|cfrafz,38,40,1|cfrag0,37,37,0|cnojvz,37,37,0|cnojw0,38,40,1|cyhd3z,38,40,1|cyhd40,37,37,0|d6emjz,37,37,0|d6emk0,38,40,1|dh7frz,38,40,1|dh7fs0,37,37,0|dphnvz,37,37,0|dphnw0,38,40,1|dzxifz,38,40,1|dzxig0,37,37,0|e87qjz,37,37,0|e87qk0,38,40,1|einl3z,38,40,1|einl40,37,37,0|eqxt7z,37,37,0|eqxt80,38,40,1|f1dnrz,38,40,1|f1dns0,37,37,0|f9nvvz,37,37,0|f9nvw0,38,40,1|fkgp3z,38,40,1|fkgp40,37,37,0|fsdyjz,37,37,0|fsdyk0,38,40,1|g36rrz,38,40,1|g36rs0,37,37,0|gb417z,37,37,0|gb4180,38,40,1|glwufz,38,40,1|glwug0,37,37,0|gu72jz,37,37,0|gu72k0,38,40,1|h4mx3z,38,40,1|h4mx40,37,37,0|hcx57z,37,37,0|hcx580,38,40,1|hnczrz,38,40,1|hnczs0,37,37,0|hvn7vz,37,37,0|hvn7w0,38,40,1|i6g13z,38,40,1|i6g140,37,37,0|iedajz,37,37,0|iedak0,38,40,1|ip63rz,38,40,1|ip63s0,37,37,0|ix3d7z,37,37,0|ix3d80,38,40,1|j7w6fz,38,40,1|j7w6g0,37,37,0|jeqjvz,37,37,0|jeqjw0,38,40,1|jqz7rz,38,40,1|jqz7s0,37,37,0|jxgmjz,37,37,0|jxgmk0,38,40,1|k9pafz,38,40,1|k9pag0,37,37,0|kg6p7z,37,37,0|kg6p80,38,40,1|ksfd3z,38,40,1|ksfd40,37,37,0|kz9qjz,37,37,0|kz9qk0,38,40,1|lbiefz,38,40,1|lbieg0,37,37,0|lhzt7z,37,37,0|lhzt80,38,40,1|lu8h3z,38,40,1|lu8h40,37,37,0|m0pvvz,37,37,0|m0pvw0,38,40,1|mcyjrz,38,40,1|mcyjs0,37,37,0|mjfyjz,37,37,0|mjfyk0,38,40,1|mvomfz,38,40,1|mvomg0,37,37,0|n2617z,37,37,0|n26180,38,40,1|neep3z,38,40,1|neep40,37,37,0|nkw3vz,37,37,0|nkw3w0,38,40,1|nx4rrz,38,40,1|nx4rs0,37,37,0|o3z57z,37,37,0|o3z580,38,40,1|og7t3z,38,40,1|og7t40,37,37,0|omp7vz,37,37,0|omp7w0,38,40,1|oyxvrz,38,40,1|oyxvs0,37,37,0|p5fajz,37,37,0|p5fak0,38,40,1|phnyfz,38,40,1|phnyg0,37,37,0|po5d7z,37,37,0|po5d80,38,40,1|q0e13z,38,40,1|q0e140,37,37,0|q6vfvz,37,37,0|q6vfw0,38,40,1|qj43rz,38,40,1|qj43s0,37,37,0|qpyh7z,37,37,0|qpyh80,38,40,1|r2753z,38,40,1|r27540,37,37,0|r8ojvz,37,37,0|r8ojw0,38,40,1|rkx7rz,38,40,1|rkx7s0,37,37,0|rremjz,37,37,0|rremk0,38,40,1|s3nafz,38,40,1|s3nag0,37,37,0|sa4p7z,37,37,0|sa4p80,38,40,1|smdd3z,38,40,1|smdd40,37,37,0|ssurvz,37,37,0|ssurw0,38,40,1|t53frz,38,40,1|t53fs0,37,37,0|tbkujz,37,37,0|tbkuk0,38,40,1|tntifz,38,40,1|tntig0,37,37,0|tunvvz,37,37,0|tunvw0,38,40,1|u6wjrz,38,40,1|u6wjs0,37,37,0|uddyjz,37,37,0|uddyk0,38,40,1|upmmfz,38,40,1|upmmg0,37,37,0|uw417z,37,37,0|uw4180,38,40,1|v8cp3z,38,40,1|v8cp40,37,37,0|veu3vz,37,37,0|veu3w0,38,40,1|vr2rrz,38,40,1|vr2rs0,37,37,0|vxk6jz,37,37,0|vxk6k0,38,40,1|w9sufz,38,40,1|w9sug0,37,37,0|wgn7vz,37,37,0|wgn7w0,38,40,1|wsvvrz,38,40,1|wsvvs0,37,37,0|wzdajz,37,37,0|wzdak0,38,40,1|xblyfz,38,40,1|xblyg0,37,37,0|xi3d7z,37,37,0|xi3d80,38,40,1|xuc13z,38,40,1|xuc140,37,37,0|y0tfvz,37,37,0|y0tfw0,38,40,1|yd23rz,38,40,1|yd23s0,37,37,0|yjjijz,37,37,0|yjjik0,38,40,1|yvs6fz,38,40,1|yvs6g0,37,37,0|z29l7z,37,37,0|z29l80,38,40,1|zei93z,38,40,1|zei940,37,37,0","America/Anguilla|,0,41,0|-u6m79w,32,42,0","America/Antigua|,0,41,0|-u6m79w,32,42,0","America/Araguaina|,0,43,0|-t85j2o,39,44,0|-jylag1,39,44,0|-jylag0,40,45,1|-jpb141,40,45,1|-jpb140,39,44,0|-jfsd01,39,44,0|-jfsd00,40,45,1|-j6j3s1,40,45,1|-j6j3s0,39,44,0|-ahcyc1,39,44,0|-ahcyc0,40,45,1|-aad3o1,40,45,1|-aad3o0,39,44,0|-9yl101,39,44,0|-9yl100,40,45,1|-9sd141,40,45,1|-9sd140,39,44,0|-9ft3o1,39,44,0|-9ft3o0,40,45,1|-99j941,40,45,1|-99j940,39,44,0|-8wzbo1,39,44,0|-8wzbo0,40,45,1|-8scqg1,40,45,1|-8scqg0,39,44,0|-35xmc1,39,44,0|-35xmc0,40,45,1|-31nzs1,40,45,1|-31nzs0,39,44,0|-2kdp01,39,44,0|-2kdp00,40,45,1|-2hcig1,40,45,1|-2hcig0,39,44,0|-24qqc1,39,44,0|-24qqc0,40,45,1|-204541,40,45,1|-204540,39,44,0|-1nid01,39,44,0|-1nid00,40,45,1|-1hc7s1,40,45,1|-1hc7s0,39,44,0|-14qfo1,39,44,0|-14qfo0,40,45,1|-yifs1,40,45,1|-yifs0,39,44,0|89jcbz,39,44,0|89jcc0,40,45,1|8gdk7z,40,45,1|8gdk80,39,44,0|8rwgbz,39,44,0|8rwgc0,40,45,1|8xns7z,40,45,1|8xns80,39,44,0|9aodnz,39,44,0|9aodo0,40,45,1|9g2qvz,40,45,1|9g2qw0,39,44,0|9t1hnz,39,44,0|9t1ho0,40,45,1|9yfuvz,40,45,1|9yfuw0,39,44,0|abrkbz,39,44,0|abrkc0,40,45,1|ahvuvz,40,45,1|ahvuw0,39,44,0|dggyzz,39,44,0|dggz00,40,45,1|dml9jz,40,45,1|dml9k0,39,44,0|dyu2zz,39,44,0|dyu300,40,45,1|e5oavz,40,45,1|e5oaw0,39,44,0|ehm0bz,39,44,0|ehm0c0,40,45,1|ep4avz,40,45,1|ep4aw0,39,44,0|f0n6zz,39,44,0|f0n700,40,45,1|f7hevz,40,45,1|f7hew0,39,44,0|fj0azz,39,44,0|fj0b00,40,45,1|fqkg7z,40,45,1|fqkg80,39,44,0|g23cbz,39,44,0|g23cc0,40,45,1|g8xk7z,40,45,1|g8xk80,39,44,0|gl6dnz,39,44,0|gl6do0,40,45,1|grnmvz,40,45,1|grnmw0,39,44,0|h4zcbz,39,44,0|h4zcc0,40,45,1|hadpjz,40,45,1|hadpk0,39,44,0|mc82zz,39,44,0|mc8300,40,45,1|micdjz,40,45,1|micdk0,39,44,0","America/Argentina/Buenos_Aires|,0,46,0|-138aaic,41,47,0|-px7ys1,41,47,0|-px7ys0,42,42,0|-kecq81,42,42,0|-kecq80,39,44,1|-k84qc1,39,44,1|-k84qc0,42,42,0|-jxzu81,42,42,0|-jxzu80,39,44,1|-jqwd01,39,44,1|-jqwd00,42,42,0|-jeakw1,42,42,0|-jeakw0,39,44,1|-j84fo1,39,44,1|-j84fo0,42,42,0|-ivink1,42,42,0|-ivink0,39,44,1|-ipcic1,39,44,1|-ipcic0,42,42,0|-icqq81,42,42,0|-icqq80,39,44,1|-i6kl01,39,44,1|-i6kl00,42,42,0|-htysw1,42,42,0|-htysw0,39,44,1|-hnqt01,39,44,1|-hnqt00,42,42,0|-hb50w1,42,42,0|-hb50w0,39,44,1|-h4yvo1,39,44,1|-h4yvo0,42,42,0|-gsd3k1,42,42,0|-gsd3k0,39,44,1|-gm6yc1,39,44,1|-gm6yc0,42,42,0|-g9l681,42,42,0|-g9l680,39,44,1|-g3f101,39,44,1|-g3f100,42,42,0|-fqt8w1,42,42,0|-fqt8w0,39,44,1|-fkl901,39,44,1|-fkl900,42,42,0|-feb8w1,42,42,0|-feb8w0,39,44,1|-ewd101,39,44,1|-ewd100,42,42,0|-eq30w1,42,42,0|-eq30w0,39,44,1|-dse501,39,44,1|-dse500,42,42,0|-doj681,42,42,0|-doj680,39,44,1|-cfvuc1,39,44,1|-cfvuc0,42,42,0|-c4vgw1,42,42,0|-c4vgw0,39,44,1|-39hec1,39,44,1|-39hec0,42,42,0|-35mfk1,42,42,0|-35mfk0,39,44,1|-31nx01,39,44,1|-31nx00,42,42,0|-2pxm81,42,42,0|-2pxm80,39,44,1|-2ivzo1,39,44,1|-2ivzo0,42,42,0|-275ow1,42,42,0|-275ow0,39,44,1|-2042c1,39,44,1|-2042c0,42,42,0|-1odrk1,42,42,0|-1odrk0,39,44,1|-1fovo1,39,44,1|-1fovo0,42,42,0|-16brk1,42,42,0|-16brk0,39,44,1|-wluc1,39,44,1|-wluc0,42,42,0|-n8q81,42,42,0|-n8q80,39,44,1|-dvro1,39,44,1|-dvro0,42,42,0|-4ink1,42,42,0|-4ink0,39,44,0|24aizz,39,44,0|24aj00,40,45,1|29bxjz,40,45,1|29bxk0,39,44,0|9veobz,39,44,0|9veoc0,40,45,1|a08o7z,40,45,1|a08o80,39,44,0|abrkbz,39,44,0|abrkc0,40,45,1|aiyqvz,40,45,1|aiyqw0,39,44,0|auulnz,39,44,0|auulo0,40,45,1|b1otjz,40,45,1|b1otk0,39,44,0|bdkobz,39,44,0|bdkoc0,40,45,1|bkew7z,40,45,1|bkew80,39,44,0|bwaqzz,39,44,0|bwar00,40,45,1|c3hxjz,40,45,1|c3hxk0,39,44,0|fj0azz,39,44,0|fj0b00,39,44,1|fqtsbz,39,44,1|fqtsc0,39,44,0|jtudnz,39,44,0|jtudo0,40,45,1|jxsw7z,40,45,1|jxsw80,39,44,0|k8ytnz,39,44,0|k8yto0,40,45,1|kgiyvz,40,45,1|kgiyw0,39,44,0","America/Argentina/Catamarca|,0,48,0|-138a95g,41,47,0|-px7ys1,41,47,0|-px7ys0,42,42,0|-kecq81,42,42,0|-kecq80,39,44,1|-k84qc1,39,44,1|-k84qc0,42,42,0|-jxzu81,42,42,0|-jxzu80,39,44,1|-jqwd01,39,44,1|-jqwd00,42,42,0|-jeakw1,42,42,0|-jeakw0,39,44,1|-j84fo1,39,44,1|-j84fo0,42,42,0|-ivink1,42,42,0|-ivink0,39,44,1|-ipcic1,39,44,1|-ipcic0,42,42,0|-icqq81,42,42,0|-icqq80,39,44,1|-i6kl01,39,44,1|-i6kl00,42,42,0|-htysw1,42,42,0|-htysw0,39,44,1|-hnqt01,39,44,1|-hnqt00,42,42,0|-hb50w1,42,42,0|-hb50w0,39,44,1|-h4yvo1,39,44,1|-h4yvo0,42,42,0|-gsd3k1,42,42,0|-gsd3k0,39,44,1|-gm6yc1,39,44,1|-gm6yc0,42,42,0|-g9l681,42,42,0|-g9l680,39,44,1|-g3f101,39,44,1|-g3f100,42,42,0|-fqt8w1,42,42,0|-fqt8w0,39,44,1|-fkl901,39,44,1|-fkl900,42,42,0|-feb8w1,42,42,0|-feb8w0,39,44,1|-ewd101,39,44,1|-ewd100,42,42,0|-eq30w1,42,42,0|-eq30w0,39,44,1|-dse501,39,44,1|-dse500,42,42,0|-doj681,42,42,0|-doj680,39,44,1|-cfvuc1,39,44,1|-cfvuc0,42,42,0|-c4vgw1,42,42,0|-c4vgw0,39,44,1|-39hec1,39,44,1|-39hec0,42,42,0|-35mfk1,42,42,0|-35mfk0,39,44,1|-31nx01,39,44,1|-31nx00,42,42,0|-2pxm81,42,42,0|-2pxm80,39,44,1|-2ivzo1,39,44,1|-2ivzo0,42,42,0|-275ow1,42,42,0|-275ow0,39,44,1|-2042c1,39,44,1|-2042c0,42,42,0|-1odrk1,42,42,0|-1odrk0,39,44,1|-1fovo1,39,44,1|-1fovo0,42,42,0|-16brk1,42,42,0|-16brk0,39,44,1|-wluc1,39,44,1|-wluc0,42,42,0|-n8q81,42,42,0|-n8q80,39,44,1|-dvro1,39,44,1|-dvro0,42,42,0|-4ink1,42,42,0|-4ink0,39,44,0|24aizz,39,44,0|24aj00,40,45,1|29bxjz,40,45,1|29bxk0,39,44,0|9veobz,39,44,0|9veoc0,40,45,1|a08o7z,40,45,1|a08o80,39,44,0|abrkbz,39,44,0|abrkc0,40,45,1|aiyqvz,40,45,1|aiyqw0,39,44,0|auulnz,39,44,0|auulo0,40,45,1|b1otjz,40,45,1|b1otk0,42,42,0|bdkr3z,42,42,0|bdkr40,40,45,1|bkew7z,40,45,1|bkew80,39,44,0|bwaqzz,39,44,0|bwar00,40,45,1|c3hxjz,40,45,1|c3hxk0,39,44,0|fj0azz,39,44,0|fj0b00,39,44,1|fqtsbz,39,44,1|fqtsc0,39,44,0|hym0bz,39,44,0|hym0c0,42,42,0|hzl9rz,42,42,0|hzl9s0,39,44,0|jtudnz,39,44,0|jtudo0,40,45,1|jxsw7z,40,45,1|jxsw80,39,44,0","America/Argentina/Cordoba|,0,47,0|-138a9g0,41,47,0|-px7ys1,41,47,0|-px7ys0,42,42,0|-kecq81,42,42,0|-kecq80,39,44,1|-k84qc1,39,44,1|-k84qc0,42,42,0|-jxzu81,42,42,0|-jxzu80,39,44,1|-jqwd01,39,44,1|-jqwd00,42,42,0|-jeakw1,42,42,0|-jeakw0,39,44,1|-j84fo1,39,44,1|-j84fo0,42,42,0|-ivink1,42,42,0|-ivink0,39,44,1|-ipcic1,39,44,1|-ipcic0,42,42,0|-icqq81,42,42,0|-icqq80,39,44,1|-i6kl01,39,44,1|-i6kl00,42,42,0|-htysw1,42,42,0|-htysw0,39,44,1|-hnqt01,39,44,1|-hnqt00,42,42,0|-hb50w1,42,42,0|-hb50w0,39,44,1|-h4yvo1,39,44,1|-h4yvo0,42,42,0|-gsd3k1,42,42,0|-gsd3k0,39,44,1|-gm6yc1,39,44,1|-gm6yc0,42,42,0|-g9l681,42,42,0|-g9l680,39,44,1|-g3f101,39,44,1|-g3f100,42,42,0|-fqt8w1,42,42,0|-fqt8w0,39,44,1|-fkl901,39,44,1|-fkl900,42,42,0|-feb8w1,42,42,0|-feb8w0,39,44,1|-ewd101,39,44,1|-ewd100,42,42,0|-eq30w1,42,42,0|-eq30w0,39,44,1|-dse501,39,44,1|-dse500,42,42,0|-doj681,42,42,0|-doj680,39,44,1|-cfvuc1,39,44,1|-cfvuc0,42,42,0|-c4vgw1,42,42,0|-c4vgw0,39,44,1|-39hec1,39,44,1|-39hec0,42,42,0|-35mfk1,42,42,0|-35mfk0,39,44,1|-31nx01,39,44,1|-31nx00,42,42,0|-2pxm81,42,42,0|-2pxm80,39,44,1|-2ivzo1,39,44,1|-2ivzo0,42,42,0|-275ow1,42,42,0|-275ow0,39,44,1|-2042c1,39,44,1|-2042c0,42,42,0|-1odrk1,42,42,0|-1odrk0,39,44,1|-1fovo1,39,44,1|-1fovo0,42,42,0|-16brk1,42,42,0|-16brk0,39,44,1|-wluc1,39,44,1|-wluc0,42,42,0|-n8q81,42,42,0|-n8q80,39,44,1|-dvro1,39,44,1|-dvro0,42,42,0|-4ink1,42,42,0|-4ink0,39,44,0|24aizz,39,44,0|24aj00,40,45,1|29bxjz,40,45,1|29bxk0,39,44,0|9veobz,39,44,0|9veoc0,40,45,1|a08o7z,40,45,1|a08o80,39,44,0|abrkbz,39,44,0|abrkc0,40,45,1|aiyqvz,40,45,1|aiyqw0,39,44,0|auulnz,39,44,0|auulo0,40,45,1|b1otjz,40,45,1|b1otk0,42,42,0|bdkr3z,42,42,0|bdkr40,40,45,1|bkew7z,40,45,1|bkew80,39,44,0|bwaqzz,39,44,0|bwar00,40,45,1|c3hxjz,40,45,1|c3hxk0,39,44,0|fj0azz,39,44,0|fj0b00,39,44,1|fqtsbz,39,44,1|fqtsc0,39,44,0|jtudnz,39,44,0|jtudo0,40,45,1|jxsw7z,40,45,1|jxsw80,39,44,0|k8ytnz,39,44,0|k8yto0,40,45,1|kgiyvz,40,45,1|kgiyw0,39,44,0","America/Argentina/Jujuy|,0,49,0|-138a98o,41,47,0|-px7ys1,41,47,0|-px7ys0,42,42,0|-kecq81,42,42,0|-kecq80,39,44,1|-k84qc1,39,44,1|-k84qc0,42,42,0|-jxzu81,42,42,0|-jxzu80,39,44,1|-jqwd01,39,44,1|-jqwd00,42,42,0|-jeakw1,42,42,0|-jeakw0,39,44,1|-j84fo1,39,44,1|-j84fo0,42,42,0|-ivink1,42,42,0|-ivink0,39,44,1|-ipcic1,39,44,1|-ipcic0,42,42,0|-icqq81,42,42,0|-icqq80,39,44,1|-i6kl01,39,44,1|-i6kl00,42,42,0|-htysw1,42,42,0|-htysw0,39,44,1|-hnqt01,39,44,1|-hnqt00,42,42,0|-hb50w1,42,42,0|-hb50w0,39,44,1|-h4yvo1,39,44,1|-h4yvo0,42,42,0|-gsd3k1,42,42,0|-gsd3k0,39,44,1|-gm6yc1,39,44,1|-gm6yc0,42,42,0|-g9l681,42,42,0|-g9l680,39,44,1|-g3f101,39,44,1|-g3f100,42,42,0|-fqt8w1,42,42,0|-fqt8w0,39,44,1|-fkl901,39,44,1|-fkl900,42,42,0|-feb8w1,42,42,0|-feb8w0,39,44,1|-ewd101,39,44,1|-ewd100,42,42,0|-eq30w1,42,42,0|-eq30w0,39,44,1|-dse501,39,44,1|-dse500,42,42,0|-doj681,42,42,0|-doj680,39,44,1|-cfvuc1,39,44,1|-cfvuc0,42,42,0|-c4vgw1,42,42,0|-c4vgw0,39,44,1|-39hec1,39,44,1|-39hec0,42,42,0|-35mfk1,42,42,0|-35mfk0,39,44,1|-31nx01,39,44,1|-31nx00,42,42,0|-2pxm81,42,42,0|-2pxm80,39,44,1|-2ivzo1,39,44,1|-2ivzo0,42,42,0|-275ow1,42,42,0|-275ow0,39,44,1|-2042c1,39,44,1|-2042c0,42,42,0|-1odrk1,42,42,0|-1odrk0,39,44,1|-1fovo1,39,44,1|-1fovo0,42,42,0|-16brk1,42,42,0|-16brk0,39,44,1|-wluc1,39,44,1|-wluc0,42,42,0|-n8q81,42,42,0|-n8q80,39,44,1|-dvro1,39,44,1|-dvro0,42,42,0|-4ink1,42,42,0|-4ink0,39,44,0|24aizz,39,44,0|24aj00,40,45,1|29bxjz,40,45,1|29bxk0,39,44,0|9veobz,39,44,0|9veoc0,40,45,1|a08o7z,40,45,1|a08o80,39,44,0|abrkbz,39,44,0|abrkc0,40,45,1|aiyqvz,40,45,1|aiyqw0,42,42,0|av7n3z,42,42,0|av7n40,39,44,1|b2etnz,39,44,1|b2eto0,42,42,0|bcutrz,42,42,0|bcuts0,40,45,1|bkew7z,40,45,1|bkew80,39,44,0|bwaqzz,39,44,0|bwar00,40,45,1|c3hxjz,40,45,1|c3hxk0,39,44,0|fj0azz,39,44,0|fj0b00,39,44,1|fqtsbz,39,44,1|fqtsc0,39,44,0|jtudnz,39,44,0|jtudo0,40,45,1|jxsw7z,40,45,1|jxsw80,39,44,0","America/Argentina/La_Rioja|,0,50,0|-138a8yc,41,47,0|-px7ys1,41,47,0|-px7ys0,42,42,0|-kecq81,42,42,0|-kecq80,39,44,1|-k84qc1,39,44,1|-k84qc0,42,42,0|-jxzu81,42,42,0|-jxzu80,39,44,1|-jqwd01,39,44,1|-jqwd00,42,42,0|-jeakw1,42,42,0|-jeakw0,39,44,1|-j84fo1,39,44,1|-j84fo0,42,42,0|-ivink1,42,42,0|-ivink0,39,44,1|-ipcic1,39,44,1|-ipcic0,42,42,0|-icqq81,42,42,0|-icqq80,39,44,1|-i6kl01,39,44,1|-i6kl00,42,42,0|-htysw1,42,42,0|-htysw0,39,44,1|-hnqt01,39,44,1|-hnqt00,42,42,0|-hb50w1,42,42,0|-hb50w0,39,44,1|-h4yvo1,39,44,1|-h4yvo0,42,42,0|-gsd3k1,42,42,0|-gsd3k0,39,44,1|-gm6yc1,39,44,1|-gm6yc0,42,42,0|-g9l681,42,42,0|-g9l680,39,44,1|-g3f101,39,44,1|-g3f100,42,42,0|-fqt8w1,42,42,0|-fqt8w0,39,44,1|-fkl901,39,44,1|-fkl900,42,42,0|-feb8w1,42,42,0|-feb8w0,39,44,1|-ewd101,39,44,1|-ewd100,42,42,0|-eq30w1,42,42,0|-eq30w0,39,44,1|-dse501,39,44,1|-dse500,42,42,0|-doj681,42,42,0|-doj680,39,44,1|-cfvuc1,39,44,1|-cfvuc0,42,42,0|-c4vgw1,42,42,0|-c4vgw0,39,44,1|-39hec1,39,44,1|-39hec0,42,42,0|-35mfk1,42,42,0|-35mfk0,39,44,1|-31nx01,39,44,1|-31nx00,42,42,0|-2pxm81,42,42,0|-2pxm80,39,44,1|-2ivzo1,39,44,1|-2ivzo0,42,42,0|-275ow1,42,42,0|-275ow0,39,44,1|-2042c1,39,44,1|-2042c0,42,42,0|-1odrk1,42,42,0|-1odrk0,39,44,1|-1fovo1,39,44,1|-1fovo0,42,42,0|-16brk1,42,42,0|-16brk0,39,44,1|-wluc1,39,44,1|-wluc0,42,42,0|-n8q81,42,42,0|-n8q80,39,44,1|-dvro1,39,44,1|-dvro0,42,42,0|-4ink1,42,42,0|-4ink0,39,44,0|24aizz,39,44,0|24aj00,40,45,1|29bxjz,40,45,1|29bxk0,39,44,0|9veobz,39,44,0|9veoc0,40,45,1|a08o7z,40,45,1|a08o80,39,44,0|abrkbz,39,44,0|abrkc0,40,45,1|aiyqvz,40,45,1|aiyqw0,39,44,0|auulnz,39,44,0|auulo0,40,45,1|b1l47z,40,45,1|b1l480,42,42,0|b51cfz,42,42,0|b51cg0,39,44,0|bdkobz,39,44,0|bdkoc0,40,45,1|bkew7z,40,45,1|bkew80,39,44,0|bwaqzz,39,44,0|bwar00,40,45,1|c3hxjz,40,45,1|c3hxk0,39,44,0|fj0azz,39,44,0|fj0b00,39,44,1|fqtsbz,39,44,1|fqtsc0,39,44,0|hym0bz,39,44,0|hym0c0,42,42,0|hzl9rz,42,42,0|hzl9s0,39,44,0|jtudnz,39,44,0|jtudo0,40,45,1|jxsw7z,40,45,1|jxsw80,39,44,0","America/Argentina/Mendoza|,0,51,0|-138a8l8,41,47,0|-px7ys1,41,47,0|-px7ys0,42,42,0|-kecq81,42,42,0|-kecq80,39,44,1|-k84qc1,39,44,1|-k84qc0,42,42,0|-jxzu81,42,42,0|-jxzu80,39,44,1|-jqwd01,39,44,1|-jqwd00,42,42,0|-jeakw1,42,42,0|-jeakw0,39,44,1|-j84fo1,39,44,1|-j84fo0,42,42,0|-ivink1,42,42,0|-ivink0,39,44,1|-ipcic1,39,44,1|-ipcic0,42,42,0|-icqq81,42,42,0|-icqq80,39,44,1|-i6kl01,39,44,1|-i6kl00,42,42,0|-htysw1,42,42,0|-htysw0,39,44,1|-hnqt01,39,44,1|-hnqt00,42,42,0|-hb50w1,42,42,0|-hb50w0,39,44,1|-h4yvo1,39,44,1|-h4yvo0,42,42,0|-gsd3k1,42,42,0|-gsd3k0,39,44,1|-gm6yc1,39,44,1|-gm6yc0,42,42,0|-g9l681,42,42,0|-g9l680,39,44,1|-g3f101,39,44,1|-g3f100,42,42,0|-fqt8w1,42,42,0|-fqt8w0,39,44,1|-fkl901,39,44,1|-fkl900,42,42,0|-feb8w1,42,42,0|-feb8w0,39,44,1|-ewd101,39,44,1|-ewd100,42,42,0|-eq30w1,42,42,0|-eq30w0,39,44,1|-dse501,39,44,1|-dse500,42,42,0|-doj681,42,42,0|-doj680,39,44,1|-cfvuc1,39,44,1|-cfvuc0,42,42,0|-c4vgw1,42,42,0|-c4vgw0,39,44,1|-39hec1,39,44,1|-39hec0,42,42,0|-35mfk1,42,42,0|-35mfk0,39,44,1|-31nx01,39,44,1|-31nx00,42,42,0|-2pxm81,42,42,0|-2pxm80,39,44,1|-2ivzo1,39,44,1|-2ivzo0,42,42,0|-275ow1,42,42,0|-275ow0,39,44,1|-2042c1,39,44,1|-2042c0,42,42,0|-1odrk1,42,42,0|-1odrk0,39,44,1|-1fovo1,39,44,1|-1fovo0,42,42,0|-16brk1,42,42,0|-16brk0,39,44,1|-wluc1,39,44,1|-wluc0,42,42,0|-n8q81,42,42,0|-n8q80,39,44,1|-dvro1,39,44,1|-dvro0,42,42,0|-4ink1,42,42,0|-4ink0,39,44,0|24aizz,39,44,0|24aj00,40,45,1|29bxjz,40,45,1|29bxk0,39,44,0|9veobz,39,44,0|9veoc0,40,45,1|a08o7z,40,45,1|a08o80,39,44,0|abrkbz,39,44,0|abrkc0,40,45,1|aiyqvz,40,45,1|aiyqw0,42,42,0|aujkfz,42,42,0|aujkg0,39,44,1|b1l6zz,39,44,1|b1l700,42,42,0|bdbhrz,42,42,0|bdbhs0,39,44,1|bkeyzz,39,44,1|bkez00,42,42,0|bwatrz,42,42,0|bwats0,40,45,1|c3hxjz,40,45,1|c3hxk0,39,44,0|fj0azz,39,44,0|fj0b00,39,44,1|fqtsbz,39,44,1|fqtsc0,39,44,0|hy5cbz,39,44,0|hy5cc0,42,42,0|i4mr3z,42,42,0|i4mr40,39,44,0|jtudnz,39,44,0|jtudo0,40,45,1|jxsw7z,40,45,1|jxsw80,39,44,0","America/Argentina/Rio_Gallegos|,0,52,0|-138a8ik,41,47,0|-px7ys1,41,47,0|-px7ys0,42,42,0|-kecq81,42,42,0|-kecq80,39,44,1|-k84qc1,39,44,1|-k84qc0,42,42,0|-jxzu81,42,42,0|-jxzu80,39,44,1|-jqwd01,39,44,1|-jqwd00,42,42,0|-jeakw1,42,42,0|-jeakw0,39,44,1|-j84fo1,39,44,1|-j84fo0,42,42,0|-ivink1,42,42,0|-ivink0,39,44,1|-ipcic1,39,44,1|-ipcic0,42,42,0|-icqq81,42,42,0|-icqq80,39,44,1|-i6kl01,39,44,1|-i6kl00,42,42,0|-htysw1,42,42,0|-htysw0,39,44,1|-hnqt01,39,44,1|-hnqt00,42,42,0|-hb50w1,42,42,0|-hb50w0,39,44,1|-h4yvo1,39,44,1|-h4yvo0,42,42,0|-gsd3k1,42,42,0|-gsd3k0,39,44,1|-gm6yc1,39,44,1|-gm6yc0,42,42,0|-g9l681,42,42,0|-g9l680,39,44,1|-g3f101,39,44,1|-g3f100,42,42,0|-fqt8w1,42,42,0|-fqt8w0,39,44,1|-fkl901,39,44,1|-fkl900,42,42,0|-feb8w1,42,42,0|-feb8w0,39,44,1|-ewd101,39,44,1|-ewd100,42,42,0|-eq30w1,42,42,0|-eq30w0,39,44,1|-dse501,39,44,1|-dse500,42,42,0|-doj681,42,42,0|-doj680,39,44,1|-cfvuc1,39,44,1|-cfvuc0,42,42,0|-c4vgw1,42,42,0|-c4vgw0,39,44,1|-39hec1,39,44,1|-39hec0,42,42,0|-35mfk1,42,42,0|-35mfk0,39,44,1|-31nx01,39,44,1|-31nx00,42,42,0|-2pxm81,42,42,0|-2pxm80,39,44,1|-2ivzo1,39,44,1|-2ivzo0,42,42,0|-275ow1,42,42,0|-275ow0,39,44,1|-2042c1,39,44,1|-2042c0,42,42,0|-1odrk1,42,42,0|-1odrk0,39,44,1|-1fovo1,39,44,1|-1fovo0,42,42,0|-16brk1,42,42,0|-16brk0,39,44,1|-wluc1,39,44,1|-wluc0,42,42,0|-n8q81,42,42,0|-n8q80,39,44,1|-dvro1,39,44,1|-dvro0,42,42,0|-4ink1,42,42,0|-4ink0,39,44,0|24aizz,39,44,0|24aj00,40,45,1|29bxjz,40,45,1|29bxk0,39,44,0|9veobz,39,44,0|9veoc0,40,45,1|a08o7z,40,45,1|a08o80,39,44,0|abrkbz,39,44,0|abrkc0,40,45,1|aiyqvz,40,45,1|aiyqw0,39,44,0|auulnz,39,44,0|auulo0,40,45,1|b1otjz,40,45,1|b1otk0,39,44,0|bdkobz,39,44,0|bdkoc0,40,45,1|bkew7z,40,45,1|bkew80,39,44,0|bwaqzz,39,44,0|bwar00,40,45,1|c3hxjz,40,45,1|c3hxk0,39,44,0|fj0azz,39,44,0|fj0b00,39,44,1|fqtsbz,39,44,1|fqtsc0,39,44,0|hym0bz,39,44,0|hym0c0,42,42,0|hzl9rz,42,42,0|hzl9s0,39,44,0|jtudnz,39,44,0|jtudo0,40,45,1|jxsw7z,40,45,1|jxsw80,39,44,0","America/Argentina/Salta|,0,53,0|-138a97w,41,47,0|-px7ys1,41,47,0|-px7ys0,42,42,0|-kecq81,42,42,0|-kecq80,39,44,1|-k84qc1,39,44,1|-k84qc0,42,42,0|-jxzu81,42,42,0|-jxzu80,39,44,1|-jqwd01,39,44,1|-jqwd00,42,42,0|-jeakw1,42,42,0|-jeakw0,39,44,1|-j84fo1,39,44,1|-j84fo0,42,42,0|-ivink1,42,42,0|-ivink0,39,44,1|-ipcic1,39,44,1|-ipcic0,42,42,0|-icqq81,42,42,0|-icqq80,39,44,1|-i6kl01,39,44,1|-i6kl00,42,42,0|-htysw1,42,42,0|-htysw0,39,44,1|-hnqt01,39,44,1|-hnqt00,42,42,0|-hb50w1,42,42,0|-hb50w0,39,44,1|-h4yvo1,39,44,1|-h4yvo0,42,42,0|-gsd3k1,42,42,0|-gsd3k0,39,44,1|-gm6yc1,39,44,1|-gm6yc0,42,42,0|-g9l681,42,42,0|-g9l680,39,44,1|-g3f101,39,44,1|-g3f100,42,42,0|-fqt8w1,42,42,0|-fqt8w0,39,44,1|-fkl901,39,44,1|-fkl900,42,42,0|-feb8w1,42,42,0|-feb8w0,39,44,1|-ewd101,39,44,1|-ewd100,42,42,0|-eq30w1,42,42,0|-eq30w0,39,44,1|-dse501,39,44,1|-dse500,42,42,0|-doj681,42,42,0|-doj680,39,44,1|-cfvuc1,39,44,1|-cfvuc0,42,42,0|-c4vgw1,42,42,0|-c4vgw0,39,44,1|-39hec1,39,44,1|-39hec0,42,42,0|-35mfk1,42,42,0|-35mfk0,39,44,1|-31nx01,39,44,1|-31nx00,42,42,0|-2pxm81,42,42,0|-2pxm80,39,44,1|-2ivzo1,39,44,1|-2ivzo0,42,42,0|-275ow1,42,42,0|-275ow0,39,44,1|-2042c1,39,44,1|-2042c0,42,42,0|-1odrk1,42,42,0|-1odrk0,39,44,1|-1fovo1,39,44,1|-1fovo0,42,42,0|-16brk1,42,42,0|-16brk0,39,44,1|-wluc1,39,44,1|-wluc0,42,42,0|-n8q81,42,42,0|-n8q80,39,44,1|-dvro1,39,44,1|-dvro0,42,42,0|-4ink1,42,42,0|-4ink0,39,44,0|24aizz,39,44,0|24aj00,40,45,1|29bxjz,40,45,1|29bxk0,39,44,0|9veobz,39,44,0|9veoc0,40,45,1|a08o7z,40,45,1|a08o80,39,44,0|abrkbz,39,44,0|abrkc0,40,45,1|aiyqvz,40,45,1|aiyqw0,39,44,0|auulnz,39,44,0|auulo0,40,45,1|b1otjz,40,45,1|b1otk0,42,42,0|bdkr3z,42,42,0|bdkr40,40,45,1|bkew7z,40,45,1|bkew80,39,44,0|bwaqzz,39,44,0|bwar00,40,45,1|c3hxjz,40,45,1|c3hxk0,39,44,0|fj0azz,39,44,0|fj0b00,39,44,1|fqtsbz,39,44,1|fqtsc0,39,44,0|jtudnz,39,44,0|jtudo0,40,45,1|jxsw7z,40,45,1|jxsw80,39,44,0","America/Argentina/San_Juan|,0,54,0|-138a8n8,41,47,0|-px7ys1,41,47,0|-px7ys0,42,42,0|-kecq81,42,42,0|-kecq80,39,44,1|-k84qc1,39,44,1|-k84qc0,42,42,0|-jxzu81,42,42,0|-jxzu80,39,44,1|-jqwd01,39,44,1|-jqwd00,42,42,0|-jeakw1,42,42,0|-jeakw0,39,44,1|-j84fo1,39,44,1|-j84fo0,42,42,0|-ivink1,42,42,0|-ivink0,39,44,1|-ipcic1,39,44,1|-ipcic0,42,42,0|-icqq81,42,42,0|-icqq80,39,44,1|-i6kl01,39,44,1|-i6kl00,42,42,0|-htysw1,42,42,0|-htysw0,39,44,1|-hnqt01,39,44,1|-hnqt00,42,42,0|-hb50w1,42,42,0|-hb50w0,39,44,1|-h4yvo1,39,44,1|-h4yvo0,42,42,0|-gsd3k1,42,42,0|-gsd3k0,39,44,1|-gm6yc1,39,44,1|-gm6yc0,42,42,0|-g9l681,42,42,0|-g9l680,39,44,1|-g3f101,39,44,1|-g3f100,42,42,0|-fqt8w1,42,42,0|-fqt8w0,39,44,1|-fkl901,39,44,1|-fkl900,42,42,0|-feb8w1,42,42,0|-feb8w0,39,44,1|-ewd101,39,44,1|-ewd100,42,42,0|-eq30w1,42,42,0|-eq30w0,39,44,1|-dse501,39,44,1|-dse500,42,42,0|-doj681,42,42,0|-doj680,39,44,1|-cfvuc1,39,44,1|-cfvuc0,42,42,0|-c4vgw1,42,42,0|-c4vgw0,39,44,1|-39hec1,39,44,1|-39hec0,42,42,0|-35mfk1,42,42,0|-35mfk0,39,44,1|-31nx01,39,44,1|-31nx00,42,42,0|-2pxm81,42,42,0|-2pxm80,39,44,1|-2ivzo1,39,44,1|-2ivzo0,42,42,0|-275ow1,42,42,0|-275ow0,39,44,1|-2042c1,39,44,1|-2042c0,42,42,0|-1odrk1,42,42,0|-1odrk0,39,44,1|-1fovo1,39,44,1|-1fovo0,42,42,0|-16brk1,42,42,0|-16brk0,39,44,1|-wluc1,39,44,1|-wluc0,42,42,0|-n8q81,42,42,0|-n8q80,39,44,1|-dvro1,39,44,1|-dvro0,42,42,0|-4ink1,42,42,0|-4ink0,39,44,0|24aizz,39,44,0|24aj00,40,45,1|29bxjz,40,45,1|29bxk0,39,44,0|9veobz,39,44,0|9veoc0,40,45,1|a08o7z,40,45,1|a08o80,39,44,0|abrkbz,39,44,0|abrkc0,40,45,1|aiyqvz,40,45,1|aiyqw0,39,44,0|auulnz,39,44,0|auulo0,40,45,1|b1l47z,40,45,1|b1l480,42,42,0|b51cfz,42,42,0|b51cg0,39,44,0|bdkobz,39,44,0|bdkoc0,40,45,1|bkew7z,40,45,1|bkew80,39,44,0|bwaqzz,39,44,0|bwar00,40,45,1|c3hxjz,40,45,1|c3hxk0,39,44,0|fj0azz,39,44,0|fj0b00,39,44,1|fqtsbz,39,44,1|fqtsc0,39,44,0|hyk5nz,39,44,0|hyk5o0,42,42,0|i1e33z,42,42,0|i1e340,39,44,0|jtudnz,39,44,0|jtudo0,40,45,1|jxsw7z,40,45,1|jxsw80,39,44,0","America/Argentina/San_Luis|,0,55,0|-138a91o,41,47,0|-px7ys1,41,47,0|-px7ys0,42,42,0|-kecq81,42,42,0|-kecq80,39,44,1|-k84qc1,39,44,1|-k84qc0,42,42,0|-jxzu81,42,42,0|-jxzu80,39,44,1|-jqwd01,39,44,1|-jqwd00,42,42,0|-jeakw1,42,42,0|-jeakw0,39,44,1|-j84fo1,39,44,1|-j84fo0,42,42,0|-ivink1,42,42,0|-ivink0,39,44,1|-ipcic1,39,44,1|-ipcic0,42,42,0|-icqq81,42,42,0|-icqq80,39,44,1|-i6kl01,39,44,1|-i6kl00,42,42,0|-htysw1,42,42,0|-htysw0,39,44,1|-hnqt01,39,44,1|-hnqt00,42,42,0|-hb50w1,42,42,0|-hb50w0,39,44,1|-h4yvo1,39,44,1|-h4yvo0,42,42,0|-gsd3k1,42,42,0|-gsd3k0,39,44,1|-gm6yc1,39,44,1|-gm6yc0,42,42,0|-g9l681,42,42,0|-g9l680,39,44,1|-g3f101,39,44,1|-g3f100,42,42,0|-fqt8w1,42,42,0|-fqt8w0,39,44,1|-fkl901,39,44,1|-fkl900,42,42,0|-feb8w1,42,42,0|-feb8w0,39,44,1|-ewd101,39,44,1|-ewd100,42,42,0|-eq30w1,42,42,0|-eq30w0,39,44,1|-dse501,39,44,1|-dse500,42,42,0|-doj681,42,42,0|-doj680,39,44,1|-cfvuc1,39,44,1|-cfvuc0,42,42,0|-c4vgw1,42,42,0|-c4vgw0,39,44,1|-39hec1,39,44,1|-39hec0,42,42,0|-35mfk1,42,42,0|-35mfk0,39,44,1|-31nx01,39,44,1|-31nx00,42,42,0|-2pxm81,42,42,0|-2pxm80,39,44,1|-2ivzo1,39,44,1|-2ivzo0,42,42,0|-275ow1,42,42,0|-275ow0,39,44,1|-2042c1,39,44,1|-2042c0,42,42,0|-1odrk1,42,42,0|-1odrk0,39,44,1|-1fovo1,39,44,1|-1fovo0,42,42,0|-16brk1,42,42,0|-16brk0,39,44,1|-wluc1,39,44,1|-wluc0,42,42,0|-n8q81,42,42,0|-n8q80,39,44,1|-dvro1,39,44,1|-dvro0,42,42,0|-4ink1,42,42,0|-4ink0,39,44,0|24aizz,39,44,0|24aj00,40,45,1|29bxjz,40,45,1|29bxk0,39,44,0|9veobz,39,44,0|9veoc0,40,45,1|a08o7z,40,45,1|a08o80,39,44,0|abrkbz,39,44,0|abrkc0,40,45,1|ajh9jz,40,45,1|ajh9k0,42,42,0|aujkfz,42,42,0|aujkg0,39,44,1|b1l6zz,39,44,1|b1l700,42,42,0|b6bn3z,42,42,0|b6bn40,39,44,0|fj0azz,39,44,0|fj0b00,39,44,1|fqtsbz,39,44,1|fqtsc0,39,44,0|hyk5nz,39,44,0|hyk5o0,42,42,0|i1e33z,42,42,0|i1e340,39,44,0|jtudnz,39,44,0|jtudo0,40,45,1|juz1jz,40,45,1|juz1k0,39,44,1|jxg0bz,39,44,1|jxg0c0,42,42,0|k8lxrz,42,42,0|k8lxs0,39,44,1|kg62zz,39,44,1|kg6300,42,42,0|krc0fz,42,42,0|krc0g0,39,44,0","America/Argentina/Tucuman|,0,56,0|-138a998,41,47,0|-px7ys1,41,47,0|-px7ys0,42,42,0|-kecq81,42,42,0|-kecq80,39,44,1|-k84qc1,39,44,1|-k84qc0,42,42,0|-jxzu81,42,42,0|-jxzu80,39,44,1|-jqwd01,39,44,1|-jqwd00,42,42,0|-jeakw1,42,42,0|-jeakw0,39,44,1|-j84fo1,39,44,1|-j84fo0,42,42,0|-ivink1,42,42,0|-ivink0,39,44,1|-ipcic1,39,44,1|-ipcic0,42,42,0|-icqq81,42,42,0|-icqq80,39,44,1|-i6kl01,39,44,1|-i6kl00,42,42,0|-htysw1,42,42,0|-htysw0,39,44,1|-hnqt01,39,44,1|-hnqt00,42,42,0|-hb50w1,42,42,0|-hb50w0,39,44,1|-h4yvo1,39,44,1|-h4yvo0,42,42,0|-gsd3k1,42,42,0|-gsd3k0,39,44,1|-gm6yc1,39,44,1|-gm6yc0,42,42,0|-g9l681,42,42,0|-g9l680,39,44,1|-g3f101,39,44,1|-g3f100,42,42,0|-fqt8w1,42,42,0|-fqt8w0,39,44,1|-fkl901,39,44,1|-fkl900,42,42,0|-feb8w1,42,42,0|-feb8w0,39,44,1|-ewd101,39,44,1|-ewd100,42,42,0|-eq30w1,42,42,0|-eq30w0,39,44,1|-dse501,39,44,1|-dse500,42,42,0|-doj681,42,42,0|-doj680,39,44,1|-cfvuc1,39,44,1|-cfvuc0,42,42,0|-c4vgw1,42,42,0|-c4vgw0,39,44,1|-39hec1,39,44,1|-39hec0,42,42,0|-35mfk1,42,42,0|-35mfk0,39,44,1|-31nx01,39,44,1|-31nx00,42,42,0|-2pxm81,42,42,0|-2pxm80,39,44,1|-2ivzo1,39,44,1|-2ivzo0,42,42,0|-275ow1,42,42,0|-275ow0,39,44,1|-2042c1,39,44,1|-2042c0,42,42,0|-1odrk1,42,42,0|-1odrk0,39,44,1|-1fovo1,39,44,1|-1fovo0,42,42,0|-16brk1,42,42,0|-16brk0,39,44,1|-wluc1,39,44,1|-wluc0,42,42,0|-n8q81,42,42,0|-n8q80,39,44,1|-dvro1,39,44,1|-dvro0,42,42,0|-4ink1,42,42,0|-4ink0,39,44,0|24aizz,39,44,0|24aj00,40,45,1|29bxjz,40,45,1|29bxk0,39,44,0|9veobz,39,44,0|9veoc0,40,45,1|a08o7z,40,45,1|a08o80,39,44,0|abrkbz,39,44,0|abrkc0,40,45,1|aiyqvz,40,45,1|aiyqw0,39,44,0|auulnz,39,44,0|auulo0,40,45,1|b1otjz,40,45,1|b1otk0,42,42,0|bdkr3z,42,42,0|bdkr40,40,45,1|bkew7z,40,45,1|bkew80,39,44,0|bwaqzz,39,44,0|bwar00,40,45,1|c3hxjz,40,45,1|c3hxk0,39,44,0|fj0azz,39,44,0|fj0b00,39,44,1|fqtsbz,39,44,1|fqtsc0,39,44,0|hym0bz,39,44,0|hym0c0,42,42,0|hz8b3z,42,42,0|hz8b40,39,44,0|jtudnz,39,44,0|jtudo0,40,45,1|jxsw7z,40,45,1|jxsw80,39,44,0|k8ytnz,39,44,0|k8yto0,40,45,1|kgiyvz,40,45,1|kgiyw0,39,44,0","America/Argentina/Ushuaia|,0,57,0|-138a8oo,41,47,0|-px7ys1,41,47,0|-px7ys0,42,42,0|-kecq81,42,42,0|-kecq80,39,44,1|-k84qc1,39,44,1|-k84qc0,42,42,0|-jxzu81,42,42,0|-jxzu80,39,44,1|-jqwd01,39,44,1|-jqwd00,42,42,0|-jeakw1,42,42,0|-jeakw0,39,44,1|-j84fo1,39,44,1|-j84fo0,42,42,0|-ivink1,42,42,0|-ivink0,39,44,1|-ipcic1,39,44,1|-ipcic0,42,42,0|-icqq81,42,42,0|-icqq80,39,44,1|-i6kl01,39,44,1|-i6kl00,42,42,0|-htysw1,42,42,0|-htysw0,39,44,1|-hnqt01,39,44,1|-hnqt00,42,42,0|-hb50w1,42,42,0|-hb50w0,39,44,1|-h4yvo1,39,44,1|-h4yvo0,42,42,0|-gsd3k1,42,42,0|-gsd3k0,39,44,1|-gm6yc1,39,44,1|-gm6yc0,42,42,0|-g9l681,42,42,0|-g9l680,39,44,1|-g3f101,39,44,1|-g3f100,42,42,0|-fqt8w1,42,42,0|-fqt8w0,39,44,1|-fkl901,39,44,1|-fkl900,42,42,0|-feb8w1,42,42,0|-feb8w0,39,44,1|-ewd101,39,44,1|-ewd100,42,42,0|-eq30w1,42,42,0|-eq30w0,39,44,1|-dse501,39,44,1|-dse500,42,42,0|-doj681,42,42,0|-doj680,39,44,1|-cfvuc1,39,44,1|-cfvuc0,42,42,0|-c4vgw1,42,42,0|-c4vgw0,39,44,1|-39hec1,39,44,1|-39hec0,42,42,0|-35mfk1,42,42,0|-35mfk0,39,44,1|-31nx01,39,44,1|-31nx00,42,42,0|-2pxm81,42,42,0|-2pxm80,39,44,1|-2ivzo1,39,44,1|-2ivzo0,42,42,0|-275ow1,42,42,0|-275ow0,39,44,1|-2042c1,39,44,1|-2042c0,42,42,0|-1odrk1,42,42,0|-1odrk0,39,44,1|-1fovo1,39,44,1|-1fovo0,42,42,0|-16brk1,42,42,0|-16brk0,39,44,1|-wluc1,39,44,1|-wluc0,42,42,0|-n8q81,42,42,0|-n8q80,39,44,1|-dvro1,39,44,1|-dvro0,42,42,0|-4ink1,42,42,0|-4ink0,39,44,0|24aizz,39,44,0|24aj00,40,45,1|29bxjz,40,45,1|29bxk0,39,44,0|9veobz,39,44,0|9veoc0,40,45,1|a08o7z,40,45,1|a08o80,39,44,0|abrkbz,39,44,0|abrkc0,40,45,1|aiyqvz,40,45,1|aiyqw0,39,44,0|auulnz,39,44,0|auulo0,40,45,1|b1otjz,40,45,1|b1otk0,39,44,0|bdkobz,39,44,0|bdkoc0,40,45,1|bkew7z,40,45,1|bkew80,39,44,0|bwaqzz,39,44,0|bwar00,40,45,1|c3hxjz,40,45,1|c3hxk0,39,44,0|fj0azz,39,44,0|fj0b00,39,44,1|fqtsbz,39,44,1|fqtsc0,39,44,0|hyiazz,39,44,0|hyib00,42,42,0|hzl9rz,42,42,0|hzl9s0,39,44,0|jtudnz,39,44,0|jtudo0,40,45,1|jxsw7z,40,45,1|jxsw80,39,44,0","America/Aruba|,0,58,0|-u7lckd,43,59,0|-2lx4u1,43,59,0|-2lx4u0,32,42,0","America/Asuncion|,0,60,0|-15r0ynk,44,60,0|-jy93zl,44,60,0|-jy93zk,42,42,0|1fnkfz,42,42,0|1fnkg0,39,44,0|27sgbz,39,44,0|27sgc0,42,42,0|2zzcfz,42,42,0|2zzcg0,39,44,1|37sqzz,39,44,1|37sr00,42,42,0|3it4fz,42,42,0|3it4g0,39,44,1|3qkobz,39,44,1|3qkoc0,42,42,0|41l1rz,42,42,0|41l1s0,39,44,1|49clnz,39,44,1|49clo0,42,42,0|4kcz3z,42,42,0|4kcz40,39,44,1|4tpxnz,39,44,1|4tpxo0,42,42,0|534wfz,42,42,0|534wg0,39,44,1|5cjpnz,39,44,1|5cjpo0,42,42,0|5lyofz,42,42,0|5lyog0,39,44,1|5vbmzz,39,44,1|5vbn00,42,42,0|64qlrz,42,42,0|64qls0,39,44,1|6e3kbz,39,44,1|6e3kc0,42,42,0|6nij3z,42,42,0|6nij40,39,44,1|6wvhnz,39,44,1|6wvho0,42,42,0|76agfz,42,42,0|76agg0,39,44,1|7fp9nz,39,44,1|7fp9o0,42,42,0|7p48fz,42,42,0|7p48g0,39,44,1|7yh6zz,39,44,1|7yh700,42,42,0|87w5rz,42,42,0|87w5s0,39,44,1|8h94bz,39,44,1|8h94c0,42,42,0|8qo33z,42,42,0|8qo340,39,44,1|9011nz,39,44,1|9011o0,42,42,0|99g0fz,42,42,0|99g0g0,39,44,1|9iutnz,39,44,1|9iuto0,42,42,0|9s9sfz,42,42,0|9s9sg0,39,44,1|a1mqzz,39,44,1|a1mr00,42,42,0|ac4lrz,42,42,0|ac4ls0,39,44,1|akeobz,39,44,1|akeoc0,42,42,0|attn3z,42,42,0|attn40,39,44,1|b36lnz,39,44,1|b36lo0,42,42,0|bcutrz,42,42,0|bcuts0,39,44,1|bkeyzz,39,44,1|bkez00,42,42,0|bvmr3z,42,42,0|bvmr40,39,44,1|c4qgbz,39,44,1|c4qgc0,42,42,0|ce79rz,42,42,0|ce79s0,39,44,1|clv4bz,39,44,1|clv4c0,42,42,0|cwz73z,42,42,0|cwz740,39,44,1|d4l6zz,39,44,1|d4l700,42,42,0|dfr4fz,42,42,0|dfr4g0,39,44,1|dnkizz,39,44,1|dnkj00,42,42,0|dyu5rz,42,42,0|dyu5s0,39,44,1|e61cbz,39,44,1|e61cc0,42,42,0|ehk8fz,42,42,0|ehk8g0,39,44,1|ep4dnz,39,44,1|ep4do0,42,42,0|f0ab3z,42,42,0|f0ab40,39,44,1|f87ezz,39,44,1|f87f00,42,42,0|fj0drz,42,42,0|fj0ds0,39,44,1|fqxhnz,39,44,1|fqxho0,42,42,0|g1qgfz,42,42,0|g1qgg0,39,44,1|g9nkbz,39,44,1|g9nkc0,42,42,0|gkthrz,42,42,0|gkths0,39,44,1|gu6gbz,39,44,1|gu6gc0,42,42,0|h1qr3z,42,42,0|h1qr40,39,44,1|hcwizz,39,44,1|hcwj00,42,42,0|hktsfz,42,42,0|hktsg0,39,44,1|hvmlnz,39,44,1|hvmlo0,42,42,0|i5pn3z,42,42,0|i5pn40,39,44,1|id9sbz,39,44,1|id9sc0,42,42,0|iofprz,42,42,0|iofps0,39,44,1|ivzuzz,39,44,1|ivzv00,42,42,0|j75sfz,42,42,0|j75sg0,39,44,1|jepxnz,39,44,1|jepxo0,42,42,0|jq8trz,42,42,0|jq8ts0,39,44,1|jxg0bz,39,44,1|jxg0c0,42,42,0|k8ywfz,42,42,0|k8ywg0,39,44,1|kg62zz,39,44,1|kg6300,42,42,0|kroz3z,42,42,0|kroz40,39,44,1|l0oyzz,39,44,1|l0oz00,42,42,0|l9p4fz,42,42,0|l9p4g0,39,44,1|ljf1nz,39,44,1|ljf1o0,42,42,0|lsf73z,42,42,0|lsf740,39,44,1|m254bz,39,44,1|m254c0,42,42,0|mbi8fz,42,42,0|mbi8g0,39,44,1|mk59nz,39,44,1|mk59o0,42,42,0|mu8b3z,42,42,0|mu8b40,39,44,1|n2vcbz,39,44,1|n2vcc0,42,42,0|ncydrz,42,42,0|ncyds0,39,44,1|nllezz,39,44,1|nllf00,42,42,0|nvogfz,42,42,0|nvogg0,39,44,1|o4ogbz,39,44,1|o4ogc0,42,42,0|oeej3z,42,42,0|oeej40,39,44,1|oneizz,39,44,1|onej00,42,42,0|ox4lrz,42,42,0|ox4ls0,39,44,1|p64lnz,39,44,1|p64lo0,42,42,0|pg7n3z,42,42,0|pg7n40,39,44,1|pouobz,39,44,1|pouoc0,42,42,0|pyxprz,42,42,0|pyxps0,39,44,1|q7kqzz,39,44,1|q7kr00,42,42,0|qhnsfz,42,42,0|qhnsg0,39,44,1|qqnsbz,39,44,1|qqnsc0,42,42,0|r0dv3z,42,42,0|r0dv40,39,44,1|r9duzz,39,44,1|r9dv00,42,42,0|rj3xrz,42,42,0|rj3xs0,39,44,1|rs3xnz,39,44,1|rs3xo0,42,42,0|s1u0fz,42,42,0|s1u0g0,39,44,1|sau0bz,39,44,1|sau0c0,42,42,0|skx1rz,42,42,0|skx1s0,39,44,1|stk2zz,39,44,1|stk300,42,42,0|t3n4fz,42,42,0|t3n4g0,39,44,1|tca5nz,39,44,1|tca5o0,42,42,0|tmd73z,42,42,0|tmd740,39,44,1|tvd6zz,39,44,1|tvd700,42,42,0|u539rz,42,42,0|u539s0,39,44,1|ue39nz,39,44,1|ue39o0,42,42,0|untcfz,42,42,0|untcg0,39,44,1|uwtcbz,39,44,1|uwtcc0,42,42,0|v6wdrz,42,42,0|v6wds0,39,44,1|vfjezz,39,44,1|vfjf00,42,42,0|vpmgfz,42,42,0|vpmgg0,39,44,1|vy9hnz,39,44,1|vy9ho0,42,42,0|w8cj3z,42,42,0|w8cj40,39,44,1|whcizz,39,44,1|whcj00,42,42,0|wr2lrz,42,42,0|wr2ls0,39,44,1|x02lnz,39,44,1|x02lo0,42,42,0|x9sofz,42,42,0|x9sog0,39,44,1|xisobz,39,44,1|xisoc0,42,42,0|xsir3z,42,42,0|xsir40,39,44,1|y1iqzz,39,44,1|y1ir00,42,42,0|yblsfz,42,42,0|yblsg0,39,44,1|yk8tnz,39,44,1|yk8to0,42,42,0|yubv3z,42,42,0|yubv40,39,44,1|z2ywbz,39,44,1|z2ywc0,42,42,0|zd1xrz,42,42,0|zd1xs0,39,44,1","America/Atikokan|,0,61,0|-1353b18,45,62,0|-qzov41,45,62,0|-qzov40,46,63,1|-qplz81,46,63,1|-qplz80,45,62,0|-f9ofc1,45,62,0|-f9ofc0,46,63,1|-ek21s1,46,63,1|-ek21s0,47,63,1|-cq2tg1,47,63,1|-cq2tg0,48,63,1|-cnp0k1,48,63,1|-cnp0k0,49,63,0","America/Bahia|,0,64,0|-t85kv8,39,44,0|-jylag1,39,44,0|-jylag0,40,45,1|-jpb141,40,45,1|-jpb140,39,44,0|-jfsd01,39,44,0|-jfsd00,40,45,1|-j6j3s1,40,45,1|-j6j3s0,39,44,0|-ahcyc1,39,44,0|-ahcyc0,40,45,1|-aad3o1,40,45,1|-aad3o0,39,44,0|-9yl101,39,44,0|-9yl100,40,45,1|-9sd141,40,45,1|-9sd140,39,44,0|-9ft3o1,39,44,0|-9ft3o0,40,45,1|-99j941,40,45,1|-99j940,39,44,0|-8wzbo1,39,44,0|-8wzbo0,40,45,1|-8scqg1,40,45,1|-8scqg0,39,44,0|-35xmc1,39,44,0|-35xmc0,40,45,1|-31nzs1,40,45,1|-31nzs0,39,44,0|-2kdp01,39,44,0|-2kdp00,40,45,1|-2hcig1,40,45,1|-2hcig0,39,44,0|-24qqc1,39,44,0|-24qqc0,40,45,1|-204541,40,45,1|-204540,39,44,0|-1nid01,39,44,0|-1nid00,40,45,1|-1hc7s1,40,45,1|-1hc7s0,39,44,0|-14qfo1,39,44,0|-14qfo0,40,45,1|-yifs1,40,45,1|-yifs0,39,44,0|89jcbz,39,44,0|89jcc0,40,45,1|8gdk7z,40,45,1|8gdk80,39,44,0|8rwgbz,39,44,0|8rwgc0,40,45,1|8xns7z,40,45,1|8xns80,39,44,0|9aodnz,39,44,0|9aodo0,40,45,1|9g2qvz,40,45,1|9g2qw0,39,44,0|9t1hnz,39,44,0|9t1ho0,40,45,1|9yfuvz,40,45,1|9yfuw0,39,44,0|abrkbz,39,44,0|abrkc0,40,45,1|ahvuvz,40,45,1|ahvuw0,39,44,0|auulnz,39,44,0|auulo0,40,45,1|b0yw7z,40,45,1|b0yw80,39,44,0|bdkobz,39,44,0|bdkoc0,40,45,1|bjc07z,40,45,1|bjc080,39,44,0|bwnpnz,39,44,0|bwnpo0,40,45,1|c1p47z,40,45,1|c1p480,39,44,0|cf0tnz,39,44,0|cf0to0,40,45,1|cli2vz,40,45,1|cli2w0,39,44,0|cxqwbz,39,44,0|cxqwc0,40,45,1|d485jz,40,45,1|d485k0,39,44,0|dggyzz,39,44,0|dggz00,40,45,1|dml9jz,40,45,1|dml9k0,39,44,0|dyu2zz,39,44,0|dyu300,40,45,1|e5oavz,40,45,1|e5oaw0,39,44,0|ehm0bz,39,44,0|ehm0c0,40,45,1|ep4avz,40,45,1|ep4aw0,39,44,0|f0n6zz,39,44,0|f0n700,40,45,1|f7hevz,40,45,1|f7hew0,39,44,0|fj0azz,39,44,0|fj0b00,40,45,1|fqkg7z,40,45,1|fqkg80,39,44,0|g23cbz,39,44,0|g23cc0,40,45,1|g8xk7z,40,45,1|g8xk80,39,44,0|gl6dnz,39,44,0|gl6do0,40,45,1|grnmvz,40,45,1|grnmw0,39,44,0|h4zcbz,39,44,0|h4zcc0,40,45,1|hadpjz,40,45,1|hadpk0,39,44,0|lt51nz,39,44,0|lt51o0,40,45,1|lzz9jz,40,45,1|lzz9k0,39,44,0","America/Bahia_Banderas|,0,65,0|-p1u4k0,50,66,0|-m7mko1,50,66,0|-m7mko0,45,62,0|-kf67c1,45,62,0|-kf67c0,50,66,0|-k6j3c1,50,66,0|-k6j3c0,45,62,0|-jypm01,45,62,0|-jypm00,50,66,0|-jpan81,50,66,0|-jpan80,45,62,0|-eg9601,45,62,0|-eg9600,50,66,0|-axv381,50,66,0|-axv380,51,40,0|m7z,51,40,0|m80,50,66,0|dphibz,50,66,0|dphic0,52,62,1|dzxcvz,52,62,1|dzxcw0,50,66,0|e87kzz,50,66,0|e87l00,52,62,1|einfjz,52,62,1|einfk0,50,66,0|eqxnnz,50,66,0|eqxno0,52,62,1|f1di7z,52,62,1|f1di80,50,66,0|f9nqbz,50,66,0|f9nqc0,52,62,1|fkgjjz,52,62,1|fkgjk0,50,66,0|fsdszz,50,66,0|fsdt00,52,62,1|g36m7z,52,62,1|g36m80,50,66,0|gcwozz,50,66,0|gcwp00,52,62,1|gkgu7z,52,62,1|gkgu80,50,66,0|gu6wzz,50,66,0|gu6x00,52,62,1|h4mrjz,52,62,1|h4mrk0,50,66,0|hcwznz,50,66,0|hcwzo0,52,62,1|hncu7z,52,62,1|hncu80,50,66,0|hvn2bz,50,66,0|hvn2c0,52,62,1|i6fvjz,52,62,1|i6fvk0,50,66,0|ied4zz,50,66,0|ied500,52,62,1|ip5y7z,52,62,1|ip5y80,50,66,0|ix37nz,50,66,0|ix37o0,52,62,1|j7w0vz,52,62,1|j7w0w0,50,66,0|jftabz,50,66,0|jftac0,52,62,1|jqm3jz,52,62,1|jqm3k0,50,66,0|jywbnz,50,66,0|jywbo0,52,62,1|k9c67z,52,62,1|k9c680,50,66,0|khmebz,50,66,0|khmec0,52,62,1|ks28vz,52,62,1|ks28w0,50,66,0|l0cgzz,50,66,0|l0ch00,46,63,1|lb57fz,46,63,1|lb57g0,45,62,0|lj2gvz,45,62,0|lj2gw0,46,63,1|ltva3z,46,63,1|ltva40,45,62,0|m1sjjz,45,62,0|m1sjk0,46,63,1|mclcrz,46,63,1|mclcs0,45,62,0|mkvkvz,45,62,0|mkvkw0,46,63,1|mvbffz,46,63,1|mvbfg0,45,62,0|n3lnjz,45,62,0|n3lnk0,46,63,1|ne1i3z,46,63,1|ne1i40,45,62,0|nmbq7z,45,62,0|nmbq80,46,63,1|nwrkrz,46,63,1|nwrks0,45,62,0|o51svz,45,62,0|o51sw0,46,63,1|ofum3z,46,63,1|ofum40,45,62,0|onrvjz,45,62,0|onrvk0,46,63,1|oykorz,46,63,1|oykos0,45,62,0|p6hy7z,45,62,0|p6hy80,46,63,1|pharfz,46,63,1|pharg0,45,62,0|ppkzjz,45,62,0|ppkzk0,46,63,1|q00u3z,46,63,1|q00u40,45,62,0|q8b27z,45,62,0|q8b280,46,63,1|qiqwrz,46,63,1|qiqws0,45,62,0|qr14vz,45,62,0|qr14w0,46,63,1|r1ty3z,46,63,1|r1ty40,45,62,0|r9r7jz,45,62,0|r9r7k0,46,63,1|rkk0rz,46,63,1|rkk0s0,45,62,0|rsha7z,45,62,0|rsha80,46,63,1|s3a3fz,46,63,1|s3a3g0,45,62,0|sbkbjz,45,62,0|sbkbk0,46,63,1|sm063z,46,63,1|sm0640,45,62,0|suae7z,45,62,0|suae80,46,63,1|t4q8rz,46,63,1|t4q8s0,45,62,0|td0gvz,45,62,0|td0gw0,46,63,1|tngbfz,46,63,1|tngbg0,45,62,0|tvqjjz,45,62,0|tvqjk0,46,63,1|u6jcrz,46,63,1|u6jcs0,45,62,0|uegm7z,45,62,0|uegm80,46,63,1|up9ffz,46,63,1|up9fg0,45,62,0|ux6ovz,45,62,0|ux6ow0,46,63,1|v7zi3z,46,63,1|v7zi40,45,62,0|vg9q7z,45,62,0|vg9q80,46,63,1|vqpkrz,46,63,1|vqpks0,45,62,0|vyzsvz,45,62,0|vyzsw0,46,63,1|w9fnfz,46,63,1|w9fng0,45,62,0|whpvjz,45,62,0|whpvk0,46,63,1|wsiorz,46,63,1|wsios0,45,62,0|x0fy7z,45,62,0|x0fy80,46,63,1|xb8rfz,46,63,1|xb8rg0,45,62,0|xj60vz,45,62,0|xj60w0,46,63,1|xtyu3z,46,63,1|xtyu40,45,62,0|y1w3jz,45,62,0|y1w3k0,46,63,1|ycowrz,46,63,1|ycows0,45,62,0|ykz4vz,45,62,0|ykz4w0,46,63,1|yvezfz,46,63,1|yvezg0,45,62,0|z3p7jz,45,62,0|z3p7k0,46,63,1|ze523z,46,63,1|ze5240,45,62,0","America/Barbados|,0,67,0|-o0aiaj,53,67,0|-jtzeak,53,67,0|-jtzeaj,32,42,0|3vvnbz,32,42,0|3vvnc0,54,44,1|41mz7z,54,44,1|41mz80,32,42,0|4bq0nz,32,42,0|4bq0o0,54,44,1|4kd1vz,54,44,1|4kd1w0,32,42,0|4ug3bz,32,42,0|4ug3c0,54,44,1|5334jz,54,44,1|5334k0,32,42,0|5dj4nz,32,42,0|5dj4o0,54,44,1|5lnn7z,54,44,1|5lnn80,32,42,0","America/Belem|,0,68,0|-t85j0s,39,44,0|-jylag1,39,44,0|-jylag0,40,45,1|-jpb141,40,45,1|-jpb140,39,44,0|-jfsd01,39,44,0|-jfsd00,40,45,1|-j6j3s1,40,45,1|-j6j3s0,39,44,0|-ahcyc1,39,44,0|-ahcyc0,40,45,1|-aad3o1,40,45,1|-aad3o0,39,44,0|-9yl101,39,44,0|-9yl100,40,45,1|-9sd141,40,45,1|-9sd140,39,44,0|-9ft3o1,39,44,0|-9ft3o0,40,45,1|-99j941,40,45,1|-99j940,39,44,0|-8wzbo1,39,44,0|-8wzbo0,40,45,1|-8scqg1,40,45,1|-8scqg0,39,44,0|-35xmc1,39,44,0|-35xmc0,40,45,1|-31nzs1,40,45,1|-31nzs0,39,44,0|-2kdp01,39,44,0|-2kdp00,40,45,1|-2hcig1,40,45,1|-2hcig0,39,44,0|-24qqc1,39,44,0|-24qqc0,40,45,1|-204541,40,45,1|-204540,39,44,0|-1nid01,39,44,0|-1nid00,40,45,1|-1hc7s1,40,45,1|-1hc7s0,39,44,0|-14qfo1,39,44,0|-14qfo0,40,45,1|-yifs1,40,45,1|-yifs0,39,44,0|89jcbz,39,44,0|89jcc0,40,45,1|8gdk7z,40,45,1|8gdk80,39,44,0|8rwgbz,39,44,0|8rwgc0,40,45,1|8xns7z,40,45,1|8xns80,39,44,0|9aodnz,39,44,0|9aodo0,40,45,1|9g2qvz,40,45,1|9g2qw0,39,44,0","America/Belize|,0,69,0|-u52ic0,45,62,0|-qqoy01,45,62,0|-qqoy00,55,70,1|-qk7ne1,55,70,1|-qk7ne0,45,62,0|-q7yvc1,45,62,0|-q7yvc0,55,70,1|-q14m21,55,70,1|-q14m20,45,62,0|-pp8so1,45,62,0|-pp8so0,55,70,1|-pieje1,55,70,1|-pieje0,45,62,0|-p6iq01,45,62,0|-p6iq00,55,70,1|-ozogq1,55,70,1|-ozogq0,45,62,0|-onfoo1,45,62,0|-onfoo0,55,70,1|-ogye21,55,70,1|-ogye20,45,62,0|-o4pm01,45,62,0|-o4pm00,55,70,1|-ny8be1,55,70,1|-ny8be0,45,62,0|-nlzjc1,45,62,0|-nlzjc0,55,70,1|-nf5a21,55,70,1|-nf5a20,45,62,0|-n39go1,45,62,0|-n39go0,55,70,1|-mwf7e1,55,70,1|-mwf7e0,45,62,0|-mkje01,45,62,0|-mkje00,55,70,1|-mdp4q1,55,70,1|-mdp4q0,45,62,0|-m1tbc1,45,62,0|-m1tbc0,55,70,1|-luz221,55,70,1|-luz220,45,62,0|-liqa01,45,62,0|-liqa00,55,70,1|-lc8ze1,55,70,1|-lc8ze0,45,62,0|-l007c1,45,62,0|-l007c0,55,70,1|-ktiwq1,55,70,1|-ktiwq0,45,62,0|-kha4o1,45,62,0|-kha4o0,55,70,1|-kafve1,55,70,1|-kafve0,45,62,0|-jyk201,45,62,0|-jyk200,55,70,1|-jrpsq1,55,70,1|-jrpsq0,45,62,0|-jftzc1,45,62,0|-jftzc0,55,70,1|-j8zq21,55,70,1|-j8zq20,45,62,0|-iwqy01,45,62,0|-iwqy00,55,70,1|-iq9ne1,55,70,1|-iq9ne0,45,62,0|-ie0vc1,45,62,0|-ie0vc0,55,70,1|-i7jkq1,55,70,1|-i7jkq0,45,62,0|-hvaso1,45,62,0|-hvaso0,55,70,1|-hoti21,55,70,1|-hoti20,45,62,0|-hckq01,45,62,0|-hckq00,55,70,1|-h5qgq1,55,70,1|-h5qgq0,45,62,0|-gtunc1,45,62,0|-gtunc0,55,70,1|-gn0e21,55,70,1|-gn0e20,45,62,0|-gb4ko1,45,62,0|-gb4ko0,55,70,1|-g4abe1,55,70,1|-g4abe0,45,62,0|-fs1jc1,45,62,0|-fs1jc0,55,70,1|-flk8q1,55,70,1|-flk8q0,45,62,0|-f9bgo1,45,62,0|-f9bgo0,55,70,1|-f2u621,55,70,1|-f2u620,45,62,0|-eqle01,45,62,0|-eqle00,55,70,1|-ejr4q1,55,70,1|-ejr4q0,45,62,0|-ecwso1,45,62,0|-ecwso0,47,63,1|-cq2tg1,47,63,1|-cq2tg0,48,63,1|-cjqks1,48,63,1|-cjqks0,45,62,0|-blvzc1,45,62,0|-blvzc0,55,70,1|-bf1q21,55,70,1|-bf1q20,45,62,0|-b35wo1,45,62,0|-b35wo0,55,70,1|-awbne1,55,70,1|-awbne0,45,62,0|-akfu01,45,62,0|-akfu00,55,70,1|-adlkq1,55,70,1|-adlkq0,45,62,0|-a1cso1,45,62,0|-a1cso0,55,70,1|-9uvi21,55,70,1|-9uvi20,45,62,0|-9imq01,45,62,0|-9imq00,55,70,1|-9c5fe1,55,70,1|-9c5fe0,45,62,0|-8zwnc1,45,62,0|-8zwnc0,55,70,1|-8t2e21,55,70,1|-8t2e20,45,62,0|-8h6ko1,45,62,0|-8h6ko0,55,70,1|-8acbe1,55,70,1|-8acbe0,45,62,0|-7ygi01,45,62,0|-7ygi00,55,70,1|-7rm8q1,55,70,1|-7rm8q0,45,62,0|-7fqfc1,45,62,0|-7fqfc0,55,70,1|-78w621,55,70,1|-78w620,45,62,0|-6wne01,45,62,0|-6wne00,55,70,1|-6q63e1,55,70,1|-6q63e0,45,62,0|-6dxbc1,45,62,0|-6dxbc0,55,70,1|-67g0q1,55,70,1|-67g0q0,45,62,0|-5v78o1,45,62,0|-5v78o0,55,70,1|-5ocze1,55,70,1|-5ocze0,45,62,0|-5ch601,45,62,0|-5ch600,55,70,1|-55mwq1,55,70,1|-55mwq0,45,62,0|-4tr3c1,45,62,0|-4tr3c0,55,70,1|-4mwu21,55,70,1|-4mwu20,45,62,0|-4ao201,45,62,0|-4ao200,55,70,1|-446re1,55,70,1|-446re0,45,62,0|-3rxzc1,45,62,0|-3rxzc0,55,70,1|-3lgoq1,55,70,1|-3lgoq0,45,62,0|-397wo1,45,62,0|-397wo0,55,70,1|-32qm21,55,70,1|-32qm20,45,62,0|-2qhu01,45,62,0|-2qhu00,55,70,1|-2jnkq1,55,70,1|-2jnkq0,45,62,0|-27rrc1,45,62,0|-27rrc0,55,70,1|-20xi21,55,70,1|-20xi20,45,62,0|-1p1oo1,45,62,0|-1p1oo0,55,70,1|-1i7fe1,55,70,1|-1i7fe0,45,62,0|-15ync1,45,62,0|-15ync0,55,70,1|-zhcq1,55,70,1|-zhcq0,45,62,0|21s0nz,45,62,0|21s0o0,46,63,1|2565vz,46,63,1|2565w0,45,62,0|6rj4nz,45,62,0|6rj4o0,46,63,1|6uer7z,46,63,1|6uer80,45,62,0","America/Blanc-Sablon|,0,71,0|-18vs838,32,42,0|-qzp0o1,32,42,0|-qzp0o0,54,44,1|-qpm4s1,54,44,1|-qpm4s0,32,42,0|-ek27c1,32,42,0|-ek27c0,33,44,1|-cq2tg1,33,44,1|-cq2tg0,34,44,1|-cnp641,34,44,1|-cnp640,32,42,0","America/Boa_Vista|,0,72,0|-t85grk,42,42,0|-jyl7o1,42,42,0|-jyl7o0,39,44,1|-jpayc1,39,44,1|-jpayc0,42,42,0|-jfsa81,42,42,0|-jfsa80,39,44,1|-j6j101,39,44,1|-j6j100,42,42,0|-ahcvk1,42,42,0|-ahcvk0,39,44,1|-aad0w1,39,44,1|-aad0w0,42,42,0|-9yky81,42,42,0|-9yky80,39,44,1|-9scyc1,39,44,1|-9scyc0,42,42,0|-9ft0w1,42,42,0|-9ft0w0,39,44,1|-99j6c1,39,44,1|-99j6c0,42,42,0|-8wz8w1,42,42,0|-8wz8w0,39,44,1|-8scno1,39,44,1|-8scno0,42,42,0|-35xjk1,42,42,0|-35xjk0,39,44,1|-31nx01,39,44,1|-31nx00,42,42,0|-2kdm81,42,42,0|-2kdm80,39,44,1|-2hcfo1,39,44,1|-2hcfo0,42,42,0|-24qnk1,42,42,0|-24qnk0,39,44,1|-2042c1,39,44,1|-2042c0,42,42,0|-1nia81,42,42,0|-1nia80,39,44,1|-1hc501,39,44,1|-1hc500,42,42,0|-14qcw1,42,42,0|-14qcw0,39,44,1|-yid01,39,44,1|-yid00,42,42,0|89jf3z,42,42,0|89jf40,39,44,1|8gdmzz,39,44,1|8gdn00,42,42,0|8rwj3z,42,42,0|8rwj40,39,44,1|8xnuzz,39,44,1|8xnv00,42,42,0|9aogfz,42,42,0|9aogg0,39,44,1|9g2tnz,39,44,1|9g2to0,42,42,0|fj0drz,42,42,0|fj0ds0,39,44,1|fqkizz,39,44,1|fqkj00,42,42,0|g23f3z,42,42,0|g23f40,39,44,1|g2gazz,39,44,1|g2gb00,42,42,0","America/Bogota|,0,73,0|-18s2sy8,53,73,0|-srdoy9,53,73,0|-srdoy8,56,63,0|bnnsjz,56,63,0|bnnsk0,42,42,1|c4xxrz,42,42,1|c4xxs0,56,63,0","America/Boise|,0,74,0|-18y0gg0,51,40,0|-r0emw1,51,40,0|-r0emw0,57,66,1|-qplto1,57,66,1|-qplto0,51,40,0|-qhok81,51,40,0|-qhok80,57,66,1|-q6vr01,57,66,1|-q6vr00,51,40,0|-oc9iw1,51,40,0|-oc9iw0,50,66,0|-ek1z01,50,66,0|-ek1z00,58,62,1|-cq2tg1,58,62,1|-cq2tg0,59,62,1|-cnoxs1,59,62,1|-cnoxs0,50,66,0|-1e8kc1,50,66,0|-1e8kc0,52,62,1|-14vls1,52,62,1|-14vls0,50,66,0|-viho1,50,66,0|-viho0,52,62,1|-m5j41,52,62,1|-m5j40,50,66,0|-csf01,50,66,0|-csf00,52,62,1|-3fgg1,52,62,1|-3fgg0,50,66,0|5xnnz,50,66,0|5xno0,52,62,1|fam7z,52,62,1|fam80,50,66,0|onqbz,50,66,0|onqc0,52,62,1|ydnjz,52,62,1|ydnk0,50,66,0|17qrnz,50,66,0|17qro0,52,62,1|1h3q7z,52,62,1|1h3q80,50,66,0|1qgubz,50,66,0|1qguc0,52,62,1|1ztsvz,52,62,1|1ztsw0,50,66,0|24vczz,50,66,0|24vd00,52,62,1|2ijvjz,52,62,1|2ijvk0,50,66,0|2oobnz,50,66,0|2oobo0,52,62,1|319y7z,52,62,1|319y80,50,66,0|3an2bz,50,66,0|3an2c0,52,62,1|3kczjz,52,62,1|3kczk0,50,66,0|3td4zz,50,66,0|3td500,52,62,1|43327z,52,62,1|433280,50,66,0|4cg6bz,50,66,0|4cg6c0,52,62,1|4lt4vz,52,62,1|4lt4w0,50,66,0|4v68zz,50,66,0|4v6900,52,62,1|54j7jz,52,62,1|54j7k0,50,66,0|5dwbnz,50,66,0|5dwbo0,52,62,1|5n9a7z,52,62,1|5n9a80,50,66,0|5wmebz,50,66,0|5wmec0,52,62,1|65zcvz,52,62,1|65zcw0,50,66,0|6fcgzz,50,66,0|6fch00,52,62,1|6p2e7z,52,62,1|6p2e80,50,66,0|6y2jnz,50,66,0|6y2jo0,52,62,1|77sgvz,52,62,1|77sgw0,50,66,0|7h5kzz,50,66,0|7h5l00,52,62,1|7qijjz,52,62,1|7qijk0,50,66,0|7zvnnz,50,66,0|7zvno0,52,62,1|898m7z,52,62,1|898m80,50,66,0|8ilqbz,50,66,0|8ilqc0,52,62,1|8ryovz,52,62,1|8ryow0,50,66,0|908wzz,50,66,0|908x00,52,62,1|9aorjz,52,62,1|9aork0,50,66,0|9iyznz,50,66,0|9iyzo0,52,62,1|9trsvz,52,62,1|9trsw0,50,66,0|a1p2bz,50,66,0|a1p2c0,52,62,1|achvjz,52,62,1|achvk0,50,66,0|akf4zz,50,66,0|akf500,52,62,1|av7y7z,52,62,1|av7y80,50,66,0|b3i6bz,50,66,0|b3i6c0,52,62,1|bdy0vz,52,62,1|bdy0w0,50,66,0|bm88zz,50,66,0|bm8900,52,62,1|bwo3jz,52,62,1|bwo3k0,50,66,0|c4ybnz,50,66,0|c4ybo0,52,62,1|cfr4vz,52,62,1|cfr4w0,50,66,0|cnoebz,50,66,0|cnoec0,52,62,1|cyh7jz,52,62,1|cyh7k0,50,66,0|d6egzz,50,66,0|d6eh00,52,62,1|dh7a7z,52,62,1|dh7a80,50,66,0|dphibz,50,66,0|dphic0,52,62,1|dzxcvz,52,62,1|dzxcw0,50,66,0|e87kzz,50,66,0|e87l00,52,62,1|einfjz,52,62,1|einfk0,50,66,0|eqxnnz,50,66,0|eqxno0,52,62,1|f1di7z,52,62,1|f1di80,50,66,0|f9nqbz,50,66,0|f9nqc0,52,62,1|fkgjjz,52,62,1|fkgjk0,50,66,0|fsdszz,50,66,0|fsdt00,52,62,1|g36m7z,52,62,1|g36m80,50,66,0|gb3vnz,50,66,0|gb3vo0,52,62,1|glwovz,52,62,1|glwow0,50,66,0|gu6wzz,50,66,0|gu6x00,52,62,1|h4mrjz,52,62,1|h4mrk0,50,66,0|hcwznz,50,66,0|hcwzo0,52,62,1|hncu7z,52,62,1|hncu80,50,66,0|hvn2bz,50,66,0|hvn2c0,52,62,1|i6fvjz,52,62,1|i6fvk0,50,66,0|ied4zz,50,66,0|ied500,52,62,1|ip5y7z,52,62,1|ip5y80,50,66,0|ix37nz,50,66,0|ix37o0,52,62,1|j7w0vz,52,62,1|j7w0w0,50,66,0|jeqebz,50,66,0|jeqec0,52,62,1|jqz27z,52,62,1|jqz280,50,66,0|jxggzz,50,66,0|jxgh00,52,62,1|k9p4vz,52,62,1|k9p4w0,50,66,0|kg6jnz,50,66,0|kg6jo0,52,62,1|ksf7jz,52,62,1|ksf7k0,50,66,0|kz9kzz,50,66,0|kz9l00,52,62,1|lbi8vz,52,62,1|lbi8w0,50,66,0|lhznnz,50,66,0|lhzno0,52,62,1|lu8bjz,52,62,1|lu8bk0,50,66,0|m0pqbz,50,66,0|m0pqc0,52,62,1|mcye7z,52,62,1|mcye80,50,66,0|mjfszz,50,66,0|mjft00,52,62,1|mvogvz,52,62,1|mvogw0,50,66,0|n25vnz,50,66,0|n25vo0,52,62,1|neejjz,52,62,1|neejk0,50,66,0|nkvybz,50,66,0|nkvyc0,52,62,1|nx4m7z,52,62,1|nx4m80,50,66,0|o3yznz,50,66,0|o3yzo0,52,62,1|og7njz,52,62,1|og7nk0,50,66,0|omp2bz,50,66,0|omp2c0,52,62,1|oyxq7z,52,62,1|oyxq80,50,66,0|p5f4zz,50,66,0|p5f500,52,62,1|phnsvz,52,62,1|phnsw0,50,66,0|po57nz,50,66,0|po57o0,52,62,1|q0dvjz,52,62,1|q0dvk0,50,66,0|q6vabz,50,66,0|q6vac0,52,62,1|qj3y7z,52,62,1|qj3y80,50,66,0|qpybnz,50,66,0|qpybo0,52,62,1|r26zjz,52,62,1|r26zk0,50,66,0|r8oebz,50,66,0|r8oec0,52,62,1|rkx27z,52,62,1|rkx280,50,66,0|rregzz,50,66,0|rreh00,52,62,1|s3n4vz,52,62,1|s3n4w0,50,66,0|sa4jnz,50,66,0|sa4jo0,52,62,1|smd7jz,52,62,1|smd7k0,50,66,0|ssumbz,50,66,0|ssumc0,52,62,1|t53a7z,52,62,1|t53a80,50,66,0|tbkozz,50,66,0|tbkp00,52,62,1|tntcvz,52,62,1|tntcw0,50,66,0|tunqbz,50,66,0|tunqc0,52,62,1|u6we7z,52,62,1|u6we80,50,66,0|uddszz,50,66,0|uddt00,52,62,1|upmgvz,52,62,1|upmgw0,50,66,0|uw3vnz,50,66,0|uw3vo0,52,62,1|v8cjjz,52,62,1|v8cjk0,50,66,0|vetybz,50,66,0|vetyc0,52,62,1|vr2m7z,52,62,1|vr2m80,50,66,0|vxk0zz,50,66,0|vxk100,52,62,1|w9sovz,52,62,1|w9sow0,50,66,0|wgn2bz,50,66,0|wgn2c0,52,62,1|wsvq7z,52,62,1|wsvq80,50,66,0|wzd4zz,50,66,0|wzd500,52,62,1|xblsvz,52,62,1|xblsw0,50,66,0|xi37nz,50,66,0|xi37o0,52,62,1|xubvjz,52,62,1|xubvk0,50,66,0|y0tabz,50,66,0|y0tac0,52,62,1|yd1y7z,52,62,1|yd1y80,50,66,0|yjjczz,50,66,0|yjjd00,52,62,1|yvs0vz,52,62,1|yvs0w0,50,66,0|z29fnz,50,66,0|z29fo0,52,62,1|zei3jz,52,62,1|zei3k0,50,66,0","America/Cambridge_Bay|,60,1,0|-q3gdc0,50,66,0|-ek1z01,50,66,0|-ek1z00,58,62,1|-cq2tg1,58,62,1|-cq2tg0,59,62,1|-cnoxs1,59,62,1|-cnoxs0,50,66,0|-2g1tw1,50,66,0|-2g1tw0,61,63,1|-26btw1,61,63,1|-26btw0,50,66,0|5dwbnz,50,66,0|5dwbo0,52,62,1|5n9a7z,52,62,1|5n9a80,50,66,0|5wmebz,50,66,0|5wmec0,52,62,1|65zcvz,52,62,1|65zcw0,50,66,0|6fcgzz,50,66,0|6fch00,52,62,1|6p2e7z,52,62,1|6p2e80,50,66,0|6y2jnz,50,66,0|6y2jo0,52,62,1|77sgvz,52,62,1|77sgw0,50,66,0|7h5kzz,50,66,0|7h5l00,52,62,1|7qijjz,52,62,1|7qijk0,50,66,0|7zvnnz,50,66,0|7zvno0,52,62,1|898m7z,52,62,1|898m80,50,66,0|8ilqbz,50,66,0|8ilqc0,52,62,1|8ryovz,52,62,1|8ryow0,50,66,0|908wzz,50,66,0|908x00,52,62,1|9aorjz,52,62,1|9aork0,50,66,0|9iyznz,50,66,0|9iyzo0,52,62,1|9trsvz,52,62,1|9trsw0,50,66,0|a1p2bz,50,66,0|a1p2c0,52,62,1|achvjz,52,62,1|achvk0,50,66,0|akf4zz,50,66,0|akf500,52,62,1|av7y7z,52,62,1|av7y80,50,66,0|b3i6bz,50,66,0|b3i6c0,52,62,1|bdy0vz,52,62,1|bdy0w0,50,66,0|bm88zz,50,66,0|bm8900,52,62,1|bwo3jz,52,62,1|bwo3k0,50,66,0|c4ybnz,50,66,0|c4ybo0,52,62,1|cfr4vz,52,62,1|cfr4w0,50,66,0|cnoebz,50,66,0|cnoec0,52,62,1|cyh7jz,52,62,1|cyh7k0,50,66,0|d6egzz,50,66,0|d6eh00,52,62,1|dh7a7z,52,62,1|dh7a80,50,66,0|dphibz,50,66,0|dphic0,52,62,1|dzxcvz,52,62,1|dzxcw0,50,66,0|e87kzz,50,66,0|e87l00,52,62,1|einfjz,52,62,1|einfk0,50,66,0|eqxnnz,50,66,0|eqxno0,52,62,1|f1di7z,52,62,1|f1di80,50,66,0|f9nqbz,50,66,0|f9nqc0,52,62,1|fkgjjz,52,62,1|fkgjk0,45,62,0|fsdq7z,45,62,0|fsdq80,46,63,1|g36jfz,46,63,1|g36jg0,49,63,0|g3jcjz,49,63,0|g3jck0,45,62,0|gb3vnz,45,62,0|gb3vo0,52,62,1|glwovz,52,62,1|glwow0,50,66,0|gu6wzz,50,66,0|gu6x00,52,62,1|h4mrjz,52,62,1|h4mrk0,50,66,0|hcwznz,50,66,0|hcwzo0,52,62,1|hncu7z,52,62,1|hncu80,50,66,0|hvn2bz,50,66,0|hvn2c0,52,62,1|i6fvjz,52,62,1|i6fvk0,50,66,0|ied4zz,50,66,0|ied500,52,62,1|ip5y7z,52,62,1|ip5y80,50,66,0|ix37nz,50,66,0|ix37o0,52,62,1|j7w0vz,52,62,1|j7w0w0,50,66,0|jeqebz,50,66,0|jeqec0,52,62,1|jqz27z,52,62,1|jqz280,50,66,0|jxggzz,50,66,0|jxgh00,52,62,1|k9p4vz,52,62,1|k9p4w0,50,66,0|kg6jnz,50,66,0|kg6jo0,52,62,1|ksf7jz,52,62,1|ksf7k0,50,66,0|kz9kzz,50,66,0|kz9l00,52,62,1|lbi8vz,52,62,1|lbi8w0,50,66,0|lhznnz,50,66,0|lhzno0,52,62,1|lu8bjz,52,62,1|lu8bk0,50,66,0|m0pqbz,50,66,0|m0pqc0,52,62,1|mcye7z,52,62,1|mcye80,50,66,0|mjfszz,50,66,0|mjft00,52,62,1|mvogvz,52,62,1|mvogw0,50,66,0|n25vnz,50,66,0|n25vo0,52,62,1|neejjz,52,62,1|neejk0,50,66,0|nkvybz,50,66,0|nkvyc0,52,62,1|nx4m7z,52,62,1|nx4m80,50,66,0|o3yznz,50,66,0|o3yzo0,52,62,1|og7njz,52,62,1|og7nk0,50,66,0|omp2bz,50,66,0|omp2c0,52,62,1|oyxq7z,52,62,1|oyxq80,50,66,0|p5f4zz,50,66,0|p5f500,52,62,1|phnsvz,52,62,1|phnsw0,50,66,0|po57nz,50,66,0|po57o0,52,62,1|q0dvjz,52,62,1|q0dvk0,50,66,0|q6vabz,50,66,0|q6vac0,52,62,1|qj3y7z,52,62,1|qj3y80,50,66,0|qpybnz,50,66,0|qpybo0,52,62,1|r26zjz,52,62,1|r26zk0,50,66,0|r8oebz,50,66,0|r8oec0,52,62,1|rkx27z,52,62,1|rkx280,50,66,0|rregzz,50,66,0|rreh00,52,62,1|s3n4vz,52,62,1|s3n4w0,50,66,0|sa4jnz,50,66,0|sa4jo0,52,62,1|smd7jz,52,62,1|smd7k0,50,66,0|ssumbz,50,66,0|ssumc0,52,62,1|t53a7z,52,62,1|t53a80,50,66,0|tbkozz,50,66,0|tbkp00,52,62,1|tntcvz,52,62,1|tntcw0,50,66,0|tunqbz,50,66,0|tunqc0,52,62,1|u6we7z,52,62,1|u6we80,50,66,0|uddszz,50,66,0|uddt00,52,62,1|upmgvz,52,62,1|upmgw0,50,66,0|uw3vnz,50,66,0|uw3vo0,52,62,1|v8cjjz,52,62,1|v8cjk0,50,66,0|vetybz,50,66,0|vetyc0,52,62,1|vr2m7z,52,62,1|vr2m80,50,66,0|vxk0zz,50,66,0|vxk100,52,62,1|w9sovz,52,62,1|w9sow0,50,66,0|wgn2bz,50,66,0|wgn2c0,52,62,1|wsvq7z,52,62,1|wsvq80,50,66,0|wzd4zz,50,66,0|wzd500,52,62,1|xblsvz,52,62,1|xblsw0,50,66,0|xi37nz,50,66,0|xi37o0,52,62,1|xubvjz,52,62,1|xubvk0,50,66,0|y0tabz,50,66,0|y0tac0,52,62,1|yd1y7z,52,62,1|yd1y80,50,66,0|yjjczz,50,66,0|yjjd00,52,62,1|yvs0vz,52,62,1|yvs0w0,50,66,0|z29fnz,50,66,0|z29fo0,52,62,1|zei3jz,52,62,1|zei3k0,50,66,0","America/Campo_Grande|,0,75,0|-t85hvw,42,42,0|-jyl7o1,42,42,0|-jyl7o0,39,44,1|-jpayc1,39,44,1|-jpayc0,42,42,0|-jfsa81,42,42,0|-jfsa80,39,44,1|-j6j101,39,44,1|-j6j100,42,42,0|-ahcvk1,42,42,0|-ahcvk0,39,44,1|-aad0w1,39,44,1|-aad0w0,42,42,0|-9yky81,42,42,0|-9yky80,39,44,1|-9scyc1,39,44,1|-9scyc0,42,42,0|-9ft0w1,42,42,0|-9ft0w0,39,44,1|-99j6c1,39,44,1|-99j6c0,42,42,0|-8wz8w1,42,42,0|-8wz8w0,39,44,1|-8scno1,39,44,1|-8scno0,42,42,0|-35xjk1,42,42,0|-35xjk0,39,44,1|-31nx01,39,44,1|-31nx00,42,42,0|-2kdm81,42,42,0|-2kdm80,39,44,1|-2hcfo1,39,44,1|-2hcfo0,42,42,0|-24qnk1,42,42,0|-24qnk0,39,44,1|-2042c1,39,44,1|-2042c0,42,42,0|-1nia81,42,42,0|-1nia80,39,44,1|-1hc501,39,44,1|-1hc500,42,42,0|-14qcw1,42,42,0|-14qcw0,39,44,1|-yid01,39,44,1|-yid00,42,42,0|89jf3z,42,42,0|89jf40,39,44,1|8gdmzz,39,44,1|8gdn00,42,42,0|8rwj3z,42,42,0|8rwj40,39,44,1|8xnuzz,39,44,1|8xnv00,42,42,0|9aogfz,42,42,0|9aogg0,39,44,1|9g2tnz,39,44,1|9g2to0,42,42,0|9t1kfz,42,42,0|9t1kg0,39,44,1|9yfxnz,39,44,1|9yfxo0,42,42,0|abrn3z,42,42,0|abrn40,39,44,1|ahvxnz,39,44,1|ahvxo0,42,42,0|auuofz,42,42,0|auuog0,39,44,1|b0yyzz,39,44,1|b0yz00,42,42,0|bdkr3z,42,42,0|bdkr40,39,44,1|bjc2zz,39,44,1|bjc300,42,42,0|bwnsfz,42,42,0|bwnsg0,39,44,1|c1p6zz,39,44,1|c1p700,42,42,0|cf0wfz,42,42,0|cf0wg0,39,44,1|cli5nz,39,44,1|cli5o0,42,42,0|cxqz3z,42,42,0|cxqz40,39,44,1|d488bz,39,44,1|d488c0,42,42,0|dgh1rz,42,42,0|dgh1s0,39,44,1|dmlcbz,39,44,1|dmlcc0,42,42,0|dyu5rz,42,42,0|dyu5s0,39,44,1|e5odnz,39,44,1|e5odo0,42,42,0|ehm33z,42,42,0|ehm340,39,44,1|ep4dnz,39,44,1|ep4do0,42,42,0|f0n9rz,42,42,0|f0n9s0,39,44,1|f7hhnz,39,44,1|f7hho0,42,42,0|fj0drz,42,42,0|fj0ds0,39,44,1|fqkizz,39,44,1|fqkj00,42,42,0|g23f3z,42,42,0|g23f40,39,44,1|g8xmzz,39,44,1|g8xn00,42,42,0|gl6gfz,42,42,0|gl6gg0,39,44,1|grnpnz,39,44,1|grnpo0,42,42,0|h4zf3z,42,42,0|h4zf40,39,44,1|hadsbz,39,44,1|hadsc0,42,42,0|hmzkfz,42,42,0|hmzkg0,39,44,1|ht3uzz,39,44,1|ht3v00,42,42,0|i6j9rz,42,42,0|i6j9s0,39,44,1|ic6wbz,39,44,1|ic6wc0,42,42,0|iofprz,42,42,0|iofps0,39,44,1|iuwyzz,39,44,1|iuwz00,42,42,0|j88ofz,42,42,0|j88og0,39,44,1|je00bz,39,44,1|je00c0,42,42,0|jpvv3z,42,42,0|jpvv40,39,44,1|jwd4bz,39,44,1|jwd4c0,42,42,0|k8ywfz,42,42,0|k8ywg0,39,44,1|kf36zz,39,44,1|kf3700,42,42,0|kroz3z,42,42,0|kroz40,39,44,1|ky68bz,39,44,1|ky68c0,42,42,0|laf1rz,42,42,0|laf1s0,39,44,1|lgwazz,39,44,1|lgwb00,42,42,0|lt54fz,42,42,0|lt54g0,39,44,1|lzzcbz,39,44,1|lzzcc0,42,42,0|mc85rz,42,42,0|mc85s0,39,44,1|micgbz,39,44,1|micgc0,42,42,0|muy8fz,42,42,0|muy8g0,39,44,1|n12izz,39,44,1|n12j00,42,42,0|ndob3z,42,42,0|ndob40,39,44,1|nk5kbz,39,44,1|nk5kc0,42,42,0|nwedrz,42,42,0|nweds0,39,44,1|o2vmzz,39,44,1|o2vn00,42,42,0|of4gfz,42,42,0|of4gg0,39,44,1|ollpnz,39,44,1|ollpo0,42,42,0|oxuj3z,42,42,0|oxuj40,39,44,1|p4bsbz,39,44,1|p4bsc0,42,42,0|phnhrz,42,42,0|phnhs0,39,44,1|pn1uzz,39,44,1|pn1v00,42,42,0","America/Cancun|,0,76,0|-p1u7c0,45,62,0|690gnz,45,62,0|690go0,49,63,0|dphcrz,49,63,0|dphcs0,62,42,1|dzx7bz,62,42,1|dzx7c0,49,63,0|e87ffz,49,63,0|e87fg0,62,42,1|ein9zz,62,42,1|eina00,49,63,0|eqxi3z,49,63,0|eqxi40,62,42,1|ex1snz,62,42,1|ex1so0,46,63,1|f1dffz,46,63,1|f1dfg0,45,62,0|f9nnjz,45,62,0|f9nnk0,46,63,1|fkggrz,46,63,1|fkggs0,45,62,0|fsdq7z,45,62,0|fsdq80,46,63,1|g36jfz,46,63,1|g36jg0,45,62,0|gcwm7z,45,62,0|gcwm80,46,63,1|gkgrfz,46,63,1|gkgrg0,45,62,0|gu6u7z,45,62,0|gu6u80,46,63,1|h4morz,46,63,1|h4mos0,45,62,0|hcwwvz,45,62,0|hcwww0,46,63,1|hncrfz,46,63,1|hncrg0,45,62,0|hvmzjz,45,62,0|hvmzk0,46,63,1|i6fsrz,46,63,1|i6fss0,45,62,0|ied27z,45,62,0|ied280,46,63,1|ip5vfz,46,63,1|ip5vg0,45,62,0|ix34vz,45,62,0|ix34w0,46,63,1|j7vy3z,46,63,1|j7vy40,45,62,0|jft7jz,45,62,0|jft7k0,46,63,1|jqm0rz,46,63,1|jqm0s0,45,62,0|jyw8vz,45,62,0|jyw8w0,46,63,1|k9c3fz,46,63,1|k9c3g0,45,62,0|khmbjz,45,62,0|khmbk0,46,63,1|ks263z,46,63,1|ks2640,45,62,0|l0ce7z,45,62,0|l0ce80,46,63,1|lb57fz,46,63,1|lb57g0,45,62,0|lj2gvz,45,62,0|lj2gw0,46,63,1|ltva3z,46,63,1|ltva40,45,62,0|m1sjjz,45,62,0|m1sjk0,46,63,1|mclcrz,46,63,1|mclcs0,45,62,0|mkvkvz,45,62,0|mkvkw0,46,63,1|mvbffz,46,63,1|mvbfg0,45,62,0|n3lnjz,45,62,0|n3lnk0,46,63,1|ne1i3z,46,63,1|ne1i40,45,62,0|nj327z,45,62,0|nj3280,49,63,0","America/Caracas|,0,77,0|-15r0wxs,41,78,0|-u7lcxx,41,78,0|-u7lcxw,43,59,0|-2lx4u1,43,59,0|-2lx4u0,42,42,0|jsrsrz,42,42,0|jsrss0,43,59,0|o6hkrz,43,59,0|o6hks0,42,42,0","America/Cayenne|,0,79,0|-uj7yb4,42,42,0|-16brk1,42,42,0|-16brk0,39,44,0","America/Cayman|,0,80,0|-15r0uls,41,81,0|-w757vd,41,81,0|-w757vc,49,63,0","America/Chicago|,0,82,0|-18y0m00,45,62,0|-r0esg1,45,62,0|-r0esg0,46,63,1|-qplz81,46,63,1|-qplz80,45,62,0|-qhops1,45,62,0|-qhops0,46,63,1|-q6vwk1,46,63,1|-q6vwk0,45,62,0|-pv01s1,45,62,0|-pv01s0,46,63,1|-pnsv81,46,63,1|-pnsv80,45,62,0|-pg8kg1,45,62,0|-pg8kg0,46,63,1|-p52sk1,46,63,1|-p52sk0,45,62,0|-ovpog1,45,62,0|-ovpog0,46,63,1|-oo5j81,46,63,1|-oo5j80,45,62,0|-oczls1,45,62,0|-oczls0,46,63,1|-o52hw1,46,63,1|-o52hw0,45,62,0|-nu9j41,45,62,0|-nu9j40,46,63,1|-nmcf81,46,63,1|-nmcf80,45,62,0|-nbjgg1,45,62,0|-nbjgg0,46,63,1|-n3mck1,46,63,1|-n3mck0,45,62,0|-mstds1,45,62,0|-mstds0,46,63,1|-mkw9w1,46,63,1|-mkw9w0,45,62,0|-ma3b41,45,62,0|-ma3b40,46,63,1|-m26781,46,63,1|-m26780,45,62,0|-lr09s1,45,62,0|-lr09s0,46,63,1|-lj35w1,46,63,1|-lj35w0,45,62,0|-l8a741,45,62,0|-l8a740,46,63,1|-l0d381,46,63,1|-l0d380,45,62,0|-kpk4g1,45,62,0|-kpk4g0,46,63,1|-khn0k1,46,63,1|-khn0k0,45,62,0|-k6u1s1,45,62,0|-k6u1s0,46,63,1|-jywxw1,46,63,1|-jywxw0,45,62,0|-jo3z41,45,62,0|-jo3z40,46,63,1|-jg6v81,46,63,1|-jg6v80,45,62,0|-j50xs1,45,62,0|-j50xs0,46,63,1|-ixgsk1,46,63,1|-ixgsk0,45,62,0|-imav41,45,62,0|-imav40,46,63,1|-iedr81,46,63,1|-iedr80,45,62,0|-i3ksg1,45,62,0|-i3ksg0,46,63,1|-hvnok1,46,63,1|-hvnok0,45,62,0|-hnqf41,45,62,0|-hnqf40,49,63,0|-haev81,49,63,0|-haev80,45,62,0|-h24n41,45,62,0|-h24n40,46,63,1|-gu7j81,46,63,1|-gu7j80,45,62,0|-gjekg1,45,62,0|-gjekg0,46,63,1|-gbhgk1,46,63,1|-gbhgk0,45,62,0|-g0bj41,45,62,0|-g0bj40,46,63,1|-fsrdw1,46,63,1|-fsrdw0,45,62,0|-fhlgg1,45,62,0|-fhlgg0,46,63,1|-f9ock1,46,63,1|-f9ock0,45,62,0|-eyvds1,45,62,0|-eyvds0,46,63,1|-eqy9w1,46,63,1|-eqy9w0,45,62,0|-ek21s1,45,62,0|-ek21s0,47,63,1|-cq2tg1,47,63,1|-cq2tg0,48,63,1|-cnp0k1,48,63,1|-cnp0k0,45,62,0|-ccw1s1,45,62,0|-ccw1s0,46,63,1|-c4yxw1,46,63,1|-c4yxw0,45,62,0|-bu5z41,45,62,0|-bu5z40,46,63,1|-bm8v81,46,63,1|-bm8v80,45,62,0|-bbfwg1,45,62,0|-bbfwg0,46,63,1|-b3isk1,46,63,1|-b3isk0,45,62,0|-aspts1,45,62,0|-aspts0,46,63,1|-akspw1,46,63,1|-akspw0,45,62,0|-a9msg1,45,62,0|-a9msg0,46,63,1|-a22n81,46,63,1|-a22n80,45,62,0|-9qwps1,45,62,0|-9qwps0,46,63,1|-9izlw1,46,63,1|-9izlw0,45,62,0|-986n41,45,62,0|-986n40,46,63,1|-909j81,46,63,1|-909j80,45,62,0|-8pgkg1,45,62,0|-8pgkg0,46,63,1|-8hjgk1,46,63,1|-8hjgk0,45,62,0|-86qhs1,45,62,0|-86qhs0,46,63,1|-7ytdw1,46,63,1|-7ytdw0,45,62,0|-7o0f41,45,62,0|-7o0f40,46,63,1|-7eahw1,46,63,1|-7eahw0,45,62,0|-74xds1,45,62,0|-74xds0,46,63,1|-6vkf81,46,63,1|-6vkf80,45,62,0|-6m7b41,45,62,0|-6m7b40,46,63,1|-6cuck1,46,63,1|-6cuck0,45,62,0|-63h8g1,45,62,0|-63h8g0,46,63,1|-5u49w1,46,63,1|-5u49w0,45,62,0|-5kr5s1,45,62,0|-5kr5s0,46,63,1|-5be781,46,63,1|-5be780,45,62,0|-521341,45,62,0|-521340,46,63,1|-4sb5w1,46,63,1|-4sb5w0,45,62,0|-4iy1s1,45,62,0|-4iy1s0,46,63,1|-49l381,46,63,1|-49l380,45,62,0|-407z41,45,62,0|-407z40,46,63,1|-3qv0k1,46,63,1|-3qv0k0,45,62,0|-3hhwg1,45,62,0|-3hhwg0,46,63,1|-384xw1,46,63,1|-384xw0,45,62,0|-2yrts1,45,62,0|-2yrts0,46,63,1|-2pev81,46,63,1|-2pev80,45,62,0|-2g1r41,45,62,0|-2g1r40,46,63,1|-26btw1,46,63,1|-26btw0,45,62,0|-1xbog1,45,62,0|-1xbog0,46,63,1|-1nlr81,46,63,1|-1nlr80,45,62,0|-1e8n41,45,62,0|-1e8n40,46,63,1|-14vok1,46,63,1|-14vok0,45,62,0|-vikg1,45,62,0|-vikg0,46,63,1|-m5lw1,46,63,1|-m5lw0,45,62,0|-cshs1,45,62,0|-cshs0,46,63,1|-3fj81,46,63,1|-3fj80,45,62,0|5xkvz,45,62,0|5xkw0,46,63,1|fajfz,46,63,1|fajg0,45,62,0|onnjz,45,62,0|onnk0,46,63,1|ydkrz,46,63,1|ydks0,45,62,0|17qovz,45,62,0|17qow0,46,63,1|1h3nfz,46,63,1|1h3ng0,45,62,0|1qgrjz,45,62,0|1qgrk0,46,63,1|1ztq3z,46,63,1|1ztq40,45,62,0|23ffjz,45,62,0|23ffk0,46,63,1|2ijsrz,46,63,1|2ijss0,45,62,0|2oo8vz,45,62,0|2oo8w0,46,63,1|319vfz,46,63,1|319vg0,45,62,0|3amzjz,45,62,0|3amzk0,46,63,1|3kcwrz,46,63,1|3kcws0,45,62,0|3td27z,45,62,0|3td280,46,63,1|432zfz,46,63,1|432zg0,45,62,0|4cg3jz,45,62,0|4cg3k0,46,63,1|4lt23z,46,63,1|4lt240,45,62,0|4v667z,45,62,0|4v6680,46,63,1|54j4rz,46,63,1|54j4s0,45,62,0|5dw8vz,45,62,0|5dw8w0,46,63,1|5n97fz,46,63,1|5n97g0,45,62,0|5wmbjz,45,62,0|5wmbk0,46,63,1|65za3z,46,63,1|65za40,45,62,0|6fce7z,45,62,0|6fce80,46,63,1|6p2bfz,46,63,1|6p2bg0,45,62,0|6y2gvz,45,62,0|6y2gw0,46,63,1|77se3z,46,63,1|77se40,45,62,0|7h5i7z,45,62,0|7h5i80,46,63,1|7qigrz,46,63,1|7qigs0,45,62,0|7zvkvz,45,62,0|7zvkw0,46,63,1|898jfz,46,63,1|898jg0,45,62,0|8ilnjz,45,62,0|8ilnk0,46,63,1|8rym3z,46,63,1|8rym40,45,62,0|908u7z,45,62,0|908u80,46,63,1|9aoorz,46,63,1|9aoos0,45,62,0|9iywvz,45,62,0|9iyww0,46,63,1|9trq3z,46,63,1|9trq40,45,62,0|a1ozjz,45,62,0|a1ozk0,46,63,1|achsrz,46,63,1|achss0,45,62,0|akf27z,45,62,0|akf280,46,63,1|av7vfz,46,63,1|av7vg0,45,62,0|b3i3jz,45,62,0|b3i3k0,46,63,1|bdxy3z,46,63,1|bdxy40,45,62,0|bm867z,45,62,0|bm8680,46,63,1|bwo0rz,46,63,1|bwo0s0,45,62,0|c4y8vz,45,62,0|c4y8w0,46,63,1|cfr23z,46,63,1|cfr240,45,62,0|cnobjz,45,62,0|cnobk0,46,63,1|cyh4rz,46,63,1|cyh4s0,45,62,0|d6ee7z,45,62,0|d6ee80,46,63,1|dh77fz,46,63,1|dh77g0,45,62,0|dphfjz,45,62,0|dphfk0,46,63,1|dzxa3z,46,63,1|dzxa40,45,62,0|e87i7z,45,62,0|e87i80,46,63,1|eincrz,46,63,1|eincs0,45,62,0|eqxkvz,45,62,0|eqxkw0,46,63,1|f1dffz,46,63,1|f1dfg0,45,62,0|f9nnjz,45,62,0|f9nnk0,46,63,1|fkggrz,46,63,1|fkggs0,45,62,0|fsdq7z,45,62,0|fsdq80,46,63,1|g36jfz,46,63,1|g36jg0,45,62,0|gb3svz,45,62,0|gb3sw0,46,63,1|glwm3z,46,63,1|glwm40,45,62,0|gu6u7z,45,62,0|gu6u80,46,63,1|h4morz,46,63,1|h4mos0,45,62,0|hcwwvz,45,62,0|hcwww0,46,63,1|hncrfz,46,63,1|hncrg0,45,62,0|hvmzjz,45,62,0|hvmzk0,46,63,1|i6fsrz,46,63,1|i6fss0,45,62,0|ied27z,45,62,0|ied280,46,63,1|ip5vfz,46,63,1|ip5vg0,45,62,0|ix34vz,45,62,0|ix34w0,46,63,1|j7vy3z,46,63,1|j7vy40,45,62,0|jeqbjz,45,62,0|jeqbk0,46,63,1|jqyzfz,46,63,1|jqyzg0,45,62,0|jxge7z,45,62,0|jxge80,46,63,1|k9p23z,46,63,1|k9p240,45,62,0|kg6gvz,45,62,0|kg6gw0,46,63,1|ksf4rz,46,63,1|ksf4s0,45,62,0|kz9i7z,45,62,0|kz9i80,46,63,1|lbi63z,46,63,1|lbi640,45,62,0|lhzkvz,45,62,0|lhzkw0,46,63,1|lu88rz,46,63,1|lu88s0,45,62,0|m0pnjz,45,62,0|m0pnk0,46,63,1|mcybfz,46,63,1|mcybg0,45,62,0|mjfq7z,45,62,0|mjfq80,46,63,1|mvoe3z,46,63,1|mvoe40,45,62,0|n25svz,45,62,0|n25sw0,46,63,1|neegrz,46,63,1|neegs0,45,62,0|nkvvjz,45,62,0|nkvvk0,46,63,1|nx4jfz,46,63,1|nx4jg0,45,62,0|o3ywvz,45,62,0|o3yww0,46,63,1|og7krz,46,63,1|og7ks0,45,62,0|omozjz,45,62,0|omozk0,46,63,1|oyxnfz,46,63,1|oyxng0,45,62,0|p5f27z,45,62,0|p5f280,46,63,1|phnq3z,46,63,1|phnq40,45,62,0|po54vz,45,62,0|po54w0,46,63,1|q0dsrz,46,63,1|q0dss0,45,62,0|q6v7jz,45,62,0|q6v7k0,46,63,1|qj3vfz,46,63,1|qj3vg0,45,62,0|qpy8vz,45,62,0|qpy8w0,46,63,1|r26wrz,46,63,1|r26ws0,45,62,0|r8objz,45,62,0|r8obk0,46,63,1|rkwzfz,46,63,1|rkwzg0,45,62,0|rree7z,45,62,0|rree80,46,63,1|s3n23z,46,63,1|s3n240,45,62,0|sa4gvz,45,62,0|sa4gw0,46,63,1|smd4rz,46,63,1|smd4s0,45,62,0|ssujjz,45,62,0|ssujk0,46,63,1|t537fz,46,63,1|t537g0,45,62,0|tbkm7z,45,62,0|tbkm80,46,63,1|tnta3z,46,63,1|tnta40,45,62,0|tunnjz,45,62,0|tunnk0,46,63,1|u6wbfz,46,63,1|u6wbg0,45,62,0|uddq7z,45,62,0|uddq80,46,63,1|upme3z,46,63,1|upme40,45,62,0|uw3svz,45,62,0|uw3sw0,46,63,1|v8cgrz,46,63,1|v8cgs0,45,62,0|vetvjz,45,62,0|vetvk0,46,63,1|vr2jfz,46,63,1|vr2jg0,45,62,0|vxjy7z,45,62,0|vxjy80,46,63,1|w9sm3z,46,63,1|w9sm40,45,62,0|wgmzjz,45,62,0|wgmzk0,46,63,1|wsvnfz,46,63,1|wsvng0,45,62,0|wzd27z,45,62,0|wzd280,46,63,1|xblq3z,46,63,1|xblq40,45,62,0|xi34vz,45,62,0|xi34w0,46,63,1|xubsrz,46,63,1|xubss0,45,62,0|y0t7jz,45,62,0|y0t7k0,46,63,1|yd1vfz,46,63,1|yd1vg0,45,62,0|yjja7z,45,62,0|yjja80,46,63,1|yvry3z,46,63,1|yvry40,45,62,0|z29cvz,45,62,0|z29cw0,46,63,1|zei0rz,46,63,1|zei0s0,45,62,0","America/Chihuahua|,0,83,0|-p1u4k0,50,66,0|-m7mko1,50,66,0|-m7mko0,45,62,0|-kf67c1,45,62,0|-kf67c0,50,66,0|-k6j3c1,50,66,0|-k6j3c0,45,62,0|-jypm01,45,62,0|-jypm00,50,66,0|-jpan81,50,66,0|-jpan80,45,62,0|dphfjz,45,62,0|dphfk0,46,63,1|dzxa3z,46,63,1|dzxa40,45,62,0|e87i7z,45,62,0|e87i80,46,63,1|eincrz,46,63,1|eincs0,45,62,0|eqxnnz,45,62,0|eqxno0,52,62,1|f1di7z,52,62,1|f1di80,50,66,0|f9nqbz,50,66,0|f9nqc0,52,62,1|fkgjjz,52,62,1|fkgjk0,50,66,0|fsdszz,50,66,0|fsdt00,52,62,1|g36m7z,52,62,1|g36m80,50,66,0|gcwozz,50,66,0|gcwp00,52,62,1|gkgu7z,52,62,1|gkgu80,50,66,0|gu6wzz,50,66,0|gu6x00,52,62,1|h4mrjz,52,62,1|h4mrk0,50,66,0|hcwznz,50,66,0|hcwzo0,52,62,1|hncu7z,52,62,1|hncu80,50,66,0|hvn2bz,50,66,0|hvn2c0,52,62,1|i6fvjz,52,62,1|i6fvk0,50,66,0|ied4zz,50,66,0|ied500,52,62,1|ip5y7z,52,62,1|ip5y80,50,66,0|ix37nz,50,66,0|ix37o0,52,62,1|j7w0vz,52,62,1|j7w0w0,50,66,0|jftabz,50,66,0|jftac0,52,62,1|jqm3jz,52,62,1|jqm3k0,50,66,0|jywbnz,50,66,0|jywbo0,52,62,1|k9c67z,52,62,1|k9c680,50,66,0|khmebz,50,66,0|khmec0,52,62,1|ks28vz,52,62,1|ks28w0,50,66,0|l0cgzz,50,66,0|l0ch00,52,62,1|lb5a7z,52,62,1|lb5a80,50,66,0|lj2jnz,50,66,0|lj2jo0,52,62,1|ltvcvz,52,62,1|ltvcw0,50,66,0|m1smbz,50,66,0|m1smc0,52,62,1|mclfjz,52,62,1|mclfk0,50,66,0|mkvnnz,50,66,0|mkvno0,52,62,1|mvbi7z,52,62,1|mvbi80,50,66,0|n3lqbz,50,66,0|n3lqc0,52,62,1|ne1kvz,52,62,1|ne1kw0,50,66,0|nmbszz,50,66,0|nmbt00,52,62,1|nwrnjz,52,62,1|nwrnk0,50,66,0|o51vnz,50,66,0|o51vo0,52,62,1|ofuovz,52,62,1|ofuow0,50,66,0|onrybz,50,66,0|onryc0,52,62,1|oykrjz,52,62,1|oykrk0,50,66,0|p6i0zz,50,66,0|p6i100,52,62,1|phau7z,52,62,1|phau80,50,66,0|ppl2bz,50,66,0|ppl2c0,52,62,1|q00wvz,52,62,1|q00ww0,50,66,0|q8b4zz,50,66,0|q8b500,52,62,1|qiqzjz,52,62,1|qiqzk0,50,66,0|qr17nz,50,66,0|qr17o0,52,62,1|r1u0vz,52,62,1|r1u0w0,50,66,0|r9rabz,50,66,0|r9rac0,52,62,1|rkk3jz,52,62,1|rkk3k0,50,66,0|rshczz,50,66,0|rshd00,52,62,1|s3a67z,52,62,1|s3a680,50,66,0|sbkebz,50,66,0|sbkec0,52,62,1|sm08vz,52,62,1|sm08w0,50,66,0|suagzz,50,66,0|suah00,52,62,1|t4qbjz,52,62,1|t4qbk0,50,66,0|td0jnz,50,66,0|td0jo0,52,62,1|tnge7z,52,62,1|tnge80,50,66,0|tvqmbz,50,66,0|tvqmc0,52,62,1|u6jfjz,52,62,1|u6jfk0,50,66,0|uegozz,50,66,0|uegp00,52,62,1|up9i7z,52,62,1|up9i80,50,66,0|ux6rnz,50,66,0|ux6ro0,52,62,1|v7zkvz,52,62,1|v7zkw0,50,66,0|vg9szz,50,66,0|vg9t00,52,62,1|vqpnjz,52,62,1|vqpnk0,50,66,0|vyzvnz,50,66,0|vyzvo0,52,62,1|w9fq7z,52,62,1|w9fq80,50,66,0|whpybz,50,66,0|whpyc0,52,62,1|wsirjz,52,62,1|wsirk0,50,66,0|x0g0zz,50,66,0|x0g100,52,62,1|xb8u7z,52,62,1|xb8u80,50,66,0|xj63nz,50,66,0|xj63o0,52,62,1|xtywvz,52,62,1|xtyww0,50,66,0|y1w6bz,50,66,0|y1w6c0,52,62,1|ycozjz,52,62,1|ycozk0,50,66,0|ykz7nz,50,66,0|ykz7o0,52,62,1|yvf27z,52,62,1|yvf280,50,66,0|z3pabz,50,66,0|z3pac0,52,62,1|ze54vz,52,62,1|ze54w0,50,66,0","America/Costa_Rica|,0,84,0|-15r0trn,63,84,0|-pjw8fo,63,84,0|-pjw8fn,45,62,0|4rxcnz,45,62,0|4rxco0,46,63,1|4wyr7z,46,63,1|4wyr80,45,62,0|5anfbz,45,62,0|5anfc0,46,63,1|5fotvz,46,63,1|5fotw0,45,62,0|azhhzz,45,62,0|azhi00,46,63,1|b7v9vz,46,63,1|b7v9w0,45,62,0|bi7knz,45,62,0|bi7ko0,46,63,1|bl51vz,46,63,1|bl51w0,45,62,0","America/Creston|,0,85,0|-18vrx38,50,66,0|-rshz81,50,66,0|-rshz80,51,40,0|-qx64g1,51,40,0|-qx64g0,50,66,0","America/Cuiaba|,0,86,0|-t85hm4,42,42,0|-jyl7o1,42,42,0|-jyl7o0,39,44,1|-jpayc1,39,44,1|-jpayc0,42,42,0|-jfsa81,42,42,0|-jfsa80,39,44,1|-j6j101,39,44,1|-j6j100,42,42,0|-ahcvk1,42,42,0|-ahcvk0,39,44,1|-aad0w1,39,44,1|-aad0w0,42,42,0|-9yky81,42,42,0|-9yky80,39,44,1|-9scyc1,39,44,1|-9scyc0,42,42,0|-9ft0w1,42,42,0|-9ft0w0,39,44,1|-99j6c1,39,44,1|-99j6c0,42,42,0|-8wz8w1,42,42,0|-8wz8w0,39,44,1|-8scno1,39,44,1|-8scno0,42,42,0|-35xjk1,42,42,0|-35xjk0,39,44,1|-31nx01,39,44,1|-31nx00,42,42,0|-2kdm81,42,42,0|-2kdm80,39,44,1|-2hcfo1,39,44,1|-2hcfo0,42,42,0|-24qnk1,42,42,0|-24qnk0,39,44,1|-2042c1,39,44,1|-2042c0,42,42,0|-1nia81,42,42,0|-1nia80,39,44,1|-1hc501,39,44,1|-1hc500,42,42,0|-14qcw1,42,42,0|-14qcw0,39,44,1|-yid01,39,44,1|-yid00,42,42,0|89jf3z,42,42,0|89jf40,39,44,1|8gdmzz,39,44,1|8gdn00,42,42,0|8rwj3z,42,42,0|8rwj40,39,44,1|8xnuzz,39,44,1|8xnv00,42,42,0|9aogfz,42,42,0|9aogg0,39,44,1|9g2tnz,39,44,1|9g2to0,42,42,0|9t1kfz,42,42,0|9t1kg0,39,44,1|9yfxnz,39,44,1|9yfxo0,42,42,0|abrn3z,42,42,0|abrn40,39,44,1|ahvxnz,39,44,1|ahvxo0,42,42,0|auuofz,42,42,0|auuog0,39,44,1|b0yyzz,39,44,1|b0yz00,42,42,0|bdkr3z,42,42,0|bdkr40,39,44,1|bjc2zz,39,44,1|bjc300,42,42,0|bwnsfz,42,42,0|bwnsg0,39,44,1|c1p6zz,39,44,1|c1p700,42,42,0|cf0wfz,42,42,0|cf0wg0,39,44,1|cli5nz,39,44,1|cli5o0,42,42,0|cxqz3z,42,42,0|cxqz40,39,44,1|d488bz,39,44,1|d488c0,42,42,0|dgh1rz,42,42,0|dgh1s0,39,44,1|dmlcbz,39,44,1|dmlcc0,42,42,0|dyu5rz,42,42,0|dyu5s0,39,44,1|e5odnz,39,44,1|e5odo0,42,42,0|ehm33z,42,42,0|ehm340,39,44,1|ep4dnz,39,44,1|ep4do0,42,42,0|f0n9rz,42,42,0|f0n9s0,39,44,1|f7hhnz,39,44,1|f7hho0,42,42,0|fj0drz,42,42,0|fj0ds0,39,44,1|fqkizz,39,44,1|fqkj00,42,42,0|g23f3z,42,42,0|g23f40,39,44,1|g8xmzz,39,44,1|g8xn00,42,42,0|gl6gfz,42,42,0|gl6gg0,39,44,1|grnpnz,39,44,1|grnpo0,42,42,0|h4zf3z,42,42,0|h4zf40,39,44,1|hadsbz,39,44,1|hadsc0,42,42,0|i6j9rz,42,42,0|i6j9s0,39,44,1|ic6wbz,39,44,1|ic6wc0,42,42,0|iofprz,42,42,0|iofps0,39,44,1|iuwyzz,39,44,1|iuwz00,42,42,0|j88ofz,42,42,0|j88og0,39,44,1|je00bz,39,44,1|je00c0,42,42,0|jpvv3z,42,42,0|jpvv40,39,44,1|jwd4bz,39,44,1|jwd4c0,42,42,0|k8ywfz,42,42,0|k8ywg0,39,44,1|kf36zz,39,44,1|kf3700,42,42,0|kroz3z,42,42,0|kroz40,39,44,1|ky68bz,39,44,1|ky68c0,42,42,0|laf1rz,42,42,0|laf1s0,39,44,1|lgwazz,39,44,1|lgwb00,42,42,0|lt54fz,42,42,0|lt54g0,39,44,1|lzzcbz,39,44,1|lzzcc0,42,42,0|mc85rz,42,42,0|mc85s0,39,44,1|micgbz,39,44,1|micgc0,42,42,0|muy8fz,42,42,0|muy8g0,39,44,1|n12izz,39,44,1|n12j00,42,42,0|ndob3z,42,42,0|ndob40,39,44,1|nk5kbz,39,44,1|nk5kc0,42,42,0|nwedrz,42,42,0|nweds0,39,44,1|o2vmzz,39,44,1|o2vn00,42,42,0|of4gfz,42,42,0|of4gg0,39,44,1|ollpnz,39,44,1|ollpo0,42,42,0|oxuj3z,42,42,0|oxuj40,39,44,1|p4bsbz,39,44,1|p4bsc0,42,42,0|phnhrz,42,42,0|phnhs0,39,44,1|pn1uzz,39,44,1|pn1v00,42,42,0","America/Curacao|,0,58,0|-u7lckd,43,59,0|-2lx4u1,43,59,0|-2lx4u0,32,42,0","America/Danmarkshavn|,0,87,0|-rvusjk,39,44,0|5ct4jz,39,44,0|5ct4k0,40,45,1|5lsw3z,40,45,1|5lsw40,39,44,0|5v5xfz,39,44,0|5v5xg0,40,45,1|64iyrz,40,45,1|64iys0,39,44,0|6dw03z,39,44,0|6dw040,40,45,1|6n91fz,40,45,1|6n91g0,39,44,0|6wm2rz,39,44,0|6wm2s0,40,45,1|75z43z,40,45,1|75z440,39,44,0|7fc5fz,39,44,0|7fc5g0,40,45,1|7p25fz,40,45,1|7p25g0,39,44,0|7yf6rz,39,44,0|7yf6s0,40,45,1|87s83z,40,45,1|87s840,39,44,0|8h59fz,39,44,0|8h59g0,40,45,1|8qiarz,40,45,1|8qias0,39,44,0|8zvc3z,39,44,0|8zvc40,40,45,1|998dfz,40,45,1|998dg0,39,44,0|9ilerz,39,44,0|9iles0,40,45,1|9ryg3z,40,45,1|9ryg40,39,44,0|a1bhfz,39,44,0|a1bhg0,40,45,1|aaoirz,40,45,1|aaois0,39,44,0|ak1k3z,39,44,0|ak1k40,40,45,1|atrk3z,40,45,1|atrk40,39,44,0|b34lfz,39,44,0|b34lg0,40,45,1|bchmrz,40,45,1|bchms0,39,44,0|bluo3z,39,44,0|bluo40,40,45,1|bv7pfz,40,45,1|bv7pg0,39,44,0|c4kqrz,39,44,0|c4kqs0,40,45,1|cdxs3z,40,45,1|cdxs40,39,44,0|cnatfz,39,44,0|cnatg0,40,45,1|cwnurz,40,45,1|cwnus0,39,44,0|d60w3z,39,44,0|d60w40,40,45,1|dfdxfz,40,45,1|dfdxg0,39,44,0|dkhezz,39,44,0|dkhf00,1,1,0","America/Dawson|,0,88,0|-1079suk,36,37,0|-qzoms1,36,37,0|-qzoms0,64,40,1|-qplqw1,64,40,1|-qplqw0,36,37,0|-qess41,36,37,0|-qess40,64,40,1|-q6kps1,64,40,1|-q6kps0,36,37,0|-ek1tg1,36,37,0|-ek1tg0,65,40,1|-cq2tg1,65,40,1|-cq2tg0,66,40,1|-cnos81,66,40,1|-cnos80,36,37,0|-2g1oc1,36,37,0|-2g1oc0,67,66,1|-26boc1,67,66,1|-26boc0,36,37,0|1ztvnz,36,37,0|1ztvo0,51,40,0|5dwefz,51,40,0|5dweg0,57,66,1|5n9czz,57,66,1|5n9d00,51,40,0|5wmh3z,51,40,0|5wmh40,57,66,1|65zfnz,57,66,1|65zfo0,51,40,0|6fcjrz,51,40,0|6fcjs0,57,66,1|6p2gzz,57,66,1|6p2h00,51,40,0|6y2mfz,51,40,0|6y2mg0,57,66,1|77sjnz,57,66,1|77sjo0,51,40,0|7h5nrz,51,40,0|7h5ns0,57,66,1|7qimbz,57,66,1|7qimc0,51,40,0|7zvqfz,51,40,0|7zvqg0,57,66,1|898ozz,57,66,1|898p00,51,40,0|8ilt3z,51,40,0|8ilt40,57,66,1|8ryrnz,57,66,1|8ryro0,51,40,0|908zrz,51,40,0|908zs0,57,66,1|9aoubz,57,66,1|9aouc0,51,40,0|9iz2fz,51,40,0|9iz2g0,57,66,1|9trvnz,57,66,1|9trvo0,51,40,0|a1p53z,51,40,0|a1p540,57,66,1|achybz,57,66,1|achyc0,51,40,0|akf7rz,51,40,0|akf7s0,57,66,1|av80zz,57,66,1|av8100,51,40,0|b3i93z,51,40,0|b3i940,57,66,1|bdy3nz,57,66,1|bdy3o0,51,40,0|bm8brz,51,40,0|bm8bs0,57,66,1|bwo6bz,57,66,1|bwo6c0,51,40,0|c4yefz,51,40,0|c4yeg0,57,66,1|cfr7nz,57,66,1|cfr7o0,51,40,0|cnoh3z,51,40,0|cnoh40,57,66,1|cyhabz,57,66,1|cyhac0,51,40,0|d6ejrz,51,40,0|d6ejs0,57,66,1|dh7czz,57,66,1|dh7d00,51,40,0|dphl3z,51,40,0|dphl40,57,66,1|dzxfnz,57,66,1|dzxfo0,51,40,0|e87nrz,51,40,0|e87ns0,57,66,1|einibz,57,66,1|einic0,51,40,0|eqxqfz,51,40,0|eqxqg0,57,66,1|f1dkzz,57,66,1|f1dl00,51,40,0|f9nt3z,51,40,0|f9nt40,57,66,1|fkgmbz,57,66,1|fkgmc0,51,40,0|fsdvrz,51,40,0|fsdvs0,57,66,1|g36ozz,57,66,1|g36p00,51,40,0|gb3yfz,51,40,0|gb3yg0,57,66,1|glwrnz,57,66,1|glwro0,51,40,0|gu6zrz,51,40,0|gu6zs0,57,66,1|h4mubz,57,66,1|h4muc0,51,40,0|hcx2fz,51,40,0|hcx2g0,57,66,1|hncwzz,57,66,1|hncx00,51,40,0|hvn53z,51,40,0|hvn540,57,66,1|i6fybz,57,66,1|i6fyc0,51,40,0|ied7rz,51,40,0|ied7s0,57,66,1|ip60zz,57,66,1|ip6100,51,40,0|ix3afz,51,40,0|ix3ag0,57,66,1|j7w3nz,57,66,1|j7w3o0,51,40,0|jeqh3z,51,40,0|jeqh40,57,66,1|jqz4zz,57,66,1|jqz500,51,40,0|jxgjrz,51,40,0|jxgjs0,57,66,1|k9p7nz,57,66,1|k9p7o0,51,40,0|kg6mfz,51,40,0|kg6mg0,57,66,1|ksfabz,57,66,1|ksfac0,51,40,0|kz9nrz,51,40,0|kz9ns0,57,66,1|lbibnz,57,66,1|lbibo0,51,40,0|lhzqfz,51,40,0|lhzqg0,57,66,1|lu8ebz,57,66,1|lu8ec0,51,40,0|m0pt3z,51,40,0|m0pt40,57,66,1|mcygzz,57,66,1|mcyh00,51,40,0|mjfvrz,51,40,0|mjfvs0,57,66,1|mvojnz,57,66,1|mvojo0,51,40,0|n25yfz,51,40,0|n25yg0,57,66,1|neembz,57,66,1|neemc0,51,40,0|nkw13z,51,40,0|nkw140,57,66,1|nx4ozz,57,66,1|nx4p00,51,40,0|o3z2fz,51,40,0|o3z2g0,57,66,1|og7qbz,57,66,1|og7qc0,51,40,0|omp53z,51,40,0|omp540,57,66,1|oyxszz,57,66,1|oyxt00,51,40,0|p5f7rz,51,40,0|p5f7s0,57,66,1|phnvnz,57,66,1|phnvo0,51,40,0|po5afz,51,40,0|po5ag0,57,66,1|q0dybz,57,66,1|q0dyc0,51,40,0|q6vd3z,51,40,0|q6vd40,57,66,1|qj3vfz,57,66,1|qj3vg0,50,66,0","America/Dawson_Creek|,0,89,0|-18vrweg,51,40,0|-qzopk1,51,40,0|-qzopk0,57,66,1|-qplto1,57,66,1|-qplto0,51,40,0|-ek1w81,51,40,0|-ek1w80,68,66,1|-cq2tg1,68,66,1|-cq2tg0,69,66,1|-cnov01,69,66,1|-cnov00,51,40,0|-bu5tk1,51,40,0|-bu5tk0,57,66,1|-bm8po1,57,66,1|-bm8po0,51,40,0|-bbfqw1,51,40,0|-bbfqw0,57,66,1|-b3in01,57,66,1|-b3in00,51,40,0|-aspo81,51,40,0|-aspo80,57,66,1|-akskc1,57,66,1|-akskc0,51,40,0|-a9mmw1,51,40,0|-a9mmw0,57,66,1|-a22ho1,57,66,1|-a22ho0,51,40,0|-9qwk81,51,40,0|-9qwk80,57,66,1|-9izgc1,57,66,1|-9izgc0,51,40,0|-986hk1,51,40,0|-986hk0,57,66,1|-909do1,57,66,1|-909do0,51,40,0|-8pgew1,51,40,0|-8pgew0,57,66,1|-8hjb01,57,66,1|-8hjb00,51,40,0|-86qc81,51,40,0|-86qc80,57,66,1|-7yt8c1,57,66,1|-7yt8c0,51,40,0|-7o09k1,51,40,0|-7o09k0,57,66,1|-7g35o1,57,66,1|-7g35o0,51,40,0|-74x881,51,40,0|-74x880,57,66,1|-6x04c1,57,66,1|-6x04c0,51,40,0|-6m75k1,51,40,0|-6m75k0,57,66,1|-6ea1o1,57,66,1|-6ea1o0,51,40,0|-63h2w1,51,40,0|-63h2w0,57,66,1|-5vjz01,57,66,1|-5vjz00,51,40,0|-5kr081,51,40,0|-5kr080,57,66,1|-5ctwc1,57,66,1|-5ctwc0,51,40,0|-520xk1,51,40,0|-520xk0,57,66,1|-4u3to1,57,66,1|-4u3to0,51,40,0|-4ixw81,51,40,0|-4ixw80,57,66,1|-4bdr01,57,66,1|-4bdr00,51,40,0|-407tk1,51,40,0|-407tk0,57,66,1|-3quv01,57,66,1|-3quv00,51,40,0|-3hhqw1,51,40,0|-3hhqw0,57,66,1|-384sc1,57,66,1|-384sc0,51,40,0|-2yro81,51,40,0|-2yro80,57,66,1|-2pepo1,57,66,1|-2pepo0,51,40,0|-2g1lk1,51,40,0|-2g1lk0,57,66,1|-26boc1,57,66,1|-26boc0,51,40,0|-1xbiw1,51,40,0|-1xbiw0,57,66,1|-1nllo1,57,66,1|-1nllo0,51,40,0|-1e8hk1,51,40,0|-1e8hk0,57,66,1|-14vj01,57,66,1|-14vj00,51,40,0|-view1,51,40,0|-view0,57,66,1|-m5gc1,57,66,1|-m5gc0,51,40,0|-csc81,51,40,0|-csc80,57,66,1|-3fdo1,57,66,1|-3fdo0,51,40,0|5xqfz,51,40,0|5xqg0,57,66,1|faozz,57,66,1|fap00,51,40,0|ont3z,51,40,0|ont40,57,66,1|ydqbz,57,66,1|ydqc0,51,40,0|17qufz,51,40,0|17qug0,57,66,1|1e0ozz,57,66,1|1e0p00,50,66,0","America/Denver|,0,90,0|-18y0j80,50,66,0|-r0epo1,50,66,0|-r0epo0,52,62,1|-qplwg1,52,62,1|-qplwg0,50,66,0|-qhon01,50,66,0|-qhon00,52,62,1|-q6vts1,52,62,1|-q6vts0,50,66,0|-pyykc1,50,66,0|-pyykc0,52,62,1|-pnssg1,52,62,1|-pnssg0,50,66,0|-pg8ho1,50,66,0|-pg8ho0,52,62,1|-pdcv41,52,62,1|-pdcv40,50,66,0|-ek1z01,50,66,0|-ek1z00,58,62,1|-cq2tg1,58,62,1|-cq2tg0,59,62,1|-cnoxs1,59,62,1|-cnoxs0,50,66,0|-2g1oc1,50,66,0|-2g1oc0,52,62,1|-26br41,52,62,1|-26br40,50,66,0|-1xblo1,50,66,0|-1xblo0,52,62,1|-1nlog1,52,62,1|-1nlog0,50,66,0|-1e8kc1,50,66,0|-1e8kc0,52,62,1|-14vls1,52,62,1|-14vls0,50,66,0|-viho1,50,66,0|-viho0,52,62,1|-m5j41,52,62,1|-m5j40,50,66,0|-csf01,50,66,0|-csf00,52,62,1|-3fgg1,52,62,1|-3fgg0,50,66,0|5xnnz,50,66,0|5xno0,52,62,1|fam7z,52,62,1|fam80,50,66,0|onqbz,50,66,0|onqc0,52,62,1|ydnjz,52,62,1|ydnk0,50,66,0|17qrnz,50,66,0|17qro0,52,62,1|1h3q7z,52,62,1|1h3q80,50,66,0|1qgubz,50,66,0|1qguc0,52,62,1|1ztsvz,52,62,1|1ztsw0,50,66,0|23fibz,50,66,0|23fic0,52,62,1|2ijvjz,52,62,1|2ijvk0,50,66,0|2oobnz,50,66,0|2oobo0,52,62,1|319y7z,52,62,1|319y80,50,66,0|3an2bz,50,66,0|3an2c0,52,62,1|3kczjz,52,62,1|3kczk0,50,66,0|3td4zz,50,66,0|3td500,52,62,1|43327z,52,62,1|433280,50,66,0|4cg6bz,50,66,0|4cg6c0,52,62,1|4lt4vz,52,62,1|4lt4w0,50,66,0|4v68zz,50,66,0|4v6900,52,62,1|54j7jz,52,62,1|54j7k0,50,66,0|5dwbnz,50,66,0|5dwbo0,52,62,1|5n9a7z,52,62,1|5n9a80,50,66,0|5wmebz,50,66,0|5wmec0,52,62,1|65zcvz,52,62,1|65zcw0,50,66,0|6fcgzz,50,66,0|6fch00,52,62,1|6p2e7z,52,62,1|6p2e80,50,66,0|6y2jnz,50,66,0|6y2jo0,52,62,1|77sgvz,52,62,1|77sgw0,50,66,0|7h5kzz,50,66,0|7h5l00,52,62,1|7qijjz,52,62,1|7qijk0,50,66,0|7zvnnz,50,66,0|7zvno0,52,62,1|898m7z,52,62,1|898m80,50,66,0|8ilqbz,50,66,0|8ilqc0,52,62,1|8ryovz,52,62,1|8ryow0,50,66,0|908wzz,50,66,0|908x00,52,62,1|9aorjz,52,62,1|9aork0,50,66,0|9iyznz,50,66,0|9iyzo0,52,62,1|9trsvz,52,62,1|9trsw0,50,66,0|a1p2bz,50,66,0|a1p2c0,52,62,1|achvjz,52,62,1|achvk0,50,66,0|akf4zz,50,66,0|akf500,52,62,1|av7y7z,52,62,1|av7y80,50,66,0|b3i6bz,50,66,0|b3i6c0,52,62,1|bdy0vz,52,62,1|bdy0w0,50,66,0|bm88zz,50,66,0|bm8900,52,62,1|bwo3jz,52,62,1|bwo3k0,50,66,0|c4ybnz,50,66,0|c4ybo0,52,62,1|cfr4vz,52,62,1|cfr4w0,50,66,0|cnoebz,50,66,0|cnoec0,52,62,1|cyh7jz,52,62,1|cyh7k0,50,66,0|d6egzz,50,66,0|d6eh00,52,62,1|dh7a7z,52,62,1|dh7a80,50,66,0|dphibz,50,66,0|dphic0,52,62,1|dzxcvz,52,62,1|dzxcw0,50,66,0|e87kzz,50,66,0|e87l00,52,62,1|einfjz,52,62,1|einfk0,50,66,0|eqxnnz,50,66,0|eqxno0,52,62,1|f1di7z,52,62,1|f1di80,50,66,0|f9nqbz,50,66,0|f9nqc0,52,62,1|fkgjjz,52,62,1|fkgjk0,50,66,0|fsdszz,50,66,0|fsdt00,52,62,1|g36m7z,52,62,1|g36m80,50,66,0|gb3vnz,50,66,0|gb3vo0,52,62,1|glwovz,52,62,1|glwow0,50,66,0|gu6wzz,50,66,0|gu6x00,52,62,1|h4mrjz,52,62,1|h4mrk0,50,66,0|hcwznz,50,66,0|hcwzo0,52,62,1|hncu7z,52,62,1|hncu80,50,66,0|hvn2bz,50,66,0|hvn2c0,52,62,1|i6fvjz,52,62,1|i6fvk0,50,66,0|ied4zz,50,66,0|ied500,52,62,1|ip5y7z,52,62,1|ip5y80,50,66,0|ix37nz,50,66,0|ix37o0,52,62,1|j7w0vz,52,62,1|j7w0w0,50,66,0|jeqebz,50,66,0|jeqec0,52,62,1|jqz27z,52,62,1|jqz280,50,66,0|jxggzz,50,66,0|jxgh00,52,62,1|k9p4vz,52,62,1|k9p4w0,50,66,0|kg6jnz,50,66,0|kg6jo0,52,62,1|ksf7jz,52,62,1|ksf7k0,50,66,0|kz9kzz,50,66,0|kz9l00,52,62,1|lbi8vz,52,62,1|lbi8w0,50,66,0|lhznnz,50,66,0|lhzno0,52,62,1|lu8bjz,52,62,1|lu8bk0,50,66,0|m0pqbz,50,66,0|m0pqc0,52,62,1|mcye7z,52,62,1|mcye80,50,66,0|mjfszz,50,66,0|mjft00,52,62,1|mvogvz,52,62,1|mvogw0,50,66,0|n25vnz,50,66,0|n25vo0,52,62,1|neejjz,52,62,1|neejk0,50,66,0|nkvybz,50,66,0|nkvyc0,52,62,1|nx4m7z,52,62,1|nx4m80,50,66,0|o3yznz,50,66,0|o3yzo0,52,62,1|og7njz,52,62,1|og7nk0,50,66,0|omp2bz,50,66,0|omp2c0,52,62,1|oyxq7z,52,62,1|oyxq80,50,66,0|p5f4zz,50,66,0|p5f500,52,62,1|phnsvz,52,62,1|phnsw0,50,66,0|po57nz,50,66,0|po57o0,52,62,1|q0dvjz,52,62,1|q0dvk0,50,66,0|q6vabz,50,66,0|q6vac0,52,62,1|qj3y7z,52,62,1|qj3y80,50,66,0|qpybnz,50,66,0|qpybo0,52,62,1|r26zjz,52,62,1|r26zk0,50,66,0|r8oebz,50,66,0|r8oec0,52,62,1|rkx27z,52,62,1|rkx280,50,66,0|rregzz,50,66,0|rreh00,52,62,1|s3n4vz,52,62,1|s3n4w0,50,66,0|sa4jnz,50,66,0|sa4jo0,52,62,1|smd7jz,52,62,1|smd7k0,50,66,0|ssumbz,50,66,0|ssumc0,52,62,1|t53a7z,52,62,1|t53a80,50,66,0|tbkozz,50,66,0|tbkp00,52,62,1|tntcvz,52,62,1|tntcw0,50,66,0|tunqbz,50,66,0|tunqc0,52,62,1|u6we7z,52,62,1|u6we80,50,66,0|uddszz,50,66,0|uddt00,52,62,1|upmgvz,52,62,1|upmgw0,50,66,0|uw3vnz,50,66,0|uw3vo0,52,62,1|v8cjjz,52,62,1|v8cjk0,50,66,0|vetybz,50,66,0|vetyc0,52,62,1|vr2m7z,52,62,1|vr2m80,50,66,0|vxk0zz,50,66,0|vxk100,52,62,1|w9sovz,52,62,1|w9sow0,50,66,0|wgn2bz,50,66,0|wgn2c0,52,62,1|wsvq7z,52,62,1|wsvq80,50,66,0|wzd4zz,50,66,0|wzd500,52,62,1|xblsvz,52,62,1|xblsw0,50,66,0|xi37nz,50,66,0|xi37o0,52,62,1|xubvjz,52,62,1|xubvk0,50,66,0|y0tabz,50,66,0|y0tac0,52,62,1|yd1y7z,52,62,1|yd1y80,50,66,0|yjjczz,50,66,0|yjjd00,52,62,1|yvs0vz,52,62,1|yvs0w0,50,66,0|z29fnz,50,66,0|z29fo0,52,62,1|zei3jz,52,62,1|zei3k0,50,66,0","America/Detroit|,0,91,0|-xx8dyd,45,62,0|-sih341,45,62,0|-sih340,49,63,0|-ek24k1,49,63,0|-ek24k0,70,42,1|-cq2tg1,70,42,1|-cq2tg0,71,42,1|-cnp3c1,71,42,1|-cnp3c0,49,63,0|-bbfz81,49,63,0|-bbfz80,62,42,1|-b3ivc1,62,42,1|-b3ivc0,49,63,0|-1bxjed,49,63,0|-1bxjec,62,42,1|-14vrc1,62,42,1|-14vrc0,49,63,0|-vin81,49,63,0|-vin80,62,42,1|-m5oo1,62,42,1|-m5oo0,49,63,0|1qgorz,49,63,0|1qgos0,62,42,1|1ztnbz,62,42,1|1ztnc0,49,63,0|23fcrz,49,63,0|23fcs0,62,42,1|2ijpzz,62,42,1|2ijq00,49,63,0|2rwu3z,49,63,0|2rwu40,62,42,1|319snz,62,42,1|319so0,49,63,0|3amwrz,49,63,0|3amws0,62,42,1|3kctzz,62,42,1|3kcu00,49,63,0|3tczfz,49,63,0|3tczg0,62,42,1|432wnz,62,42,1|432wo0,49,63,0|4cg0rz,49,63,0|4cg0s0,62,42,1|4lszbz,62,42,1|4lszc0,49,63,0|4v63fz,49,63,0|4v63g0,62,42,1|54j1zz,62,42,1|54j200,49,63,0|5dw63z,49,63,0|5dw640,62,42,1|5n94nz,62,42,1|5n94o0,49,63,0|5wm8rz,49,63,0|5wm8s0,62,42,1|65z7bz,62,42,1|65z7c0,49,63,0|6fcbfz,49,63,0|6fcbg0,62,42,1|6p28nz,62,42,1|6p28o0,49,63,0|6y2e3z,49,63,0|6y2e40,62,42,1|77sbbz,62,42,1|77sbc0,49,63,0|7h5ffz,49,63,0|7h5fg0,62,42,1|7qidzz,62,42,1|7qie00,49,63,0|7zvi3z,49,63,0|7zvi40,62,42,1|898gnz,62,42,1|898go0,49,63,0|8ilkrz,49,63,0|8ilks0,62,42,1|8ryjbz,62,42,1|8ryjc0,49,63,0|908rfz,49,63,0|908rg0,62,42,1|9aolzz,62,42,1|9aom00,49,63,0|9iyu3z,49,63,0|9iyu40,62,42,1|9trnbz,62,42,1|9trnc0,49,63,0|a1owrz,49,63,0|a1ows0,62,42,1|achpzz,62,42,1|achq00,49,63,0|akezfz,49,63,0|akezg0,62,42,1|av7snz,62,42,1|av7so0,49,63,0|b3i0rz,49,63,0|b3i0s0,62,42,1|bdxvbz,62,42,1|bdxvc0,49,63,0|bm83fz,49,63,0|bm83g0,62,42,1|bwnxzz,62,42,1|bwny00,49,63,0|c4y63z,49,63,0|c4y640,62,42,1|cfqzbz,62,42,1|cfqzc0,49,63,0|cno8rz,49,63,0|cno8s0,62,42,1|cyh1zz,62,42,1|cyh200,49,63,0|d6ebfz,49,63,0|d6ebg0,62,42,1|dh74nz,62,42,1|dh74o0,49,63,0|dphcrz,49,63,0|dphcs0,62,42,1|dzx7bz,62,42,1|dzx7c0,49,63,0|e87ffz,49,63,0|e87fg0,62,42,1|ein9zz,62,42,1|eina00,49,63,0|eqxi3z,49,63,0|eqxi40,62,42,1|f1dcnz,62,42,1|f1dco0,49,63,0|f9nkrz,49,63,0|f9nks0,62,42,1|fkgdzz,62,42,1|fkge00,49,63,0|fsdnfz,49,63,0|fsdng0,62,42,1|g36gnz,62,42,1|g36go0,49,63,0|gb3q3z,49,63,0|gb3q40,62,42,1|glwjbz,62,42,1|glwjc0,49,63,0|gu6rfz,49,63,0|gu6rg0,62,42,1|h4mlzz,62,42,1|h4mm00,49,63,0|hcwu3z,49,63,0|hcwu40,62,42,1|hnconz,62,42,1|hncoo0,49,63,0|hvmwrz,49,63,0|hvmws0,62,42,1|i6fpzz,62,42,1|i6fq00,49,63,0|ieczfz,49,63,0|ieczg0,62,42,1|ip5snz,62,42,1|ip5so0,49,63,0|ix323z,49,63,0|ix3240,62,42,1|j7vvbz,62,42,1|j7vvc0,49,63,0|jeq8rz,49,63,0|jeq8s0,62,42,1|jqywnz,62,42,1|jqywo0,49,63,0|jxgbfz,49,63,0|jxgbg0,62,42,1|k9ozbz,62,42,1|k9ozc0,49,63,0|kg6e3z,49,63,0|kg6e40,62,42,1|ksf1zz,62,42,1|ksf200,49,63,0|kz9ffz,49,63,0|kz9fg0,62,42,1|lbi3bz,62,42,1|lbi3c0,49,63,0|lhzi3z,49,63,0|lhzi40,62,42,1|lu85zz,62,42,1|lu8600,49,63,0|m0pkrz,49,63,0|m0pks0,62,42,1|mcy8nz,62,42,1|mcy8o0,49,63,0|mjfnfz,49,63,0|mjfng0,62,42,1|mvobbz,62,42,1|mvobc0,49,63,0|n25q3z,49,63,0|n25q40,62,42,1|needzz,62,42,1|neee00,49,63,0|nkvsrz,49,63,0|nkvss0,62,42,1|nx4gnz,62,42,1|nx4go0,49,63,0|o3yu3z,49,63,0|o3yu40,62,42,1|og7hzz,62,42,1|og7i00,49,63,0|omowrz,49,63,0|omows0,62,42,1|oyxknz,62,42,1|oyxko0,49,63,0|p5ezfz,49,63,0|p5ezg0,62,42,1|phnnbz,62,42,1|phnnc0,49,63,0|po523z,49,63,0|po5240,62,42,1|q0dpzz,62,42,1|q0dq00,49,63,0|q6v4rz,49,63,0|q6v4s0,62,42,1|qj3snz,62,42,1|qj3so0,49,63,0|qpy63z,49,63,0|qpy640,62,42,1|r26tzz,62,42,1|r26u00,49,63,0|r8o8rz,49,63,0|r8o8s0,62,42,1|rkwwnz,62,42,1|rkwwo0,49,63,0|rrebfz,49,63,0|rrebg0,62,42,1|s3mzbz,62,42,1|s3mzc0,49,63,0|sa4e3z,49,63,0|sa4e40,62,42,1|smd1zz,62,42,1|smd200,49,63,0|ssugrz,49,63,0|ssugs0,62,42,1|t534nz,62,42,1|t534o0,49,63,0|tbkjfz,49,63,0|tbkjg0,62,42,1|tnt7bz,62,42,1|tnt7c0,49,63,0|tunkrz,49,63,0|tunks0,62,42,1|u6w8nz,62,42,1|u6w8o0,49,63,0|uddnfz,49,63,0|uddng0,62,42,1|upmbbz,62,42,1|upmbc0,49,63,0|uw3q3z,49,63,0|uw3q40,62,42,1|v8cdzz,62,42,1|v8ce00,49,63,0|vetsrz,49,63,0|vetss0,62,42,1|vr2gnz,62,42,1|vr2go0,49,63,0|vxjvfz,49,63,0|vxjvg0,62,42,1|w9sjbz,62,42,1|w9sjc0,49,63,0|wgmwrz,49,63,0|wgmws0,62,42,1|wsvknz,62,42,1|wsvko0,49,63,0|wzczfz,49,63,0|wzczg0,62,42,1|xblnbz,62,42,1|xblnc0,49,63,0|xi323z,49,63,0|xi3240,62,42,1|xubpzz,62,42,1|xubq00,49,63,0|y0t4rz,49,63,0|y0t4s0,62,42,1|yd1snz,62,42,1|yd1so0,49,63,0|yjj7fz,49,63,0|yjj7g0,62,42,1|yvrvbz,62,42,1|yvrvc0,49,63,0|z29a3z,49,63,0|z29a40,62,42,1|zehxzz,62,42,1|zehy00,49,63,0","America/Dominica|,0,41,0|-u6m79w,32,42,0","America/Edmonton|,0,92,0|-x1yazk,50,66,0|-qzosc1,50,66,0|-qzosc0,52,62,1|-qplwg1,52,62,1|-qplwg0,50,66,0|-qgypo1,50,66,0|-qgypo0,52,62,1|-qepb41,52,62,1|-qepb40,50,66,0|-pxipo1,50,66,0|-pxipo0,52,62,1|-pnssg1,52,62,1|-pnssg0,50,66,0|-pesn01,50,66,0|-pesn00,52,62,1|-p6vj41,52,62,1|-p6vj40,50,66,0|-ovplo1,50,66,0|-ovplo0,52,62,1|-oo5gg1,52,62,1|-oo5gg0,50,66,0|-oczj01,50,66,0|-oczj00,52,62,1|-o52f41,52,62,1|-o52f40,50,66,0|-ek1z01,50,66,0|-ek1z00,58,62,1|-cq2tg1,58,62,1|-cq2tg0,59,62,1|-cnoxs1,59,62,1|-cnoxs0,50,66,0|-bu5wc1,50,66,0|-bu5wc0,52,62,1|-bm8sg1,52,62,1|-bm8sg0,50,66,0|17qrnz,50,66,0|17qro0,52,62,1|1h3q7z,52,62,1|1h3q80,50,66,0|1qgubz,50,66,0|1qguc0,52,62,1|1ztsvz,52,62,1|1ztsw0,50,66,0|296wzz,50,66,0|296x00,52,62,1|2ijvjz,52,62,1|2ijvk0,50,66,0|2rwznz,50,66,0|2rwzo0,52,62,1|319y7z,52,62,1|319y80,50,66,0|3an2bz,50,66,0|3an2c0,52,62,1|3kczjz,52,62,1|3kczk0,50,66,0|3td4zz,50,66,0|3td500,52,62,1|43327z,52,62,1|433280,50,66,0|4cg6bz,50,66,0|4cg6c0,52,62,1|4lt4vz,52,62,1|4lt4w0,50,66,0|4v68zz,50,66,0|4v6900,52,62,1|54j7jz,52,62,1|54j7k0,50,66,0|5dwbnz,50,66,0|5dwbo0,52,62,1|5n9a7z,52,62,1|5n9a80,50,66,0|5wmebz,50,66,0|5wmec0,52,62,1|65zcvz,52,62,1|65zcw0,50,66,0|6fcgzz,50,66,0|6fch00,52,62,1|6p2e7z,52,62,1|6p2e80,50,66,0|6y2jnz,50,66,0|6y2jo0,52,62,1|77sgvz,52,62,1|77sgw0,50,66,0|7h5kzz,50,66,0|7h5l00,52,62,1|7qijjz,52,62,1|7qijk0,50,66,0|7zvnnz,50,66,0|7zvno0,52,62,1|898m7z,52,62,1|898m80,50,66,0|8ilqbz,50,66,0|8ilqc0,52,62,1|8ryovz,52,62,1|8ryow0,50,66,0|908wzz,50,66,0|908x00,52,62,1|9aorjz,52,62,1|9aork0,50,66,0|9iyznz,50,66,0|9iyzo0,52,62,1|9trsvz,52,62,1|9trsw0,50,66,0|a1p2bz,50,66,0|a1p2c0,52,62,1|achvjz,52,62,1|achvk0,50,66,0|akf4zz,50,66,0|akf500,52,62,1|av7y7z,52,62,1|av7y80,50,66,0|b3i6bz,50,66,0|b3i6c0,52,62,1|bdy0vz,52,62,1|bdy0w0,50,66,0|bm88zz,50,66,0|bm8900,52,62,1|bwo3jz,52,62,1|bwo3k0,50,66,0|c4ybnz,50,66,0|c4ybo0,52,62,1|cfr4vz,52,62,1|cfr4w0,50,66,0|cnoebz,50,66,0|cnoec0,52,62,1|cyh7jz,52,62,1|cyh7k0,50,66,0|d6egzz,50,66,0|d6eh00,52,62,1|dh7a7z,52,62,1|dh7a80,50,66,0|dphibz,50,66,0|dphic0,52,62,1|dzxcvz,52,62,1|dzxcw0,50,66,0|e87kzz,50,66,0|e87l00,52,62,1|einfjz,52,62,1|einfk0,50,66,0|eqxnnz,50,66,0|eqxno0,52,62,1|f1di7z,52,62,1|f1di80,50,66,0|f9nqbz,50,66,0|f9nqc0,52,62,1|fkgjjz,52,62,1|fkgjk0,50,66,0|fsdszz,50,66,0|fsdt00,52,62,1|g36m7z,52,62,1|g36m80,50,66,0|gb3vnz,50,66,0|gb3vo0,52,62,1|glwovz,52,62,1|glwow0,50,66,0|gu6wzz,50,66,0|gu6x00,52,62,1|h4mrjz,52,62,1|h4mrk0,50,66,0|hcwznz,50,66,0|hcwzo0,52,62,1|hncu7z,52,62,1|hncu80,50,66,0|hvn2bz,50,66,0|hvn2c0,52,62,1|i6fvjz,52,62,1|i6fvk0,50,66,0|ied4zz,50,66,0|ied500,52,62,1|ip5y7z,52,62,1|ip5y80,50,66,0|ix37nz,50,66,0|ix37o0,52,62,1|j7w0vz,52,62,1|j7w0w0,50,66,0|jeqebz,50,66,0|jeqec0,52,62,1|jqz27z,52,62,1|jqz280,50,66,0|jxggzz,50,66,0|jxgh00,52,62,1|k9p4vz,52,62,1|k9p4w0,50,66,0|kg6jnz,50,66,0|kg6jo0,52,62,1|ksf7jz,52,62,1|ksf7k0,50,66,0|kz9kzz,50,66,0|kz9l00,52,62,1|lbi8vz,52,62,1|lbi8w0,50,66,0|lhznnz,50,66,0|lhzno0,52,62,1|lu8bjz,52,62,1|lu8bk0,50,66,0|m0pqbz,50,66,0|m0pqc0,52,62,1|mcye7z,52,62,1|mcye80,50,66,0|mjfszz,50,66,0|mjft00,52,62,1|mvogvz,52,62,1|mvogw0,50,66,0|n25vnz,50,66,0|n25vo0,52,62,1|neejjz,52,62,1|neejk0,50,66,0|nkvybz,50,66,0|nkvyc0,52,62,1|nx4m7z,52,62,1|nx4m80,50,66,0|o3yznz,50,66,0|o3yzo0,52,62,1|og7njz,52,62,1|og7nk0,50,66,0|omp2bz,50,66,0|omp2c0,52,62,1|oyxq7z,52,62,1|oyxq80,50,66,0|p5f4zz,50,66,0|p5f500,52,62,1|phnsvz,52,62,1|phnsw0,50,66,0|po57nz,50,66,0|po57o0,52,62,1|q0dvjz,52,62,1|q0dvk0,50,66,0|q6vabz,50,66,0|q6vac0,52,62,1|qj3y7z,52,62,1|qj3y80,50,66,0|qpybnz,50,66,0|qpybo0,52,62,1|r26zjz,52,62,1|r26zk0,50,66,0|r8oebz,50,66,0|r8oec0,52,62,1|rkx27z,52,62,1|rkx280,50,66,0|rregzz,50,66,0|rreh00,52,62,1|s3n4vz,52,62,1|s3n4w0,50,66,0|sa4jnz,50,66,0|sa4jo0,52,62,1|smd7jz,52,62,1|smd7k0,50,66,0|ssumbz,50,66,0|ssumc0,52,62,1|t53a7z,52,62,1|t53a80,50,66,0|tbkozz,50,66,0|tbkp00,52,62,1|tntcvz,52,62,1|tntcw0,50,66,0|tunqbz,50,66,0|tunqc0,52,62,1|u6we7z,52,62,1|u6we80,50,66,0|uddszz,50,66,0|uddt00,52,62,1|upmgvz,52,62,1|upmgw0,50,66,0|uw3vnz,50,66,0|uw3vo0,52,62,1|v8cjjz,52,62,1|v8cjk0,50,66,0|vetybz,50,66,0|vetyc0,52,62,1|vr2m7z,52,62,1|vr2m80,50,66,0|vxk0zz,50,66,0|vxk100,52,62,1|w9sovz,52,62,1|w9sow0,50,66,0|wgn2bz,50,66,0|wgn2c0,52,62,1|wsvq7z,52,62,1|wsvq80,50,66,0|wzd4zz,50,66,0|wzd500,52,62,1|xblsvz,52,62,1|xblsw0,50,66,0|xi37nz,50,66,0|xi37o0,52,62,1|xubvjz,52,62,1|xubvk0,50,66,0|y0tabz,50,66,0|y0tac0,52,62,1|yd1y7z,52,62,1|yd1y80,50,66,0|yjjczz,50,66,0|yjjd00,52,62,1|yvs0vz,52,62,1|yvs0w0,50,66,0|z29fnz,50,66,0|z29fo0,52,62,1|zei3jz,52,62,1|zei3k0,50,66,0","America/Eirunepe|,0,93,0|-t85f28,56,63,0|-jyl4w1,56,63,0|-jyl4w0,42,42,1|-jpavk1,42,42,1|-jpavk0,56,63,0|-jfs7g1,56,63,0|-jfs7g0,42,42,1|-j6iy81,42,42,1|-j6iy80,56,63,0|-ahcss1,56,63,0|-ahcss0,42,42,1|-aacy41,42,42,1|-aacy40,56,63,0|-9ykvg1,56,63,0|-9ykvg0,42,42,1|-9scvk1,42,42,1|-9scvk0,56,63,0|-9fsy41,56,63,0|-9fsy40,42,42,1|-99j3k1,42,42,1|-99j3k0,56,63,0|-8wz641,56,63,0|-8wz640,42,42,1|-8sckw1,42,42,1|-8sckw0,56,63,0|-35xgs1,56,63,0|-35xgs0,42,42,1|-31nu81,42,42,1|-31nu80,56,63,0|-2kdjg1,56,63,0|-2kdjg0,42,42,1|-2hccw1,42,42,1|-2hccw0,56,63,0|-24qks1,56,63,0|-24qks0,42,42,1|-203zk1,42,42,1|-203zk0,56,63,0|-1ni7g1,56,63,0|-1ni7g0,42,42,1|-1hc281,42,42,1|-1hc280,56,63,0|-14qa41,56,63,0|-14qa40,42,42,1|-yia81,42,42,1|-yia80,56,63,0|89jhvz,56,63,0|89jhw0,42,42,1|8gdprz,42,42,1|8gdps0,56,63,0|8rwlvz,56,63,0|8rwlw0,42,42,1|8xnxrz,42,42,1|8xnxs0,56,63,0|9aoj7z,56,63,0|9aoj80,42,42,1|9g2wfz,42,42,1|9g2wg0,56,63,0|cf0z7z,56,63,0|cf0z80,42,42,1|cli8fz,42,42,1|cli8g0,56,63,0|k2yb7z,56,63,0|k2yb80,42,42,0|mw14fz,42,42,0|mw14g0,56,63,0","America/El_Salvador|,0,94,0|-pkm4tc,45,62,0|91ojbz,45,62,0|91ojc0,46,63,1|998ojz,46,63,1|998ok0,45,62,0|9kelzz,45,62,0|9kem00,46,63,1|9ryr7z,46,63,1|9ryr80,45,62,0","America/Fort_Nelson|,0,95,0|-18vrvy1,51,40,0|-qzopk1,51,40,0|-qzopk0,57,66,1|-qplto1,57,66,1|-qplto0,51,40,0|-ek1w81,51,40,0|-ek1w80,68,66,1|-cq2tg1,68,66,1|-cq2tg0,69,66,1|-cnov01,69,66,1|-cnov00,51,40,0|-bu5tk1,51,40,0|-bu5tk0,57,66,1|-bm8po1,57,66,1|-bm8po0,51,40,0|-bbfqw1,51,40,0|-bbfqw0,57,66,1|-b3in01,57,66,1|-b3in00,51,40,0|-aspo81,51,40,0|-aspo80,57,66,1|-akskc1,57,66,1|-akskc0,51,40,0|-a9mmw1,51,40,0|-a9mmw0,57,66,1|-a22ho1,57,66,1|-a22ho0,51,40,0|-9qwk81,51,40,0|-9qwk80,57,66,1|-9izgc1,57,66,1|-9izgc0,51,40,0|-986hk1,51,40,0|-986hk0,57,66,1|-909do1,57,66,1|-909do0,51,40,0|-8pgew1,51,40,0|-8pgew0,57,66,1|-8hjb01,57,66,1|-8hjb00,51,40,0|-86qc81,51,40,0|-86qc80,57,66,1|-7yt8c1,57,66,1|-7yt8c0,51,40,0|-7o09k1,51,40,0|-7o09k0,57,66,1|-7g35o1,57,66,1|-7g35o0,51,40,0|-74x881,51,40,0|-74x880,57,66,1|-6x04c1,57,66,1|-6x04c0,51,40,0|-6m75k1,51,40,0|-6m75k0,57,66,1|-6ea1o1,57,66,1|-6ea1o0,51,40,0|-63h2w1,51,40,0|-63h2w0,57,66,1|-5vjz01,57,66,1|-5vjz00,51,40,0|-5kr081,51,40,0|-5kr080,57,66,1|-5ctwc1,57,66,1|-5ctwc0,51,40,0|-520xk1,51,40,0|-520xk0,57,66,1|-4u3to1,57,66,1|-4u3to0,51,40,0|-4ixw81,51,40,0|-4ixw80,57,66,1|-4bdr01,57,66,1|-4bdr00,51,40,0|-407tk1,51,40,0|-407tk0,57,66,1|-3quv01,57,66,1|-3quv00,51,40,0|-3hhqw1,51,40,0|-3hhqw0,57,66,1|-384sc1,57,66,1|-384sc0,51,40,0|-2yro81,51,40,0|-2yro80,57,66,1|-2pepo1,57,66,1|-2pepo0,51,40,0|-2g1lk1,51,40,0|-2g1lk0,57,66,1|-26boc1,57,66,1|-26boc0,51,40,0|-1xbiw1,51,40,0|-1xbiw0,57,66,1|-1nllo1,57,66,1|-1nllo0,51,40,0|-1e8hk1,51,40,0|-1e8hk0,57,66,1|-14vj01,57,66,1|-14vj00,51,40,0|-view1,51,40,0|-view0,57,66,1|-m5gc1,57,66,1|-m5gc0,51,40,0|-csc81,51,40,0|-csc80,57,66,1|-3fdo1,57,66,1|-3fdo0,51,40,0|5xqfz,51,40,0|5xqg0,57,66,1|faozz,57,66,1|fap00,51,40,0|ont3z,51,40,0|ont40,57,66,1|ydqbz,57,66,1|ydqc0,51,40,0|17qufz,51,40,0|17qug0,57,66,1|1h3szz,57,66,1|1h3t00,51,40,0|1qgx3z,51,40,0|1qgx40,57,66,1|1ztvnz,57,66,1|1ztvo0,51,40,0|296zrz,51,40,0|296zs0,57,66,1|2ijybz,57,66,1|2ijyc0,51,40,0|2rx2fz,51,40,0|2rx2g0,57,66,1|31a0zz,57,66,1|31a100,51,40,0|3an53z,51,40,0|3an540,57,66,1|3kd2bz,57,66,1|3kd2c0,51,40,0|3td7rz,51,40,0|3td7s0,57,66,1|4334zz,57,66,1|433500,51,40,0|4cg93z,51,40,0|4cg940,57,66,1|4lt7nz,57,66,1|4lt7o0,51,40,0|4v6brz,51,40,0|4v6bs0,57,66,1|54jabz,57,66,1|54jac0,51,40,0|5dwefz,51,40,0|5dweg0,57,66,1|5n9czz,57,66,1|5n9d00,51,40,0|5wmh3z,51,40,0|5wmh40,57,66,1|65zfnz,57,66,1|65zfo0,51,40,0|6fcjrz,51,40,0|6fcjs0,57,66,1|6p2gzz,57,66,1|6p2h00,51,40,0|6y2mfz,51,40,0|6y2mg0,57,66,1|77sjnz,57,66,1|77sjo0,51,40,0|7h5nrz,51,40,0|7h5ns0,57,66,1|7qimbz,57,66,1|7qimc0,51,40,0|7zvqfz,51,40,0|7zvqg0,57,66,1|898ozz,57,66,1|898p00,51,40,0|8ilt3z,51,40,0|8ilt40,57,66,1|8ryrnz,57,66,1|8ryro0,51,40,0|908zrz,51,40,0|908zs0,57,66,1|9aoubz,57,66,1|9aouc0,51,40,0|9iz2fz,51,40,0|9iz2g0,57,66,1|9trvnz,57,66,1|9trvo0,51,40,0|a1p53z,51,40,0|a1p540,57,66,1|achybz,57,66,1|achyc0,51,40,0|akf7rz,51,40,0|akf7s0,57,66,1|av80zz,57,66,1|av8100,51,40,0|b3i93z,51,40,0|b3i940,57,66,1|bdy3nz,57,66,1|bdy3o0,51,40,0|bm8brz,51,40,0|bm8bs0,57,66,1|bwo6bz,57,66,1|bwo6c0,51,40,0|c4yefz,51,40,0|c4yeg0,57,66,1|cfr7nz,57,66,1|cfr7o0,51,40,0|cnoh3z,51,40,0|cnoh40,57,66,1|cyhabz,57,66,1|cyhac0,51,40,0|d6ejrz,51,40,0|d6ejs0,57,66,1|dh7czz,57,66,1|dh7d00,51,40,0|dphl3z,51,40,0|dphl40,57,66,1|dzxfnz,57,66,1|dzxfo0,51,40,0|e87nrz,51,40,0|e87ns0,57,66,1|einibz,57,66,1|einic0,51,40,0|eqxqfz,51,40,0|eqxqg0,57,66,1|f1dkzz,57,66,1|f1dl00,51,40,0|f9nt3z,51,40,0|f9nt40,57,66,1|fkgmbz,57,66,1|fkgmc0,51,40,0|fsdvrz,51,40,0|fsdvs0,57,66,1|g36ozz,57,66,1|g36p00,51,40,0|gb3yfz,51,40,0|gb3yg0,57,66,1|glwrnz,57,66,1|glwro0,51,40,0|gu6zrz,51,40,0|gu6zs0,57,66,1|h4mubz,57,66,1|h4muc0,51,40,0|hcx2fz,51,40,0|hcx2g0,57,66,1|hncwzz,57,66,1|hncx00,51,40,0|hvn53z,51,40,0|hvn540,57,66,1|i6fybz,57,66,1|i6fyc0,51,40,0|ied7rz,51,40,0|ied7s0,57,66,1|ip60zz,57,66,1|ip6100,51,40,0|ix3afz,51,40,0|ix3ag0,57,66,1|j7w3nz,57,66,1|j7w3o0,51,40,0|jeqh3z,51,40,0|jeqh40,57,66,1|jqz4zz,57,66,1|jqz500,51,40,0|jxgjrz,51,40,0|jxgjs0,57,66,1|k9p7nz,57,66,1|k9p7o0,51,40,0|kg6mfz,51,40,0|kg6mg0,57,66,1|ksfabz,57,66,1|ksfac0,51,40,0|kz9nrz,51,40,0|kz9ns0,57,66,1|lbibnz,57,66,1|lbibo0,51,40,0|lhzqfz,51,40,0|lhzqg0,57,66,1|lu8ebz,57,66,1|lu8ec0,51,40,0|m0pt3z,51,40,0|m0pt40,57,66,1|mcygzz,57,66,1|mcyh00,51,40,0|mjfvrz,51,40,0|mjfvs0,57,66,1|mvojnz,57,66,1|mvojo0,51,40,0|n25yfz,51,40,0|n25yg0,57,66,1|neembz,57,66,1|neemc0,51,40,0|nkw13z,51,40,0|nkw140,50,66,0","America/Fortaleza|,0,96,0|-t85kvc,39,44,0|-jylag1,39,44,0|-jylag0,40,45,1|-jpb141,40,45,1|-jpb140,39,44,0|-jfsd01,39,44,0|-jfsd00,40,45,1|-j6j3s1,40,45,1|-j6j3s0,39,44,0|-ahcyc1,39,44,0|-ahcyc0,40,45,1|-aad3o1,40,45,1|-aad3o0,39,44,0|-9yl101,39,44,0|-9yl100,40,45,1|-9sd141,40,45,1|-9sd140,39,44,0|-9ft3o1,39,44,0|-9ft3o0,40,45,1|-99j941,40,45,1|-99j940,39,44,0|-8wzbo1,39,44,0|-8wzbo0,40,45,1|-8scqg1,40,45,1|-8scqg0,39,44,0|-35xmc1,39,44,0|-35xmc0,40,45,1|-31nzs1,40,45,1|-31nzs0,39,44,0|-2kdp01,39,44,0|-2kdp00,40,45,1|-2hcig1,40,45,1|-2hcig0,39,44,0|-24qqc1,39,44,0|-24qqc0,40,45,1|-204541,40,45,1|-204540,39,44,0|-1nid01,39,44,0|-1nid00,40,45,1|-1hc7s1,40,45,1|-1hc7s0,39,44,0|-14qfo1,39,44,0|-14qfo0,40,45,1|-yifs1,40,45,1|-yifs0,39,44,0|89jcbz,39,44,0|89jcc0,40,45,1|8gdk7z,40,45,1|8gdk80,39,44,0|8rwgbz,39,44,0|8rwgc0,40,45,1|8xns7z,40,45,1|8xns80,39,44,0|9aodnz,39,44,0|9aodo0,40,45,1|9g2qvz,40,45,1|9g2qw0,39,44,0|9t1hnz,39,44,0|9t1ho0,40,45,1|9yfuvz,40,45,1|9yfuw0,39,44,0|abrkbz,39,44,0|abrkc0,40,45,1|ahvuvz,40,45,1|ahvuw0,39,44,0|fj0azz,39,44,0|fj0b00,40,45,1|fqkg7z,40,45,1|fqkg80,39,44,0|g23cbz,39,44,0|g23cc0,40,45,1|g2t6vz,40,45,1|g2t6w0,39,44,0|gl6dnz,39,44,0|gl6do0,40,45,1|grnmvz,40,45,1|grnmw0,39,44,0","America/Glace_Bay|,0,97,0|-z94kwc,32,42,0|-qzp0o1,32,42,0|-qzp0o0,54,44,1|-qpm4s1,54,44,1|-qpm4s0,32,42,0|-ek27c1,32,42,0|-ek27c0,33,44,1|-cq2tg1,33,44,1|-cq2tg0,34,44,1|-cnp641,34,44,1|-cnp640,32,42,0|-8pgq01,32,42,0|-8pgq00,54,44,1|-8hjm41,54,44,1|-8hjm40,32,42,0|17qjbz,32,42,0|17qjc0,54,44,1|1h3hvz,54,44,1|1h3hw0,32,42,0|1qglzz,32,42,0|1qgm00,54,44,1|1ztkjz,54,44,1|1ztkk0,32,42,0|296onz,32,42,0|296oo0,54,44,1|2ijn7z,54,44,1|2ijn80,32,42,0|2rwrbz,32,42,0|2rwrc0,54,44,1|319pvz,54,44,1|319pw0,32,42,0|3amtzz,32,42,0|3amu00,54,44,1|3kcr7z,54,44,1|3kcr80,32,42,0|3tcwnz,32,42,0|3tcwo0,54,44,1|432tvz,54,44,1|432tw0,32,42,0|4cfxzz,32,42,0|4cfy00,54,44,1|4lswjz,54,44,1|4lswk0,32,42,0|4v60nz,32,42,0|4v60o0,54,44,1|54iz7z,54,44,1|54iz80,32,42,0|5dw3bz,32,42,0|5dw3c0,54,44,1|5n91vz,54,44,1|5n91w0,32,42,0|5wm5zz,32,42,0|5wm600,54,44,1|65z4jz,54,44,1|65z4k0,32,42,0|6fc8nz,32,42,0|6fc8o0,54,44,1|6p25vz,54,44,1|6p25w0,32,42,0|6y2bbz,32,42,0|6y2bc0,54,44,1|77s8jz,54,44,1|77s8k0,32,42,0|7h5cnz,32,42,0|7h5co0,54,44,1|7qib7z,54,44,1|7qib80,32,42,0|7zvfbz,32,42,0|7zvfc0,54,44,1|898dvz,54,44,1|898dw0,32,42,0|8ilhzz,32,42,0|8ili00,54,44,1|8rygjz,54,44,1|8rygk0,32,42,0|908onz,32,42,0|908oo0,54,44,1|9aoj7z,54,44,1|9aoj80,32,42,0|9iyrbz,32,42,0|9iyrc0,54,44,1|9trkjz,54,44,1|9trkk0,32,42,0|a1otzz,32,42,0|a1ou00,54,44,1|achn7z,54,44,1|achn80,32,42,0|akewnz,32,42,0|akewo0,54,44,1|av7pvz,54,44,1|av7pw0,32,42,0|b3hxzz,32,42,0|b3hy00,54,44,1|bdxsjz,54,44,1|bdxsk0,32,42,0|bm80nz,32,42,0|bm80o0,54,44,1|bwnv7z,54,44,1|bwnv80,32,42,0|c4y3bz,32,42,0|c4y3c0,54,44,1|cfqwjz,54,44,1|cfqwk0,32,42,0|cno5zz,32,42,0|cno600,54,44,1|cygz7z,54,44,1|cygz80,32,42,0|d6e8nz,32,42,0|d6e8o0,54,44,1|dh71vz,54,44,1|dh71w0,32,42,0|dph9zz,32,42,0|dpha00,54,44,1|dzx4jz,54,44,1|dzx4k0,32,42,0|e87cnz,32,42,0|e87co0,54,44,1|ein77z,54,44,1|ein780,32,42,0|eqxfbz,32,42,0|eqxfc0,54,44,1|f1d9vz,54,44,1|f1d9w0,32,42,0|f9nhzz,32,42,0|f9ni00,54,44,1|fkgb7z,54,44,1|fkgb80,32,42,0|fsdknz,32,42,0|fsdko0,54,44,1|g36dvz,54,44,1|g36dw0,32,42,0|gb3nbz,32,42,0|gb3nc0,54,44,1|glwgjz,54,44,1|glwgk0,32,42,0|gu6onz,32,42,0|gu6oo0,54,44,1|h4mj7z,54,44,1|h4mj80,32,42,0|hcwrbz,32,42,0|hcwrc0,54,44,1|hnclvz,54,44,1|hnclw0,32,42,0|hvmtzz,32,42,0|hvmu00,54,44,1|i6fn7z,54,44,1|i6fn80,32,42,0|iecwnz,32,42,0|iecwo0,54,44,1|ip5pvz,54,44,1|ip5pw0,32,42,0|ix2zbz,32,42,0|ix2zc0,54,44,1|j7vsjz,54,44,1|j7vsk0,32,42,0|jeq5zz,32,42,0|jeq600,54,44,1|jqytvz,54,44,1|jqytw0,32,42,0|jxg8nz,32,42,0|jxg8o0,54,44,1|k9owjz,54,44,1|k9owk0,32,42,0|kg6bbz,32,42,0|kg6bc0,54,44,1|ksez7z,54,44,1|ksez80,32,42,0|kz9cnz,32,42,0|kz9co0,54,44,1|lbi0jz,54,44,1|lbi0k0,32,42,0|lhzfbz,32,42,0|lhzfc0,54,44,1|lu837z,54,44,1|lu8380,32,42,0|m0phzz,32,42,0|m0pi00,54,44,1|mcy5vz,54,44,1|mcy5w0,32,42,0|mjfknz,32,42,0|mjfko0,54,44,1|mvo8jz,54,44,1|mvo8k0,32,42,0|n25nbz,32,42,0|n25nc0,54,44,1|neeb7z,54,44,1|neeb80,32,42,0|nkvpzz,32,42,0|nkvq00,54,44,1|nx4dvz,54,44,1|nx4dw0,32,42,0|o3yrbz,32,42,0|o3yrc0,54,44,1|og7f7z,54,44,1|og7f80,32,42,0|omotzz,32,42,0|omou00,54,44,1|oyxhvz,54,44,1|oyxhw0,32,42,0|p5ewnz,32,42,0|p5ewo0,54,44,1|phnkjz,54,44,1|phnkk0,32,42,0|po4zbz,32,42,0|po4zc0,54,44,1|q0dn7z,54,44,1|q0dn80,32,42,0|q6v1zz,32,42,0|q6v200,54,44,1|qj3pvz,54,44,1|qj3pw0,32,42,0|qpy3bz,32,42,0|qpy3c0,54,44,1|r26r7z,54,44,1|r26r80,32,42,0|r8o5zz,32,42,0|r8o600,54,44,1|rkwtvz,54,44,1|rkwtw0,32,42,0|rre8nz,32,42,0|rre8o0,54,44,1|s3mwjz,54,44,1|s3mwk0,32,42,0|sa4bbz,32,42,0|sa4bc0,54,44,1|smcz7z,54,44,1|smcz80,32,42,0|ssudzz,32,42,0|ssue00,54,44,1|t531vz,54,44,1|t531w0,32,42,0|tbkgnz,32,42,0|tbkgo0,54,44,1|tnt4jz,54,44,1|tnt4k0,32,42,0|tunhzz,32,42,0|tuni00,54,44,1|u6w5vz,54,44,1|u6w5w0,32,42,0|uddknz,32,42,0|uddko0,54,44,1|upm8jz,54,44,1|upm8k0,32,42,0|uw3nbz,32,42,0|uw3nc0,54,44,1|v8cb7z,54,44,1|v8cb80,32,42,0|vetpzz,32,42,0|vetq00,54,44,1|vr2dvz,54,44,1|vr2dw0,32,42,0|vxjsnz,32,42,0|vxjso0,54,44,1|w9sgjz,54,44,1|w9sgk0,32,42,0|wgmtzz,32,42,0|wgmu00,54,44,1|wsvhvz,54,44,1|wsvhw0,32,42,0|wzcwnz,32,42,0|wzcwo0,54,44,1|xblkjz,54,44,1|xblkk0,32,42,0|xi2zbz,32,42,0|xi2zc0,54,44,1|xubn7z,54,44,1|xubn80,32,42,0|y0t1zz,32,42,0|y0t200,54,44,1|yd1pvz,54,44,1|yd1pw0,32,42,0|yjj4nz,32,42,0|yjj4o0,54,44,1|yvrsjz,54,44,1|yvrsk0,32,42,0|z297bz,32,42,0|z297c0,54,44,1|zehv7z,54,44,1|zehv80,32,42,0","America/Goose_Bay|,0,98,0|-18vs7h8,24,99,0|-qzp20l,24,99,0|-qzp20k,72,100,1|-qpm64l,72,100,1|-qpm64k,24,99,0|-i52u8l,24,99,0|-i52u8k,24,101,0|-hk3aa1,24,101,0|-hk3aa0,72,102,1|-hcj521,72,102,1|-hcj520,24,101,0|-h1d7m1,24,101,0|-h1d7m0,72,102,1|-gtt2e1,72,102,1|-gtt2e0,24,101,0|-gin4y1,24,101,0|-gin4y0,72,102,1|-gb2zq1,72,102,1|-gb2zq0,24,101,0|-fzk3m1,24,101,0|-fzk3m0,72,102,1|-fscx21,72,102,1|-fscx20,24,101,0|-fgu0y1,24,101,0|-fgu0y0,72,102,1|-f99vq1,72,102,1|-f99vq0,24,101,0|-ey3ya1,24,101,0|-ey3ya0,72,102,1|-eqjt21,72,102,1|-eqjt20,24,101,0|-efdvm1,24,101,0|-efdvm0,25,102,1|-cq2tg1,25,102,1|-cq2tg0,26,102,1|-cnp7i1,26,102,1|-cnp7i0,24,101,0|-cc6be1,24,101,0|-cc6be0,72,102,1|-c4m661,72,102,1|-c4m660,24,101,0|-btg8q1,24,101,0|-btg8q0,72,102,1|-blw3i1,72,102,1|-blw3i0,24,101,0|-baq621,24,101,0|-baq620,72,102,1|-b360u1,72,102,1|-b360u0,24,101,0|-as03e1,24,101,0|-as03e0,72,102,1|-akfy61,72,102,1|-akfy60,24,101,0|-a8x221,24,101,0|-a8x220,72,102,1|-a1cwu1,72,102,1|-a1cwu0,24,101,0|-9qwwq1,24,101,0|-9qwwq0,72,102,1|-9izsu1,72,102,1|-9izsu0,24,101,0|-986u21,24,101,0|-986u20,72,102,1|-909q61,72,102,1|-909q60,24,101,0|-8pgre1,24,101,0|-8pgre0,72,102,1|-8hjni1,72,102,1|-8hjni0,24,101,0|-86qoq1,24,101,0|-86qoq0,72,102,1|-7ytku1,72,102,1|-7ytku0,24,101,0|-7o0m21,24,101,0|-7o0m20,72,102,1|-7g3i61,72,102,1|-7g3i60,24,101,0|-74xkq1,24,101,0|-74xkq0,72,102,1|-6x0gu1,72,102,1|-6x0gu0,24,101,0|-6m7i21,24,101,0|-6m7i20,72,102,1|-6eae61,72,102,1|-6eae60,24,101,0|-63hfe1,24,101,0|-63hfe0,72,102,1|-5vkbi1,72,102,1|-5vkbi0,24,101,0|-5krcq1,24,101,0|-5krcq0,72,102,1|-5cu8u1,72,102,1|-5cu8u0,24,101,0|-521a21,24,101,0|-521a20,72,102,1|-4sbcu1,72,102,1|-4sbcu0,24,101,0|-4iy8q1,24,101,0|-4iy8q0,72,102,1|-49la61,72,102,1|-49la60,24,101,0|-408621,24,101,0|-408620,72,102,1|-3qv7i1,72,102,1|-3qv7i0,24,101,0|-3hi3e1,24,101,0|-3hi3e0,72,102,1|-3854u1,72,102,1|-3854u0,24,101,0|-2ys0q1,24,101,0|-2ys0q0,72,102,1|-2pf261,72,102,1|-2pf260,24,101,0|-2g1y21,24,101,0|-2g1y20,72,102,1|-26c0u1,72,102,1|-26c0u0,24,101,0|-1zdy21,24,101,0|-1zdy20,32,42,0|-1xbu01,32,42,0|-1xbu00,54,44,1|-1nlws1,54,44,1|-1nlws0,32,42,0|-1e8so1,32,42,0|-1e8so0,54,44,1|-14vu41,54,44,1|-14vu40,32,42,0|-viq01,32,42,0|-viq00,54,44,1|-m5rg1,54,44,1|-m5rg0,32,42,0|-csnc1,32,42,0|-csnc0,54,44,1|-3fos1,54,44,1|-3fos0,32,42,0|5xfbz,32,42,0|5xfc0,54,44,1|fadvz,54,44,1|fadw0,32,42,0|onhzz,32,42,0|oni00,54,44,1|ydf7z,54,44,1|ydf80,32,42,0|17qjbz,32,42,0|17qjc0,54,44,1|1h3hvz,54,44,1|1h3hw0,32,42,0|1qglzz,32,42,0|1qgm00,54,44,1|1ztkjz,54,44,1|1ztkk0,32,42,0|296onz,32,42,0|296oo0,54,44,1|2ijn7z,54,44,1|2ijn80,32,42,0|2rwrbz,32,42,0|2rwrc0,54,44,1|319pvz,54,44,1|319pw0,32,42,0|3amtzz,32,42,0|3amu00,54,44,1|3kcr7z,54,44,1|3kcr80,32,42,0|3tcwnz,32,42,0|3tcwo0,54,44,1|432tvz,54,44,1|432tw0,32,42,0|4cfxzz,32,42,0|4cfy00,54,44,1|4lswjz,54,44,1|4lswk0,32,42,0|4v60nz,32,42,0|4v60o0,54,44,1|54iz7z,54,44,1|54iz80,32,42,0|5dw3bz,32,42,0|5dw3c0,54,44,1|5n91vz,54,44,1|5n91w0,32,42,0|5wm5zz,32,42,0|5wm600,54,44,1|65z4jz,54,44,1|65z4k0,32,42,0|6fc8nz,32,42,0|6fc8o0,54,44,1|6p25vz,54,44,1|6p25w0,32,42,0|6y2bbz,32,42,0|6y2bc0,54,44,1|77s8jz,54,44,1|77s8k0,32,42,0|7h5cnz,32,42,0|7h5co0,54,44,1|7qib7z,54,44,1|7qib80,32,42,0|7zvfbz,32,42,0|7zvfc0,54,44,1|898dvz,54,44,1|898dw0,32,42,0|8ilhzz,32,42,0|8ili00,54,44,1|8rygjz,54,44,1|8rygk0,32,42,0|908j5n,32,42,0|908j5o,54,44,1|9aodpn,54,44,1|9aodpo,32,42,0|9iyltn,32,42,0|9iylto,73,45,1|9trc9n,73,45,1|9trc9o,32,42,0|a1oohn,32,42,0|a1ooho,54,44,1|achhpn,54,44,1|achhpo,32,42,0|aker5n,32,42,0|aker5o,54,44,1|av7kdn,54,44,1|av7kdo,32,42,0|b3hshn,32,42,0|b3hsho,54,44,1|bdxn1n,54,44,1|bdxn1o,32,42,0|bm7v5n,32,42,0|bm7v5o,54,44,1|bwnppn,54,44,1|bwnppo,32,42,0|c4xxtn,32,42,0|c4xxto,54,44,1|cfqr1n,54,44,1|cfqr1o,32,42,0|cno0hn,32,42,0|cno0ho,54,44,1|cygtpn,54,44,1|cygtpo,32,42,0|d6e35n,32,42,0|d6e35o,54,44,1|dh6wdn,54,44,1|dh6wdo,32,42,0|dph4hn,32,42,0|dph4ho,54,44,1|dzwz1n,54,44,1|dzwz1o,32,42,0|e8775n,32,42,0|e8775o,54,44,1|ein1pn,54,44,1|ein1po,32,42,0|eqx9tn,32,42,0|eqx9to,54,44,1|f1d4dn,54,44,1|f1d4do,32,42,0|f9nchn,32,42,0|f9ncho,54,44,1|fkg5pn,54,44,1|fkg5po,32,42,0|fsdf5n,32,42,0|fsdf5o,54,44,1|g368dn,54,44,1|g368do,32,42,0|gb3htn,32,42,0|gb3hto,54,44,1|glwb1n,54,44,1|glwb1o,32,42,0|gu6j5n,32,42,0|gu6j5o,54,44,1|h4mdpn,54,44,1|h4mdpo,32,42,0|hcwltn,32,42,0|hcwlto,54,44,1|hncgdn,54,44,1|hncgdo,32,42,0|hvmohn,32,42,0|hvmoho,54,44,1|i6fhpn,54,44,1|i6fhpo,32,42,0|iecr5n,32,42,0|iecr5o,54,44,1|ip5kdn,54,44,1|ip5kdo,32,42,0|ix2ttn,32,42,0|ix2tto,54,44,1|j7vn1n,54,44,1|j7vn1o,32,42,0|jeq0hn,32,42,0|jeq0ho,54,44,1|jqyodn,54,44,1|jqyodo,32,42,0|jxg35n,32,42,0|jxg35o,54,44,1|k9or1n,54,44,1|k9or1o,32,42,0|kg65tn,32,42,0|kg65to,54,44,1|ksetpn,54,44,1|ksetpo,32,42,0|kz975n,32,42,0|kz975o,54,44,1|lbhv1n,54,44,1|lbhv1o,32,42,0|lhz9tn,32,42,0|lhz9to,54,44,1|lu837z,54,44,1|lu8380,32,42,0|m0phzz,32,42,0|m0pi00,54,44,1|mcy5vz,54,44,1|mcy5w0,32,42,0|mjfknz,32,42,0|mjfko0,54,44,1|mvo8jz,54,44,1|mvo8k0,32,42,0|n25nbz,32,42,0|n25nc0,54,44,1|neeb7z,54,44,1|neeb80,32,42,0|nkvpzz,32,42,0|nkvq00,54,44,1|nx4dvz,54,44,1|nx4dw0,32,42,0|o3yrbz,32,42,0|o3yrc0,54,44,1|og7f7z,54,44,1|og7f80,32,42,0|omotzz,32,42,0|omou00,54,44,1|oyxhvz,54,44,1|oyxhw0,32,42,0|p5ewnz,32,42,0|p5ewo0,54,44,1|phnkjz,54,44,1|phnkk0,32,42,0|po4zbz,32,42,0|po4zc0,54,44,1|q0dn7z,54,44,1|q0dn80,32,42,0|q6v1zz,32,42,0|q6v200,54,44,1|qj3pvz,54,44,1|qj3pw0,32,42,0|qpy3bz,32,42,0|qpy3c0,54,44,1|r26r7z,54,44,1|r26r80,32,42,0|r8o5zz,32,42,0|r8o600,54,44,1|rkwtvz,54,44,1|rkwtw0,32,42,0|rre8nz,32,42,0|rre8o0,54,44,1|s3mwjz,54,44,1|s3mwk0,32,42,0|sa4bbz,32,42,0|sa4bc0,54,44,1|smcz7z,54,44,1|smcz80,32,42,0|ssudzz,32,42,0|ssue00,54,44,1|t531vz,54,44,1|t531w0,32,42,0|tbkgnz,32,42,0|tbkgo0,54,44,1|tnt4jz,54,44,1|tnt4k0,32,42,0|tunhzz,32,42,0|tuni00,54,44,1|u6w5vz,54,44,1|u6w5w0,32,42,0|uddknz,32,42,0|uddko0,54,44,1|upm8jz,54,44,1|upm8k0,32,42,0|uw3nbz,32,42,0|uw3nc0,54,44,1|v8cb7z,54,44,1|v8cb80,32,42,0|vetpzz,32,42,0|vetq00,54,44,1|vr2dvz,54,44,1|vr2dw0,32,42,0|vxjsnz,32,42,0|vxjso0,54,44,1|w9sgjz,54,44,1|w9sgk0,32,42,0|wgmtzz,32,42,0|wgmu00,54,44,1|wsvhvz,54,44,1|wsvhw0,32,42,0|wzcwnz,32,42,0|wzcwo0,54,44,1|xblkjz,54,44,1|xblkk0,32,42,0|xi2zbz,32,42,0|xi2zc0,54,44,1|xubn7z,54,44,1|xubn80,32,42,0|y0t1zz,32,42,0|y0t200,54,44,1|yd1pvz,54,44,1|yd1pw0,32,42,0|yjj4nz,32,42,0|yjj4o0,54,44,1|yvrsjz,54,44,1|yvrsk0,32,42,0|z297bz,32,42,0|z297c0,54,44,1|zehv7z,54,44,1|zehv80,32,42,0","America/Grand_Turk|,0,103,0|-15r0w5s,74,104,0|-u85og3,74,104,0|-u85og2,49,63,0|4v63fz,49,63,0|4v63g0,62,42,1|54j1zz,62,42,1|54j200,49,63,0|5dw63z,49,63,0|5dw640,62,42,1|5n94nz,62,42,1|5n94o0,49,63,0|5wm8rz,49,63,0|5wm8s0,62,42,1|65z7bz,62,42,1|65z7c0,49,63,0|6fcbfz,49,63,0|6fcbg0,62,42,1|6p28nz,62,42,1|6p28o0,49,63,0|6y2e3z,49,63,0|6y2e40,62,42,1|77sbbz,62,42,1|77sbc0,49,63,0|7h5ffz,49,63,0|7h5fg0,62,42,1|7qidzz,62,42,1|7qie00,49,63,0|7zvi3z,49,63,0|7zvi40,62,42,1|898gnz,62,42,1|898go0,49,63,0|8ilkrz,49,63,0|8ilks0,62,42,1|8ryjbz,62,42,1|8ryjc0,49,63,0|908rfz,49,63,0|908rg0,62,42,1|9aolzz,62,42,1|9aom00,49,63,0|9iyu3z,49,63,0|9iyu40,62,42,1|9trnbz,62,42,1|9trnc0,49,63,0|a1owrz,49,63,0|a1ows0,62,42,1|achpzz,62,42,1|achq00,49,63,0|akezfz,49,63,0|akezg0,62,42,1|av7snz,62,42,1|av7so0,49,63,0|b3i0rz,49,63,0|b3i0s0,62,42,1|bdxvbz,62,42,1|bdxvc0,49,63,0|bm83fz,49,63,0|bm83g0,62,42,1|bwnxzz,62,42,1|bwny00,49,63,0|c4y63z,49,63,0|c4y640,62,42,1|cfqzbz,62,42,1|cfqzc0,49,63,0|cno8rz,49,63,0|cno8s0,62,42,1|cyh1zz,62,42,1|cyh200,49,63,0|d6ebfz,49,63,0|d6ebg0,62,42,1|dh74nz,62,42,1|dh74o0,49,63,0|dphcrz,49,63,0|dphcs0,62,42,1|dzx7bz,62,42,1|dzx7c0,49,63,0|e87ffz,49,63,0|e87fg0,62,42,1|ein9zz,62,42,1|eina00,49,63,0|eqxi3z,49,63,0|eqxi40,62,42,1|f1dcnz,62,42,1|f1dco0,49,63,0|f9nkrz,49,63,0|f9nks0,62,42,1|fkgdzz,62,42,1|fkge00,49,63,0|fsdnfz,49,63,0|fsdng0,62,42,1|g36gnz,62,42,1|g36go0,49,63,0|gb3q3z,49,63,0|gb3q40,62,42,1|glwjbz,62,42,1|glwjc0,49,63,0|gu6rfz,49,63,0|gu6rg0,62,42,1|h4mlzz,62,42,1|h4mm00,49,63,0|hcwu3z,49,63,0|hcwu40,62,42,1|hnconz,62,42,1|hncoo0,49,63,0|hvmwrz,49,63,0|hvmws0,62,42,1|i6fpzz,62,42,1|i6fq00,49,63,0|ieczfz,49,63,0|ieczg0,62,42,1|ip5snz,62,42,1|ip5so0,49,63,0|ix323z,49,63,0|ix3240,62,42,1|j7vvbz,62,42,1|j7vvc0,49,63,0|jeq8rz,49,63,0|jeq8s0,62,42,1|jqywnz,62,42,1|jqywo0,49,63,0|jxgbfz,49,63,0|jxgbg0,62,42,1|k9ozbz,62,42,1|k9ozc0,49,63,0|kg6e3z,49,63,0|kg6e40,62,42,1|ksf1zz,62,42,1|ksf200,49,63,0|kz9ffz,49,63,0|kz9fg0,62,42,1|lbi3bz,62,42,1|lbi3c0,49,63,0|lhzi3z,49,63,0|lhzi40,62,42,1|lu85zz,62,42,1|lu8600,49,63,0|m0pkrz,49,63,0|m0pks0,62,42,1|mcy8nz,62,42,1|mcy8o0,49,63,0|mjfnfz,49,63,0|mjfng0,62,42,1|mvobbz,62,42,1|mvobc0,49,63,0|n25q3z,49,63,0|n25q40,62,42,1|needzz,62,42,1|neee00,49,63,0|nkvsrz,49,63,0|nkvss0,32,42,0|p5ezfz,32,42,0|p5ezg0,62,42,1|phnnbz,62,42,1|phnnc0,49,63,0|po523z,49,63,0|po5240,62,42,1|q0dpzz,62,42,1|q0dq00,49,63,0|q6v4rz,49,63,0|q6v4s0,62,42,1|qj3snz,62,42,1|qj3so0,49,63,0|qpy63z,49,63,0|qpy640,62,42,1|r26tzz,62,42,1|r26u00,49,63,0|r8o8rz,49,63,0|r8o8s0,62,42,1|rkwwnz,62,42,1|rkwwo0,49,63,0|rrebfz,49,63,0|rrebg0,62,42,1|s3mzbz,62,42,1|s3mzc0,49,63,0|sa4e3z,49,63,0|sa4e40,62,42,1|smd1zz,62,42,1|smd200,49,63,0|ssugrz,49,63,0|ssugs0,62,42,1|t534nz,62,42,1|t534o0,49,63,0|tbkjfz,49,63,0|tbkjg0,62,42,1|tnt7bz,62,42,1|tnt7c0,49,63,0|tunkrz,49,63,0|tunks0,62,42,1|u6w8nz,62,42,1|u6w8o0,49,63,0|uddnfz,49,63,0|uddng0,62,42,1|upmbbz,62,42,1|upmbc0,49,63,0|uw3q3z,49,63,0|uw3q40,62,42,1|v8cdzz,62,42,1|v8ce00,49,63,0|vetsrz,49,63,0|vetss0,62,42,1|vr2gnz,62,42,1|vr2go0,49,63,0|vxjvfz,49,63,0|vxjvg0,62,42,1|w9sjbz,62,42,1|w9sjc0,49,63,0|wgmwrz,49,63,0|wgmws0,62,42,1|wsvknz,62,42,1|wsvko0,49,63,0|wzczfz,49,63,0|wzczg0,62,42,1|xblnbz,62,42,1|xblnc0,49,63,0|xi323z,49,63,0|xi3240,62,42,1|xubpzz,62,42,1|xubq00,49,63,0|y0t4rz,49,63,0|y0t4s0,62,42,1|yd1snz,62,42,1|yd1so0,49,63,0|yjj7fz,49,63,0|yjj7g0,62,42,1|yvrvbz,62,42,1|yvrvc0,49,63,0|z29a3z,49,63,0|z29a40,62,42,1|zehxzz,62,42,1|zehy00,49,63,0","America/Grenada|,0,41,0|-u6m79w,32,42,0","America/Guadeloupe|,0,41,0|-u6m79w,32,42,0","America/Guatemala|,0,105,0|-qqqskk,45,62,0|219hzz,45,62,0|219i00,46,63,1|25xxvz,46,63,1|25xxw0,45,62,0|6zgbbz,45,62,0|6zgbc0,46,63,1|75tv7z,46,63,1|75tv80,45,62,0|b2q5zz,45,62,0|b2q600,46,63,1|bbd77z,46,63,1|bbd780,45,62,0|iyitzz,45,62,0|iyiu00,46,63,1|j6fxvz,46,63,1|j6fxw0,45,62,0","America/Guayaquil|,0,106,0|-15r0ujs,75,107,0|-kcr84p,75,107,0|-kcr84o,56,63,0|byetvz,56,63,0|byetw0,42,42,1|c1yj3z,42,42,1|c1yj40,56,63,0","America/Guyana|,0,108,0|-smcak8,76,109,0|2wsiez,76,109,0|2wsif0,39,44,0|ayjxnz,39,44,0|ayjxo0,42,42,0","America/Halifax|,0,110,0|-z94k80,32,42,0|-s1x3k1,32,42,0|-s1x3k0,54,44,1|-rsiac1,54,44,1|-rsiac0,32,42,0|-qzp0o1,32,42,0|-qzp0o0,54,44,1|-qpm4s1,54,44,1|-qpm4s0,32,42,0|-pwt681,32,42,0|-pwt680,54,44,1|-pr1uc1,54,44,1|-pr1uc0,32,42,0|-pe6sw1,32,42,0|-pe6sw0,54,44,1|-p7wyc1,54,44,1|-p7wyc0,32,42,0|-ovpzk1,32,42,0|-ovpzk0,54,44,1|-op5101,54,44,1|-op5100,32,42,0|-ocmy81,32,42,0|-ocmy80,54,44,1|-o6eyc1,54,44,1|-o6eyc0,32,42,0|-ntwvk1,32,42,0|-ntwvk0,54,44,1|-nn0t01,54,44,1|-nn0t00,32,42,0|-nb6sw1,32,42,0|-nb6sw0,54,44,1|-n3kt01,54,44,1|-n3kt00,32,42,0|-mrqsw1,32,42,0|-mrqsw0,54,44,1|-mlkno1,54,44,1|-mlkno0,32,42,0|-m9qnk1,32,42,0|-m9qnk0,54,44,1|-m24no1,54,44,1|-m24no0,32,42,0|-lqank1,32,42,0|-lqank0,54,44,1|-lk6d01,54,44,1|-lk6d00,32,42,0|-l7kkw1,32,42,0|-l7kkw0,54,44,1|-l1pjo1,54,44,1|-l1pjo0,32,42,0|-koui81,32,42,0|-koui80,54,44,1|-kibec1,54,44,1|-kibec0,32,42,0|-k64fk1,32,42,0|-k64fk0,54,44,1|-jyvec1,54,44,1|-jyvec0,32,42,0|-jnrbk1,32,42,0|-jnrbk0,54,44,1|-jg5bo1,54,44,1|-jg5bo0,32,42,0|-j518w1,32,42,0|-j518w0,54,44,1|-ix2ac1,54,44,1|-ix2ac0,32,42,0|-il8a81,32,42,0|-il8a80,54,44,1|-if3zo1,54,44,1|-if3zo0,32,42,0|-i1sa81,32,42,0|-i1sa80,54,44,1|-hvm501,54,44,1|-hvm500,32,42,0|-hj0cw1,32,42,0|-hj0cw0,54,44,1|-hdlzo1,54,44,1|-hdlzo0,32,42,0|-h1rzk1,32,42,0|-h1rzk0,54,44,1|-gu5zo1,54,44,1|-gu5zo0,32,42,0|-gj1ww1,32,42,0|-gj1ww0,54,44,1|-gbfx01,54,44,1|-gbfx00,32,42,0|-fyvzk1,32,42,0|-fyvzk0,54,44,1|-fspuc1,54,44,1|-fspuc0,32,42,0|-fh8sw1,32,42,0|-fh8sw0,54,44,1|-f9mt01,54,44,1|-f9mt00,32,42,0|-eyiq81,32,42,0|-eyiq80,54,44,1|-eqwqc1,54,44,1|-eqwqc0,32,42,0|-ek27c1,32,42,0|-ek27c0,33,44,1|-cq2tg1,33,44,1|-cq2tg0,34,44,1|-cnp641,34,44,1|-cnp640,32,42,0|-ccw7c1,32,42,0|-ccw7c0,54,44,1|-c4z3g1,54,44,1|-c4z3g0,32,42,0|-bu64o1,32,42,0|-bu64o0,54,44,1|-bm90s1,54,44,1|-bm90s0,32,42,0|-bbg201,32,42,0|-bbg200,54,44,1|-b3iy41,54,44,1|-b3iy40,32,42,0|-aspzc1,32,42,0|-aspzc0,54,44,1|-aksvg1,54,44,1|-aksvg0,32,42,0|-9qwvc1,32,42,0|-9qwvc0,54,44,1|-9izrg1,54,44,1|-9izrg0,32,42,0|-986so1,32,42,0|-986so0,54,44,1|-909os1,54,44,1|-909os0,32,42,0|-8pgq01,32,42,0|-8pgq00,54,44,1|-8hjm41,54,44,1|-8hjm40,32,42,0|-86qnc1,32,42,0|-86qnc0,54,44,1|-7ytjg1,54,44,1|-7ytjg0,32,42,0|-74xjc1,32,42,0|-74xjc0,54,44,1|-6x0fg1,54,44,1|-6x0fg0,32,42,0|-6m7go1,32,42,0|-6m7go0,54,44,1|-6eacs1,54,44,1|-6eacs0,32,42,0|-63he01,32,42,0|-63he00,54,44,1|-5vka41,54,44,1|-5vka40,32,42,0|-5krbc1,32,42,0|-5krbc0,54,44,1|-5cu7g1,54,44,1|-5cu7g0,32,42,0|-4084o1,32,42,0|-4084o0,54,44,1|-3qv641,54,44,1|-3qv640,32,42,0|-3hi201,32,42,0|-3hi200,54,44,1|-3853g1,54,44,1|-3853g0,32,42,0|-2yrzc1,32,42,0|-2yrzc0,54,44,1|-2pf0s1,54,44,1|-2pf0s0,32,42,0|-2g1wo1,32,42,0|-2g1wo0,54,44,1|-26bzg1,54,44,1|-26bzg0,32,42,0|-1xbu01,32,42,0|-1xbu00,54,44,1|-1nlws1,54,44,1|-1nlws0,32,42,0|-1e8so1,32,42,0|-1e8so0,54,44,1|-14vu41,54,44,1|-14vu40,32,42,0|-viq01,32,42,0|-viq00,54,44,1|-m5rg1,54,44,1|-m5rg0,32,42,0|-csnc1,32,42,0|-csnc0,54,44,1|-3fos1,54,44,1|-3fos0,32,42,0|5xfbz,32,42,0|5xfc0,54,44,1|fadvz,54,44,1|fadw0,32,42,0|onhzz,32,42,0|oni00,54,44,1|ydf7z,54,44,1|ydf80,32,42,0|17qjbz,32,42,0|17qjc0,54,44,1|1h3hvz,54,44,1|1h3hw0,32,42,0|1qglzz,32,42,0|1qgm00,54,44,1|1ztkjz,54,44,1|1ztkk0,32,42,0|296onz,32,42,0|296oo0,54,44,1|2ijn7z,54,44,1|2ijn80,32,42,0|2rwrbz,32,42,0|2rwrc0,54,44,1|319pvz,54,44,1|319pw0,32,42,0|3amtzz,32,42,0|3amu00,54,44,1|3kcr7z,54,44,1|3kcr80,32,42,0|3tcwnz,32,42,0|3tcwo0,54,44,1|432tvz,54,44,1|432tw0,32,42,0|4cfxzz,32,42,0|4cfy00,54,44,1|4lswjz,54,44,1|4lswk0,32,42,0|4v60nz,32,42,0|4v60o0,54,44,1|54iz7z,54,44,1|54iz80,32,42,0|5dw3bz,32,42,0|5dw3c0,54,44,1|5n91vz,54,44,1|5n91w0,32,42,0|5wm5zz,32,42,0|5wm600,54,44,1|65z4jz,54,44,1|65z4k0,32,42,0|6fc8nz,32,42,0|6fc8o0,54,44,1|6p25vz,54,44,1|6p25w0,32,42,0|6y2bbz,32,42,0|6y2bc0,54,44,1|77s8jz,54,44,1|77s8k0,32,42,0|7h5cnz,32,42,0|7h5co0,54,44,1|7qib7z,54,44,1|7qib80,32,42,0|7zvfbz,32,42,0|7zvfc0,54,44,1|898dvz,54,44,1|898dw0,32,42,0|8ilhzz,32,42,0|8ili00,54,44,1|8rygjz,54,44,1|8rygk0,32,42,0|908onz,32,42,0|908oo0,54,44,1|9aoj7z,54,44,1|9aoj80,32,42,0|9iyrbz,32,42,0|9iyrc0,54,44,1|9trkjz,54,44,1|9trkk0,32,42,0|a1otzz,32,42,0|a1ou00,54,44,1|achn7z,54,44,1|achn80,32,42,0|akewnz,32,42,0|akewo0,54,44,1|av7pvz,54,44,1|av7pw0,32,42,0|b3hxzz,32,42,0|b3hy00,54,44,1|bdxsjz,54,44,1|bdxsk0,32,42,0|bm80nz,32,42,0|bm80o0,54,44,1|bwnv7z,54,44,1|bwnv80,32,42,0|c4y3bz,32,42,0|c4y3c0,54,44,1|cfqwjz,54,44,1|cfqwk0,32,42,0|cno5zz,32,42,0|cno600,54,44,1|cygz7z,54,44,1|cygz80,32,42,0|d6e8nz,32,42,0|d6e8o0,54,44,1|dh71vz,54,44,1|dh71w0,32,42,0|dph9zz,32,42,0|dpha00,54,44,1|dzx4jz,54,44,1|dzx4k0,32,42,0|e87cnz,32,42,0|e87co0,54,44,1|ein77z,54,44,1|ein780,32,42,0|eqxfbz,32,42,0|eqxfc0,54,44,1|f1d9vz,54,44,1|f1d9w0,32,42,0|f9nhzz,32,42,0|f9ni00,54,44,1|fkgb7z,54,44,1|fkgb80,32,42,0|fsdknz,32,42,0|fsdko0,54,44,1|g36dvz,54,44,1|g36dw0,32,42,0|gb3nbz,32,42,0|gb3nc0,54,44,1|glwgjz,54,44,1|glwgk0,32,42,0|gu6onz,32,42,0|gu6oo0,54,44,1|h4mj7z,54,44,1|h4mj80,32,42,0|hcwrbz,32,42,0|hcwrc0,54,44,1|hnclvz,54,44,1|hnclw0,32,42,0|hvmtzz,32,42,0|hvmu00,54,44,1|i6fn7z,54,44,1|i6fn80,32,42,0|iecwnz,32,42,0|iecwo0,54,44,1|ip5pvz,54,44,1|ip5pw0,32,42,0|ix2zbz,32,42,0|ix2zc0,54,44,1|j7vsjz,54,44,1|j7vsk0,32,42,0|jeq5zz,32,42,0|jeq600,54,44,1|jqytvz,54,44,1|jqytw0,32,42,0|jxg8nz,32,42,0|jxg8o0,54,44,1|k9owjz,54,44,1|k9owk0,32,42,0|kg6bbz,32,42,0|kg6bc0,54,44,1|ksez7z,54,44,1|ksez80,32,42,0|kz9cnz,32,42,0|kz9co0,54,44,1|lbi0jz,54,44,1|lbi0k0,32,42,0|lhzfbz,32,42,0|lhzfc0,54,44,1|lu837z,54,44,1|lu8380,32,42,0|m0phzz,32,42,0|m0pi00,54,44,1|mcy5vz,54,44,1|mcy5w0,32,42,0|mjfknz,32,42,0|mjfko0,54,44,1|mvo8jz,54,44,1|mvo8k0,32,42,0|n25nbz,32,42,0|n25nc0,54,44,1|neeb7z,54,44,1|neeb80,32,42,0|nkvpzz,32,42,0|nkvq00,54,44,1|nx4dvz,54,44,1|nx4dw0,32,42,0|o3yrbz,32,42,0|o3yrc0,54,44,1|og7f7z,54,44,1|og7f80,32,42,0|omotzz,32,42,0|omou00,54,44,1|oyxhvz,54,44,1|oyxhw0,32,42,0|p5ewnz,32,42,0|p5ewo0,54,44,1|phnkjz,54,44,1|phnkk0,32,42,0|po4zbz,32,42,0|po4zc0,54,44,1|q0dn7z,54,44,1|q0dn80,32,42,0|q6v1zz,32,42,0|q6v200,54,44,1|qj3pvz,54,44,1|qj3pw0,32,42,0|qpy3bz,32,42,0|qpy3c0,54,44,1|r26r7z,54,44,1|r26r80,32,42,0|r8o5zz,32,42,0|r8o600,54,44,1|rkwtvz,54,44,1|rkwtw0,32,42,0|rre8nz,32,42,0|rre8o0,54,44,1|s3mwjz,54,44,1|s3mwk0,32,42,0|sa4bbz,32,42,0|sa4bc0,54,44,1|smcz7z,54,44,1|smcz80,32,42,0|ssudzz,32,42,0|ssue00,54,44,1|t531vz,54,44,1|t531w0,32,42,0|tbkgnz,32,42,0|tbkgo0,54,44,1|tnt4jz,54,44,1|tnt4k0,32,42,0|tunhzz,32,42,0|tuni00,54,44,1|u6w5vz,54,44,1|u6w5w0,32,42,0|uddknz,32,42,0|uddko0,54,44,1|upm8jz,54,44,1|upm8k0,32,42,0|uw3nbz,32,42,0|uw3nc0,54,44,1|v8cb7z,54,44,1|v8cb80,32,42,0|vetpzz,32,42,0|vetq00,54,44,1|vr2dvz,54,44,1|vr2dw0,32,42,0|vxjsnz,32,42,0|vxjso0,54,44,1|w9sgjz,54,44,1|w9sgk0,32,42,0|wgmtzz,32,42,0|wgmu00,54,44,1|wsvhvz,54,44,1|wsvhw0,32,42,0|wzcwnz,32,42,0|wzcwo0,54,44,1|xblkjz,54,44,1|xblkk0,32,42,0|xi2zbz,32,42,0|xi2zc0,54,44,1|xubn7z,54,44,1|xubn80,32,42,0|y0t1zz,32,42,0|y0t200,54,44,1|yd1pvz,54,44,1|yd1pw0,32,42,0|yjj4nz,32,42,0|yjj4o0,54,44,1|yvrsjz,54,44,1|yvrsk0,32,42,0|z297bz,32,42,0|z297c0,54,44,1|zehv7z,54,44,1|zehv80,32,42,0","America/Havana|,0,111,0|-15r0u2w,77,112,0|-n7762p,77,112,0|-n7762o,45,63,0|-louq41,45,63,0|-louq40,46,42,1|-likvk1,46,42,1|-likvk0,45,63,0|-ffsvg1,45,63,0|-ffsvg0,46,42,1|-fb4fk1,46,42,1|-fb4fk0,45,63,0|-ex2ss1,45,63,0|-ex2ss0,46,42,1|-es1e81,46,42,1|-es1e80,45,63,0|-edzrg1,45,63,0|-edzrg0,46,42,1|-e9bbk1,46,42,1|-e9bbk0,45,63,0|-cttjg1,45,63,0|-cttjg0,46,42,1|-cp53k1,46,42,1|-cp53k0,45,63,0|-cb3gs1,45,63,0|-cb3gs0,46,42,1|-c6f0w1,46,42,1|-c6f0w0,45,63,0|-2e5gs1,45,63,0|-2e5gs0,46,42,1|-27xgw1,46,42,1|-27xgw0,45,63,0|-1vj3g1,45,63,0|-1vj3g0,46,42,1|-1p1u81,46,42,1|-1p1u80,45,63,0|-1fdm41,45,63,0|-1fdm40,46,42,1|-17enk1,46,42,1|-17enk0,45,63,0|-w8q41,45,63,0|-w8q40,46,42,1|-ookw1,46,42,1|-ookw0,45,63,0|-csq41,45,63,0|-csq40,46,42,1|-3frk1,46,42,1|-3frk0,45,63,0|5xcjz,45,63,0|5xck0,46,42,1|fab3z,46,42,1|fab40,45,63,0|onf7z,45,63,0|onf80,46,42,1|ydcfz,46,42,1|ydcg0,45,63,0|17qgjz,45,63,0|17qgk0,46,42,1|1g0j3z,46,42,1|1g0j40,45,63,0|1qgj7z,45,63,0|1qgj80,46,42,1|1ysgfz,46,42,1|1ysgg0,45,63,0|296lvz,45,63,0|296lw0,46,42,1|2hkdrz,46,42,1|2hkds0,45,63,0|2rwojz,45,63,0|2rwok0,46,42,1|319n3z,46,42,1|319n40,45,63,0|3amr7z,45,63,0|3amr80,46,42,1|3kcofz,46,42,1|3kcog0,45,63,0|3tctvz,45,63,0|3tctw0,46,42,1|432r3z,46,42,1|432r40,45,63,0|4cstvz,45,63,0|4cstw0,46,42,1|4kpxrz,46,42,1|4kpxs0,45,63,0|4t05vz,45,63,0|4t05w0,46,42,1|53sz3z,46,42,1|53sz40,45,63,0|5bq8jz,45,63,0|5bq8k0,46,42,1|5mj1rz,46,42,1|5mj1s0,45,63,0|5xc0jz,45,63,0|5xc0k0,46,42,1|6594fz,46,42,1|6594g0,45,63,0|6g237z,45,63,0|6g2380,46,42,1|6nz73z,46,42,1|6nz740,45,63,0|6ys5vz,45,63,0|6ys5w0,46,42,1|76p9rz,46,42,1|76p9s0,45,63,0|7hi8jz,45,63,0|7hi8k0,46,42,1|7psb3z,46,42,1|7psb40,45,63,0|808b7z,45,63,0|808b80,46,42,1|88idrz,46,42,1|88ids0,45,63,0|8gfn7z,45,63,0|8gfn80,46,42,1|8r8gfz,46,42,1|8r8gg0,45,63,0|8z5pvz,45,63,0|8z5pw0,46,42,1|99yj3z,46,42,1|99yj40,45,63,0|9i8r7z,45,63,0|9i8r80,46,42,1|9solrz,46,42,1|9sols0,45,63,0|a0ytvz,45,63,0|a0ytw0,46,42,1|abeofz,46,42,1|abeog0,45,63,0|aketvz,45,63,0|aketw0,46,42,1|auhprz,46,42,1|auhps0,45,63,0|b3hv7z,45,63,0|b3hv80,46,42,1|bd7v7z,46,42,1|bd7v80,45,63,0|bm7xvz,45,63,0|bm7xw0,46,42,1|bvxxvz,46,42,1|bvxxw0,45,63,0|c4y0jz,45,63,0|c4y0k0,46,42,1|ceo0jz,46,42,1|ceo0k0,45,63,0|cno37z,45,63,0|cno380,46,42,1|cxe37z,46,42,1|cxe380,45,63,0|d6e5vz,45,63,0|d6e5w0,46,42,1|dg45vz,46,42,1|dg45w0,45,63,0|dph77z,45,63,0|dph780,46,42,1|dyu8jz,46,42,1|dyu8k0,45,63,0|e879vz,45,63,0|e879w0,46,42,1|ehx9vz,46,42,1|ehx9w0,45,63,0|eqkdvz,45,63,0|eqkdw0,46,42,1|f1d9vz,46,42,1|f1d9w0,45,63,0|f9agjz,45,63,0|f9agk0,46,42,1|fkgb7z,46,42,1|fkgb80,45,63,0|fsdhvz,45,63,0|fsdhw0,46,42,1|g36dvz,46,42,1|g36dw0,45,63,0|gb3kjz,45,63,0|gb3kk0,46,42,1|glwgjz,46,42,1|glwgk0,45,63,0|gu6lvz,45,63,0|gu6lw0,46,42,1|h4mj7z,46,42,1|h4mj80,45,63,0|hcwojz,45,63,0|hcwok0,46,42,1|hnclvz,46,42,1|hnclw0,45,63,0|hv9sjz,45,63,0|hv9sk0,46,42,1|j7vsjz,46,42,1|j7vsk0,45,63,0|jeq37z,45,63,0|jeq380,46,42,1|jqlv7z,46,42,1|jqlv80,45,63,0|jxt4jz,45,63,0|jxt4k0,46,42,1|k9bxvz,46,42,1|k9bxw0,45,63,0|kg68jz,45,63,0|kg68k0,46,42,1|ks20jz,46,42,1|ks20k0,45,63,0|kz99vz,45,63,0|kz99w0,46,42,1|lb51vz,46,42,1|lb51w0,45,63,0|licb7z,45,63,0|licb80,46,42,1|lul1vz,46,42,1|lul1w0,45,63,0|m1sb7z,45,63,0|m1sb80,46,42,1|mcy5vz,46,42,1|mcy5w0,45,63,0|mjfhvz,45,63,0|mjfhw0,46,42,1|mvo8jz,46,42,1|mvo8k0,45,63,0|n25kjz,45,63,0|n25kk0,46,42,1|neeb7z,46,42,1|neeb80,45,63,0|nkvn7z,45,63,0|nkvn80,46,42,1|nx4dvz,46,42,1|nx4dw0,45,63,0|o3yojz,45,63,0|o3yok0,46,42,1|og7f7z,46,42,1|og7f80,45,63,0|omor7z,45,63,0|omor80,46,42,1|oyxhvz,46,42,1|oyxhw0,45,63,0|p5etvz,45,63,0|p5etw0,46,42,1|phnkjz,46,42,1|phnkk0,45,63,0|po4wjz,45,63,0|po4wk0,46,42,1|q0dn7z,46,42,1|q0dn80,45,63,0|q6uz7z,45,63,0|q6uz80,46,42,1|qj3pvz,46,42,1|qj3pw0,45,63,0|qpy0jz,45,63,0|qpy0k0,46,42,1|r26r7z,46,42,1|r26r80,45,63,0|r8o37z,45,63,0|r8o380,46,42,1|rkwtvz,46,42,1|rkwtw0,45,63,0|rre5vz,45,63,0|rre5w0,46,42,1|s3mwjz,46,42,1|s3mwk0,45,63,0|sa48jz,45,63,0|sa48k0,46,42,1|smcz7z,46,42,1|smcz80,45,63,0|ssub7z,45,63,0|ssub80,46,42,1|t531vz,46,42,1|t531w0,45,63,0|tbkdvz,45,63,0|tbkdw0,46,42,1|tnt4jz,46,42,1|tnt4k0,45,63,0|tunf7z,45,63,0|tunf80,46,42,1|u6w5vz,46,42,1|u6w5w0,45,63,0|uddhvz,45,63,0|uddhw0,46,42,1|upm8jz,46,42,1|upm8k0,45,63,0|uw3kjz,45,63,0|uw3kk0,46,42,1|v8cb7z,46,42,1|v8cb80,45,63,0|vetn7z,45,63,0|vetn80,46,42,1|vr2dvz,46,42,1|vr2dw0,45,63,0|vxjpvz,45,63,0|vxjpw0,46,42,1|w9sgjz,46,42,1|w9sgk0,45,63,0|wgmr7z,45,63,0|wgmr80,46,42,1|wsvhvz,46,42,1|wsvhw0,45,63,0|wzctvz,45,63,0|wzctw0,46,42,1|xblkjz,46,42,1|xblkk0,45,63,0|xi2wjz,45,63,0|xi2wk0,46,42,1|xubn7z,46,42,1|xubn80,45,63,0|y0sz7z,45,63,0|y0sz80,46,42,1|yd1pvz,46,42,1|yd1pw0,45,63,0|yjj1vz,45,63,0|yjj1w0,46,42,1|yvrsjz,46,42,1|yvrsk0,45,63,0|z294jz,45,63,0|z294k0,46,42,1|zehv7z,46,42,1|zehv80,45,63,0","America/Hermosillo|,0,113,0|-p1u4k0,50,66,0|-m7mko1,50,66,0|-m7mko0,45,62,0|-kf67c1,45,62,0|-kf67c0,50,66,0|-k6j3c1,50,66,0|-k6j3c0,45,62,0|-jypm01,45,62,0|-jypm00,50,66,0|-jpan81,50,66,0|-jpan80,45,62,0|-eg9601,45,62,0|-eg9600,50,66,0|-axv381,50,66,0|-axv380,51,40,0|m7z,51,40,0|m80,50,66,0|dphibz,50,66,0|dphic0,52,62,1|dzxcvz,52,62,1|dzxcw0,50,66,0|e87kzz,50,66,0|e87l00,52,62,1|einfjz,52,62,1|einfk0,50,66,0|eqxnnz,50,66,0|eqxno0,52,62,1|f1di7z,52,62,1|f1di80,50,66,0","America/Indiana/Indianapolis|,0,114,0|-18y0m00,45,62,0|-r0esg1,45,62,0|-r0esg0,46,63,1|-qplz81,46,63,1|-qplz80,45,62,0|-qhops1,45,62,0|-qhops0,46,63,1|-q6vwk1,46,63,1|-q6vwk0,45,62,0|-evzog1,45,62,0|-evzog0,46,63,1|-eqy9w1,46,63,1|-eqy9w0,45,62,0|-ek21s1,45,62,0|-ek21s0,47,63,1|-cq2tg1,47,63,1|-cq2tg0,48,63,1|-cnp0k1,48,63,1|-cnp0k0,45,62,0|-ccw1s1,45,62,0|-ccw1s0,46,63,1|-c4yxw1,46,63,1|-c4yxw0,45,62,0|-bu5z41,45,62,0|-bu5z40,46,63,1|-bm8v81,46,63,1|-bm8v80,45,62,0|-bbfwg1,45,62,0|-bbfwg0,46,63,1|-b3isk1,46,63,1|-b3isk0,45,62,0|-aspts1,45,62,0|-aspts0,46,63,1|-akspw1,46,63,1|-akspw0,45,62,0|-a9msg1,45,62,0|-a9msg0,46,63,1|-a22n81,46,63,1|-a22n80,45,62,0|-9qwps1,45,62,0|-9qwps0,46,63,1|-9izlw1,46,63,1|-9izlw0,45,62,0|-986n41,45,62,0|-986n40,46,63,1|-909j81,46,63,1|-909j80,45,62,0|-8pgkg1,45,62,0|-8pgkg0,46,63,1|-8hjgk1,46,63,1|-8hjgk0,45,62,0|-86qhs1,45,62,0|-86qhs0,46,63,1|-7ytdw1,46,63,1|-7ytdw0,45,62,0|-7o0f41,45,62,0|-7o0f40,49,63,0|-6ea781,49,63,0|-6ea780,45,62,0|-63h8g1,45,62,0|-63h8g0,49,63,0|-cskk1,49,63,0|-cskk0,62,42,1|-3fm01,62,42,1|-3fm00,49,63,0|5xi3z,49,63,0|5xi40,62,42,1|fagnz,62,42,1|fago0,49,63,0|ix323z,49,63,0|ix3240,62,42,1|j7vvbz,62,42,1|j7vvc0,49,63,0|jeq8rz,49,63,0|jeq8s0,62,42,1|jqywnz,62,42,1|jqywo0,49,63,0|jxgbfz,49,63,0|jxgbg0,62,42,1|k9ozbz,62,42,1|k9ozc0,49,63,0|kg6e3z,49,63,0|kg6e40,62,42,1|ksf1zz,62,42,1|ksf200,49,63,0|kz9ffz,49,63,0|kz9fg0,62,42,1|lbi3bz,62,42,1|lbi3c0,49,63,0|lhzi3z,49,63,0|lhzi40,62,42,1|lu85zz,62,42,1|lu8600,49,63,0|m0pkrz,49,63,0|m0pks0,62,42,1|mcy8nz,62,42,1|mcy8o0,49,63,0|mjfnfz,49,63,0|mjfng0,62,42,1|mvobbz,62,42,1|mvobc0,49,63,0|n25q3z,49,63,0|n25q40,62,42,1|needzz,62,42,1|neee00,49,63,0|nkvsrz,49,63,0|nkvss0,62,42,1|nx4gnz,62,42,1|nx4go0,49,63,0|o3yu3z,49,63,0|o3yu40,62,42,1|og7hzz,62,42,1|og7i00,49,63,0|omowrz,49,63,0|omows0,62,42,1|oyxknz,62,42,1|oyxko0,49,63,0|p5ezfz,49,63,0|p5ezg0,62,42,1|phnnbz,62,42,1|phnnc0,49,63,0|po523z,49,63,0|po5240,62,42,1|q0dpzz,62,42,1|q0dq00,49,63,0|q6v4rz,49,63,0|q6v4s0,62,42,1|qj3snz,62,42,1|qj3so0,49,63,0|qpy63z,49,63,0|qpy640,62,42,1|r26tzz,62,42,1|r26u00,49,63,0|r8o8rz,49,63,0|r8o8s0,62,42,1|rkwwnz,62,42,1|rkwwo0,49,63,0|rrebfz,49,63,0|rrebg0,62,42,1|s3mzbz,62,42,1|s3mzc0,49,63,0|sa4e3z,49,63,0|sa4e40,62,42,1|smd1zz,62,42,1|smd200,49,63,0|ssugrz,49,63,0|ssugs0,62,42,1|t534nz,62,42,1|t534o0,49,63,0|tbkjfz,49,63,0|tbkjg0,62,42,1|tnt7bz,62,42,1|tnt7c0,49,63,0|tunkrz,49,63,0|tunks0,62,42,1|u6w8nz,62,42,1|u6w8o0,49,63,0|uddnfz,49,63,0|uddng0,62,42,1|upmbbz,62,42,1|upmbc0,49,63,0|uw3q3z,49,63,0|uw3q40,62,42,1|v8cdzz,62,42,1|v8ce00,49,63,0|vetsrz,49,63,0|vetss0,62,42,1|vr2gnz,62,42,1|vr2go0,49,63,0|vxjvfz,49,63,0|vxjvg0,62,42,1|w9sjbz,62,42,1|w9sjc0,49,63,0|wgmwrz,49,63,0|wgmws0,62,42,1|wsvknz,62,42,1|wsvko0,49,63,0|wzczfz,49,63,0|wzczg0,62,42,1|xblnbz,62,42,1|xblnc0,49,63,0|xi323z,49,63,0|xi3240,62,42,1|xubpzz,62,42,1|xubq00,49,63,0|y0t4rz,49,63,0|y0t4s0,62,42,1|yd1snz,62,42,1|yd1so0,49,63,0|yjj7fz,49,63,0|yjj7g0,62,42,1|yvrvbz,62,42,1|yvrvc0,49,63,0|z29a3z,49,63,0|z29a40,62,42,1|zehxzz,62,42,1|zehy00,49,63,0","America/Indiana/Knox|,0,115,0|-18y0m00,45,62,0|-r0esg1,45,62,0|-r0esg0,46,63,1|-qplz81,46,63,1|-qplz80,45,62,0|-qhops1,45,62,0|-qhops0,46,63,1|-q6vwk1,46,63,1|-q6vwk0,45,62,0|-ek21s1,45,62,0|-ek21s0,47,63,1|-cq2tg1,47,63,1|-cq2tg0,48,63,1|-cnp0k1,48,63,1|-cnp0k0,45,62,0|-bu5z41,45,62,0|-bu5z40,46,63,1|-bm8v81,46,63,1|-bm8v80,45,62,0|-bbfwg1,45,62,0|-bbfwg0,46,63,1|-b3isk1,46,63,1|-b3isk0,45,62,0|-aspts1,45,62,0|-aspts0,46,63,1|-akspw1,46,63,1|-akspw0,45,62,0|-a9msg1,45,62,0|-a9msg0,46,63,1|-a22n81,46,63,1|-a22n80,45,62,0|-9qwps1,45,62,0|-9qwps0,46,63,1|-9izlw1,46,63,1|-9izlw0,45,62,0|-986n41,45,62,0|-986n40,46,63,1|-909j81,46,63,1|-909j80,45,62,0|-8pgkg1,45,62,0|-8pgkg0,46,63,1|-8hjgk1,46,63,1|-8hjgk0,45,62,0|-86qhs1,45,62,0|-86qhs0,46,63,1|-7ytdw1,46,63,1|-7ytdw0,45,62,0|-7o0f41,45,62,0|-7o0f40,46,63,1|-7eahw1,46,63,1|-7eahw0,45,62,0|-74xds1,45,62,0|-74xds0,46,63,1|-6vkf81,46,63,1|-6vkf80,45,62,0|-6m7b41,45,62,0|-6m7b40,46,63,1|-6ea781,46,63,1|-6ea780,45,62,0|-63h8g1,45,62,0|-63h8g0,46,63,1|-5vk4k1,46,63,1|-5vk4k0,45,62,0|-5kr5s1,45,62,0|-5kr5s0,46,63,1|-5be781,46,63,1|-5be780,45,62,0|-521341,45,62,0|-521340,46,63,1|-4sb5w1,46,63,1|-4sb5w0,45,62,0|-4iy1s1,45,62,0|-4iy1s0,46,63,1|-49l381,46,63,1|-49l380,45,62,0|-407z41,45,62,0|-407z40,49,63,0|-384xw1,49,63,0|-384xw0,45,62,0|-1e8n41,45,62,0|-1e8n40,46,63,1|-14vok1,46,63,1|-14vok0,45,62,0|-vikg1,45,62,0|-vikg0,46,63,1|-m5lw1,46,63,1|-m5lw0,45,62,0|-cshs1,45,62,0|-cshs0,46,63,1|-3fj81,46,63,1|-3fj80,45,62,0|5xkvz,45,62,0|5xkw0,46,63,1|fajfz,46,63,1|fajg0,45,62,0|onnjz,45,62,0|onnk0,46,63,1|ydkrz,46,63,1|ydks0,45,62,0|17qovz,45,62,0|17qow0,46,63,1|1h3nfz,46,63,1|1h3ng0,45,62,0|1qgrjz,45,62,0|1qgrk0,46,63,1|1ztq3z,46,63,1|1ztq40,45,62,0|23ffjz,45,62,0|23ffk0,46,63,1|2ijsrz,46,63,1|2ijss0,45,62,0|2oo8vz,45,62,0|2oo8w0,46,63,1|319vfz,46,63,1|319vg0,45,62,0|3amzjz,45,62,0|3amzk0,46,63,1|3kcwrz,46,63,1|3kcws0,45,62,0|3td27z,45,62,0|3td280,46,63,1|432zfz,46,63,1|432zg0,45,62,0|4cg3jz,45,62,0|4cg3k0,46,63,1|4lt23z,46,63,1|4lt240,45,62,0|4v667z,45,62,0|4v6680,46,63,1|54j4rz,46,63,1|54j4s0,45,62,0|5dw8vz,45,62,0|5dw8w0,46,63,1|5n97fz,46,63,1|5n97g0,45,62,0|5wmbjz,45,62,0|5wmbk0,46,63,1|65za3z,46,63,1|65za40,45,62,0|6fce7z,45,62,0|6fce80,46,63,1|6p2bfz,46,63,1|6p2bg0,45,62,0|6y2gvz,45,62,0|6y2gw0,46,63,1|77se3z,46,63,1|77se40,45,62,0|7h5i7z,45,62,0|7h5i80,46,63,1|7qigrz,46,63,1|7qigs0,45,62,0|7zvkvz,45,62,0|7zvkw0,46,63,1|898jfz,46,63,1|898jg0,45,62,0|8ilnjz,45,62,0|8ilnk0,46,63,1|8rym3z,46,63,1|8rym40,45,62,0|908u7z,45,62,0|908u80,46,63,1|9aoorz,46,63,1|9aoos0,45,62,0|9iywvz,45,62,0|9iyww0,46,63,1|9trq3z,46,63,1|9trq40,45,62,0|a1ozjz,45,62,0|a1ozk0,46,63,1|achsrz,46,63,1|achss0,45,62,0|akf27z,45,62,0|akf280,46,63,1|av7vfz,46,63,1|av7vg0,45,62,0|b3i3jz,45,62,0|b3i3k0,46,63,1|bdxy3z,46,63,1|bdxy40,49,63,0|ix323z,49,63,0|ix3240,46,63,1|j7vy3z,46,63,1|j7vy40,45,62,0|jeqbjz,45,62,0|jeqbk0,46,63,1|jqyzfz,46,63,1|jqyzg0,45,62,0|jxge7z,45,62,0|jxge80,46,63,1|k9p23z,46,63,1|k9p240,45,62,0|kg6gvz,45,62,0|kg6gw0,46,63,1|ksf4rz,46,63,1|ksf4s0,45,62,0|kz9i7z,45,62,0|kz9i80,46,63,1|lbi63z,46,63,1|lbi640,45,62,0|lhzkvz,45,62,0|lhzkw0,46,63,1|lu88rz,46,63,1|lu88s0,45,62,0|m0pnjz,45,62,0|m0pnk0,46,63,1|mcybfz,46,63,1|mcybg0,45,62,0|mjfq7z,45,62,0|mjfq80,46,63,1|mvoe3z,46,63,1|mvoe40,45,62,0|n25svz,45,62,0|n25sw0,46,63,1|neegrz,46,63,1|neegs0,45,62,0|nkvvjz,45,62,0|nkvvk0,46,63,1|nx4jfz,46,63,1|nx4jg0,45,62,0|o3ywvz,45,62,0|o3yww0,46,63,1|og7krz,46,63,1|og7ks0,45,62,0|omozjz,45,62,0|omozk0,46,63,1|oyxnfz,46,63,1|oyxng0,45,62,0|p5f27z,45,62,0|p5f280,46,63,1|phnq3z,46,63,1|phnq40,45,62,0|po54vz,45,62,0|po54w0,46,63,1|q0dsrz,46,63,1|q0dss0,45,62,0|q6v7jz,45,62,0|q6v7k0,46,63,1|qj3vfz,46,63,1|qj3vg0,45,62,0|qpy8vz,45,62,0|qpy8w0,46,63,1|r26wrz,46,63,1|r26ws0,45,62,0|r8objz,45,62,0|r8obk0,46,63,1|rkwzfz,46,63,1|rkwzg0,45,62,0|rree7z,45,62,0|rree80,46,63,1|s3n23z,46,63,1|s3n240,45,62,0|sa4gvz,45,62,0|sa4gw0,46,63,1|smd4rz,46,63,1|smd4s0,45,62,0|ssujjz,45,62,0|ssujk0,46,63,1|t537fz,46,63,1|t537g0,45,62,0|tbkm7z,45,62,0|tbkm80,46,63,1|tnta3z,46,63,1|tnta40,45,62,0|tunnjz,45,62,0|tunnk0,46,63,1|u6wbfz,46,63,1|u6wbg0,45,62,0|uddq7z,45,62,0|uddq80,46,63,1|upme3z,46,63,1|upme40,45,62,0|uw3svz,45,62,0|uw3sw0,46,63,1|v8cgrz,46,63,1|v8cgs0,45,62,0|vetvjz,45,62,0|vetvk0,46,63,1|vr2jfz,46,63,1|vr2jg0,45,62,0|vxjy7z,45,62,0|vxjy80,46,63,1|w9sm3z,46,63,1|w9sm40,45,62,0|wgmzjz,45,62,0|wgmzk0,46,63,1|wsvnfz,46,63,1|wsvng0,45,62,0|wzd27z,45,62,0|wzd280,46,63,1|xblq3z,46,63,1|xblq40,45,62,0|xi34vz,45,62,0|xi34w0,46,63,1|xubsrz,46,63,1|xubss0,45,62,0|y0t7jz,45,62,0|y0t7k0,46,63,1|yd1vfz,46,63,1|yd1vg0,45,62,0|yjja7z,45,62,0|yjja80,46,63,1|yvry3z,46,63,1|yvry40,45,62,0|z29cvz,45,62,0|z29cw0,46,63,1|zei0rz,46,63,1|zei0s0,45,62,0","America/Indiana/Marengo|,0,116,0|-18y0m00,45,62,0|-r0esg1,45,62,0|-r0esg0,46,63,1|-qplz81,46,63,1|-qplz80,45,62,0|-qhops1,45,62,0|-qhops0,46,63,1|-q6vwk1,46,63,1|-q6vwk0,45,62,0|-ek21s1,45,62,0|-ek21s0,47,63,1|-cq2tg1,47,63,1|-cq2tg0,48,63,1|-cnp0k1,48,63,1|-cnp0k0,45,62,0|-9qwps1,45,62,0|-9qwps0,46,63,1|-9izlw1,46,63,1|-9izlw0,45,62,0|-86qhs1,45,62,0|-86qhs0,46,63,1|-7ytdw1,46,63,1|-7ytdw0,45,62,0|-7o0f41,45,62,0|-7o0f40,46,63,1|-7g3b81,46,63,1|-7g3b80,45,62,0|-74xds1,45,62,0|-74xds0,46,63,1|-6x09w1,46,63,1|-6x09w0,45,62,0|-6m7b41,45,62,0|-6m7b40,46,63,1|-6ea781,46,63,1|-6ea780,45,62,0|-63h8g1,45,62,0|-63h8g0,46,63,1|-5vk4k1,46,63,1|-5vk4k0,45,62,0|-5kr5s1,45,62,0|-5kr5s0,46,63,1|-5cu1w1,46,63,1|-5cu1w0,45,62,0|-521341,45,62,0|-521340,46,63,1|-4u3z81,46,63,1|-4u3z80,45,62,0|-4iy1s1,45,62,0|-4iy1s0,49,63,0|-cskk1,49,63,0|-cskk0,62,42,1|-3fm01,62,42,1|-3fm00,49,63,0|5xi3z,49,63,0|5xi40,62,42,1|fagnz,62,42,1|fago0,49,63,0|onkrz,49,63,0|onks0,62,42,1|ydhzz,62,42,1|ydi00,49,63,0|17qm3z,49,63,0|17qm40,62,42,1|1h3knz,62,42,1|1h3ko0,49,63,0|1qgorz,49,63,0|1qgos0,62,42,1|1ztnbz,62,42,1|1ztnc0,49,63,0|23fcrz,49,63,0|23fcs0,46,63,1|2ijsrz,46,63,1|2ijss0,49,63,0|2oo63z,49,63,0|2oo640,62,42,1|319snz,62,42,1|319so0,49,63,0|ix323z,49,63,0|ix3240,62,42,1|j7vvbz,62,42,1|j7vvc0,49,63,0|jeq8rz,49,63,0|jeq8s0,62,42,1|jqywnz,62,42,1|jqywo0,49,63,0|jxgbfz,49,63,0|jxgbg0,62,42,1|k9ozbz,62,42,1|k9ozc0,49,63,0|kg6e3z,49,63,0|kg6e40,62,42,1|ksf1zz,62,42,1|ksf200,49,63,0|kz9ffz,49,63,0|kz9fg0,62,42,1|lbi3bz,62,42,1|lbi3c0,49,63,0|lhzi3z,49,63,0|lhzi40,62,42,1|lu85zz,62,42,1|lu8600,49,63,0|m0pkrz,49,63,0|m0pks0,62,42,1|mcy8nz,62,42,1|mcy8o0,49,63,0|mjfnfz,49,63,0|mjfng0,62,42,1|mvobbz,62,42,1|mvobc0,49,63,0|n25q3z,49,63,0|n25q40,62,42,1|needzz,62,42,1|neee00,49,63,0|nkvsrz,49,63,0|nkvss0,62,42,1|nx4gnz,62,42,1|nx4go0,49,63,0|o3yu3z,49,63,0|o3yu40,62,42,1|og7hzz,62,42,1|og7i00,49,63,0|omowrz,49,63,0|omows0,62,42,1|oyxknz,62,42,1|oyxko0,49,63,0|p5ezfz,49,63,0|p5ezg0,62,42,1|phnnbz,62,42,1|phnnc0,49,63,0|po523z,49,63,0|po5240,62,42,1|q0dpzz,62,42,1|q0dq00,49,63,0|q6v4rz,49,63,0|q6v4s0,62,42,1|qj3snz,62,42,1|qj3so0,49,63,0|qpy63z,49,63,0|qpy640,62,42,1|r26tzz,62,42,1|r26u00,49,63,0|r8o8rz,49,63,0|r8o8s0,62,42,1|rkwwnz,62,42,1|rkwwo0,49,63,0|rrebfz,49,63,0|rrebg0,62,42,1|s3mzbz,62,42,1|s3mzc0,49,63,0|sa4e3z,49,63,0|sa4e40,62,42,1|smd1zz,62,42,1|smd200,49,63,0|ssugrz,49,63,0|ssugs0,62,42,1|t534nz,62,42,1|t534o0,49,63,0|tbkjfz,49,63,0|tbkjg0,62,42,1|tnt7bz,62,42,1|tnt7c0,49,63,0|tunkrz,49,63,0|tunks0,62,42,1|u6w8nz,62,42,1|u6w8o0,49,63,0|uddnfz,49,63,0|uddng0,62,42,1|upmbbz,62,42,1|upmbc0,49,63,0|uw3q3z,49,63,0|uw3q40,62,42,1|v8cdzz,62,42,1|v8ce00,49,63,0|vetsrz,49,63,0|vetss0,62,42,1|vr2gnz,62,42,1|vr2go0,49,63,0|vxjvfz,49,63,0|vxjvg0,62,42,1|w9sjbz,62,42,1|w9sjc0,49,63,0|wgmwrz,49,63,0|wgmws0,62,42,1|wsvknz,62,42,1|wsvko0,49,63,0|wzczfz,49,63,0|wzczg0,62,42,1|xblnbz,62,42,1|xblnc0,49,63,0|xi323z,49,63,0|xi3240,62,42,1|xubpzz,62,42,1|xubq00,49,63,0|y0t4rz,49,63,0|y0t4s0,62,42,1|yd1snz,62,42,1|yd1so0,49,63,0|yjj7fz,49,63,0|yjj7g0,62,42,1|yvrvbz,62,42,1|yvrvc0,49,63,0|z29a3z,49,63,0|z29a40,62,42,1|zehxzz,62,42,1|zehy00,49,63,0","America/Indiana/Petersburg|,0,117,0|-18y0m00,45,62,0|-r0esg1,45,62,0|-r0esg0,46,63,1|-qplz81,46,63,1|-qplz80,45,62,0|-qhops1,45,62,0|-qhops0,46,63,1|-q6vwk1,46,63,1|-q6vwk0,45,62,0|-ek21s1,45,62,0|-ek21s0,47,63,1|-cq2tg1,47,63,1|-cq2tg0,48,63,1|-cnp0k1,48,63,1|-cnp0k0,45,62,0|-7nnm01,45,62,0|-7nnm00,46,63,1|-7g3b81,46,63,1|-7g3b80,45,62,0|-74xds1,45,62,0|-74xds0,46,63,1|-6x09w1,46,63,1|-6x09w0,45,62,0|-6m7b41,45,62,0|-6m7b40,46,63,1|-6ea781,46,63,1|-6ea780,45,62,0|-63h8g1,45,62,0|-63h8g0,46,63,1|-5vk4k1,46,63,1|-5vk4k0,45,62,0|-5kr5s1,45,62,0|-5kr5s0,46,63,1|-5cu1w1,46,63,1|-5cu1w0,45,62,0|-521341,45,62,0|-521340,46,63,1|-4u3z81,46,63,1|-4u3z80,45,62,0|-4iy1s1,45,62,0|-4iy1s0,46,63,1|-49l381,46,63,1|-49l380,45,62,0|-407z41,45,62,0|-407z40,46,63,1|-3qv0k1,46,63,1|-3qv0k0,45,62,0|-3hhwg1,45,62,0|-3hhwg0,46,63,1|-384xw1,46,63,1|-384xw0,45,62,0|-2yrts1,45,62,0|-2yrts0,46,63,1|-2pev81,46,63,1|-2pev80,45,62,0|-2g1r41,45,62,0|-2g1r40,49,63,0|-1nlr81,49,63,0|-1nlr80,45,62,0|-1e8n41,45,62,0|-1e8n40,46,63,1|-14vok1,46,63,1|-14vok0,45,62,0|-vikg1,45,62,0|-vikg0,46,63,1|-m5lw1,46,63,1|-m5lw0,45,62,0|-cshs1,45,62,0|-cshs0,46,63,1|-3fj81,46,63,1|-3fj80,45,62,0|5xkvz,45,62,0|5xkw0,46,63,1|fajfz,46,63,1|fajg0,45,62,0|onnjz,45,62,0|onnk0,46,63,1|ydkrz,46,63,1|ydks0,45,62,0|17qovz,45,62,0|17qow0,46,63,1|1h3nfz,46,63,1|1h3ng0,45,62,0|1qgrjz,45,62,0|1qgrk0,46,63,1|1ztq3z,46,63,1|1ztq40,45,62,0|23ffjz,45,62,0|23ffk0,46,63,1|2ijsrz,46,63,1|2ijss0,45,62,0|2oo8vz,45,62,0|2oo8w0,46,63,1|319vfz,46,63,1|319vg0,45,62,0|3amzjz,45,62,0|3amzk0,46,63,1|3kcwrz,46,63,1|3kcws0,45,62,0|3td27z,45,62,0|3td280,46,63,1|432zfz,46,63,1|432zg0,49,63,0|ix323z,49,63,0|ix3240,46,63,1|j7vy3z,46,63,1|j7vy40,45,62,0|jeqbjz,45,62,0|jeqbk0,46,63,1|jqyzfz,46,63,1|jqyzg0,49,63,0|jxgbfz,49,63,0|jxgbg0,62,42,1|k9ozbz,62,42,1|k9ozc0,49,63,0|kg6e3z,49,63,0|kg6e40,62,42,1|ksf1zz,62,42,1|ksf200,49,63,0|kz9ffz,49,63,0|kz9fg0,62,42,1|lbi3bz,62,42,1|lbi3c0,49,63,0|lhzi3z,49,63,0|lhzi40,62,42,1|lu85zz,62,42,1|lu8600,49,63,0|m0pkrz,49,63,0|m0pks0,62,42,1|mcy8nz,62,42,1|mcy8o0,49,63,0|mjfnfz,49,63,0|mjfng0,62,42,1|mvobbz,62,42,1|mvobc0,49,63,0|n25q3z,49,63,0|n25q40,62,42,1|needzz,62,42,1|neee00,49,63,0|nkvsrz,49,63,0|nkvss0,62,42,1|nx4gnz,62,42,1|nx4go0,49,63,0|o3yu3z,49,63,0|o3yu40,62,42,1|og7hzz,62,42,1|og7i00,49,63,0|omowrz,49,63,0|omows0,62,42,1|oyxknz,62,42,1|oyxko0,49,63,0|p5ezfz,49,63,0|p5ezg0,62,42,1|phnnbz,62,42,1|phnnc0,49,63,0|po523z,49,63,0|po5240,62,42,1|q0dpzz,62,42,1|q0dq00,49,63,0|q6v4rz,49,63,0|q6v4s0,62,42,1|qj3snz,62,42,1|qj3so0,49,63,0|qpy63z,49,63,0|qpy640,62,42,1|r26tzz,62,42,1|r26u00,49,63,0|r8o8rz,49,63,0|r8o8s0,62,42,1|rkwwnz,62,42,1|rkwwo0,49,63,0|rrebfz,49,63,0|rrebg0,62,42,1|s3mzbz,62,42,1|s3mzc0,49,63,0|sa4e3z,49,63,0|sa4e40,62,42,1|smd1zz,62,42,1|smd200,49,63,0|ssugrz,49,63,0|ssugs0,62,42,1|t534nz,62,42,1|t534o0,49,63,0|tbkjfz,49,63,0|tbkjg0,62,42,1|tnt7bz,62,42,1|tnt7c0,49,63,0|tunkrz,49,63,0|tunks0,62,42,1|u6w8nz,62,42,1|u6w8o0,49,63,0|uddnfz,49,63,0|uddng0,62,42,1|upmbbz,62,42,1|upmbc0,49,63,0|uw3q3z,49,63,0|uw3q40,62,42,1|v8cdzz,62,42,1|v8ce00,49,63,0|vetsrz,49,63,0|vetss0,62,42,1|vr2gnz,62,42,1|vr2go0,49,63,0|vxjvfz,49,63,0|vxjvg0,62,42,1|w9sjbz,62,42,1|w9sjc0,49,63,0|wgmwrz,49,63,0|wgmws0,62,42,1|wsvknz,62,42,1|wsvko0,49,63,0|wzczfz,49,63,0|wzczg0,62,42,1|xblnbz,62,42,1|xblnc0,49,63,0|xi323z,49,63,0|xi3240,62,42,1|xubpzz,62,42,1|xubq00,49,63,0|y0t4rz,49,63,0|y0t4s0,62,42,1|yd1snz,62,42,1|yd1so0,49,63,0|yjj7fz,49,63,0|yjj7g0,62,42,1|yvrvbz,62,42,1|yvrvc0,49,63,0|z29a3z,49,63,0|z29a40,62,42,1|zehxzz,62,42,1|zehy00,49,63,0","America/Indiana/Tell_City|,0,118,0|-18y0m00,45,62,0|-r0esg1,45,62,0|-r0esg0,46,63,1|-qplz81,46,63,1|-qplz80,45,62,0|-qhops1,45,62,0|-qhops0,46,63,1|-q6vwk1,46,63,1|-q6vwk0,45,62,0|-ek21s1,45,62,0|-ek21s0,47,63,1|-cq2tg1,47,63,1|-cq2tg0,48,63,1|-cnp0k1,48,63,1|-cnp0k0,45,62,0|-7nnm01,45,62,0|-7nnm00,46,63,1|-7g3b81,46,63,1|-7g3b80,45,62,0|-74xds1,45,62,0|-74xds0,46,63,1|-6x09w1,46,63,1|-6x09w0,45,62,0|-6m7b41,45,62,0|-6m7b40,46,63,1|-6ea781,46,63,1|-6ea780,45,62,0|-63h8g1,45,62,0|-63h8g0,46,63,1|-5vk4k1,46,63,1|-5vk4k0,45,62,0|-5kr5s1,45,62,0|-5kr5s0,46,63,1|-5cu1w1,46,63,1|-5cu1w0,45,62,0|-521341,45,62,0|-521340,46,63,1|-4u3z81,46,63,1|-4u3z80,45,62,0|-4iy1s1,45,62,0|-4iy1s0,46,63,1|-49l381,46,63,1|-49l380,45,62,0|-407z41,45,62,0|-407z40,46,63,1|-3qv0k1,46,63,1|-3qv0k0,45,62,0|-3hhwg1,45,62,0|-3hhwg0,46,63,1|-384xw1,46,63,1|-384xw0,45,62,0|-2yrts1,45,62,0|-2yrts0,49,63,0|-14vok1,49,63,0|-14vok0,45,62,0|-vikg1,45,62,0|-vikg0,46,63,1|-m5lw1,46,63,1|-m5lw0,45,62,0|-cshs1,45,62,0|-cshs0,62,42,1|-3fm01,62,42,1|-3fm00,49,63,0|5xi3z,49,63,0|5xi40,62,42,1|fagnz,62,42,1|fago0,49,63,0|ix323z,49,63,0|ix3240,46,63,1|j7vy3z,46,63,1|j7vy40,45,62,0|jeqbjz,45,62,0|jeqbk0,46,63,1|jqyzfz,46,63,1|jqyzg0,45,62,0|jxge7z,45,62,0|jxge80,46,63,1|k9p23z,46,63,1|k9p240,45,62,0|kg6gvz,45,62,0|kg6gw0,46,63,1|ksf4rz,46,63,1|ksf4s0,45,62,0|kz9i7z,45,62,0|kz9i80,46,63,1|lbi63z,46,63,1|lbi640,45,62,0|lhzkvz,45,62,0|lhzkw0,46,63,1|lu88rz,46,63,1|lu88s0,45,62,0|m0pnjz,45,62,0|m0pnk0,46,63,1|mcybfz,46,63,1|mcybg0,45,62,0|mjfq7z,45,62,0|mjfq80,46,63,1|mvoe3z,46,63,1|mvoe40,45,62,0|n25svz,45,62,0|n25sw0,46,63,1|neegrz,46,63,1|neegs0,45,62,0|nkvvjz,45,62,0|nkvvk0,46,63,1|nx4jfz,46,63,1|nx4jg0,45,62,0|o3ywvz,45,62,0|o3yww0,46,63,1|og7krz,46,63,1|og7ks0,45,62,0|omozjz,45,62,0|omozk0,46,63,1|oyxnfz,46,63,1|oyxng0,45,62,0|p5f27z,45,62,0|p5f280,46,63,1|phnq3z,46,63,1|phnq40,45,62,0|po54vz,45,62,0|po54w0,46,63,1|q0dsrz,46,63,1|q0dss0,45,62,0|q6v7jz,45,62,0|q6v7k0,46,63,1|qj3vfz,46,63,1|qj3vg0,45,62,0|qpy8vz,45,62,0|qpy8w0,46,63,1|r26wrz,46,63,1|r26ws0,45,62,0|r8objz,45,62,0|r8obk0,46,63,1|rkwzfz,46,63,1|rkwzg0,45,62,0|rree7z,45,62,0|rree80,46,63,1|s3n23z,46,63,1|s3n240,45,62,0|sa4gvz,45,62,0|sa4gw0,46,63,1|smd4rz,46,63,1|smd4s0,45,62,0|ssujjz,45,62,0|ssujk0,46,63,1|t537fz,46,63,1|t537g0,45,62,0|tbkm7z,45,62,0|tbkm80,46,63,1|tnta3z,46,63,1|tnta40,45,62,0|tunnjz,45,62,0|tunnk0,46,63,1|u6wbfz,46,63,1|u6wbg0,45,62,0|uddq7z,45,62,0|uddq80,46,63,1|upme3z,46,63,1|upme40,45,62,0|uw3svz,45,62,0|uw3sw0,46,63,1|v8cgrz,46,63,1|v8cgs0,45,62,0|vetvjz,45,62,0|vetvk0,46,63,1|vr2jfz,46,63,1|vr2jg0,45,62,0|vxjy7z,45,62,0|vxjy80,46,63,1|w9sm3z,46,63,1|w9sm40,45,62,0|wgmzjz,45,62,0|wgmzk0,46,63,1|wsvnfz,46,63,1|wsvng0,45,62,0|wzd27z,45,62,0|wzd280,46,63,1|xblq3z,46,63,1|xblq40,45,62,0|xi34vz,45,62,0|xi34w0,46,63,1|xubsrz,46,63,1|xubss0,45,62,0|y0t7jz,45,62,0|y0t7k0,46,63,1|yd1vfz,46,63,1|yd1vg0,45,62,0|yjja7z,45,62,0|yjja80,46,63,1|yvry3z,46,63,1|yvry40,45,62,0|z29cvz,45,62,0|z29cw0,46,63,1|zei0rz,46,63,1|zei0s0,45,62,0","America/Indiana/Vevay|,0,119,0|-18y0m00,45,62,0|-r0esg1,45,62,0|-r0esg0,46,63,1|-qplz81,46,63,1|-qplz80,45,62,0|-qhops1,45,62,0|-qhops0,46,63,1|-q6vwk1,46,63,1|-q6vwk0,45,62,0|-ek21s1,45,62,0|-ek21s0,47,63,1|-cq2tg1,47,63,1|-cq2tg0,48,63,1|-cnp0k1,48,63,1|-cnp0k0,45,62,0|-86qhs1,45,62,0|-86qhs0,49,63,0|-cskk1,49,63,0|-cskk0,62,42,1|-3fm01,62,42,1|-3fm00,49,63,0|5xi3z,49,63,0|5xi40,62,42,1|fagnz,62,42,1|fago0,49,63,0|onkrz,49,63,0|onks0,62,42,1|ydhzz,62,42,1|ydi00,49,63,0|17qm3z,49,63,0|17qm40,62,42,1|1h3knz,62,42,1|1h3ko0,49,63,0|ix323z,49,63,0|ix3240,62,42,1|j7vvbz,62,42,1|j7vvc0,49,63,0|jeq8rz,49,63,0|jeq8s0,62,42,1|jqywnz,62,42,1|jqywo0,49,63,0|jxgbfz,49,63,0|jxgbg0,62,42,1|k9ozbz,62,42,1|k9ozc0,49,63,0|kg6e3z,49,63,0|kg6e40,62,42,1|ksf1zz,62,42,1|ksf200,49,63,0|kz9ffz,49,63,0|kz9fg0,62,42,1|lbi3bz,62,42,1|lbi3c0,49,63,0|lhzi3z,49,63,0|lhzi40,62,42,1|lu85zz,62,42,1|lu8600,49,63,0|m0pkrz,49,63,0|m0pks0,62,42,1|mcy8nz,62,42,1|mcy8o0,49,63,0|mjfnfz,49,63,0|mjfng0,62,42,1|mvobbz,62,42,1|mvobc0,49,63,0|n25q3z,49,63,0|n25q40,62,42,1|needzz,62,42,1|neee00,49,63,0|nkvsrz,49,63,0|nkvss0,62,42,1|nx4gnz,62,42,1|nx4go0,49,63,0|o3yu3z,49,63,0|o3yu40,62,42,1|og7hzz,62,42,1|og7i00,49,63,0|omowrz,49,63,0|omows0,62,42,1|oyxknz,62,42,1|oyxko0,49,63,0|p5ezfz,49,63,0|p5ezg0,62,42,1|phnnbz,62,42,1|phnnc0,49,63,0|po523z,49,63,0|po5240,62,42,1|q0dpzz,62,42,1|q0dq00,49,63,0|q6v4rz,49,63,0|q6v4s0,62,42,1|qj3snz,62,42,1|qj3so0,49,63,0|qpy63z,49,63,0|qpy640,62,42,1|r26tzz,62,42,1|r26u00,49,63,0|r8o8rz,49,63,0|r8o8s0,62,42,1|rkwwnz,62,42,1|rkwwo0,49,63,0|rrebfz,49,63,0|rrebg0,62,42,1|s3mzbz,62,42,1|s3mzc0,49,63,0|sa4e3z,49,63,0|sa4e40,62,42,1|smd1zz,62,42,1|smd200,49,63,0|ssugrz,49,63,0|ssugs0,62,42,1|t534nz,62,42,1|t534o0,49,63,0|tbkjfz,49,63,0|tbkjg0,62,42,1|tnt7bz,62,42,1|tnt7c0,49,63,0|tunkrz,49,63,0|tunks0,62,42,1|u6w8nz,62,42,1|u6w8o0,49,63,0|uddnfz,49,63,0|uddng0,62,42,1|upmbbz,62,42,1|upmbc0,49,63,0|uw3q3z,49,63,0|uw3q40,62,42,1|v8cdzz,62,42,1|v8ce00,49,63,0|vetsrz,49,63,0|vetss0,62,42,1|vr2gnz,62,42,1|vr2go0,49,63,0|vxjvfz,49,63,0|vxjvg0,62,42,1|w9sjbz,62,42,1|w9sjc0,49,63,0|wgmwrz,49,63,0|wgmws0,62,42,1|wsvknz,62,42,1|wsvko0,49,63,0|wzczfz,49,63,0|wzczg0,62,42,1|xblnbz,62,42,1|xblnc0,49,63,0|xi323z,49,63,0|xi3240,62,42,1|xubpzz,62,42,1|xubq00,49,63,0|y0t4rz,49,63,0|y0t4s0,62,42,1|yd1snz,62,42,1|yd1so0,49,63,0|yjj7fz,49,63,0|yjj7g0,62,42,1|yvrvbz,62,42,1|yvrvc0,49,63,0|z29a3z,49,63,0|z29a40,62,42,1|zehxzz,62,42,1|zehy00,49,63,0","America/Indiana/Vincennes|,0,120,0|-18y0m00,45,62,0|-r0esg1,45,62,0|-r0esg0,46,63,1|-qplz81,46,63,1|-qplz80,45,62,0|-qhops1,45,62,0|-qhops0,46,63,1|-q6vwk1,46,63,1|-q6vwk0,45,62,0|-ek21s1,45,62,0|-ek21s0,47,63,1|-cq2tg1,47,63,1|-cq2tg0,48,63,1|-cnp0k1,48,63,1|-cnp0k0,45,62,0|-ccw1s1,45,62,0|-ccw1s0,46,63,1|-c4yxw1,46,63,1|-c4yxw0,45,62,0|-8pgkg1,45,62,0|-8pgkg0,46,63,1|-8hjgk1,46,63,1|-8hjgk0,45,62,0|-86qhs1,45,62,0|-86qhs0,46,63,1|-7ytdw1,46,63,1|-7ytdw0,45,62,0|-7nnm01,45,62,0|-7nnm00,46,63,1|-7g3b81,46,63,1|-7g3b80,45,62,0|-74xds1,45,62,0|-74xds0,46,63,1|-6x09w1,46,63,1|-6x09w0,45,62,0|-6m7b41,45,62,0|-6m7b40,46,63,1|-6ea781,46,63,1|-6ea780,45,62,0|-63h8g1,45,62,0|-63h8g0,46,63,1|-5vk4k1,46,63,1|-5vk4k0,45,62,0|-5kr5s1,45,62,0|-5kr5s0,46,63,1|-5cu1w1,46,63,1|-5cu1w0,45,62,0|-521341,45,62,0|-521340,46,63,1|-4sb5w1,46,63,1|-4sb5w0,45,62,0|-4iy1s1,45,62,0|-4iy1s0,46,63,1|-4bdwk1,46,63,1|-4bdwk0,45,62,0|-407z41,45,62,0|-407z40,46,63,1|-3qv0k1,46,63,1|-3qv0k0,45,62,0|-3hhwg1,45,62,0|-3hhwg0,46,63,1|-384xw1,46,63,1|-384xw0,45,62,0|-2yrts1,45,62,0|-2yrts0,49,63,0|-cskk1,49,63,0|-cskk0,62,42,1|-3fm01,62,42,1|-3fm00,49,63,0|5xi3z,49,63,0|5xi40,62,42,1|fagnz,62,42,1|fago0,49,63,0|ix323z,49,63,0|ix3240,46,63,1|j7vy3z,46,63,1|j7vy40,45,62,0|jeqbjz,45,62,0|jeqbk0,46,63,1|jqyzfz,46,63,1|jqyzg0,49,63,0|jxgbfz,49,63,0|jxgbg0,62,42,1|k9ozbz,62,42,1|k9ozc0,49,63,0|kg6e3z,49,63,0|kg6e40,62,42,1|ksf1zz,62,42,1|ksf200,49,63,0|kz9ffz,49,63,0|kz9fg0,62,42,1|lbi3bz,62,42,1|lbi3c0,49,63,0|lhzi3z,49,63,0|lhzi40,62,42,1|lu85zz,62,42,1|lu8600,49,63,0|m0pkrz,49,63,0|m0pks0,62,42,1|mcy8nz,62,42,1|mcy8o0,49,63,0|mjfnfz,49,63,0|mjfng0,62,42,1|mvobbz,62,42,1|mvobc0,49,63,0|n25q3z,49,63,0|n25q40,62,42,1|needzz,62,42,1|neee00,49,63,0|nkvsrz,49,63,0|nkvss0,62,42,1|nx4gnz,62,42,1|nx4go0,49,63,0|o3yu3z,49,63,0|o3yu40,62,42,1|og7hzz,62,42,1|og7i00,49,63,0|omowrz,49,63,0|omows0,62,42,1|oyxknz,62,42,1|oyxko0,49,63,0|p5ezfz,49,63,0|p5ezg0,62,42,1|phnnbz,62,42,1|phnnc0,49,63,0|po523z,49,63,0|po5240,62,42,1|q0dpzz,62,42,1|q0dq00,49,63,0|q6v4rz,49,63,0|q6v4s0,62,42,1|qj3snz,62,42,1|qj3so0,49,63,0|qpy63z,49,63,0|qpy640,62,42,1|r26tzz,62,42,1|r26u00,49,63,0|r8o8rz,49,63,0|r8o8s0,62,42,1|rkwwnz,62,42,1|rkwwo0,49,63,0|rrebfz,49,63,0|rrebg0,62,42,1|s3mzbz,62,42,1|s3mzc0,49,63,0|sa4e3z,49,63,0|sa4e40,62,42,1|smd1zz,62,42,1|smd200,49,63,0|ssugrz,49,63,0|ssugs0,62,42,1|t534nz,62,42,1|t534o0,49,63,0|tbkjfz,49,63,0|tbkjg0,62,42,1|tnt7bz,62,42,1|tnt7c0,49,63,0|tunkrz,49,63,0|tunks0,62,42,1|u6w8nz,62,42,1|u6w8o0,49,63,0|uddnfz,49,63,0|uddng0,62,42,1|upmbbz,62,42,1|upmbc0,49,63,0|uw3q3z,49,63,0|uw3q40,62,42,1|v8cdzz,62,42,1|v8ce00,49,63,0|vetsrz,49,63,0|vetss0,62,42,1|vr2gnz,62,42,1|vr2go0,49,63,0|vxjvfz,49,63,0|vxjvg0,62,42,1|w9sjbz,62,42,1|w9sjc0,49,63,0|wgmwrz,49,63,0|wgmws0,62,42,1|wsvknz,62,42,1|wsvko0,49,63,0|wzczfz,49,63,0|wzczg0,62,42,1|xblnbz,62,42,1|xblnc0,49,63,0|xi323z,49,63,0|xi3240,62,42,1|xubpzz,62,42,1|xubq00,49,63,0|y0t4rz,49,63,0|y0t4s0,62,42,1|yd1snz,62,42,1|yd1so0,49,63,0|yjj7fz,49,63,0|yjj7g0,62,42,1|yvrvbz,62,42,1|yvrvc0,49,63,0|z29a3z,49,63,0|z29a40,62,42,1|zehxzz,62,42,1|zehy00,49,63,0","America/Indiana/Winamac|,0,121,0|-18y0m00,45,62,0|-r0esg1,45,62,0|-r0esg0,46,63,1|-qplz81,46,63,1|-qplz80,45,62,0|-qhops1,45,62,0|-qhops0,46,63,1|-q6vwk1,46,63,1|-q6vwk0,45,62,0|-ek21s1,45,62,0|-ek21s0,47,63,1|-cq2tg1,47,63,1|-cq2tg0,48,63,1|-cnp0k1,48,63,1|-cnp0k0,45,62,0|-ccw1s1,45,62,0|-ccw1s0,46,63,1|-c4yxw1,46,63,1|-c4yxw0,45,62,0|-bu5z41,45,62,0|-bu5z40,46,63,1|-bm8v81,46,63,1|-bm8v80,45,62,0|-bbfwg1,45,62,0|-bbfwg0,46,63,1|-b3isk1,46,63,1|-b3isk0,45,62,0|-aspts1,45,62,0|-aspts0,46,63,1|-akspw1,46,63,1|-akspw0,45,62,0|-a9msg1,45,62,0|-a9msg0,46,63,1|-a22n81,46,63,1|-a22n80,45,62,0|-9qwps1,45,62,0|-9qwps0,46,63,1|-9izlw1,46,63,1|-9izlw0,45,62,0|-986n41,45,62,0|-986n40,46,63,1|-909j81,46,63,1|-909j80,45,62,0|-8pgkg1,45,62,0|-8pgkg0,46,63,1|-8hjgk1,46,63,1|-8hjgk0,45,62,0|-86qhs1,45,62,0|-86qhs0,46,63,1|-7ytdw1,46,63,1|-7ytdw0,45,62,0|-7o0f41,45,62,0|-7o0f40,46,63,1|-7eahw1,46,63,1|-7eahw0,45,62,0|-74xds1,45,62,0|-74xds0,46,63,1|-6vkf81,46,63,1|-6vkf80,45,62,0|-6m7b41,45,62,0|-6m7b40,46,63,1|-6ea781,46,63,1|-6ea780,45,62,0|-63h8g1,45,62,0|-63h8g0,46,63,1|-5vk4k1,46,63,1|-5vk4k0,45,62,0|-5kr5s1,45,62,0|-5kr5s0,46,63,1|-5cu1w1,46,63,1|-5cu1w0,45,62,0|-521341,45,62,0|-521340,46,63,1|-4u3z81,46,63,1|-4u3z80,45,62,0|-4iy1s1,45,62,0|-4iy1s0,49,63,0|-cskk1,49,63,0|-cskk0,62,42,1|-3fm01,62,42,1|-3fm00,49,63,0|5xi3z,49,63,0|5xi40,62,42,1|fagnz,62,42,1|fago0,49,63,0|ix323z,49,63,0|ix3240,46,63,1|j7vy3z,46,63,1|j7vy40,45,62,0|jeqbjz,45,62,0|jeqbk0,62,42,1|jqywnz,62,42,1|jqywo0,49,63,0|jxgbfz,49,63,0|jxgbg0,62,42,1|k9ozbz,62,42,1|k9ozc0,49,63,0|kg6e3z,49,63,0|kg6e40,62,42,1|ksf1zz,62,42,1|ksf200,49,63,0|kz9ffz,49,63,0|kz9fg0,62,42,1|lbi3bz,62,42,1|lbi3c0,49,63,0|lhzi3z,49,63,0|lhzi40,62,42,1|lu85zz,62,42,1|lu8600,49,63,0|m0pkrz,49,63,0|m0pks0,62,42,1|mcy8nz,62,42,1|mcy8o0,49,63,0|mjfnfz,49,63,0|mjfng0,62,42,1|mvobbz,62,42,1|mvobc0,49,63,0|n25q3z,49,63,0|n25q40,62,42,1|needzz,62,42,1|neee00,49,63,0|nkvsrz,49,63,0|nkvss0,62,42,1|nx4gnz,62,42,1|nx4go0,49,63,0|o3yu3z,49,63,0|o3yu40,62,42,1|og7hzz,62,42,1|og7i00,49,63,0|omowrz,49,63,0|omows0,62,42,1|oyxknz,62,42,1|oyxko0,49,63,0|p5ezfz,49,63,0|p5ezg0,62,42,1|phnnbz,62,42,1|phnnc0,49,63,0|po523z,49,63,0|po5240,62,42,1|q0dpzz,62,42,1|q0dq00,49,63,0|q6v4rz,49,63,0|q6v4s0,62,42,1|qj3snz,62,42,1|qj3so0,49,63,0|qpy63z,49,63,0|qpy640,62,42,1|r26tzz,62,42,1|r26u00,49,63,0|r8o8rz,49,63,0|r8o8s0,62,42,1|rkwwnz,62,42,1|rkwwo0,49,63,0|rrebfz,49,63,0|rrebg0,62,42,1|s3mzbz,62,42,1|s3mzc0,49,63,0|sa4e3z,49,63,0|sa4e40,62,42,1|smd1zz,62,42,1|smd200,49,63,0|ssugrz,49,63,0|ssugs0,62,42,1|t534nz,62,42,1|t534o0,49,63,0|tbkjfz,49,63,0|tbkjg0,62,42,1|tnt7bz,62,42,1|tnt7c0,49,63,0|tunkrz,49,63,0|tunks0,62,42,1|u6w8nz,62,42,1|u6w8o0,49,63,0|uddnfz,49,63,0|uddng0,62,42,1|upmbbz,62,42,1|upmbc0,49,63,0|uw3q3z,49,63,0|uw3q40,62,42,1|v8cdzz,62,42,1|v8ce00,49,63,0|vetsrz,49,63,0|vetss0,62,42,1|vr2gnz,62,42,1|vr2go0,49,63,0|vxjvfz,49,63,0|vxjvg0,62,42,1|w9sjbz,62,42,1|w9sjc0,49,63,0|wgmwrz,49,63,0|wgmws0,62,42,1|wsvknz,62,42,1|wsvko0,49,63,0|wzczfz,49,63,0|wzczg0,62,42,1|xblnbz,62,42,1|xblnc0,49,63,0|xi323z,49,63,0|xi3240,62,42,1|xubpzz,62,42,1|xubq00,49,63,0|y0t4rz,49,63,0|y0t4s0,62,42,1|yd1snz,62,42,1|yd1so0,49,63,0|yjj7fz,49,63,0|yjj7g0,62,42,1|yvrvbz,62,42,1|yvrvc0,49,63,0|z29a3z,49,63,0|z29a40,62,42,1|zehxzz,62,42,1|zehy00,49,63,0","America/Inuvik|,60,1,0|-8ve5c0,51,40,0|-2g1r41,51,40,0|-2g1r40,78,62,1|-26br41,78,62,1|-26br40,51,40,0|4v6brz,51,40,0|4v6bs0,50,66,0|5dwbnz,50,66,0|5dwbo0,52,62,1|5n9a7z,52,62,1|5n9a80,50,66,0|5wmebz,50,66,0|5wmec0,52,62,1|65zcvz,52,62,1|65zcw0,50,66,0|6fcgzz,50,66,0|6fch00,52,62,1|6p2e7z,52,62,1|6p2e80,50,66,0|6y2jnz,50,66,0|6y2jo0,52,62,1|77sgvz,52,62,1|77sgw0,50,66,0|7h5kzz,50,66,0|7h5l00,52,62,1|7qijjz,52,62,1|7qijk0,50,66,0|7zvnnz,50,66,0|7zvno0,52,62,1|898m7z,52,62,1|898m80,50,66,0|8ilqbz,50,66,0|8ilqc0,52,62,1|8ryovz,52,62,1|8ryow0,50,66,0|908wzz,50,66,0|908x00,52,62,1|9aorjz,52,62,1|9aork0,50,66,0|9iyznz,50,66,0|9iyzo0,52,62,1|9trsvz,52,62,1|9trsw0,50,66,0|a1p2bz,50,66,0|a1p2c0,52,62,1|achvjz,52,62,1|achvk0,50,66,0|akf4zz,50,66,0|akf500,52,62,1|av7y7z,52,62,1|av7y80,50,66,0|b3i6bz,50,66,0|b3i6c0,52,62,1|bdy0vz,52,62,1|bdy0w0,50,66,0|bm88zz,50,66,0|bm8900,52,62,1|bwo3jz,52,62,1|bwo3k0,50,66,0|c4ybnz,50,66,0|c4ybo0,52,62,1|cfr4vz,52,62,1|cfr4w0,50,66,0|cnoebz,50,66,0|cnoec0,52,62,1|cyh7jz,52,62,1|cyh7k0,50,66,0|d6egzz,50,66,0|d6eh00,52,62,1|dh7a7z,52,62,1|dh7a80,50,66,0|dphibz,50,66,0|dphic0,52,62,1|dzxcvz,52,62,1|dzxcw0,50,66,0|e87kzz,50,66,0|e87l00,52,62,1|einfjz,52,62,1|einfk0,50,66,0|eqxnnz,50,66,0|eqxno0,52,62,1|f1di7z,52,62,1|f1di80,50,66,0|f9nqbz,50,66,0|f9nqc0,52,62,1|fkgjjz,52,62,1|fkgjk0,50,66,0|fsdszz,50,66,0|fsdt00,52,62,1|g36m7z,52,62,1|g36m80,50,66,0|gb3vnz,50,66,0|gb3vo0,52,62,1|glwovz,52,62,1|glwow0,50,66,0|gu6wzz,50,66,0|gu6x00,52,62,1|h4mrjz,52,62,1|h4mrk0,50,66,0|hcwznz,50,66,0|hcwzo0,52,62,1|hncu7z,52,62,1|hncu80,50,66,0|hvn2bz,50,66,0|hvn2c0,52,62,1|i6fvjz,52,62,1|i6fvk0,50,66,0|ied4zz,50,66,0|ied500,52,62,1|ip5y7z,52,62,1|ip5y80,50,66,0|ix37nz,50,66,0|ix37o0,52,62,1|j7w0vz,52,62,1|j7w0w0,50,66,0|jeqebz,50,66,0|jeqec0,52,62,1|jqz27z,52,62,1|jqz280,50,66,0|jxggzz,50,66,0|jxgh00,52,62,1|k9p4vz,52,62,1|k9p4w0,50,66,0|kg6jnz,50,66,0|kg6jo0,52,62,1|ksf7jz,52,62,1|ksf7k0,50,66,0|kz9kzz,50,66,0|kz9l00,52,62,1|lbi8vz,52,62,1|lbi8w0,50,66,0|lhznnz,50,66,0|lhzno0,52,62,1|lu8bjz,52,62,1|lu8bk0,50,66,0|m0pqbz,50,66,0|m0pqc0,52,62,1|mcye7z,52,62,1|mcye80,50,66,0|mjfszz,50,66,0|mjft00,52,62,1|mvogvz,52,62,1|mvogw0,50,66,0|n25vnz,50,66,0|n25vo0,52,62,1|neejjz,52,62,1|neejk0,50,66,0|nkvybz,50,66,0|nkvyc0,52,62,1|nx4m7z,52,62,1|nx4m80,50,66,0|o3yznz,50,66,0|o3yzo0,52,62,1|og7njz,52,62,1|og7nk0,50,66,0|omp2bz,50,66,0|omp2c0,52,62,1|oyxq7z,52,62,1|oyxq80,50,66,0|p5f4zz,50,66,0|p5f500,52,62,1|phnsvz,52,62,1|phnsw0,50,66,0|po57nz,50,66,0|po57o0,52,62,1|q0dvjz,52,62,1|q0dvk0,50,66,0|q6vabz,50,66,0|q6vac0,52,62,1|qj3y7z,52,62,1|qj3y80,50,66,0|qpybnz,50,66,0|qpybo0,52,62,1|r26zjz,52,62,1|r26zk0,50,66,0|r8oebz,50,66,0|r8oec0,52,62,1|rkx27z,52,62,1|rkx280,50,66,0|rregzz,50,66,0|rreh00,52,62,1|s3n4vz,52,62,1|s3n4w0,50,66,0|sa4jnz,50,66,0|sa4jo0,52,62,1|smd7jz,52,62,1|smd7k0,50,66,0|ssumbz,50,66,0|ssumc0,52,62,1|t53a7z,52,62,1|t53a80,50,66,0|tbkozz,50,66,0|tbkp00,52,62,1|tntcvz,52,62,1|tntcw0,50,66,0|tunqbz,50,66,0|tunqc0,52,62,1|u6we7z,52,62,1|u6we80,50,66,0|uddszz,50,66,0|uddt00,52,62,1|upmgvz,52,62,1|upmgw0,50,66,0|uw3vnz,50,66,0|uw3vo0,52,62,1|v8cjjz,52,62,1|v8cjk0,50,66,0|vetybz,50,66,0|vetyc0,52,62,1|vr2m7z,52,62,1|vr2m80,50,66,0|vxk0zz,50,66,0|vxk100,52,62,1|w9sovz,52,62,1|w9sow0,50,66,0|wgn2bz,50,66,0|wgn2c0,52,62,1|wsvq7z,52,62,1|wsvq80,50,66,0|wzd4zz,50,66,0|wzd500,52,62,1|xblsvz,52,62,1|xblsw0,50,66,0|xi37nz,50,66,0|xi37o0,52,62,1|xubvjz,52,62,1|xubvk0,50,66,0|y0tabz,50,66,0|y0tac0,52,62,1|yd1y7z,52,62,1|yd1y80,50,66,0|yjjczz,50,66,0|yjjd00,52,62,1|yvs0vz,52,62,1|yvs0w0,50,66,0|z29fnz,50,66,0|z29fo0,52,62,1|zei3jz,52,62,1|zei3k0,50,66,0","America/Iqaluit|,60,1,0|-eb6ao0,70,42,1|-cq2tg1,70,42,1|-cq2tg0,71,42,1|-cnp3c1,71,42,1|-cnp3c0,49,63,0|-2g1zg1,49,63,0|-2g1zg0,79,44,1|-26bzg1,79,44,1|-26bzg0,49,63,0|5dw63z,49,63,0|5dw640,62,42,1|5n94nz,62,42,1|5n94o0,49,63,0|5wm8rz,49,63,0|5wm8s0,62,42,1|65z7bz,62,42,1|65z7c0,49,63,0|6fcbfz,49,63,0|6fcbg0,62,42,1|6p28nz,62,42,1|6p28o0,49,63,0|6y2e3z,49,63,0|6y2e40,62,42,1|77sbbz,62,42,1|77sbc0,49,63,0|7h5ffz,49,63,0|7h5fg0,62,42,1|7qidzz,62,42,1|7qie00,49,63,0|7zvi3z,49,63,0|7zvi40,62,42,1|898gnz,62,42,1|898go0,49,63,0|8ilkrz,49,63,0|8ilks0,62,42,1|8ryjbz,62,42,1|8ryjc0,49,63,0|908rfz,49,63,0|908rg0,62,42,1|9aolzz,62,42,1|9aom00,49,63,0|9iyu3z,49,63,0|9iyu40,62,42,1|9trnbz,62,42,1|9trnc0,49,63,0|a1owrz,49,63,0|a1ows0,62,42,1|achpzz,62,42,1|achq00,49,63,0|akezfz,49,63,0|akezg0,62,42,1|av7snz,62,42,1|av7so0,49,63,0|b3i0rz,49,63,0|b3i0s0,62,42,1|bdxvbz,62,42,1|bdxvc0,49,63,0|bm83fz,49,63,0|bm83g0,62,42,1|bwnxzz,62,42,1|bwny00,49,63,0|c4y63z,49,63,0|c4y640,62,42,1|cfqzbz,62,42,1|cfqzc0,49,63,0|cno8rz,49,63,0|cno8s0,62,42,1|cyh1zz,62,42,1|cyh200,49,63,0|d6ebfz,49,63,0|d6ebg0,62,42,1|dh74nz,62,42,1|dh74o0,49,63,0|dphcrz,49,63,0|dphcs0,62,42,1|dzx7bz,62,42,1|dzx7c0,49,63,0|e87ffz,49,63,0|e87fg0,62,42,1|ein9zz,62,42,1|eina00,49,63,0|eqxi3z,49,63,0|eqxi40,62,42,1|f1dcnz,62,42,1|f1dco0,49,63,0|f9nkrz,49,63,0|f9nks0,62,42,1|fkgdzz,62,42,1|fkge00,45,62,0|fsdq7z,45,62,0|fsdq80,46,63,1|g36jfz,46,63,1|g36jg0,49,63,0|gb3q3z,49,63,0|gb3q40,62,42,1|glwjbz,62,42,1|glwjc0,49,63,0|gu6rfz,49,63,0|gu6rg0,62,42,1|h4mlzz,62,42,1|h4mm00,49,63,0|hcwu3z,49,63,0|hcwu40,62,42,1|hnconz,62,42,1|hncoo0,49,63,0|hvmwrz,49,63,0|hvmws0,62,42,1|i6fpzz,62,42,1|i6fq00,49,63,0|ieczfz,49,63,0|ieczg0,62,42,1|ip5snz,62,42,1|ip5so0,49,63,0|ix323z,49,63,0|ix3240,62,42,1|j7vvbz,62,42,1|j7vvc0,49,63,0|jeq8rz,49,63,0|jeq8s0,62,42,1|jqywnz,62,42,1|jqywo0,49,63,0|jxgbfz,49,63,0|jxgbg0,62,42,1|k9ozbz,62,42,1|k9ozc0,49,63,0|kg6e3z,49,63,0|kg6e40,62,42,1|ksf1zz,62,42,1|ksf200,49,63,0|kz9ffz,49,63,0|kz9fg0,62,42,1|lbi3bz,62,42,1|lbi3c0,49,63,0|lhzi3z,49,63,0|lhzi40,62,42,1|lu85zz,62,42,1|lu8600,49,63,0|m0pkrz,49,63,0|m0pks0,62,42,1|mcy8nz,62,42,1|mcy8o0,49,63,0|mjfnfz,49,63,0|mjfng0,62,42,1|mvobbz,62,42,1|mvobc0,49,63,0|n25q3z,49,63,0|n25q40,62,42,1|needzz,62,42,1|neee00,49,63,0|nkvsrz,49,63,0|nkvss0,62,42,1|nx4gnz,62,42,1|nx4go0,49,63,0|o3yu3z,49,63,0|o3yu40,62,42,1|og7hzz,62,42,1|og7i00,49,63,0|omowrz,49,63,0|omows0,62,42,1|oyxknz,62,42,1|oyxko0,49,63,0|p5ezfz,49,63,0|p5ezg0,62,42,1|phnnbz,62,42,1|phnnc0,49,63,0|po523z,49,63,0|po5240,62,42,1|q0dpzz,62,42,1|q0dq00,49,63,0|q6v4rz,49,63,0|q6v4s0,62,42,1|qj3snz,62,42,1|qj3so0,49,63,0|qpy63z,49,63,0|qpy640,62,42,1|r26tzz,62,42,1|r26u00,49,63,0|r8o8rz,49,63,0|r8o8s0,62,42,1|rkwwnz,62,42,1|rkwwo0,49,63,0|rrebfz,49,63,0|rrebg0,62,42,1|s3mzbz,62,42,1|s3mzc0,49,63,0|sa4e3z,49,63,0|sa4e40,62,42,1|smd1zz,62,42,1|smd200,49,63,0|ssugrz,49,63,0|ssugs0,62,42,1|t534nz,62,42,1|t534o0,49,63,0|tbkjfz,49,63,0|tbkjg0,62,42,1|tnt7bz,62,42,1|tnt7c0,49,63,0|tunkrz,49,63,0|tunks0,62,42,1|u6w8nz,62,42,1|u6w8o0,49,63,0|uddnfz,49,63,0|uddng0,62,42,1|upmbbz,62,42,1|upmbc0,49,63,0|uw3q3z,49,63,0|uw3q40,62,42,1|v8cdzz,62,42,1|v8ce00,49,63,0|vetsrz,49,63,0|vetss0,62,42,1|vr2gnz,62,42,1|vr2go0,49,63,0|vxjvfz,49,63,0|vxjvg0,62,42,1|w9sjbz,62,42,1|w9sjc0,49,63,0|wgmwrz,49,63,0|wgmws0,62,42,1|wsvknz,62,42,1|wsvko0,49,63,0|wzczfz,49,63,0|wzczg0,62,42,1|xblnbz,62,42,1|xblnc0,49,63,0|xi323z,49,63,0|xi3240,62,42,1|xubpzz,62,42,1|xubq00,49,63,0|y0t4rz,49,63,0|y0t4s0,62,42,1|yd1snz,62,42,1|yd1so0,49,63,0|yjj7fz,49,63,0|yjj7g0,62,42,1|yvrvbz,62,42,1|yvrvc0,49,63,0|z29a3z,49,63,0|z29a40,62,42,1|zehxzz,62,42,1|zehy00,49,63,0","America/Jamaica|,0,104,0|-15r0v42,74,104,0|-u85og3,74,104,0|-u85og2,49,63,0|23fcrz,49,63,0|23fcs0,62,42,1|2ijpzz,62,42,1|2ijq00,49,63,0|2oo63z,49,63,0|2oo640,62,42,1|319snz,62,42,1|319so0,49,63,0|3amwrz,49,63,0|3amws0,62,42,1|3kctzz,62,42,1|3kcu00,49,63,0|3tczfz,49,63,0|3tczg0,62,42,1|432wnz,62,42,1|432wo0,49,63,0|4cg0rz,49,63,0|4cg0s0,62,42,1|4lszbz,62,42,1|4lszc0,49,63,0|4v63fz,49,63,0|4v63g0,62,42,1|54j1zz,62,42,1|54j200,49,63,0|5dw63z,49,63,0|5dw640,62,42,1|5n94nz,62,42,1|5n94o0,49,63,0|5wm8rz,49,63,0|5wm8s0,62,42,1|65z7bz,62,42,1|65z7c0,49,63,0|6fcbfz,49,63,0|6fcbg0,62,42,1|6p28nz,62,42,1|6p28o0,49,63,0|6y2e3z,49,63,0|6y2e40,62,42,1|77sbbz,62,42,1|77sbc0,49,63,0","America/Juneau|,0,122,0|-1hc7qjz,0,123,0|-1078wfw,0,123,0|-1078wfv,51,40,0|-ek1w81,51,40,0|-ek1w80,68,66,1|-cq2tg1,68,66,1|-cq2tg0,69,66,1|-cnov01,69,66,1|-cnov00,51,40,0|-csc81,51,40,0|-csc80,57,66,1|-3fdo1,57,66,1|-3fdo0,51,40,0|5xqfz,51,40,0|5xqg0,57,66,1|faozz,57,66,1|fap00,51,40,0|ont3z,51,40,0|ont40,57,66,1|ydqbz,57,66,1|ydqc0,51,40,0|17qufz,51,40,0|17qug0,57,66,1|1h3szz,57,66,1|1h3t00,51,40,0|1qgx3z,51,40,0|1qgx40,57,66,1|1ztvnz,57,66,1|1ztvo0,51,40,0|23fl3z,51,40,0|23fl40,57,66,1|2ijybz,57,66,1|2ijyc0,51,40,0|2ooefz,51,40,0|2ooeg0,57,66,1|31a0zz,57,66,1|31a100,51,40,0|3an53z,51,40,0|3an540,57,66,1|3kd2bz,57,66,1|3kd2c0,51,40,0|3td7rz,51,40,0|3td7s0,57,66,1|4334zz,57,66,1|433500,51,40,0|4cg93z,51,40,0|4cg940,57,66,1|4lt7nz,57,66,1|4lt7o0,51,40,0|4v6brz,51,40,0|4v6bs0,57,66,1|54jabz,57,66,1|54jac0,51,40,0|5dwefz,51,40,0|5dweg0,64,40,1|5n9frz,64,40,1|5n9fs0,51,40,0|5wmh3z,51,40,0|5wmh40,57,66,1|65zfnz,57,66,1|65zfo0,51,40,0|6fcjrz,51,40,0|6fcjs0,57,66,1|6p2gzz,57,66,1|6p2h00,51,40,0|6y2mfz,51,40,0|6y2mg0,57,66,1|77sjnz,57,66,1|77sjo0,36,37,0|79dybz,36,37,0|79dyc0,37,37,0|7h5qjz,37,37,0|7h5qk0,38,40,1|7qip3z,38,40,1|7qip40,37,37,0|7zvt7z,37,37,0|7zvt80,38,40,1|898rrz,38,40,1|898rs0,37,37,0|8ilvvz,37,37,0|8ilvw0,38,40,1|8ryufz,38,40,1|8ryug0,37,37,0|9092jz,37,37,0|9092k0,38,40,1|9aox3z,38,40,1|9aox40,37,37,0|9iz57z,37,37,0|9iz580,38,40,1|9tryfz,38,40,1|9tryg0,37,37,0|a1p7vz,37,37,0|a1p7w0,38,40,1|aci13z,38,40,1|aci140,37,37,0|akfajz,37,37,0|akfak0,38,40,1|av83rz,38,40,1|av83s0,37,37,0|b3ibvz,37,37,0|b3ibw0,38,40,1|bdy6fz,38,40,1|bdy6g0,37,37,0|bm8ejz,37,37,0|bm8ek0,38,40,1|bwo93z,38,40,1|bwo940,37,37,0|c4yh7z,37,37,0|c4yh80,38,40,1|cfrafz,38,40,1|cfrag0,37,37,0|cnojvz,37,37,0|cnojw0,38,40,1|cyhd3z,38,40,1|cyhd40,37,37,0|d6emjz,37,37,0|d6emk0,38,40,1|dh7frz,38,40,1|dh7fs0,37,37,0|dphnvz,37,37,0|dphnw0,38,40,1|dzxifz,38,40,1|dzxig0,37,37,0|e87qjz,37,37,0|e87qk0,38,40,1|einl3z,38,40,1|einl40,37,37,0|eqxt7z,37,37,0|eqxt80,38,40,1|f1dnrz,38,40,1|f1dns0,37,37,0|f9nvvz,37,37,0|f9nvw0,38,40,1|fkgp3z,38,40,1|fkgp40,37,37,0|fsdyjz,37,37,0|fsdyk0,38,40,1|g36rrz,38,40,1|g36rs0,37,37,0|gb417z,37,37,0|gb4180,38,40,1|glwufz,38,40,1|glwug0,37,37,0|gu72jz,37,37,0|gu72k0,38,40,1|h4mx3z,38,40,1|h4mx40,37,37,0|hcx57z,37,37,0|hcx580,38,40,1|hnczrz,38,40,1|hnczs0,37,37,0|hvn7vz,37,37,0|hvn7w0,38,40,1|i6g13z,38,40,1|i6g140,37,37,0|iedajz,37,37,0|iedak0,38,40,1|ip63rz,38,40,1|ip63s0,37,37,0|ix3d7z,37,37,0|ix3d80,38,40,1|j7w6fz,38,40,1|j7w6g0,37,37,0|jeqjvz,37,37,0|jeqjw0,38,40,1|jqz7rz,38,40,1|jqz7s0,37,37,0|jxgmjz,37,37,0|jxgmk0,38,40,1|k9pafz,38,40,1|k9pag0,37,37,0|kg6p7z,37,37,0|kg6p80,38,40,1|ksfd3z,38,40,1|ksfd40,37,37,0|kz9qjz,37,37,0|kz9qk0,38,40,1|lbiefz,38,40,1|lbieg0,37,37,0|lhzt7z,37,37,0|lhzt80,38,40,1|lu8h3z,38,40,1|lu8h40,37,37,0|m0pvvz,37,37,0|m0pvw0,38,40,1|mcyjrz,38,40,1|mcyjs0,37,37,0|mjfyjz,37,37,0|mjfyk0,38,40,1|mvomfz,38,40,1|mvomg0,37,37,0|n2617z,37,37,0|n26180,38,40,1|neep3z,38,40,1|neep40,37,37,0|nkw3vz,37,37,0|nkw3w0,38,40,1|nx4rrz,38,40,1|nx4rs0,37,37,0|o3z57z,37,37,0|o3z580,38,40,1|og7t3z,38,40,1|og7t40,37,37,0|omp7vz,37,37,0|omp7w0,38,40,1|oyxvrz,38,40,1|oyxvs0,37,37,0|p5fajz,37,37,0|p5fak0,38,40,1|phnyfz,38,40,1|phnyg0,37,37,0|po5d7z,37,37,0|po5d80,38,40,1|q0e13z,38,40,1|q0e140,37,37,0|q6vfvz,37,37,0|q6vfw0,38,40,1|qj43rz,38,40,1|qj43s0,37,37,0|qpyh7z,37,37,0|qpyh80,38,40,1|r2753z,38,40,1|r27540,37,37,0|r8ojvz,37,37,0|r8ojw0,38,40,1|rkx7rz,38,40,1|rkx7s0,37,37,0|rremjz,37,37,0|rremk0,38,40,1|s3nafz,38,40,1|s3nag0,37,37,0|sa4p7z,37,37,0|sa4p80,38,40,1|smdd3z,38,40,1|smdd40,37,37,0|ssurvz,37,37,0|ssurw0,38,40,1|t53frz,38,40,1|t53fs0,37,37,0|tbkujz,37,37,0|tbkuk0,38,40,1|tntifz,38,40,1|tntig0,37,37,0|tunvvz,37,37,0|tunvw0,38,40,1|u6wjrz,38,40,1|u6wjs0,37,37,0|uddyjz,37,37,0|uddyk0,38,40,1|upmmfz,38,40,1|upmmg0,37,37,0|uw417z,37,37,0|uw4180,38,40,1|v8cp3z,38,40,1|v8cp40,37,37,0|veu3vz,37,37,0|veu3w0,38,40,1|vr2rrz,38,40,1|vr2rs0,37,37,0|vxk6jz,37,37,0|vxk6k0,38,40,1|w9sufz,38,40,1|w9sug0,37,37,0|wgn7vz,37,37,0|wgn7w0,38,40,1|wsvvrz,38,40,1|wsvvs0,37,37,0|wzdajz,37,37,0|wzdak0,38,40,1|xblyfz,38,40,1|xblyg0,37,37,0|xi3d7z,37,37,0|xi3d80,38,40,1|xuc13z,38,40,1|xuc140,37,37,0|y0tfvz,37,37,0|y0tfw0,38,40,1|yd23rz,38,40,1|yd23s0,37,37,0|yjjijz,37,37,0|yjjik0,38,40,1|yvs6fz,38,40,1|yvs6g0,37,37,0|z29l7z,37,37,0|z29l80,38,40,1|zei93z,38,40,1|zei940,37,37,0","America/Kentucky/Louisville|,0,124,0|-18y0m00,45,62,0|-r0esg1,45,62,0|-r0esg0,46,63,1|-qplz81,46,63,1|-qplz80,45,62,0|-qhops1,45,62,0|-qhops0,46,63,1|-q6vwk1,46,63,1|-q6vwk0,45,62,0|-pefr41,45,62,0|-pefr40,46,63,1|-p841w1,46,63,1|-p841w0,45,62,0|-eyvds1,45,62,0|-eyvds0,46,63,1|-eqy9w1,46,63,1|-eqy9w0,45,62,0|-ek21s1,45,62,0|-ek21s0,47,63,1|-cq2tg1,47,63,1|-cq2tg0,48,63,1|-cnp0k1,48,63,1|-cnp0k0,45,62,0|-ccw7ad,45,62,0|-ccw7ac,46,63,1|-cb3b81,46,63,1|-cb3b80,45,62,0|-a9msg1,45,62,0|-a9msg0,46,63,1|-a22n81,46,63,1|-a22n80,45,62,0|-9qwps1,45,62,0|-9qwps0,46,63,1|-9izlw1,46,63,1|-9izlw0,45,62,0|-986n41,45,62,0|-986n40,46,63,1|-909j81,46,63,1|-909j80,45,62,0|-8pgkg1,45,62,0|-8pgkg0,46,63,1|-8hjgk1,46,63,1|-8hjgk0,45,62,0|-86qhs1,45,62,0|-86qhs0,46,63,1|-7ytdw1,46,63,1|-7ytdw0,45,62,0|-7o0f41,45,62,0|-7o0f40,46,63,1|-7g3b81,46,63,1|-7g3b80,45,62,0|-74xds1,45,62,0|-74xds0,46,63,1|-6vkf81,46,63,1|-6vkf80,45,62,0|-6m7b41,45,62,0|-6m7b40,46,63,1|-6cuck1,46,63,1|-6cuck0,45,62,0|-63h8g1,45,62,0|-63h8g0,46,63,1|-5u49w1,46,63,1|-5u49w0,45,62,0|-5kr5s1,45,62,0|-5kr5s0,46,63,1|-5be781,46,63,1|-5be780,45,62,0|-521341,45,62,0|-521340,46,63,1|-4sb5w1,46,63,1|-4sb5w0,45,62,0|-4iy1s1,45,62,0|-4iy1s0,46,63,1|-4emkk1,46,63,1|-4emkk0,49,63,0|-vin81,49,63,0|-vin80,62,42,1|-m5oo1,62,42,1|-m5oo0,49,63,0|-cskk1,49,63,0|-cskk0,62,42,1|-3fm01,62,42,1|-3fm00,49,63,0|5xi3z,49,63,0|5xi40,62,42,1|fagnz,62,42,1|fago0,49,63,0|onkrz,49,63,0|onks0,62,42,1|ydhzz,62,42,1|ydi00,49,63,0|17qm3z,49,63,0|17qm40,62,42,1|1h3knz,62,42,1|1h3ko0,49,63,0|1qgorz,49,63,0|1qgos0,62,42,1|1ztnbz,62,42,1|1ztnc0,49,63,0|23fcrz,49,63,0|23fcs0,46,63,1|2ijsrz,46,63,1|2ijss0,49,63,0|2oo63z,49,63,0|2oo640,62,42,1|319snz,62,42,1|319so0,49,63,0|3amwrz,49,63,0|3amws0,62,42,1|3kctzz,62,42,1|3kcu00,49,63,0|3tczfz,49,63,0|3tczg0,62,42,1|432wnz,62,42,1|432wo0,49,63,0|4cg0rz,49,63,0|4cg0s0,62,42,1|4lszbz,62,42,1|4lszc0,49,63,0|4v63fz,49,63,0|4v63g0,62,42,1|54j1zz,62,42,1|54j200,49,63,0|5dw63z,49,63,0|5dw640,62,42,1|5n94nz,62,42,1|5n94o0,49,63,0|5wm8rz,49,63,0|5wm8s0,62,42,1|65z7bz,62,42,1|65z7c0,49,63,0|6fcbfz,49,63,0|6fcbg0,62,42,1|6p28nz,62,42,1|6p28o0,49,63,0|6y2e3z,49,63,0|6y2e40,62,42,1|77sbbz,62,42,1|77sbc0,49,63,0|7h5ffz,49,63,0|7h5fg0,62,42,1|7qidzz,62,42,1|7qie00,49,63,0|7zvi3z,49,63,0|7zvi40,62,42,1|898gnz,62,42,1|898go0,49,63,0|8ilkrz,49,63,0|8ilks0,62,42,1|8ryjbz,62,42,1|8ryjc0,49,63,0|908rfz,49,63,0|908rg0,62,42,1|9aolzz,62,42,1|9aom00,49,63,0|9iyu3z,49,63,0|9iyu40,62,42,1|9trnbz,62,42,1|9trnc0,49,63,0|a1owrz,49,63,0|a1ows0,62,42,1|achpzz,62,42,1|achq00,49,63,0|akezfz,49,63,0|akezg0,62,42,1|av7snz,62,42,1|av7so0,49,63,0|b3i0rz,49,63,0|b3i0s0,62,42,1|bdxvbz,62,42,1|bdxvc0,49,63,0|bm83fz,49,63,0|bm83g0,62,42,1|bwnxzz,62,42,1|bwny00,49,63,0|c4y63z,49,63,0|c4y640,62,42,1|cfqzbz,62,42,1|cfqzc0,49,63,0|cno8rz,49,63,0|cno8s0,62,42,1|cyh1zz,62,42,1|cyh200,49,63,0|d6ebfz,49,63,0|d6ebg0,62,42,1|dh74nz,62,42,1|dh74o0,49,63,0|dphcrz,49,63,0|dphcs0,62,42,1|dzx7bz,62,42,1|dzx7c0,49,63,0|e87ffz,49,63,0|e87fg0,62,42,1|ein9zz,62,42,1|eina00,49,63,0|eqxi3z,49,63,0|eqxi40,62,42,1|f1dcnz,62,42,1|f1dco0,49,63,0|f9nkrz,49,63,0|f9nks0,62,42,1|fkgdzz,62,42,1|fkge00,49,63,0|fsdnfz,49,63,0|fsdng0,62,42,1|g36gnz,62,42,1|g36go0,49,63,0|gb3q3z,49,63,0|gb3q40,62,42,1|glwjbz,62,42,1|glwjc0,49,63,0|gu6rfz,49,63,0|gu6rg0,62,42,1|h4mlzz,62,42,1|h4mm00,49,63,0|hcwu3z,49,63,0|hcwu40,62,42,1|hnconz,62,42,1|hncoo0,49,63,0|hvmwrz,49,63,0|hvmws0,62,42,1|i6fpzz,62,42,1|i6fq00,49,63,0|ieczfz,49,63,0|ieczg0,62,42,1|ip5snz,62,42,1|ip5so0,49,63,0|ix323z,49,63,0|ix3240,62,42,1|j7vvbz,62,42,1|j7vvc0,49,63,0|jeq8rz,49,63,0|jeq8s0,62,42,1|jqywnz,62,42,1|jqywo0,49,63,0|jxgbfz,49,63,0|jxgbg0,62,42,1|k9ozbz,62,42,1|k9ozc0,49,63,0|kg6e3z,49,63,0|kg6e40,62,42,1|ksf1zz,62,42,1|ksf200,49,63,0|kz9ffz,49,63,0|kz9fg0,62,42,1|lbi3bz,62,42,1|lbi3c0,49,63,0|lhzi3z,49,63,0|lhzi40,62,42,1|lu85zz,62,42,1|lu8600,49,63,0|m0pkrz,49,63,0|m0pks0,62,42,1|mcy8nz,62,42,1|mcy8o0,49,63,0|mjfnfz,49,63,0|mjfng0,62,42,1|mvobbz,62,42,1|mvobc0,49,63,0|n25q3z,49,63,0|n25q40,62,42,1|needzz,62,42,1|neee00,49,63,0|nkvsrz,49,63,0|nkvss0,62,42,1|nx4gnz,62,42,1|nx4go0,49,63,0|o3yu3z,49,63,0|o3yu40,62,42,1|og7hzz,62,42,1|og7i00,49,63,0|omowrz,49,63,0|omows0,62,42,1|oyxknz,62,42,1|oyxko0,49,63,0|p5ezfz,49,63,0|p5ezg0,62,42,1|phnnbz,62,42,1|phnnc0,49,63,0|po523z,49,63,0|po5240,62,42,1|q0dpzz,62,42,1|q0dq00,49,63,0|q6v4rz,49,63,0|q6v4s0,62,42,1|qj3snz,62,42,1|qj3so0,49,63,0|qpy63z,49,63,0|qpy640,62,42,1|r26tzz,62,42,1|r26u00,49,63,0|r8o8rz,49,63,0|r8o8s0,62,42,1|rkwwnz,62,42,1|rkwwo0,49,63,0|rrebfz,49,63,0|rrebg0,62,42,1|s3mzbz,62,42,1|s3mzc0,49,63,0|sa4e3z,49,63,0|sa4e40,62,42,1|smd1zz,62,42,1|smd200,49,63,0|ssugrz,49,63,0|ssugs0,62,42,1|t534nz,62,42,1|t534o0,49,63,0|tbkjfz,49,63,0|tbkjg0,62,42,1|tnt7bz,62,42,1|tnt7c0,49,63,0|tunkrz,49,63,0|tunks0,62,42,1|u6w8nz,62,42,1|u6w8o0,49,63,0|uddnfz,49,63,0|uddng0,62,42,1|upmbbz,62,42,1|upmbc0,49,63,0|uw3q3z,49,63,0|uw3q40,62,42,1|v8cdzz,62,42,1|v8ce00,49,63,0|vetsrz,49,63,0|vetss0,62,42,1|vr2gnz,62,42,1|vr2go0,49,63,0|vxjvfz,49,63,0|vxjvg0,62,42,1|w9sjbz,62,42,1|w9sjc0,49,63,0|wgmwrz,49,63,0|wgmws0,62,42,1|wsvknz,62,42,1|wsvko0,49,63,0|wzczfz,49,63,0|wzczg0,62,42,1|xblnbz,62,42,1|xblnc0,49,63,0|xi323z,49,63,0|xi3240,62,42,1|xubpzz,62,42,1|xubq00,49,63,0|y0t4rz,49,63,0|y0t4s0,62,42,1|yd1snz,62,42,1|yd1so0,49,63,0|yjj7fz,49,63,0|yjj7g0,62,42,1|yvrvbz,62,42,1|yvrvc0,49,63,0|z29a3z,49,63,0|z29a40,62,42,1|zehxzz,62,42,1|zehy00,49,63,0","America/Kentucky/Monticello|,0,125,0|-18y0m00,45,62,0|-r0esg1,45,62,0|-r0esg0,46,63,1|-qplz81,46,63,1|-qplz80,45,62,0|-qhops1,45,62,0|-qhops0,46,63,1|-q6vwk1,46,63,1|-q6vwk0,45,62,0|-ek21s1,45,62,0|-ek21s0,47,63,1|-cq2tg1,47,63,1|-cq2tg0,48,63,1|-cnp0k1,48,63,1|-cnp0k0,45,62,0|-vikg1,45,62,0|-vikg0,46,63,1|-m5lw1,46,63,1|-m5lw0,45,62,0|-cshs1,45,62,0|-cshs0,46,63,1|-3fj81,46,63,1|-3fj80,45,62,0|5xkvz,45,62,0|5xkw0,46,63,1|fajfz,46,63,1|fajg0,45,62,0|onnjz,45,62,0|onnk0,46,63,1|ydkrz,46,63,1|ydks0,45,62,0|17qovz,45,62,0|17qow0,46,63,1|1h3nfz,46,63,1|1h3ng0,45,62,0|1qgrjz,45,62,0|1qgrk0,46,63,1|1ztq3z,46,63,1|1ztq40,45,62,0|23ffjz,45,62,0|23ffk0,46,63,1|2ijsrz,46,63,1|2ijss0,45,62,0|2oo8vz,45,62,0|2oo8w0,46,63,1|319vfz,46,63,1|319vg0,45,62,0|3amzjz,45,62,0|3amzk0,46,63,1|3kcwrz,46,63,1|3kcws0,45,62,0|3td27z,45,62,0|3td280,46,63,1|432zfz,46,63,1|432zg0,45,62,0|4cg3jz,45,62,0|4cg3k0,46,63,1|4lt23z,46,63,1|4lt240,45,62,0|4v667z,45,62,0|4v6680,46,63,1|54j4rz,46,63,1|54j4s0,45,62,0|5dw8vz,45,62,0|5dw8w0,46,63,1|5n97fz,46,63,1|5n97g0,45,62,0|5wmbjz,45,62,0|5wmbk0,46,63,1|65za3z,46,63,1|65za40,45,62,0|6fce7z,45,62,0|6fce80,46,63,1|6p2bfz,46,63,1|6p2bg0,45,62,0|6y2gvz,45,62,0|6y2gw0,46,63,1|77se3z,46,63,1|77se40,45,62,0|7h5i7z,45,62,0|7h5i80,46,63,1|7qigrz,46,63,1|7qigs0,45,62,0|7zvkvz,45,62,0|7zvkw0,46,63,1|898jfz,46,63,1|898jg0,45,62,0|8ilnjz,45,62,0|8ilnk0,46,63,1|8rym3z,46,63,1|8rym40,45,62,0|908u7z,45,62,0|908u80,46,63,1|9aoorz,46,63,1|9aoos0,45,62,0|9iywvz,45,62,0|9iyww0,46,63,1|9trq3z,46,63,1|9trq40,45,62,0|a1ozjz,45,62,0|a1ozk0,46,63,1|achsrz,46,63,1|achss0,45,62,0|akf27z,45,62,0|akf280,46,63,1|av7vfz,46,63,1|av7vg0,45,62,0|b3i3jz,45,62,0|b3i3k0,46,63,1|bdxy3z,46,63,1|bdxy40,45,62,0|bm867z,45,62,0|bm8680,46,63,1|bwo0rz,46,63,1|bwo0s0,45,62,0|c4y8vz,45,62,0|c4y8w0,46,63,1|cfr23z,46,63,1|cfr240,45,62,0|cnobjz,45,62,0|cnobk0,46,63,1|cyh4rz,46,63,1|cyh4s0,45,62,0|d6ee7z,45,62,0|d6ee80,46,63,1|dh77fz,46,63,1|dh77g0,45,62,0|dphfjz,45,62,0|dphfk0,46,63,1|dzxa3z,46,63,1|dzxa40,45,62,0|e87i7z,45,62,0|e87i80,46,63,1|eincrz,46,63,1|eincs0,45,62,0|eqxkvz,45,62,0|eqxkw0,46,63,1|f1dffz,46,63,1|f1dfg0,45,62,0|f9nnjz,45,62,0|f9nnk0,46,63,1|fkggrz,46,63,1|fkggs0,45,62,0|fsdq7z,45,62,0|fsdq80,46,63,1|g36jfz,46,63,1|g36jg0,49,63,0|gb3q3z,49,63,0|gb3q40,62,42,1|glwjbz,62,42,1|glwjc0,49,63,0|gu6rfz,49,63,0|gu6rg0,62,42,1|h4mlzz,62,42,1|h4mm00,49,63,0|hcwu3z,49,63,0|hcwu40,62,42,1|hnconz,62,42,1|hncoo0,49,63,0|hvmwrz,49,63,0|hvmws0,62,42,1|i6fpzz,62,42,1|i6fq00,49,63,0|ieczfz,49,63,0|ieczg0,62,42,1|ip5snz,62,42,1|ip5so0,49,63,0|ix323z,49,63,0|ix3240,62,42,1|j7vvbz,62,42,1|j7vvc0,49,63,0|jeq8rz,49,63,0|jeq8s0,62,42,1|jqywnz,62,42,1|jqywo0,49,63,0|jxgbfz,49,63,0|jxgbg0,62,42,1|k9ozbz,62,42,1|k9ozc0,49,63,0|kg6e3z,49,63,0|kg6e40,62,42,1|ksf1zz,62,42,1|ksf200,49,63,0|kz9ffz,49,63,0|kz9fg0,62,42,1|lbi3bz,62,42,1|lbi3c0,49,63,0|lhzi3z,49,63,0|lhzi40,62,42,1|lu85zz,62,42,1|lu8600,49,63,0|m0pkrz,49,63,0|m0pks0,62,42,1|mcy8nz,62,42,1|mcy8o0,49,63,0|mjfnfz,49,63,0|mjfng0,62,42,1|mvobbz,62,42,1|mvobc0,49,63,0|n25q3z,49,63,0|n25q40,62,42,1|needzz,62,42,1|neee00,49,63,0|nkvsrz,49,63,0|nkvss0,62,42,1|nx4gnz,62,42,1|nx4go0,49,63,0|o3yu3z,49,63,0|o3yu40,62,42,1|og7hzz,62,42,1|og7i00,49,63,0|omowrz,49,63,0|omows0,62,42,1|oyxknz,62,42,1|oyxko0,49,63,0|p5ezfz,49,63,0|p5ezg0,62,42,1|phnnbz,62,42,1|phnnc0,49,63,0|po523z,49,63,0|po5240,62,42,1|q0dpzz,62,42,1|q0dq00,49,63,0|q6v4rz,49,63,0|q6v4s0,62,42,1|qj3snz,62,42,1|qj3so0,49,63,0|qpy63z,49,63,0|qpy640,62,42,1|r26tzz,62,42,1|r26u00,49,63,0|r8o8rz,49,63,0|r8o8s0,62,42,1|rkwwnz,62,42,1|rkwwo0,49,63,0|rrebfz,49,63,0|rrebg0,62,42,1|s3mzbz,62,42,1|s3mzc0,49,63,0|sa4e3z,49,63,0|sa4e40,62,42,1|smd1zz,62,42,1|smd200,49,63,0|ssugrz,49,63,0|ssugs0,62,42,1|t534nz,62,42,1|t534o0,49,63,0|tbkjfz,49,63,0|tbkjg0,62,42,1|tnt7bz,62,42,1|tnt7c0,49,63,0|tunkrz,49,63,0|tunks0,62,42,1|u6w8nz,62,42,1|u6w8o0,49,63,0|uddnfz,49,63,0|uddng0,62,42,1|upmbbz,62,42,1|upmbc0,49,63,0|uw3q3z,49,63,0|uw3q40,62,42,1|v8cdzz,62,42,1|v8ce00,49,63,0|vetsrz,49,63,0|vetss0,62,42,1|vr2gnz,62,42,1|vr2go0,49,63,0|vxjvfz,49,63,0|vxjvg0,62,42,1|w9sjbz,62,42,1|w9sjc0,49,63,0|wgmwrz,49,63,0|wgmws0,62,42,1|wsvknz,62,42,1|wsvko0,49,63,0|wzczfz,49,63,0|wzczg0,62,42,1|xblnbz,62,42,1|xblnc0,49,63,0|xi323z,49,63,0|xi3240,62,42,1|xubpzz,62,42,1|xubq00,49,63,0|y0t4rz,49,63,0|y0t4s0,62,42,1|yd1snz,62,42,1|yd1so0,49,63,0|yjj7fz,49,63,0|yjj7g0,62,42,1|yvrvbz,62,42,1|yvrvc0,49,63,0|z29a3z,49,63,0|z29a40,62,42,1|zehxzz,62,42,1|zehy00,49,63,0","America/Kralendijk|,0,58,0|-u7lckd,43,59,0|-2lx4u1,43,59,0|-2lx4u0,32,42,0","America/La_Paz|,0,126,0|-15r0wpo,41,126,0|-jxzspp,41,126,0|-jxzspo,27,127,1|-jpva5p,27,127,1|-jpva5o,42,42,0","America/Lima|,0,128,0|-15r0v2c,0,129,0|-w25lpp,0,129,0|-w25lpo,56,63,0|-gp8241,56,63,0|-gp8240,42,42,1|-gklgw1,42,42,1|-gklgw0,56,63,0|-gbhm41,56,63,0|-gbhm40,42,42,1|-g24nk1,42,42,1|-g24nk0,56,63,0|-fsrjg1,56,63,0|-fsrjg0,42,42,1|-fjekw1,42,42,1|-fjekw0,56,63,0|8cmlvz,56,63,0|8cmlw0,42,42,1|8h973z,42,42,1|8h9740,56,63,0|8vej7z,56,63,0|8vej80,42,42,1|9014fz,42,42,1|9014g0,56,63,0|afs5vz,56,63,0|afs5w0,42,42,1|aker3z,42,42,1|aker40,56,63,0|cixpvz,56,63,0|cixpw0,42,42,1|cnkb3z,42,42,1|cnkb40,56,63,0","America/Los_Angeles|,0,130,0|-18y0gg0,51,40,0|-r0emw1,51,40,0|-r0emw0,57,66,1|-qplto1,57,66,1|-qplto0,51,40,0|-qhok81,51,40,0|-qhok80,57,66,1|-q6vr01,57,66,1|-q6vr00,51,40,0|-ek1w81,51,40,0|-ek1w80,68,66,1|-cq2tg1,68,66,1|-cq2tg0,69,66,1|-cnov01,69,66,1|-cnov00,51,40,0|-bdliud,51,40,0|-bdliuc,57,66,1|-ayj0c1,57,66,1|-ayj0c0,51,40,0|-a9mpo1,51,40,0|-a9mpo0,57,66,1|-a22ho1,57,66,1|-a22ho0,51,40,0|-9qwn01,51,40,0|-9qwn00,57,66,1|-9izgc1,57,66,1|-9izgc0,51,40,0|-986kc1,51,40,0|-986kc0,57,66,1|-909do1,57,66,1|-909do0,51,40,0|-8pgho1,51,40,0|-8pgho0,57,66,1|-8hjb01,57,66,1|-8hjb00,51,40,0|-86qf01,51,40,0|-86qf00,57,66,1|-7yt8c1,57,66,1|-7yt8c0,51,40,0|-7o0cc1,51,40,0|-7o0cc0,57,66,1|-7g35o1,57,66,1|-7g35o0,51,40,0|-74xb01,51,40,0|-74xb00,57,66,1|-6x04c1,57,66,1|-6x04c0,51,40,0|-6m78c1,51,40,0|-6m78c0,57,66,1|-6ea1o1,57,66,1|-6ea1o0,51,40,0|-63h5o1,51,40,0|-63h5o0,57,66,1|-5vjz01,57,66,1|-5vjz00,51,40,0|-5kr301,51,40,0|-5kr300,57,66,1|-5ctwc1,57,66,1|-5ctwc0,51,40,0|-5210c1,51,40,0|-5210c0,57,66,1|-4u3to1,57,66,1|-4u3to0,51,40,0|-4ixz01,51,40,0|-4ixz00,57,66,1|-4bdr01,57,66,1|-4bdr00,51,40,0|-407wc1,51,40,0|-407wc0,57,66,1|-3quv01,57,66,1|-3quv00,51,40,0|-3hhto1,51,40,0|-3hhto0,57,66,1|-384sc1,57,66,1|-384sc0,51,40,0|-2yrr01,51,40,0|-2yrr00,57,66,1|-2pepo1,57,66,1|-2pepo0,51,40,0|-2g1oc1,51,40,0|-2g1oc0,57,66,1|-26boc1,57,66,1|-26boc0,51,40,0|-1xblo1,51,40,0|-1xblo0,57,66,1|-1nllo1,57,66,1|-1nllo0,51,40,0|-1e8hk1,51,40,0|-1e8hk0,57,66,1|-14vj01,57,66,1|-14vj00,51,40,0|-view1,51,40,0|-view0,57,66,1|-m5gc1,57,66,1|-m5gc0,51,40,0|-csc81,51,40,0|-csc80,57,66,1|-3fdo1,57,66,1|-3fdo0,51,40,0|5xqfz,51,40,0|5xqg0,57,66,1|faozz,57,66,1|fap00,51,40,0|ont3z,51,40,0|ont40,57,66,1|ydqbz,57,66,1|ydqc0,51,40,0|17qufz,51,40,0|17qug0,57,66,1|1h3szz,57,66,1|1h3t00,51,40,0|1qgx3z,51,40,0|1qgx40,57,66,1|1ztvnz,57,66,1|1ztvo0,51,40,0|23fl3z,51,40,0|23fl40,57,66,1|2ijybz,57,66,1|2ijyc0,51,40,0|2ooefz,51,40,0|2ooeg0,57,66,1|31a0zz,57,66,1|31a100,51,40,0|3an53z,51,40,0|3an540,57,66,1|3kd2bz,57,66,1|3kd2c0,51,40,0|3td7rz,51,40,0|3td7s0,57,66,1|4334zz,57,66,1|433500,51,40,0|4cg93z,51,40,0|4cg940,57,66,1|4lt7nz,57,66,1|4lt7o0,51,40,0|4v6brz,51,40,0|4v6bs0,57,66,1|54jabz,57,66,1|54jac0,51,40,0|5dwefz,51,40,0|5dweg0,57,66,1|5n9czz,57,66,1|5n9d00,51,40,0|5wmh3z,51,40,0|5wmh40,57,66,1|65zfnz,57,66,1|65zfo0,51,40,0|6fcjrz,51,40,0|6fcjs0,57,66,1|6p2gzz,57,66,1|6p2h00,51,40,0|6y2mfz,51,40,0|6y2mg0,57,66,1|77sjnz,57,66,1|77sjo0,51,40,0|7h5nrz,51,40,0|7h5ns0,57,66,1|7qimbz,57,66,1|7qimc0,51,40,0|7zvqfz,51,40,0|7zvqg0,57,66,1|898ozz,57,66,1|898p00,51,40,0|8ilt3z,51,40,0|8ilt40,57,66,1|8ryrnz,57,66,1|8ryro0,51,40,0|908zrz,51,40,0|908zs0,57,66,1|9aoubz,57,66,1|9aouc0,51,40,0|9iz2fz,51,40,0|9iz2g0,57,66,1|9trvnz,57,66,1|9trvo0,51,40,0|a1p53z,51,40,0|a1p540,57,66,1|achybz,57,66,1|achyc0,51,40,0|akf7rz,51,40,0|akf7s0,57,66,1|av80zz,57,66,1|av8100,51,40,0|b3i93z,51,40,0|b3i940,57,66,1|bdy3nz,57,66,1|bdy3o0,51,40,0|bm8brz,51,40,0|bm8bs0,57,66,1|bwo6bz,57,66,1|bwo6c0,51,40,0|c4yefz,51,40,0|c4yeg0,57,66,1|cfr7nz,57,66,1|cfr7o0,51,40,0|cnoh3z,51,40,0|cnoh40,57,66,1|cyhabz,57,66,1|cyhac0,51,40,0|d6ejrz,51,40,0|d6ejs0,57,66,1|dh7czz,57,66,1|dh7d00,51,40,0|dphl3z,51,40,0|dphl40,57,66,1|dzxfnz,57,66,1|dzxfo0,51,40,0|e87nrz,51,40,0|e87ns0,57,66,1|einibz,57,66,1|einic0,51,40,0|eqxqfz,51,40,0|eqxqg0,57,66,1|f1dkzz,57,66,1|f1dl00,51,40,0|f9nt3z,51,40,0|f9nt40,57,66,1|fkgmbz,57,66,1|fkgmc0,51,40,0|fsdvrz,51,40,0|fsdvs0,57,66,1|g36ozz,57,66,1|g36p00,51,40,0|gb3yfz,51,40,0|gb3yg0,57,66,1|glwrnz,57,66,1|glwro0,51,40,0|gu6zrz,51,40,0|gu6zs0,57,66,1|h4mubz,57,66,1|h4muc0,51,40,0|hcx2fz,51,40,0|hcx2g0,57,66,1|hncwzz,57,66,1|hncx00,51,40,0|hvn53z,51,40,0|hvn540,57,66,1|i6fybz,57,66,1|i6fyc0,51,40,0|ied7rz,51,40,0|ied7s0,57,66,1|ip60zz,57,66,1|ip6100,51,40,0|ix3afz,51,40,0|ix3ag0,57,66,1|j7w3nz,57,66,1|j7w3o0,51,40,0|jeqh3z,51,40,0|jeqh40,57,66,1|jqz4zz,57,66,1|jqz500,51,40,0|jxgjrz,51,40,0|jxgjs0,57,66,1|k9p7nz,57,66,1|k9p7o0,51,40,0|kg6mfz,51,40,0|kg6mg0,57,66,1|ksfabz,57,66,1|ksfac0,51,40,0|kz9nrz,51,40,0|kz9ns0,57,66,1|lbibnz,57,66,1|lbibo0,51,40,0|lhzqfz,51,40,0|lhzqg0,57,66,1|lu8ebz,57,66,1|lu8ec0,51,40,0|m0pt3z,51,40,0|m0pt40,57,66,1|mcygzz,57,66,1|mcyh00,51,40,0|mjfvrz,51,40,0|mjfvs0,57,66,1|mvojnz,57,66,1|mvojo0,51,40,0|n25yfz,51,40,0|n25yg0,57,66,1|neembz,57,66,1|neemc0,51,40,0|nkw13z,51,40,0|nkw140,57,66,1|nx4ozz,57,66,1|nx4p00,51,40,0|o3z2fz,51,40,0|o3z2g0,57,66,1|og7qbz,57,66,1|og7qc0,51,40,0|omp53z,51,40,0|omp540,57,66,1|oyxszz,57,66,1|oyxt00,51,40,0|p5f7rz,51,40,0|p5f7s0,57,66,1|phnvnz,57,66,1|phnvo0,51,40,0|po5afz,51,40,0|po5ag0,57,66,1|q0dybz,57,66,1|q0dyc0,51,40,0|q6vd3z,51,40,0|q6vd40,57,66,1|qj40zz,57,66,1|qj4100,51,40,0|qpyefz,51,40,0|qpyeg0,57,66,1|r272bz,57,66,1|r272c0,51,40,0|r8oh3z,51,40,0|r8oh40,57,66,1|rkx4zz,57,66,1|rkx500,51,40,0|rrejrz,51,40,0|rrejs0,57,66,1|s3n7nz,57,66,1|s3n7o0,51,40,0|sa4mfz,51,40,0|sa4mg0,57,66,1|smdabz,57,66,1|smdac0,51,40,0|ssup3z,51,40,0|ssup40,57,66,1|t53czz,57,66,1|t53d00,51,40,0|tbkrrz,51,40,0|tbkrs0,57,66,1|tntfnz,57,66,1|tntfo0,51,40,0|tunt3z,51,40,0|tunt40,57,66,1|u6wgzz,57,66,1|u6wh00,51,40,0|uddvrz,51,40,0|uddvs0,57,66,1|upmjnz,57,66,1|upmjo0,51,40,0|uw3yfz,51,40,0|uw3yg0,57,66,1|v8cmbz,57,66,1|v8cmc0,51,40,0|veu13z,51,40,0|veu140,57,66,1|vr2ozz,57,66,1|vr2p00,51,40,0|vxk3rz,51,40,0|vxk3s0,57,66,1|w9srnz,57,66,1|w9sro0,51,40,0|wgn53z,51,40,0|wgn540,57,66,1|wsvszz,57,66,1|wsvt00,51,40,0|wzd7rz,51,40,0|wzd7s0,57,66,1|xblvnz,57,66,1|xblvo0,51,40,0|xi3afz,51,40,0|xi3ag0,57,66,1|xubybz,57,66,1|xubyc0,51,40,0|y0td3z,51,40,0|y0td40,57,66,1|yd20zz,57,66,1|yd2100,51,40,0|yjjfrz,51,40,0|yjjfs0,57,66,1|yvs3nz,57,66,1|yvs3o0,51,40,0|z29ifz,51,40,0|z29ig0,57,66,1|zei6bz,57,66,1|zei6c0,51,40,0","America/Lower_Princes|,0,58,0|-u7lckd,43,59,0|-2lx4u1,43,59,0|-2lx4u0,32,42,0","America/Maceio|,0,131,0|-t85ldw,39,44,0|-jylag1,39,44,0|-jylag0,40,45,1|-jpb141,40,45,1|-jpb140,39,44,0|-jfsd01,39,44,0|-jfsd00,40,45,1|-j6j3s1,40,45,1|-j6j3s0,39,44,0|-ahcyc1,39,44,0|-ahcyc0,40,45,1|-aad3o1,40,45,1|-aad3o0,39,44,0|-9yl101,39,44,0|-9yl100,40,45,1|-9sd141,40,45,1|-9sd140,39,44,0|-9ft3o1,39,44,0|-9ft3o0,40,45,1|-99j941,40,45,1|-99j940,39,44,0|-8wzbo1,39,44,0|-8wzbo0,40,45,1|-8scqg1,40,45,1|-8scqg0,39,44,0|-35xmc1,39,44,0|-35xmc0,40,45,1|-31nzs1,40,45,1|-31nzs0,39,44,0|-2kdp01,39,44,0|-2kdp00,40,45,1|-2hcig1,40,45,1|-2hcig0,39,44,0|-24qqc1,39,44,0|-24qqc0,40,45,1|-204541,40,45,1|-204540,39,44,0|-1nid01,39,44,0|-1nid00,40,45,1|-1hc7s1,40,45,1|-1hc7s0,39,44,0|-14qfo1,39,44,0|-14qfo0,40,45,1|-yifs1,40,45,1|-yifs0,39,44,0|89jcbz,39,44,0|89jcc0,40,45,1|8gdk7z,40,45,1|8gdk80,39,44,0|8rwgbz,39,44,0|8rwgc0,40,45,1|8xns7z,40,45,1|8xns80,39,44,0|9aodnz,39,44,0|9aodo0,40,45,1|9g2qvz,40,45,1|9g2qw0,39,44,0|9t1hnz,39,44,0|9t1ho0,40,45,1|9yfuvz,40,45,1|9yfuw0,39,44,0|abrkbz,39,44,0|abrkc0,40,45,1|ahvuvz,40,45,1|ahvuw0,39,44,0|dggyzz,39,44,0|dggz00,40,45,1|dml9jz,40,45,1|dml9k0,39,44,0|fj0azz,39,44,0|fj0b00,40,45,1|fqkg7z,40,45,1|fqkg80,39,44,0|g23cbz,39,44,0|g23cc0,40,45,1|g2t6vz,40,45,1|g2t6w0,39,44,0|gl6dnz,39,44,0|gl6do0,40,45,1|grnmvz,40,45,1|grnmw0,39,44,0","America/Managua|,0,132,0|-15r0tcs,21,133,0|-ijh6op,21,133,0|-ijh6oo,45,62,0|1qkbbz,45,62,0|1qkbc0,49,63,0|2ob1vz,49,63,0|2ob1w0,45,62,0|4t08nz,45,62,0|4t08o0,46,63,1|4y3hvz,46,63,1|4y3hw0,45,62,0|5bqbbz,45,62,0|5bqbc0,46,63,1|5gtkjz,46,63,1|5gtkk0,45,62,0|bhcefz,45,62,0|bhceg0,49,63,0|bv2gjz,49,63,0|bv2gk0,45,62,0|c05vbz,45,62,0|c05vc0,49,63,0|e3bcjz,49,63,0|e3bck0,45,62,0|iepvbz,45,62,0|iepvc0,46,63,1|inpv7z,46,63,1|inpv80,45,62,0|iyizjz,45,62,0|iyizk0,46,63,1|j6g0nz,46,63,1|j6g0o0,45,62,0","America/Manaus|,0,134,0|-t85gvw,42,42,0|-jyl7o1,42,42,0|-jyl7o0,39,44,1|-jpayc1,39,44,1|-jpayc0,42,42,0|-jfsa81,42,42,0|-jfsa80,39,44,1|-j6j101,39,44,1|-j6j100,42,42,0|-ahcvk1,42,42,0|-ahcvk0,39,44,1|-aad0w1,39,44,1|-aad0w0,42,42,0|-9yky81,42,42,0|-9yky80,39,44,1|-9scyc1,39,44,1|-9scyc0,42,42,0|-9ft0w1,42,42,0|-9ft0w0,39,44,1|-99j6c1,39,44,1|-99j6c0,42,42,0|-8wz8w1,42,42,0|-8wz8w0,39,44,1|-8scno1,39,44,1|-8scno0,42,42,0|-35xjk1,42,42,0|-35xjk0,39,44,1|-31nx01,39,44,1|-31nx00,42,42,0|-2kdm81,42,42,0|-2kdm80,39,44,1|-2hcfo1,39,44,1|-2hcfo0,42,42,0|-24qnk1,42,42,0|-24qnk0,39,44,1|-2042c1,39,44,1|-2042c0,42,42,0|-1nia81,42,42,0|-1nia80,39,44,1|-1hc501,39,44,1|-1hc500,42,42,0|-14qcw1,42,42,0|-14qcw0,39,44,1|-yid01,39,44,1|-yid00,42,42,0|89jf3z,42,42,0|89jf40,39,44,1|8gdmzz,39,44,1|8gdn00,42,42,0|8rwj3z,42,42,0|8rwj40,39,44,1|8xnuzz,39,44,1|8xnv00,42,42,0|9aogfz,42,42,0|9aogg0,39,44,1|9g2tnz,39,44,1|9g2to0,42,42,0|cf0wfz,42,42,0|cf0wg0,39,44,1|cli5nz,39,44,1|cli5o0,42,42,0","America/Marigot|,0,41,0|-u6m79w,32,42,0","America/Martinique|,0,135,0|-15r0y0s,80,135,0|-umcvct,80,135,0|-umcvcs,32,42,0|5ct1rz,32,42,0|5ct1s0,54,44,1|5lt1nz,54,44,1|5lt1o0,32,42,0","America/Matamoros|,0,136,0|-p1u7c0,45,62,0|9iywvz,45,62,0|9iyww0,46,63,1|9trq3z,46,63,1|9trq40,45,62,0|dphfjz,45,62,0|dphfk0,46,63,1|dzxa3z,46,63,1|dzxa40,45,62,0|e87i7z,45,62,0|e87i80,46,63,1|eincrz,46,63,1|eincs0,45,62,0|eqxkvz,45,62,0|eqxkw0,46,63,1|f1dffz,46,63,1|f1dfg0,45,62,0|f9nnjz,45,62,0|f9nnk0,46,63,1|fkggrz,46,63,1|fkggs0,45,62,0|fsdq7z,45,62,0|fsdq80,46,63,1|g36jfz,46,63,1|g36jg0,45,62,0|gcwm7z,45,62,0|gcwm80,46,63,1|gkgrfz,46,63,1|gkgrg0,45,62,0|gu6u7z,45,62,0|gu6u80,46,63,1|h4morz,46,63,1|h4mos0,45,62,0|hcwwvz,45,62,0|hcwww0,46,63,1|hncrfz,46,63,1|hncrg0,45,62,0|hvmzjz,45,62,0|hvmzk0,46,63,1|i6fsrz,46,63,1|i6fss0,45,62,0|ied27z,45,62,0|ied280,46,63,1|ip5vfz,46,63,1|ip5vg0,45,62,0|ix34vz,45,62,0|ix34w0,46,63,1|j7vy3z,46,63,1|j7vy40,45,62,0|jft7jz,45,62,0|jft7k0,46,63,1|jqm0rz,46,63,1|jqm0s0,45,62,0|jyw8vz,45,62,0|jyw8w0,46,63,1|k9c3fz,46,63,1|k9c3g0,45,62,0|khmbjz,45,62,0|khmbk0,46,63,1|ks263z,46,63,1|ks2640,45,62,0|kz9i7z,45,62,0|kz9i80,46,63,1|lbi63z,46,63,1|lbi640,45,62,0|lhzkvz,45,62,0|lhzkw0,46,63,1|lu88rz,46,63,1|lu88s0,45,62,0|m0pnjz,45,62,0|m0pnk0,46,63,1|mcybfz,46,63,1|mcybg0,45,62,0|mjfq7z,45,62,0|mjfq80,46,63,1|mvoe3z,46,63,1|mvoe40,45,62,0|n25svz,45,62,0|n25sw0,46,63,1|neegrz,46,63,1|neegs0,45,62,0|nkvvjz,45,62,0|nkvvk0,46,63,1|nx4jfz,46,63,1|nx4jg0,45,62,0|o3ywvz,45,62,0|o3yww0,46,63,1|og7krz,46,63,1|og7ks0,45,62,0|omozjz,45,62,0|omozk0,46,63,1|oyxnfz,46,63,1|oyxng0,45,62,0|p5f27z,45,62,0|p5f280,46,63,1|phnq3z,46,63,1|phnq40,45,62,0|po54vz,45,62,0|po54w0,46,63,1|q0dsrz,46,63,1|q0dss0,45,62,0|q6v7jz,45,62,0|q6v7k0,46,63,1|qj3vfz,46,63,1|qj3vg0,45,62,0|qpy8vz,45,62,0|qpy8w0,46,63,1|r26wrz,46,63,1|r26ws0,45,62,0|r8objz,45,62,0|r8obk0,46,63,1|rkwzfz,46,63,1|rkwzg0,45,62,0|rree7z,45,62,0|rree80,46,63,1|s3n23z,46,63,1|s3n240,45,62,0|sa4gvz,45,62,0|sa4gw0,46,63,1|smd4rz,46,63,1|smd4s0,45,62,0|ssujjz,45,62,0|ssujk0,46,63,1|t537fz,46,63,1|t537g0,45,62,0|tbkm7z,45,62,0|tbkm80,46,63,1|tnta3z,46,63,1|tnta40,45,62,0|tunnjz,45,62,0|tunnk0,46,63,1|u6wbfz,46,63,1|u6wbg0,45,62,0|uddq7z,45,62,0|uddq80,46,63,1|upme3z,46,63,1|upme40,45,62,0|uw3svz,45,62,0|uw3sw0,46,63,1|v8cgrz,46,63,1|v8cgs0,45,62,0|vetvjz,45,62,0|vetvk0,46,63,1|vr2jfz,46,63,1|vr2jg0,45,62,0|vxjy7z,45,62,0|vxjy80,46,63,1|w9sm3z,46,63,1|w9sm40,45,62,0|wgmzjz,45,62,0|wgmzk0,46,63,1|wsvnfz,46,63,1|wsvng0,45,62,0|wzd27z,45,62,0|wzd280,46,63,1|xblq3z,46,63,1|xblq40,45,62,0|xi34vz,45,62,0|xi34w0,46,63,1|xubsrz,46,63,1|xubss0,45,62,0|y0t7jz,45,62,0|y0t7k0,46,63,1|yd1vfz,46,63,1|yd1vg0,45,62,0|yjja7z,45,62,0|yjja80,46,63,1|yvry3z,46,63,1|yvry40,45,62,0|z29cvz,45,62,0|z29cw0,46,63,1|zei0rz,46,63,1|zei0s0,45,62,0","America/Mazatlan|,0,137,0|-p1u4k0,50,66,0|-m7mko1,50,66,0|-m7mko0,45,62,0|-kf67c1,45,62,0|-kf67c0,50,66,0|-k6j3c1,50,66,0|-k6j3c0,45,62,0|-jypm01,45,62,0|-jypm00,50,66,0|-jpan81,50,66,0|-jpan80,45,62,0|-eg9601,45,62,0|-eg9600,50,66,0|-axv381,50,66,0|-axv380,51,40,0|m7z,51,40,0|m80,50,66,0|dphibz,50,66,0|dphic0,52,62,1|dzxcvz,52,62,1|dzxcw0,50,66,0|e87kzz,50,66,0|e87l00,52,62,1|einfjz,52,62,1|einfk0,50,66,0|eqxnnz,50,66,0|eqxno0,52,62,1|f1di7z,52,62,1|f1di80,50,66,0|f9nqbz,50,66,0|f9nqc0,52,62,1|fkgjjz,52,62,1|fkgjk0,50,66,0|fsdszz,50,66,0|fsdt00,52,62,1|g36m7z,52,62,1|g36m80,50,66,0|gcwozz,50,66,0|gcwp00,52,62,1|gkgu7z,52,62,1|gkgu80,50,66,0|gu6wzz,50,66,0|gu6x00,52,62,1|h4mrjz,52,62,1|h4mrk0,50,66,0|hcwznz,50,66,0|hcwzo0,52,62,1|hncu7z,52,62,1|hncu80,50,66,0|hvn2bz,50,66,0|hvn2c0,52,62,1|i6fvjz,52,62,1|i6fvk0,50,66,0|ied4zz,50,66,0|ied500,52,62,1|ip5y7z,52,62,1|ip5y80,50,66,0|ix37nz,50,66,0|ix37o0,52,62,1|j7w0vz,52,62,1|j7w0w0,50,66,0|jftabz,50,66,0|jftac0,52,62,1|jqm3jz,52,62,1|jqm3k0,50,66,0|jywbnz,50,66,0|jywbo0,52,62,1|k9c67z,52,62,1|k9c680,50,66,0|khmebz,50,66,0|khmec0,52,62,1|ks28vz,52,62,1|ks28w0,50,66,0|l0cgzz,50,66,0|l0ch00,52,62,1|lb5a7z,52,62,1|lb5a80,50,66,0|lj2jnz,50,66,0|lj2jo0,52,62,1|ltvcvz,52,62,1|ltvcw0,50,66,0|m1smbz,50,66,0|m1smc0,52,62,1|mclfjz,52,62,1|mclfk0,50,66,0|mkvnnz,50,66,0|mkvno0,52,62,1|mvbi7z,52,62,1|mvbi80,50,66,0|n3lqbz,50,66,0|n3lqc0,52,62,1|ne1kvz,52,62,1|ne1kw0,50,66,0|nmbszz,50,66,0|nmbt00,52,62,1|nwrnjz,52,62,1|nwrnk0,50,66,0|o51vnz,50,66,0|o51vo0,52,62,1|ofuovz,52,62,1|ofuow0,50,66,0|onrybz,50,66,0|onryc0,52,62,1|oykrjz,52,62,1|oykrk0,50,66,0|p6i0zz,50,66,0|p6i100,52,62,1|phau7z,52,62,1|phau80,50,66,0|ppl2bz,50,66,0|ppl2c0,52,62,1|q00wvz,52,62,1|q00ww0,50,66,0|q8b4zz,50,66,0|q8b500,52,62,1|qiqzjz,52,62,1|qiqzk0,50,66,0|qr17nz,50,66,0|qr17o0,52,62,1|r1u0vz,52,62,1|r1u0w0,50,66,0|r9rabz,50,66,0|r9rac0,52,62,1|rkk3jz,52,62,1|rkk3k0,50,66,0|rshczz,50,66,0|rshd00,52,62,1|s3a67z,52,62,1|s3a680,50,66,0|sbkebz,50,66,0|sbkec0,52,62,1|sm08vz,52,62,1|sm08w0,50,66,0|suagzz,50,66,0|suah00,52,62,1|t4qbjz,52,62,1|t4qbk0,50,66,0|td0jnz,50,66,0|td0jo0,52,62,1|tnge7z,52,62,1|tnge80,50,66,0|tvqmbz,50,66,0|tvqmc0,52,62,1|u6jfjz,52,62,1|u6jfk0,50,66,0|uegozz,50,66,0|uegp00,52,62,1|up9i7z,52,62,1|up9i80,50,66,0|ux6rnz,50,66,0|ux6ro0,52,62,1|v7zkvz,52,62,1|v7zkw0,50,66,0|vg9szz,50,66,0|vg9t00,52,62,1|vqpnjz,52,62,1|vqpnk0,50,66,0|vyzvnz,50,66,0|vyzvo0,52,62,1|w9fq7z,52,62,1|w9fq80,50,66,0|whpybz,50,66,0|whpyc0,52,62,1|wsirjz,52,62,1|wsirk0,50,66,0|x0g0zz,50,66,0|x0g100,52,62,1|xb8u7z,52,62,1|xb8u80,50,66,0|xj63nz,50,66,0|xj63o0,52,62,1|xtywvz,52,62,1|xtyww0,50,66,0|y1w6bz,50,66,0|y1w6c0,52,62,1|ycozjz,52,62,1|ycozk0,50,66,0|ykz7nz,50,66,0|ykz7o0,52,62,1|yvf27z,52,62,1|yvf280,50,66,0|z3pabz,50,66,0|z3pac0,52,62,1|ze54vz,52,62,1|ze54w0,50,66,0","America/Menominee|,0,138,0|-17zjvrx,45,62,0|-r0esg1,45,62,0|-r0esg0,46,63,1|-qplz81,46,63,1|-qplz80,45,62,0|-qhops1,45,62,0|-qhops0,46,63,1|-q6vwk1,46,63,1|-q6vwk0,45,62,0|-ek21s1,45,62,0|-ek21s0,47,63,1|-cq2tg1,47,63,1|-cq2tg0,48,63,1|-cnp0k1,48,63,1|-cnp0k0,45,62,0|-ccw1s1,45,62,0|-ccw1s0,46,63,1|-c4yxw1,46,63,1|-c4yxw0,45,62,0|-1xbog1,45,62,0|-1xbog0,46,63,1|-1nlr81,46,63,1|-1nlr80,45,62,0|-cshs1,45,62,0|-cshs0,49,63,0|1qgorz,49,63,0|1qgos0,46,63,1|1ztq3z,46,63,1|1ztq40,45,62,0|23ffjz,45,62,0|23ffk0,46,63,1|2ijsrz,46,63,1|2ijss0,45,62,0|2oo8vz,45,62,0|2oo8w0,46,63,1|319vfz,46,63,1|319vg0,45,62,0|3amzjz,45,62,0|3amzk0,46,63,1|3kcwrz,46,63,1|3kcws0,45,62,0|3td27z,45,62,0|3td280,46,63,1|432zfz,46,63,1|432zg0,45,62,0|4cg3jz,45,62,0|4cg3k0,46,63,1|4lt23z,46,63,1|4lt240,45,62,0|4v667z,45,62,0|4v6680,46,63,1|54j4rz,46,63,1|54j4s0,45,62,0|5dw8vz,45,62,0|5dw8w0,46,63,1|5n97fz,46,63,1|5n97g0,45,62,0|5wmbjz,45,62,0|5wmbk0,46,63,1|65za3z,46,63,1|65za40,45,62,0|6fce7z,45,62,0|6fce80,46,63,1|6p2bfz,46,63,1|6p2bg0,45,62,0|6y2gvz,45,62,0|6y2gw0,46,63,1|77se3z,46,63,1|77se40,45,62,0|7h5i7z,45,62,0|7h5i80,46,63,1|7qigrz,46,63,1|7qigs0,45,62,0|7zvkvz,45,62,0|7zvkw0,46,63,1|898jfz,46,63,1|898jg0,45,62,0|8ilnjz,45,62,0|8ilnk0,46,63,1|8rym3z,46,63,1|8rym40,45,62,0|908u7z,45,62,0|908u80,46,63,1|9aoorz,46,63,1|9aoos0,45,62,0|9iywvz,45,62,0|9iyww0,46,63,1|9trq3z,46,63,1|9trq40,45,62,0|a1ozjz,45,62,0|a1ozk0,46,63,1|achsrz,46,63,1|achss0,45,62,0|akf27z,45,62,0|akf280,46,63,1|av7vfz,46,63,1|av7vg0,45,62,0|b3i3jz,45,62,0|b3i3k0,46,63,1|bdxy3z,46,63,1|bdxy40,45,62,0|bm867z,45,62,0|bm8680,46,63,1|bwo0rz,46,63,1|bwo0s0,45,62,0|c4y8vz,45,62,0|c4y8w0,46,63,1|cfr23z,46,63,1|cfr240,45,62,0|cnobjz,45,62,0|cnobk0,46,63,1|cyh4rz,46,63,1|cyh4s0,45,62,0|d6ee7z,45,62,0|d6ee80,46,63,1|dh77fz,46,63,1|dh77g0,45,62,0|dphfjz,45,62,0|dphfk0,46,63,1|dzxa3z,46,63,1|dzxa40,45,62,0|e87i7z,45,62,0|e87i80,46,63,1|eincrz,46,63,1|eincs0,45,62,0|eqxkvz,45,62,0|eqxkw0,46,63,1|f1dffz,46,63,1|f1dfg0,45,62,0|f9nnjz,45,62,0|f9nnk0,46,63,1|fkggrz,46,63,1|fkggs0,45,62,0|fsdq7z,45,62,0|fsdq80,46,63,1|g36jfz,46,63,1|g36jg0,45,62,0|gb3svz,45,62,0|gb3sw0,46,63,1|glwm3z,46,63,1|glwm40,45,62,0|gu6u7z,45,62,0|gu6u80,46,63,1|h4morz,46,63,1|h4mos0,45,62,0|hcwwvz,45,62,0|hcwww0,46,63,1|hncrfz,46,63,1|hncrg0,45,62,0|hvmzjz,45,62,0|hvmzk0,46,63,1|i6fsrz,46,63,1|i6fss0,45,62,0|ied27z,45,62,0|ied280,46,63,1|ip5vfz,46,63,1|ip5vg0,45,62,0|ix34vz,45,62,0|ix34w0,46,63,1|j7vy3z,46,63,1|j7vy40,45,62,0|jeqbjz,45,62,0|jeqbk0,46,63,1|jqyzfz,46,63,1|jqyzg0,45,62,0|jxge7z,45,62,0|jxge80,46,63,1|k9p23z,46,63,1|k9p240,45,62,0|kg6gvz,45,62,0|kg6gw0,46,63,1|ksf4rz,46,63,1|ksf4s0,45,62,0|kz9i7z,45,62,0|kz9i80,46,63,1|lbi63z,46,63,1|lbi640,45,62,0|lhzkvz,45,62,0|lhzkw0,46,63,1|lu88rz,46,63,1|lu88s0,45,62,0|m0pnjz,45,62,0|m0pnk0,46,63,1|mcybfz,46,63,1|mcybg0,45,62,0|mjfq7z,45,62,0|mjfq80,46,63,1|mvoe3z,46,63,1|mvoe40,45,62,0|n25svz,45,62,0|n25sw0,46,63,1|neegrz,46,63,1|neegs0,45,62,0|nkvvjz,45,62,0|nkvvk0,46,63,1|nx4jfz,46,63,1|nx4jg0,45,62,0|o3ywvz,45,62,0|o3yww0,46,63,1|og7krz,46,63,1|og7ks0,45,62,0|omozjz,45,62,0|omozk0,46,63,1|oyxnfz,46,63,1|oyxng0,45,62,0|p5f27z,45,62,0|p5f280,46,63,1|phnq3z,46,63,1|phnq40,45,62,0|po54vz,45,62,0|po54w0,46,63,1|q0dsrz,46,63,1|q0dss0,45,62,0|q6v7jz,45,62,0|q6v7k0,46,63,1|qj3vfz,46,63,1|qj3vg0,45,62,0|qpy8vz,45,62,0|qpy8w0,46,63,1|r26wrz,46,63,1|r26ws0,45,62,0|r8objz,45,62,0|r8obk0,46,63,1|rkwzfz,46,63,1|rkwzg0,45,62,0|rree7z,45,62,0|rree80,46,63,1|s3n23z,46,63,1|s3n240,45,62,0|sa4gvz,45,62,0|sa4gw0,46,63,1|smd4rz,46,63,1|smd4s0,45,62,0|ssujjz,45,62,0|ssujk0,46,63,1|t537fz,46,63,1|t537g0,45,62,0|tbkm7z,45,62,0|tbkm80,46,63,1|tnta3z,46,63,1|tnta40,45,62,0|tunnjz,45,62,0|tunnk0,46,63,1|u6wbfz,46,63,1|u6wbg0,45,62,0|uddq7z,45,62,0|uddq80,46,63,1|upme3z,46,63,1|upme40,45,62,0|uw3svz,45,62,0|uw3sw0,46,63,1|v8cgrz,46,63,1|v8cgs0,45,62,0|vetvjz,45,62,0|vetvk0,46,63,1|vr2jfz,46,63,1|vr2jg0,45,62,0|vxjy7z,45,62,0|vxjy80,46,63,1|w9sm3z,46,63,1|w9sm40,45,62,0|wgmzjz,45,62,0|wgmzk0,46,63,1|wsvnfz,46,63,1|wsvng0,45,62,0|wzd27z,45,62,0|wzd280,46,63,1|xblq3z,46,63,1|xblq40,45,62,0|xi34vz,45,62,0|xi34w0,46,63,1|xubsrz,46,63,1|xubss0,45,62,0|y0t7jz,45,62,0|y0t7k0,46,63,1|yd1vfz,46,63,1|yd1vg0,45,62,0|yjja7z,45,62,0|yjja80,46,63,1|yvry3z,46,63,1|yvry40,45,62,0|z29cvz,45,62,0|z29cw0,46,63,1|zei0rz,46,63,1|zei0s0,45,62,0","America/Merida|,0,139,0|-p1u7c0,45,62,0|690gnz,45,62,0|690go0,49,63,0|6qpf7z,49,63,0|6qpf80,45,62,0|dphfjz,45,62,0|dphfk0,46,63,1|dzxa3z,46,63,1|dzxa40,45,62,0|e87i7z,45,62,0|e87i80,46,63,1|eincrz,46,63,1|eincs0,45,62,0|eqxkvz,45,62,0|eqxkw0,46,63,1|f1dffz,46,63,1|f1dfg0,45,62,0|f9nnjz,45,62,0|f9nnk0,46,63,1|fkggrz,46,63,1|fkggs0,45,62,0|fsdq7z,45,62,0|fsdq80,46,63,1|g36jfz,46,63,1|g36jg0,45,62,0|gcwm7z,45,62,0|gcwm80,46,63,1|gkgrfz,46,63,1|gkgrg0,45,62,0|gu6u7z,45,62,0|gu6u80,46,63,1|h4morz,46,63,1|h4mos0,45,62,0|hcwwvz,45,62,0|hcwww0,46,63,1|hncrfz,46,63,1|hncrg0,45,62,0|hvmzjz,45,62,0|hvmzk0,46,63,1|i6fsrz,46,63,1|i6fss0,45,62,0|ied27z,45,62,0|ied280,46,63,1|ip5vfz,46,63,1|ip5vg0,45,62,0|ix34vz,45,62,0|ix34w0,46,63,1|j7vy3z,46,63,1|j7vy40,45,62,0|jft7jz,45,62,0|jft7k0,46,63,1|jqm0rz,46,63,1|jqm0s0,45,62,0|jyw8vz,45,62,0|jyw8w0,46,63,1|k9c3fz,46,63,1|k9c3g0,45,62,0|khmbjz,45,62,0|khmbk0,46,63,1|ks263z,46,63,1|ks2640,45,62,0|l0ce7z,45,62,0|l0ce80,46,63,1|lb57fz,46,63,1|lb57g0,45,62,0|lj2gvz,45,62,0|lj2gw0,46,63,1|ltva3z,46,63,1|ltva40,45,62,0|m1sjjz,45,62,0|m1sjk0,46,63,1|mclcrz,46,63,1|mclcs0,45,62,0|mkvkvz,45,62,0|mkvkw0,46,63,1|mvbffz,46,63,1|mvbfg0,45,62,0|n3lnjz,45,62,0|n3lnk0,46,63,1|ne1i3z,46,63,1|ne1i40,45,62,0|nmbq7z,45,62,0|nmbq80,46,63,1|nwrkrz,46,63,1|nwrks0,45,62,0|o51svz,45,62,0|o51sw0,46,63,1|ofum3z,46,63,1|ofum40,45,62,0|onrvjz,45,62,0|onrvk0,46,63,1|oykorz,46,63,1|oykos0,45,62,0|p6hy7z,45,62,0|p6hy80,46,63,1|pharfz,46,63,1|pharg0,45,62,0|ppkzjz,45,62,0|ppkzk0,46,63,1|q00u3z,46,63,1|q00u40,45,62,0|q8b27z,45,62,0|q8b280,46,63,1|qiqwrz,46,63,1|qiqws0,45,62,0|qr14vz,45,62,0|qr14w0,46,63,1|r1ty3z,46,63,1|r1ty40,45,62,0|r9r7jz,45,62,0|r9r7k0,46,63,1|rkk0rz,46,63,1|rkk0s0,45,62,0|rsha7z,45,62,0|rsha80,46,63,1|s3a3fz,46,63,1|s3a3g0,45,62,0|sbkbjz,45,62,0|sbkbk0,46,63,1|sm063z,46,63,1|sm0640,45,62,0|suae7z,45,62,0|suae80,46,63,1|t4q8rz,46,63,1|t4q8s0,45,62,0|td0gvz,45,62,0|td0gw0,46,63,1|tngbfz,46,63,1|tngbg0,45,62,0|tvqjjz,45,62,0|tvqjk0,46,63,1|u6jcrz,46,63,1|u6jcs0,45,62,0|uegm7z,45,62,0|uegm80,46,63,1|up9ffz,46,63,1|up9fg0,45,62,0|ux6ovz,45,62,0|ux6ow0,46,63,1|v7zi3z,46,63,1|v7zi40,45,62,0|vg9q7z,45,62,0|vg9q80,46,63,1|vqpkrz,46,63,1|vqpks0,45,62,0|vyzsvz,45,62,0|vyzsw0,46,63,1|w9fnfz,46,63,1|w9fng0,45,62,0|whpvjz,45,62,0|whpvk0,46,63,1|wsiorz,46,63,1|wsios0,45,62,0|x0fy7z,45,62,0|x0fy80,46,63,1|xb8rfz,46,63,1|xb8rg0,45,62,0|xj60vz,45,62,0|xj60w0,46,63,1|xtyu3z,46,63,1|xtyu40,45,62,0|y1w3jz,45,62,0|y1w3k0,46,63,1|ycowrz,46,63,1|ycows0,45,62,0|ykz4vz,45,62,0|ykz4w0,46,63,1|yvezfz,46,63,1|yvezg0,45,62,0|z3p7jz,45,62,0|z3p7k0,46,63,1|ze523z,46,63,1|ze5240,45,62,0","America/Metlakatla|,0,140,0|-1hc7qjz,0,141,0|-1078wyv,0,141,0|-1078wyu,51,40,0|-ek1w81,51,40,0|-ek1w80,68,66,1|-cq2tg1,68,66,1|-cq2tg0,69,66,1|-cnov01,69,66,1|-cnov00,51,40,0|-csc81,51,40,0|-csc80,57,66,1|-3fdo1,57,66,1|-3fdo0,51,40,0|5xqfz,51,40,0|5xqg0,57,66,1|faozz,57,66,1|fap00,51,40,0|ont3z,51,40,0|ont40,57,66,1|ydqbz,57,66,1|ydqc0,51,40,0|17qufz,51,40,0|17qug0,57,66,1|1h3szz,57,66,1|1h3t00,51,40,0|1qgx3z,51,40,0|1qgx40,57,66,1|1ztvnz,57,66,1|1ztvo0,51,40,0|23fl3z,51,40,0|23fl40,57,66,1|2ijybz,57,66,1|2ijyc0,51,40,0|2ooefz,51,40,0|2ooeg0,57,66,1|31a0zz,57,66,1|31a100,51,40,0|3an53z,51,40,0|3an540,57,66,1|3kd2bz,57,66,1|3kd2c0,51,40,0|3td7rz,51,40,0|3td7s0,57,66,1|4334zz,57,66,1|433500,51,40,0|4cg93z,51,40,0|4cg940,57,66,1|4lt7nz,57,66,1|4lt7o0,51,40,0|4v6brz,51,40,0|4v6bs0,57,66,1|54jabz,57,66,1|54jac0,51,40,0|5dwefz,51,40,0|5dweg0,57,66,1|5n9czz,57,66,1|5n9d00,51,40,0|5wmh3z,51,40,0|5wmh40,57,66,1|65zfnz,57,66,1|65zfo0,51,40,0|6fcjrz,51,40,0|6fcjs0,57,66,1|6p2gzz,57,66,1|6p2h00,51,40,0|6y2mfz,51,40,0|6y2mg0,57,66,1|77sjnz,57,66,1|77sjo0,51,40,0|nx4rrz,51,40,0|nx4rs0,37,37,0|o3z57z,37,37,0|o3z580,38,40,1|og7t3z,38,40,1|og7t40,37,37,0|omp7vz,37,37,0|omp7w0,38,40,1|oyxvrz,38,40,1|oyxvs0,37,37,0|p5fajz,37,37,0|p5fak0,38,40,1|phnyfz,38,40,1|phnyg0,51,40,0|plmjrz,51,40,0|plmjs0,37,37,0|po5d7z,37,37,0|po5d80,38,40,1|q0e13z,38,40,1|q0e140,37,37,0|q6vfvz,37,37,0|q6vfw0,38,40,1|qj43rz,38,40,1|qj43s0,37,37,0|qpyh7z,37,37,0|qpyh80,38,40,1|r2753z,38,40,1|r27540,37,37,0|r8ojvz,37,37,0|r8ojw0,38,40,1|rkx7rz,38,40,1|rkx7s0,37,37,0|rremjz,37,37,0|rremk0,38,40,1|s3nafz,38,40,1|s3nag0,37,37,0|sa4p7z,37,37,0|sa4p80,38,40,1|smdd3z,38,40,1|smdd40,37,37,0|ssurvz,37,37,0|ssurw0,38,40,1|t53frz,38,40,1|t53fs0,37,37,0|tbkujz,37,37,0|tbkuk0,38,40,1|tntifz,38,40,1|tntig0,37,37,0|tunvvz,37,37,0|tunvw0,38,40,1|u6wjrz,38,40,1|u6wjs0,37,37,0|uddyjz,37,37,0|uddyk0,38,40,1|upmmfz,38,40,1|upmmg0,37,37,0|uw417z,37,37,0|uw4180,38,40,1|v8cp3z,38,40,1|v8cp40,37,37,0|veu3vz,37,37,0|veu3w0,38,40,1|vr2rrz,38,40,1|vr2rs0,37,37,0|vxk6jz,37,37,0|vxk6k0,38,40,1|w9sufz,38,40,1|w9sug0,37,37,0|wgn7vz,37,37,0|wgn7w0,38,40,1|wsvvrz,38,40,1|wsvvs0,37,37,0|wzdajz,37,37,0|wzdak0,38,40,1|xblyfz,38,40,1|xblyg0,37,37,0|xi3d7z,37,37,0|xi3d80,38,40,1|xuc13z,38,40,1|xuc140,37,37,0|y0tfvz,37,37,0|y0tfw0,38,40,1|yd23rz,38,40,1|yd23s0,37,37,0|yjjijz,37,37,0|yjjik0,38,40,1|yvs6fz,38,40,1|yvs6g0,37,37,0|z29l7z,37,37,0|z29l80,38,40,1|zei93z,38,40,1|zei940,37,37,0","America/Mexico_City|,0,142,0|-p1u4k0,50,66,0|-m7mko1,50,66,0|-m7mko0,45,62,0|-kf67c1,45,62,0|-kf67c0,50,66,0|-k6j3c1,50,66,0|-k6j3c0,45,62,0|-jypm01,45,62,0|-jypm00,50,66,0|-jpan81,50,66,0|-jpan80,45,62,0|-g4n8o1,45,62,0|-g4n8o0,46,63,1|-fxg241,46,63,1|-fxg240,45,62,0|-f60y01,45,62,0|-f60y00,46,63,1|-f07rg1,46,63,1|-f07rg0,45,62,0|-dlc7c1,45,62,0|-dlc7c0,47,63,1|-deaks1,47,63,1|-deaks0,45,62,0|-adljc1,45,62,0|-adljc0,46,63,1|-a4yi41,46,63,1|-a4yi40,45,62,0|dphfjz,45,62,0|dphfk0,46,63,1|dzxa3z,46,63,1|dzxa40,45,62,0|e87i7z,45,62,0|e87i80,46,63,1|eincrz,46,63,1|eincs0,45,62,0|eqxkvz,45,62,0|eqxkw0,46,63,1|f1dffz,46,63,1|f1dfg0,45,62,0|f9nnjz,45,62,0|f9nnk0,46,63,1|fkggrz,46,63,1|fkggs0,45,62,0|fsdq7z,45,62,0|fsdq80,46,63,1|g36jfz,46,63,1|g36jg0,45,62,0|gcwm7z,45,62,0|gcwm80,46,63,1|gkgrfz,46,63,1|gkgrg0,45,62,0|gu6u7z,45,62,0|gu6u80,46,63,1|h4morz,46,63,1|h4mos0,45,62,0|hcwwvz,45,62,0|hcwww0,46,63,1|hncrfz,46,63,1|hncrg0,45,62,0|hvmzjz,45,62,0|hvmzk0,46,63,1|i6fsrz,46,63,1|i6fss0,45,62,0|ied27z,45,62,0|ied280,46,63,1|ip5vfz,46,63,1|ip5vg0,45,62,0|ix34vz,45,62,0|ix34w0,46,63,1|j7vy3z,46,63,1|j7vy40,45,62,0|jft7jz,45,62,0|jft7k0,46,63,1|jqm0rz,46,63,1|jqm0s0,45,62,0|jyw8vz,45,62,0|jyw8w0,46,63,1|k9c3fz,46,63,1|k9c3g0,45,62,0|khmbjz,45,62,0|khmbk0,46,63,1|ks263z,46,63,1|ks2640,45,62,0|l0ce7z,45,62,0|l0ce80,46,63,1|lb57fz,46,63,1|lb57g0,45,62,0|lj2gvz,45,62,0|lj2gw0,46,63,1|ltva3z,46,63,1|ltva40,45,62,0|m1sjjz,45,62,0|m1sjk0,46,63,1|mclcrz,46,63,1|mclcs0,45,62,0|mkvkvz,45,62,0|mkvkw0,46,63,1|mvbffz,46,63,1|mvbfg0,45,62,0|n3lnjz,45,62,0|n3lnk0,46,63,1|ne1i3z,46,63,1|ne1i40,45,62,0|nmbq7z,45,62,0|nmbq80,46,63,1|nwrkrz,46,63,1|nwrks0,45,62,0|o51svz,45,62,0|o51sw0,46,63,1|ofum3z,46,63,1|ofum40,45,62,0|onrvjz,45,62,0|onrvk0,46,63,1|oykorz,46,63,1|oykos0,45,62,0|p6hy7z,45,62,0|p6hy80,46,63,1|pharfz,46,63,1|pharg0,45,62,0|ppkzjz,45,62,0|ppkzk0,46,63,1|q00u3z,46,63,1|q00u40,45,62,0|q8b27z,45,62,0|q8b280,46,63,1|qiqwrz,46,63,1|qiqws0,45,62,0|qr14vz,45,62,0|qr14w0,46,63,1|r1ty3z,46,63,1|r1ty40,45,62,0|r9r7jz,45,62,0|r9r7k0,46,63,1|rkk0rz,46,63,1|rkk0s0,45,62,0|rsha7z,45,62,0|rsha80,46,63,1|s3a3fz,46,63,1|s3a3g0,45,62,0|sbkbjz,45,62,0|sbkbk0,46,63,1|sm063z,46,63,1|sm0640,45,62,0|suae7z,45,62,0|suae80,46,63,1|t4q8rz,46,63,1|t4q8s0,45,62,0|td0gvz,45,62,0|td0gw0,46,63,1|tngbfz,46,63,1|tngbg0,45,62,0|tvqjjz,45,62,0|tvqjk0,46,63,1|u6jcrz,46,63,1|u6jcs0,45,62,0|uegm7z,45,62,0|uegm80,46,63,1|up9ffz,46,63,1|up9fg0,45,62,0|ux6ovz,45,62,0|ux6ow0,46,63,1|v7zi3z,46,63,1|v7zi40,45,62,0|vg9q7z,45,62,0|vg9q80,46,63,1|vqpkrz,46,63,1|vqpks0,45,62,0|vyzsvz,45,62,0|vyzsw0,46,63,1|w9fnfz,46,63,1|w9fng0,45,62,0|whpvjz,45,62,0|whpvk0,46,63,1|wsiorz,46,63,1|wsios0,45,62,0|x0fy7z,45,62,0|x0fy80,46,63,1|xb8rfz,46,63,1|xb8rg0,45,62,0|xj60vz,45,62,0|xj60w0,46,63,1|xtyu3z,46,63,1|xtyu40,45,62,0|y1w3jz,45,62,0|y1w3k0,46,63,1|ycowrz,46,63,1|ycows0,45,62,0|ykz4vz,45,62,0|ykz4w0,46,63,1|yvezfz,46,63,1|yvezg0,45,62,0|z3p7jz,45,62,0|z3p7k0,46,63,1|ze523z,46,63,1|ze5240,45,62,0","America/Miquelon|,0,143,0|-ulmyxk,32,42,0|5e3cfz,32,42,0|5e3cg0,39,44,0|908lvz,39,44,0|908lw0,40,45,1|9aogfz,40,45,1|9aogg0,39,44,0|9iyojz,39,44,0|9iyok0,40,45,1|9trhrz,40,45,1|9trhs0,39,44,0|a1or7z,39,44,0|a1or80,40,45,1|achkfz,40,45,1|achkg0,39,44,0|aketvz,39,44,0|aketw0,40,45,1|av7n3z,40,45,1|av7n40,39,44,0|b3hv7z,39,44,0|b3hv80,40,45,1|bdxprz,40,45,1|bdxps0,39,44,0|bm7xvz,39,44,0|bm7xw0,40,45,1|bwnsfz,40,45,1|bwnsg0,39,44,0|c4y0jz,39,44,0|c4y0k0,40,45,1|cfqtrz,40,45,1|cfqts0,39,44,0|cno37z,39,44,0|cno380,40,45,1|cygwfz,40,45,1|cygwg0,39,44,0|d6e5vz,39,44,0|d6e5w0,40,45,1|dh6z3z,40,45,1|dh6z40,39,44,0|dph77z,39,44,0|dph780,40,45,1|dzx1rz,40,45,1|dzx1s0,39,44,0|e879vz,39,44,0|e879w0,40,45,1|ein4fz,40,45,1|ein4g0,39,44,0|eqxcjz,39,44,0|eqxck0,40,45,1|f1d73z,40,45,1|f1d740,39,44,0|f9nf7z,39,44,0|f9nf80,40,45,1|fkg8fz,40,45,1|fkg8g0,39,44,0|fsdhvz,39,44,0|fsdhw0,40,45,1|g36b3z,40,45,1|g36b40,39,44,0|gb3kjz,39,44,0|gb3kk0,40,45,1|glwdrz,40,45,1|glwds0,39,44,0|gu6lvz,39,44,0|gu6lw0,40,45,1|h4mgfz,40,45,1|h4mgg0,39,44,0|hcwojz,39,44,0|hcwok0,40,45,1|hncj3z,40,45,1|hncj40,39,44,0|hvmr7z,39,44,0|hvmr80,40,45,1|i6fkfz,40,45,1|i6fkg0,39,44,0|iectvz,39,44,0|iectw0,40,45,1|ip5n3z,40,45,1|ip5n40,39,44,0|ix2wjz,39,44,0|ix2wk0,40,45,1|j7vprz,40,45,1|j7vps0,39,44,0|jeq37z,39,44,0|jeq380,40,45,1|jqyr3z,40,45,1|jqyr40,39,44,0|jxg5vz,39,44,0|jxg5w0,40,45,1|k9otrz,40,45,1|k9ots0,39,44,0|kg68jz,39,44,0|kg68k0,40,45,1|ksewfz,40,45,1|ksewg0,39,44,0|kz99vz,39,44,0|kz99w0,40,45,1|lbhxrz,40,45,1|lbhxs0,39,44,0|lhzcjz,39,44,0|lhzck0,40,45,1|lu80fz,40,45,1|lu80g0,39,44,0|m0pf7z,39,44,0|m0pf80,40,45,1|mcy33z,40,45,1|mcy340,39,44,0|mjfhvz,39,44,0|mjfhw0,40,45,1|mvo5rz,40,45,1|mvo5s0,39,44,0|n25kjz,39,44,0|n25kk0,40,45,1|nee8fz,40,45,1|nee8g0,39,44,0|nkvn7z,39,44,0|nkvn80,40,45,1|nx4b3z,40,45,1|nx4b40,39,44,0|o3yojz,39,44,0|o3yok0,40,45,1|og7cfz,40,45,1|og7cg0,39,44,0|omor7z,39,44,0|omor80,40,45,1|oyxf3z,40,45,1|oyxf40,39,44,0|p5etvz,39,44,0|p5etw0,40,45,1|phnhrz,40,45,1|phnhs0,39,44,0|po4wjz,39,44,0|po4wk0,40,45,1|q0dkfz,40,45,1|q0dkg0,39,44,0|q6uz7z,39,44,0|q6uz80,40,45,1|qj3n3z,40,45,1|qj3n40,39,44,0|qpy0jz,39,44,0|qpy0k0,40,45,1|r26ofz,40,45,1|r26og0,39,44,0|r8o37z,39,44,0|r8o380,40,45,1|rkwr3z,40,45,1|rkwr40,39,44,0|rre5vz,39,44,0|rre5w0,40,45,1|s3mtrz,40,45,1|s3mts0,39,44,0|sa48jz,39,44,0|sa48k0,40,45,1|smcwfz,40,45,1|smcwg0,39,44,0|ssub7z,39,44,0|ssub80,40,45,1|t52z3z,40,45,1|t52z40,39,44,0|tbkdvz,39,44,0|tbkdw0,40,45,1|tnt1rz,40,45,1|tnt1s0,39,44,0|tunf7z,39,44,0|tunf80,40,45,1|u6w33z,40,45,1|u6w340,39,44,0|uddhvz,39,44,0|uddhw0,40,45,1|upm5rz,40,45,1|upm5s0,39,44,0|uw3kjz,39,44,0|uw3kk0,40,45,1|v8c8fz,40,45,1|v8c8g0,39,44,0|vetn7z,39,44,0|vetn80,40,45,1|vr2b3z,40,45,1|vr2b40,39,44,0|vxjpvz,39,44,0|vxjpw0,40,45,1|w9sdrz,40,45,1|w9sds0,39,44,0|wgmr7z,39,44,0|wgmr80,40,45,1|wsvf3z,40,45,1|wsvf40,39,44,0|wzctvz,39,44,0|wzctw0,40,45,1|xblhrz,40,45,1|xblhs0,39,44,0|xi2wjz,39,44,0|xi2wk0,40,45,1|xubkfz,40,45,1|xubkg0,39,44,0|y0sz7z,39,44,0|y0sz80,40,45,1|yd1n3z,40,45,1|yd1n40,39,44,0|yjj1vz,39,44,0|yjj1w0,40,45,1|yvrprz,40,45,1|yvrps0,39,44,0|z294jz,39,44,0|z294k0,40,45,1|zehsfz,40,45,1|zehsg0,39,44,0","America/Moncton|,0,144,0|-18wys04,49,63,0|-z94i41,49,63,0|-z94i40,32,42,0|-qzp0o1,32,42,0|-qzp0o0,54,44,1|-qpm4s1,54,44,1|-qpm4s0,32,42,0|-j2ve41,32,42,0|-j2ve40,54,44,1|-iy6y81,54,44,1|-iy6y80,32,42,0|-ik5bg1,32,42,0|-ik5bg0,54,44,1|-ifgvk1,54,44,1|-ifgvk0,32,42,0|-i1f8s1,32,42,0|-i1f8s0,54,44,1|-hwqsw1,54,44,1|-hwqsw0,32,42,0|-hip641,32,42,0|-hip640,54,44,1|-he0q81,54,44,1|-he0q80,32,42,0|-gzz3g1,32,42,0|-gzz3g0,54,44,1|-gvank1,54,44,1|-gvank0,32,42,0|-gh90s1,32,42,0|-gh90s0,54,44,1|-gckkw1,54,44,1|-gckkw0,32,42,0|-fyxrg1,32,42,0|-fyxrg0,54,44,1|-fstgw1,54,44,1|-fstgw0,32,42,0|-fgiss1,32,42,0|-fgiss0,54,44,1|-fa3e81,54,44,1|-fa3e80,32,42,0|-eying1,32,42,0|-eying0,54,44,1|-er0cw1,54,44,1|-er0cw0,32,42,0|-ek27c1,32,42,0|-ek27c0,33,44,1|-cq2tg1,33,44,1|-cq2tg0,34,44,1|-cnp641,34,44,1|-cnp640,32,42,0|-ccw7c1,32,42,0|-ccw7c0,54,44,1|-c4z3g1,54,44,1|-c4z3g0,32,42,0|-bu64o1,32,42,0|-bu64o0,54,44,1|-bm90s1,54,44,1|-bm90s0,32,42,0|-bbg201,32,42,0|-bbg200,54,44,1|-b3iy41,54,44,1|-b3iy40,32,42,0|-aspzc1,32,42,0|-aspzc0,54,44,1|-aksvg1,54,44,1|-aksvg0,32,42,0|-a9my01,32,42,0|-a9my00,54,44,1|-a22ss1,54,44,1|-a22ss0,32,42,0|-9qwvc1,32,42,0|-9qwvc0,54,44,1|-9izrg1,54,44,1|-9izrg0,32,42,0|-986so1,32,42,0|-986so0,54,44,1|-909os1,54,44,1|-909os0,32,42,0|-8pgq01,32,42,0|-8pgq00,54,44,1|-8hjm41,54,44,1|-8hjm40,32,42,0|-86qnc1,32,42,0|-86qnc0,54,44,1|-7ytjg1,54,44,1|-7ytjg0,32,42,0|-7o0ko1,32,42,0|-7o0ko0,54,44,1|-7g3gs1,54,44,1|-7g3gs0,32,42,0|-74xjc1,32,42,0|-74xjc0,54,44,1|-6x0fg1,54,44,1|-6x0fg0,32,42,0|-6m7go1,32,42,0|-6m7go0,54,44,1|-6cui41,54,44,1|-6cui40,32,42,0|-63he01,32,42,0|-63he00,54,44,1|-5u4fg1,54,44,1|-5u4fg0,32,42,0|-5krbc1,32,42,0|-5krbc0,54,44,1|-5becs1,54,44,1|-5becs0,32,42,0|-5218o1,32,42,0|-5218o0,54,44,1|-4sbbg1,54,44,1|-4sbbg0,32,42,0|-4iy7c1,32,42,0|-4iy7c0,54,44,1|-49l8s1,54,44,1|-49l8s0,32,42,0|-4084o1,32,42,0|-4084o0,54,44,1|-3qv641,54,44,1|-3qv640,32,42,0|-3hi201,32,42,0|-3hi200,54,44,1|-3853g1,54,44,1|-3853g0,32,42,0|-2yrzc1,32,42,0|-2yrzc0,54,44,1|-2pf0s1,54,44,1|-2pf0s0,32,42,0|-2g1wo1,32,42,0|-2g1wo0,54,44,1|-26bzg1,54,44,1|-26bzg0,32,42,0|-1xbu01,32,42,0|-1xbu00,54,44,1|-1nlws1,54,44,1|-1nlws0,32,42,0|-1e8so1,32,42,0|-1e8so0,54,44,1|-14vu41,54,44,1|-14vu40,32,42,0|-viq01,32,42,0|-viq00,54,44,1|-m5rg1,54,44,1|-m5rg0,32,42,0|-csnc1,32,42,0|-csnc0,54,44,1|-3fos1,54,44,1|-3fos0,32,42,0|5xfbz,32,42,0|5xfc0,54,44,1|fadvz,54,44,1|fadw0,32,42,0|onhzz,32,42,0|oni00,54,44,1|ydf7z,54,44,1|ydf80,32,42,0|17qjbz,32,42,0|17qjc0,54,44,1|1h3hvz,54,44,1|1h3hw0,32,42,0|296onz,32,42,0|296oo0,54,44,1|2ijn7z,54,44,1|2ijn80,32,42,0|2rwrbz,32,42,0|2rwrc0,54,44,1|319pvz,54,44,1|319pw0,32,42,0|3amtzz,32,42,0|3amu00,54,44,1|3kcr7z,54,44,1|3kcr80,32,42,0|3tcwnz,32,42,0|3tcwo0,54,44,1|432tvz,54,44,1|432tw0,32,42,0|4cfxzz,32,42,0|4cfy00,54,44,1|4lswjz,54,44,1|4lswk0,32,42,0|4v60nz,32,42,0|4v60o0,54,44,1|54iz7z,54,44,1|54iz80,32,42,0|5dw3bz,32,42,0|5dw3c0,54,44,1|5n91vz,54,44,1|5n91w0,32,42,0|5wm5zz,32,42,0|5wm600,54,44,1|65z4jz,54,44,1|65z4k0,32,42,0|6fc8nz,32,42,0|6fc8o0,54,44,1|6p25vz,54,44,1|6p25w0,32,42,0|6y2bbz,32,42,0|6y2bc0,54,44,1|77s8jz,54,44,1|77s8k0,32,42,0|7h5cnz,32,42,0|7h5co0,54,44,1|7qib7z,54,44,1|7qib80,32,42,0|7zvfbz,32,42,0|7zvfc0,54,44,1|898dvz,54,44,1|898dw0,32,42,0|8ilhzz,32,42,0|8ili00,54,44,1|8rygjz,54,44,1|8rygk0,32,42,0|908onz,32,42,0|908oo0,54,44,1|9aoj7z,54,44,1|9aoj80,32,42,0|9iyrbz,32,42,0|9iyrc0,54,44,1|9trkjz,54,44,1|9trkk0,32,42,0|a1otzz,32,42,0|a1ou00,54,44,1|achn7z,54,44,1|achn80,32,42,0|akewnz,32,42,0|akewo0,54,44,1|av7pvz,54,44,1|av7pw0,32,42,0|b3hxzz,32,42,0|b3hy00,54,44,1|bdxsjz,54,44,1|bdxsk0,32,42,0|bm80nz,32,42,0|bm80o0,54,44,1|bwnv7z,54,44,1|bwnv80,32,42,0|c4xxtn,32,42,0|c4xxto,54,44,1|cfqr1n,54,44,1|cfqr1o,32,42,0|cno0hn,32,42,0|cno0ho,54,44,1|cygtpn,54,44,1|cygtpo,32,42,0|d6e35n,32,42,0|d6e35o,54,44,1|dh6wdn,54,44,1|dh6wdo,32,42,0|dph4hn,32,42,0|dph4ho,54,44,1|dzwz1n,54,44,1|dzwz1o,32,42,0|e8775n,32,42,0|e8775o,54,44,1|ein1pn,54,44,1|ein1po,32,42,0|eqx9tn,32,42,0|eqx9to,54,44,1|f1d4dn,54,44,1|f1d4do,32,42,0|f9nchn,32,42,0|f9ncho,54,44,1|fkg5pn,54,44,1|fkg5po,32,42,0|fsdf5n,32,42,0|fsdf5o,54,44,1|g368dn,54,44,1|g368do,32,42,0|gb3htn,32,42,0|gb3hto,54,44,1|glwb1n,54,44,1|glwb1o,32,42,0|gu6j5n,32,42,0|gu6j5o,54,44,1|h4mdpn,54,44,1|h4mdpo,32,42,0|hcwltn,32,42,0|hcwlto,54,44,1|hncgdn,54,44,1|hncgdo,32,42,0|hvmohn,32,42,0|hvmoho,54,44,1|i6fhpn,54,44,1|i6fhpo,32,42,0|iecr5n,32,42,0|iecr5o,54,44,1|ip5kdn,54,44,1|ip5kdo,32,42,0|ix2ttn,32,42,0|ix2tto,54,44,1|j7vn1n,54,44,1|j7vn1o,32,42,0|jeq5zz,32,42,0|jeq600,54,44,1|jqytvz,54,44,1|jqytw0,32,42,0|jxg8nz,32,42,0|jxg8o0,54,44,1|k9owjz,54,44,1|k9owk0,32,42,0|kg6bbz,32,42,0|kg6bc0,54,44,1|ksez7z,54,44,1|ksez80,32,42,0|kz9cnz,32,42,0|kz9co0,54,44,1|lbi0jz,54,44,1|lbi0k0,32,42,0|lhzfbz,32,42,0|lhzfc0,54,44,1|lu837z,54,44,1|lu8380,32,42,0|m0phzz,32,42,0|m0pi00,54,44,1|mcy5vz,54,44,1|mcy5w0,32,42,0|mjfknz,32,42,0|mjfko0,54,44,1|mvo8jz,54,44,1|mvo8k0,32,42,0|n25nbz,32,42,0|n25nc0,54,44,1|neeb7z,54,44,1|neeb80,32,42,0|nkvpzz,32,42,0|nkvq00,54,44,1|nx4dvz,54,44,1|nx4dw0,32,42,0|o3yrbz,32,42,0|o3yrc0,54,44,1|og7f7z,54,44,1|og7f80,32,42,0|omotzz,32,42,0|omou00,54,44,1|oyxhvz,54,44,1|oyxhw0,32,42,0|p5ewnz,32,42,0|p5ewo0,54,44,1|phnkjz,54,44,1|phnkk0,32,42,0|po4zbz,32,42,0|po4zc0,54,44,1|q0dn7z,54,44,1|q0dn80,32,42,0|q6v1zz,32,42,0|q6v200,54,44,1|qj3pvz,54,44,1|qj3pw0,32,42,0|qpy3bz,32,42,0|qpy3c0,54,44,1|r26r7z,54,44,1|r26r80,32,42,0|r8o5zz,32,42,0|r8o600,54,44,1|rkwtvz,54,44,1|rkwtw0,32,42,0|rre8nz,32,42,0|rre8o0,54,44,1|s3mwjz,54,44,1|s3mwk0,32,42,0|sa4bbz,32,42,0|sa4bc0,54,44,1|smcz7z,54,44,1|smcz80,32,42,0|ssudzz,32,42,0|ssue00,54,44,1|t531vz,54,44,1|t531w0,32,42,0|tbkgnz,32,42,0|tbkgo0,54,44,1|tnt4jz,54,44,1|tnt4k0,32,42,0|tunhzz,32,42,0|tuni00,54,44,1|u6w5vz,54,44,1|u6w5w0,32,42,0|uddknz,32,42,0|uddko0,54,44,1|upm8jz,54,44,1|upm8k0,32,42,0|uw3nbz,32,42,0|uw3nc0,54,44,1|v8cb7z,54,44,1|v8cb80,32,42,0|vetpzz,32,42,0|vetq00,54,44,1|vr2dvz,54,44,1|vr2dw0,32,42,0|vxjsnz,32,42,0|vxjso0,54,44,1|w9sgjz,54,44,1|w9sgk0,32,42,0|wgmtzz,32,42,0|wgmu00,54,44,1|wsvhvz,54,44,1|wsvhw0,32,42,0|wzcwnz,32,42,0|wzcwo0,54,44,1|xblkjz,54,44,1|xblkk0,32,42,0|xi2zbz,32,42,0|xi2zc0,54,44,1|xubn7z,54,44,1|xubn80,32,42,0|y0t1zz,32,42,0|y0t200,54,44,1|yd1pvz,54,44,1|yd1pw0,32,42,0|yjj4nz,32,42,0|yjj4o0,54,44,1|yvrsjz,54,44,1|yvrsk0,32,42,0|z297bz,32,42,0|z297c0,54,44,1|zehv7z,54,44,1|zehv80,32,42,0","America/Monterrey|,0,145,0|-p1u7c0,45,62,0|9iywvz,45,62,0|9iyww0,46,63,1|9trq3z,46,63,1|9trq40,45,62,0|dphfjz,45,62,0|dphfk0,46,63,1|dzxa3z,46,63,1|dzxa40,45,62,0|e87i7z,45,62,0|e87i80,46,63,1|eincrz,46,63,1|eincs0,45,62,0|eqxkvz,45,62,0|eqxkw0,46,63,1|f1dffz,46,63,1|f1dfg0,45,62,0|f9nnjz,45,62,0|f9nnk0,46,63,1|fkggrz,46,63,1|fkggs0,45,62,0|fsdq7z,45,62,0|fsdq80,46,63,1|g36jfz,46,63,1|g36jg0,45,62,0|gcwm7z,45,62,0|gcwm80,46,63,1|gkgrfz,46,63,1|gkgrg0,45,62,0|gu6u7z,45,62,0|gu6u80,46,63,1|h4morz,46,63,1|h4mos0,45,62,0|hcwwvz,45,62,0|hcwww0,46,63,1|hncrfz,46,63,1|hncrg0,45,62,0|hvmzjz,45,62,0|hvmzk0,46,63,1|i6fsrz,46,63,1|i6fss0,45,62,0|ied27z,45,62,0|ied280,46,63,1|ip5vfz,46,63,1|ip5vg0,45,62,0|ix34vz,45,62,0|ix34w0,46,63,1|j7vy3z,46,63,1|j7vy40,45,62,0|jft7jz,45,62,0|jft7k0,46,63,1|jqm0rz,46,63,1|jqm0s0,45,62,0|jyw8vz,45,62,0|jyw8w0,46,63,1|k9c3fz,46,63,1|k9c3g0,45,62,0|khmbjz,45,62,0|khmbk0,46,63,1|ks263z,46,63,1|ks2640,45,62,0|l0ce7z,45,62,0|l0ce80,46,63,1|lb57fz,46,63,1|lb57g0,45,62,0|lj2gvz,45,62,0|lj2gw0,46,63,1|ltva3z,46,63,1|ltva40,45,62,0|m1sjjz,45,62,0|m1sjk0,46,63,1|mclcrz,46,63,1|mclcs0,45,62,0|mkvkvz,45,62,0|mkvkw0,46,63,1|mvbffz,46,63,1|mvbfg0,45,62,0|n3lnjz,45,62,0|n3lnk0,46,63,1|ne1i3z,46,63,1|ne1i40,45,62,0|nmbq7z,45,62,0|nmbq80,46,63,1|nwrkrz,46,63,1|nwrks0,45,62,0|o51svz,45,62,0|o51sw0,46,63,1|ofum3z,46,63,1|ofum40,45,62,0|onrvjz,45,62,0|onrvk0,46,63,1|oykorz,46,63,1|oykos0,45,62,0|p6hy7z,45,62,0|p6hy80,46,63,1|pharfz,46,63,1|pharg0,45,62,0|ppkzjz,45,62,0|ppkzk0,46,63,1|q00u3z,46,63,1|q00u40,45,62,0|q8b27z,45,62,0|q8b280,46,63,1|qiqwrz,46,63,1|qiqws0,45,62,0|qr14vz,45,62,0|qr14w0,46,63,1|r1ty3z,46,63,1|r1ty40,45,62,0|r9r7jz,45,62,0|r9r7k0,46,63,1|rkk0rz,46,63,1|rkk0s0,45,62,0|rsha7z,45,62,0|rsha80,46,63,1|s3a3fz,46,63,1|s3a3g0,45,62,0|sbkbjz,45,62,0|sbkbk0,46,63,1|sm063z,46,63,1|sm0640,45,62,0|suae7z,45,62,0|suae80,46,63,1|t4q8rz,46,63,1|t4q8s0,45,62,0|td0gvz,45,62,0|td0gw0,46,63,1|tngbfz,46,63,1|tngbg0,45,62,0|tvqjjz,45,62,0|tvqjk0,46,63,1|u6jcrz,46,63,1|u6jcs0,45,62,0|uegm7z,45,62,0|uegm80,46,63,1|up9ffz,46,63,1|up9fg0,45,62,0|ux6ovz,45,62,0|ux6ow0,46,63,1|v7zi3z,46,63,1|v7zi40,45,62,0|vg9q7z,45,62,0|vg9q80,46,63,1|vqpkrz,46,63,1|vqpks0,45,62,0|vyzsvz,45,62,0|vyzsw0,46,63,1|w9fnfz,46,63,1|w9fng0,45,62,0|whpvjz,45,62,0|whpvk0,46,63,1|wsiorz,46,63,1|wsios0,45,62,0|x0fy7z,45,62,0|x0fy80,46,63,1|xb8rfz,46,63,1|xb8rg0,45,62,0|xj60vz,45,62,0|xj60w0,46,63,1|xtyu3z,46,63,1|xtyu40,45,62,0|y1w3jz,45,62,0|y1w3k0,46,63,1|ycowrz,46,63,1|ycows0,45,62,0|ykz4vz,45,62,0|ykz4w0,46,63,1|yvezfz,46,63,1|yvezg0,45,62,0|z3p7jz,45,62,0|z3p7k0,46,63,1|ze523z,46,63,1|ze5240,45,62,0","America/Montevideo|,0,146,0|-w4mll9,21,146,0|-px809a,21,146,0|-px8099,42,42,0|-o50vk1,42,42,0|-o50vk0,39,44,1|-nvm2c1,39,44,1|-nvm2c0,81,101,0|-nm74y1,81,101,0|-nm74y0,39,44,1|-ncu501,39,44,1|-ncu500,81,101,0|-n3f7m1,81,101,0|-n3f7m0,39,44,1|-mu27o1,39,44,1|-mu27o0,81,101,0|-ivo8y1,81,101,0|-ivo8y0,39,44,1|-inr3o1,39,44,1|-inr3o0,81,101,0|-icy6a1,81,101,0|-icy6a0,39,44,1|-i51101,39,44,1|-i51100,81,101,0|-hu83m1,81,101,0|-hu83m0,39,44,1|-hmayc1,39,44,1|-hmayc0,81,101,0|-hbi0y1,81,101,0|-hbi0y0,39,44,1|-h3kvo1,39,44,1|-h3kvo0,81,101,0|-gsezm1,81,101,0|-gsezm0,39,44,1|-gkut01,39,44,1|-gkut00,81,101,0|-g9owy1,81,101,0|-g9owy0,39,44,1|-g24qc1,39,44,1|-g24qc0,81,101,0|-fseoy1,81,101,0|-fseoy0,39,44,1|-fj1p01,39,44,1|-fj1p00,81,101,0|-f88rm1,81,101,0|-f88rm0,39,44,1|-f0bmc1,39,44,1|-f0bmc0,81,101,0|-etxya1,81,101,0|-etxya0,39,44,1|-e482c1,39,44,1|-e482c0,82,102,1|-dzlfq1,82,102,1|-dzlfq0,39,44,0|-5jbp01,39,44,0|-5jbp00,82,102,1|-5abnq1,82,102,1|-5abnq0,39,44,0|-572yc1,39,44,0|-572yc0,40,45,1|-54kag1,40,45,1|-54kag0,39,44,0|-2h5101,39,44,0|-2h5100,40,45,1|-285141,40,45,1|-285140,39,44,0|-u1901,39,44,0|-u1900,82,102,1|-kd521,82,102,1|-kd520,39,44,0|5vcbz,39,44,0|5vcc0,40,45,1|8fuvz,40,45,1|8fuw0,39,44,0|17dcbz,39,44,0|17dcc0,40,45,1|1botjz,40,45,1|1botk0,39,44,0|23s0bz,39,44,0|23s0c0,83,147,1|26nlhz,83,147,1|26nli0,82,102,1|2fnqxz,82,102,1|2fnqy0,39,44,0|2lf6zz,39,44,0|2lf700,40,45,1|2qgljz,40,45,1|2qglk0,39,44,0|3mvcbz,39,44,0|3mvcc0,40,45,1|3qtuvz,40,45,1|3qtuw0,39,44,0|44vhnz,39,44,0|44vho0,40,45,1|49jxjz,40,45,1|49jxk0,39,44,0|4obhnz,39,44,0|4obho0,40,45,1|4sa07z,40,45,1|4sa080,39,44,0|4v5sbz,39,44,0|4v5sc0,40,45,1|5bq07z,40,45,1|5bq080,39,44,0|9d8yzz,39,44,0|9d8z00,40,45,1|9h5mvz,40,45,1|9h5mw0,39,44,0|9vx6zz,39,44,0|9vx700,40,45,1|a08o7z,40,45,1|a08o80,39,44,0|achhnz,39,44,0|achho0,40,45,1|ails7z,40,45,1|ails80,39,44,0|auulnz,39,44,0|auulo0,40,45,1|b1otjz,40,45,1|b1otk0,39,44,0|bdxmzz,39,44,0|bdxn00,40,45,1|bkew7z,40,45,1|bkew80,39,44,0|bwaqzz,39,44,0|bwar00,40,45,1|c34yvz,40,45,1|c34yw0,39,44,0|i49pnz,39,44,0|i49po0,40,45,1|idzsfz,40,45,1|idzsg0,39,44,0|io2tvz,39,44,0|io2tw0,40,45,1|ivzxrz,40,45,1|ivzxs0,39,44,0|j6fxvz,39,44,0|j6fxw0,40,45,1|jeq0fz,40,45,1|jeq0g0,39,44,0|jpiz7z,39,44,0|jpiz80,40,45,1|jxg33z,40,45,1|jxg340,39,44,0|k891vz,39,44,0|k891w0,40,45,1|kg65rz,40,45,1|kg65s0,39,44,0|kqz4jz,39,44,0|kqz4k0,40,45,1|kz973z,40,45,1|kz9740,39,44,0|l9p77z,39,44,0|l9p780,40,45,1|lhz9rz,40,45,1|lhz9s0,39,44,0|lsf9vz,39,44,0|lsf9w0,40,45,1|m0pcfz,40,45,1|m0pcg0,39,44,0|mbib7z,39,44,0|mbib80,40,45,1|mjff3z,40,45,1|mjff40,39,44,0|mu8dvz,39,44,0|mu8dw0,40,45,1|n25hrz,40,45,1|n25hs0,39,44,0|ncygjz,39,44,0|ncygk0,40,45,1|nkvkfz,40,45,1|nkvkg0,39,44,0","America/Montserrat|,0,41,0|-u6m79w,32,42,0","America/Nassau|,0,148,0|-u6m4c6,49,63,0|-efufg1,49,63,0|-efufg0,70,42,1|-d1oy81,70,42,1|-d1oy80,49,63,0|-d03gs1,49,63,0|-d03gs0,70,42,1|-cq2tg1,70,42,1|-cq2tg0,71,42,1|-cmrww1,71,42,1|-cmrww0,49,63,0|-2yrwk1,49,63,0|-2yrwk0,62,42,1|-2pey01,62,42,1|-2pey00,49,63,0|-2g1tw1,49,63,0|-2g1tw0,62,42,1|-26bwo1,62,42,1|-26bwo0,49,63,0|-1xbr81,49,63,0|-1xbr80,62,42,1|-1nlu01,62,42,1|-1nlu00,49,63,0|-1e8pw1,49,63,0|-1e8pw0,62,42,1|-14vrc1,62,42,1|-14vrc0,49,63,0|-vin81,49,63,0|-vin80,62,42,1|-m5oo1,62,42,1|-m5oo0,49,63,0|-cskk1,49,63,0|-cskk0,62,42,1|-3fm01,62,42,1|-3fm00,49,63,0|5xi3z,49,63,0|5xi40,62,42,1|fagnz,62,42,1|fago0,49,63,0|onkrz,49,63,0|onks0,62,42,1|ydhzz,62,42,1|ydi00,49,63,0|17qm3z,49,63,0|17qm40,62,42,1|1h3knz,62,42,1|1h3ko0,49,63,0|1qgorz,49,63,0|1qgos0,62,42,1|1ztnbz,62,42,1|1ztnc0,49,63,0|296rfz,49,63,0|296rg0,62,42,1|2ijpzz,62,42,1|2ijq00,49,63,0|2rwu3z,49,63,0|2rwu40,62,42,1|319snz,62,42,1|319so0,49,63,0|3amwrz,49,63,0|3amws0,62,42,1|3kctzz,62,42,1|3kcu00,49,63,0|3tczfz,49,63,0|3tczg0,62,42,1|432wnz,62,42,1|432wo0,49,63,0|4cg0rz,49,63,0|4cg0s0,62,42,1|4lszbz,62,42,1|4lszc0,49,63,0|4v63fz,49,63,0|4v63g0,62,42,1|54j1zz,62,42,1|54j200,49,63,0|5dw63z,49,63,0|5dw640,62,42,1|5n94nz,62,42,1|5n94o0,49,63,0|5wm8rz,49,63,0|5wm8s0,62,42,1|65z7bz,62,42,1|65z7c0,49,63,0|6fcbfz,49,63,0|6fcbg0,62,42,1|6p28nz,62,42,1|6p28o0,49,63,0|6y2e3z,49,63,0|6y2e40,62,42,1|77sbbz,62,42,1|77sbc0,49,63,0|7h5ffz,49,63,0|7h5fg0,62,42,1|7qidzz,62,42,1|7qie00,49,63,0|7zvi3z,49,63,0|7zvi40,62,42,1|898gnz,62,42,1|898go0,49,63,0|8ilkrz,49,63,0|8ilks0,62,42,1|8ryjbz,62,42,1|8ryjc0,49,63,0|908rfz,49,63,0|908rg0,62,42,1|9aolzz,62,42,1|9aom00,49,63,0|9iyu3z,49,63,0|9iyu40,62,42,1|9trnbz,62,42,1|9trnc0,49,63,0|a1owrz,49,63,0|a1ows0,62,42,1|achpzz,62,42,1|achq00,49,63,0|akezfz,49,63,0|akezg0,62,42,1|av7snz,62,42,1|av7so0,49,63,0|b3i0rz,49,63,0|b3i0s0,62,42,1|bdxvbz,62,42,1|bdxvc0,49,63,0|bm83fz,49,63,0|bm83g0,62,42,1|bwnxzz,62,42,1|bwny00,49,63,0|c4y63z,49,63,0|c4y640,62,42,1|cfqzbz,62,42,1|cfqzc0,49,63,0|cno8rz,49,63,0|cno8s0,62,42,1|cyh1zz,62,42,1|cyh200,49,63,0|d6ebfz,49,63,0|d6ebg0,62,42,1|dh74nz,62,42,1|dh74o0,49,63,0|dphcrz,49,63,0|dphcs0,62,42,1|dzx7bz,62,42,1|dzx7c0,49,63,0|e87ffz,49,63,0|e87fg0,62,42,1|ein9zz,62,42,1|eina00,49,63,0|eqxi3z,49,63,0|eqxi40,62,42,1|f1dcnz,62,42,1|f1dco0,49,63,0|f9nkrz,49,63,0|f9nks0,62,42,1|fkgdzz,62,42,1|fkge00,49,63,0|fsdnfz,49,63,0|fsdng0,62,42,1|g36gnz,62,42,1|g36go0,49,63,0|gb3q3z,49,63,0|gb3q40,62,42,1|glwjbz,62,42,1|glwjc0,49,63,0|gu6rfz,49,63,0|gu6rg0,62,42,1|h4mlzz,62,42,1|h4mm00,49,63,0|hcwu3z,49,63,0|hcwu40,62,42,1|hnconz,62,42,1|hncoo0,49,63,0|hvmwrz,49,63,0|hvmws0,62,42,1|i6fpzz,62,42,1|i6fq00,49,63,0|ieczfz,49,63,0|ieczg0,62,42,1|ip5snz,62,42,1|ip5so0,49,63,0|ix323z,49,63,0|ix3240,62,42,1|j7vvbz,62,42,1|j7vvc0,49,63,0|jeq8rz,49,63,0|jeq8s0,62,42,1|jqywnz,62,42,1|jqywo0,49,63,0|jxgbfz,49,63,0|jxgbg0,62,42,1|k9ozbz,62,42,1|k9ozc0,49,63,0|kg6e3z,49,63,0|kg6e40,62,42,1|ksf1zz,62,42,1|ksf200,49,63,0|kz9ffz,49,63,0|kz9fg0,62,42,1|lbi3bz,62,42,1|lbi3c0,49,63,0|lhzi3z,49,63,0|lhzi40,62,42,1|lu85zz,62,42,1|lu8600,49,63,0|m0pkrz,49,63,0|m0pks0,62,42,1|mcy8nz,62,42,1|mcy8o0,49,63,0|mjfnfz,49,63,0|mjfng0,62,42,1|mvobbz,62,42,1|mvobc0,49,63,0|n25q3z,49,63,0|n25q40,62,42,1|needzz,62,42,1|neee00,49,63,0|nkvsrz,49,63,0|nkvss0,62,42,1|nx4gnz,62,42,1|nx4go0,49,63,0|o3yu3z,49,63,0|o3yu40,62,42,1|og7hzz,62,42,1|og7i00,49,63,0|omowrz,49,63,0|omows0,62,42,1|oyxknz,62,42,1|oyxko0,49,63,0|p5ezfz,49,63,0|p5ezg0,62,42,1|phnnbz,62,42,1|phnnc0,49,63,0|po523z,49,63,0|po5240,62,42,1|q0dpzz,62,42,1|q0dq00,49,63,0|q6v4rz,49,63,0|q6v4s0,62,42,1|qj3snz,62,42,1|qj3so0,49,63,0|qpy63z,49,63,0|qpy640,62,42,1|r26tzz,62,42,1|r26u00,49,63,0|r8o8rz,49,63,0|r8o8s0,62,42,1|rkwwnz,62,42,1|rkwwo0,49,63,0|rrebfz,49,63,0|rrebg0,62,42,1|s3mzbz,62,42,1|s3mzc0,49,63,0|sa4e3z,49,63,0|sa4e40,62,42,1|smd1zz,62,42,1|smd200,49,63,0|ssugrz,49,63,0|ssugs0,62,42,1|t534nz,62,42,1|t534o0,49,63,0|tbkjfz,49,63,0|tbkjg0,62,42,1|tnt7bz,62,42,1|tnt7c0,49,63,0|tunkrz,49,63,0|tunks0,62,42,1|u6w8nz,62,42,1|u6w8o0,49,63,0|uddnfz,49,63,0|uddng0,62,42,1|upmbbz,62,42,1|upmbc0,49,63,0|uw3q3z,49,63,0|uw3q40,62,42,1|v8cdzz,62,42,1|v8ce00,49,63,0|vetsrz,49,63,0|vetss0,62,42,1|vr2gnz,62,42,1|vr2go0,49,63,0|vxjvfz,49,63,0|vxjvg0,62,42,1|w9sjbz,62,42,1|w9sjc0,49,63,0|wgmwrz,49,63,0|wgmws0,62,42,1|wsvknz,62,42,1|wsvko0,49,63,0|wzczfz,49,63,0|wzczg0,62,42,1|xblnbz,62,42,1|xblnc0,49,63,0|xi323z,49,63,0|xi3240,62,42,1|xubpzz,62,42,1|xubq00,49,63,0|y0t4rz,49,63,0|y0t4s0,62,42,1|yd1snz,62,42,1|yd1so0,49,63,0|yjj7fz,49,63,0|yjj7g0,62,42,1|yvrvbz,62,42,1|yvrvc0,49,63,0|z29a3z,49,63,0|z29a40,62,42,1|zehxzz,62,42,1|zehy00,49,63,0","America/New_York|,0,149,0|-18y0os0,49,63,0|-r0ev81,49,63,0|-r0ev80,62,42,1|-qpm201,62,42,1|-qpm200,49,63,0|-qhosk1,49,63,0|-qhosk0,62,42,1|-q6vzc1,62,42,1|-q6vzc0,49,63,0|-pyypw1,49,63,0|-pyypw0,62,42,1|-pnsy01,62,42,1|-pnsy00,49,63,0|-pessk1,49,63,0|-pessk0,62,42,1|-p6voo1,62,42,1|-p6voo0,49,63,0|-ovpr81,49,63,0|-ovpr80,62,42,1|-oo5m01,62,42,1|-oo5m00,49,63,0|-oczok1,49,63,0|-oczok0,62,42,1|-o52ko1,62,42,1|-o52ko0,49,63,0|-nu9lw1,49,63,0|-nu9lw0,62,42,1|-nmci01,62,42,1|-nmci00,49,63,0|-nbjj81,49,63,0|-nbjj80,62,42,1|-n3mfc1,62,42,1|-n3mfc0,49,63,0|-mstgk1,49,63,0|-mstgk0,62,42,1|-mkwco1,62,42,1|-mkwco0,49,63,0|-ma3dw1,49,63,0|-ma3dw0,62,42,1|-m26a01,62,42,1|-m26a00,49,63,0|-lr0ck1,49,63,0|-lr0ck0,62,42,1|-lj38o1,62,42,1|-lj38o0,49,63,0|-l8a9w1,49,63,0|-l8a9w0,62,42,1|-l0d601,62,42,1|-l0d600,49,63,0|-kpk781,49,63,0|-kpk780,62,42,1|-khn3c1,62,42,1|-khn3c0,49,63,0|-k6u4k1,49,63,0|-k6u4k0,62,42,1|-jyx0o1,62,42,1|-jyx0o0,49,63,0|-jo41w1,49,63,0|-jo41w0,62,42,1|-jg6y01,62,42,1|-jg6y00,49,63,0|-j510k1,49,63,0|-j510k0,62,42,1|-ixgvc1,62,42,1|-ixgvc0,49,63,0|-imaxw1,49,63,0|-imaxw0,62,42,1|-iedu01,62,42,1|-iedu00,49,63,0|-i3kv81,49,63,0|-i3kv80,62,42,1|-hvnrc1,62,42,1|-hvnrc0,49,63,0|-hkusk1,49,63,0|-hkusk0,62,42,1|-hcxoo1,62,42,1|-hcxoo0,49,63,0|-h24pw1,49,63,0|-h24pw0,62,42,1|-gu7m01,62,42,1|-gu7m00,49,63,0|-gjen81,49,63,0|-gjen80,62,42,1|-gbhjc1,62,42,1|-gbhjc0,49,63,0|-g0blw1,49,63,0|-g0blw0,62,42,1|-fsrgo1,62,42,1|-fsrgo0,49,63,0|-fhlj81,49,63,0|-fhlj80,62,42,1|-f9ofc1,62,42,1|-f9ofc0,49,63,0|-eyvgk1,49,63,0|-eyvgk0,62,42,1|-eqyco1,62,42,1|-eqyco0,49,63,0|-ek24k1,49,63,0|-ek24k0,70,42,1|-cq2tg1,70,42,1|-cq2tg0,71,42,1|-cnp3c1,71,42,1|-cnp3c0,49,63,0|-ccw4k1,49,63,0|-ccw4k0,62,42,1|-c4z0o1,62,42,1|-c4z0o0,49,63,0|-bu61w1,49,63,0|-bu61w0,62,42,1|-bm8y01,62,42,1|-bm8y00,49,63,0|-bbfz81,49,63,0|-bbfz80,62,42,1|-b3ivc1,62,42,1|-b3ivc0,49,63,0|-aspwk1,49,63,0|-aspwk0,62,42,1|-aksso1,62,42,1|-aksso0,49,63,0|-a9mv81,49,63,0|-a9mv80,62,42,1|-a22q01,62,42,1|-a22q00,49,63,0|-9qwsk1,49,63,0|-9qwsk0,62,42,1|-9izoo1,62,42,1|-9izoo0,49,63,0|-986pw1,49,63,0|-986pw0,62,42,1|-909m01,62,42,1|-909m00,49,63,0|-8pgn81,49,63,0|-8pgn80,62,42,1|-8hjjc1,62,42,1|-8hjjc0,49,63,0|-86qkk1,49,63,0|-86qkk0,62,42,1|-7ytgo1,62,42,1|-7ytgo0,49,63,0|-7o0hw1,49,63,0|-7o0hw0,62,42,1|-7eako1,62,42,1|-7eako0,49,63,0|-74xgk1,49,63,0|-74xgk0,62,42,1|-6vki01,62,42,1|-6vki00,49,63,0|-6m7dw1,49,63,0|-6m7dw0,62,42,1|-6cufc1,62,42,1|-6cufc0,49,63,0|-63hb81,49,63,0|-63hb80,62,42,1|-5u4co1,62,42,1|-5u4co0,49,63,0|-5kr8k1,49,63,0|-5kr8k0,62,42,1|-5bea01,62,42,1|-5bea00,49,63,0|-5215w1,49,63,0|-5215w0,62,42,1|-4sb8o1,62,42,1|-4sb8o0,49,63,0|-4iy4k1,49,63,0|-4iy4k0,62,42,1|-49l601,62,42,1|-49l600,49,63,0|-4081w1,49,63,0|-4081w0,62,42,1|-3qv3c1,62,42,1|-3qv3c0,49,63,0|-3hhz81,49,63,0|-3hhz80,62,42,1|-3850o1,62,42,1|-3850o0,49,63,0|-2yrwk1,49,63,0|-2yrwk0,62,42,1|-2pey01,62,42,1|-2pey00,49,63,0|-2g1tw1,49,63,0|-2g1tw0,62,42,1|-26bwo1,62,42,1|-26bwo0,49,63,0|-1xbr81,49,63,0|-1xbr80,62,42,1|-1nlu01,62,42,1|-1nlu00,49,63,0|-1e8pw1,49,63,0|-1e8pw0,62,42,1|-14vrc1,62,42,1|-14vrc0,49,63,0|-vin81,49,63,0|-vin80,62,42,1|-m5oo1,62,42,1|-m5oo0,49,63,0|-cskk1,49,63,0|-cskk0,62,42,1|-3fm01,62,42,1|-3fm00,49,63,0|5xi3z,49,63,0|5xi40,62,42,1|fagnz,62,42,1|fago0,49,63,0|onkrz,49,63,0|onks0,62,42,1|ydhzz,62,42,1|ydi00,49,63,0|17qm3z,49,63,0|17qm40,62,42,1|1h3knz,62,42,1|1h3ko0,49,63,0|1qgorz,49,63,0|1qgos0,62,42,1|1ztnbz,62,42,1|1ztnc0,49,63,0|23fcrz,49,63,0|23fcs0,62,42,1|2ijpzz,62,42,1|2ijq00,49,63,0|2oo63z,49,63,0|2oo640,62,42,1|319snz,62,42,1|319so0,49,63,0|3amwrz,49,63,0|3amws0,62,42,1|3kctzz,62,42,1|3kcu00,49,63,0|3tczfz,49,63,0|3tczg0,62,42,1|432wnz,62,42,1|432wo0,49,63,0|4cg0rz,49,63,0|4cg0s0,62,42,1|4lszbz,62,42,1|4lszc0,49,63,0|4v63fz,49,63,0|4v63g0,62,42,1|54j1zz,62,42,1|54j200,49,63,0|5dw63z,49,63,0|5dw640,62,42,1|5n94nz,62,42,1|5n94o0,49,63,0|5wm8rz,49,63,0|5wm8s0,62,42,1|65z7bz,62,42,1|65z7c0,49,63,0|6fcbfz,49,63,0|6fcbg0,62,42,1|6p28nz,62,42,1|6p28o0,49,63,0|6y2e3z,49,63,0|6y2e40,62,42,1|77sbbz,62,42,1|77sbc0,49,63,0|7h5ffz,49,63,0|7h5fg0,62,42,1|7qidzz,62,42,1|7qie00,49,63,0|7zvi3z,49,63,0|7zvi40,62,42,1|898gnz,62,42,1|898go0,49,63,0|8ilkrz,49,63,0|8ilks0,62,42,1|8ryjbz,62,42,1|8ryjc0,49,63,0|908rfz,49,63,0|908rg0,62,42,1|9aolzz,62,42,1|9aom00,49,63,0|9iyu3z,49,63,0|9iyu40,62,42,1|9trnbz,62,42,1|9trnc0,49,63,0|a1owrz,49,63,0|a1ows0,62,42,1|achpzz,62,42,1|achq00,49,63,0|akezfz,49,63,0|akezg0,62,42,1|av7snz,62,42,1|av7so0,49,63,0|b3i0rz,49,63,0|b3i0s0,62,42,1|bdxvbz,62,42,1|bdxvc0,49,63,0|bm83fz,49,63,0|bm83g0,62,42,1|bwnxzz,62,42,1|bwny00,49,63,0|c4y63z,49,63,0|c4y640,62,42,1|cfqzbz,62,42,1|cfqzc0,49,63,0|cno8rz,49,63,0|cno8s0,62,42,1|cyh1zz,62,42,1|cyh200,49,63,0|d6ebfz,49,63,0|d6ebg0,62,42,1|dh74nz,62,42,1|dh74o0,49,63,0|dphcrz,49,63,0|dphcs0,62,42,1|dzx7bz,62,42,1|dzx7c0,49,63,0|e87ffz,49,63,0|e87fg0,62,42,1|ein9zz,62,42,1|eina00,49,63,0|eqxi3z,49,63,0|eqxi40,62,42,1|f1dcnz,62,42,1|f1dco0,49,63,0|f9nkrz,49,63,0|f9nks0,62,42,1|fkgdzz,62,42,1|fkge00,49,63,0|fsdnfz,49,63,0|fsdng0,62,42,1|g36gnz,62,42,1|g36go0,49,63,0|gb3q3z,49,63,0|gb3q40,62,42,1|glwjbz,62,42,1|glwjc0,49,63,0|gu6rfz,49,63,0|gu6rg0,62,42,1|h4mlzz,62,42,1|h4mm00,49,63,0|hcwu3z,49,63,0|hcwu40,62,42,1|hnconz,62,42,1|hncoo0,49,63,0|hvmwrz,49,63,0|hvmws0,62,42,1|i6fpzz,62,42,1|i6fq00,49,63,0|ieczfz,49,63,0|ieczg0,62,42,1|ip5snz,62,42,1|ip5so0,49,63,0|ix323z,49,63,0|ix3240,62,42,1|j7vvbz,62,42,1|j7vvc0,49,63,0|jeq8rz,49,63,0|jeq8s0,62,42,1|jqywnz,62,42,1|jqywo0,49,63,0|jxgbfz,49,63,0|jxgbg0,62,42,1|k9ozbz,62,42,1|k9ozc0,49,63,0|kg6e3z,49,63,0|kg6e40,62,42,1|ksf1zz,62,42,1|ksf200,49,63,0|kz9ffz,49,63,0|kz9fg0,62,42,1|lbi3bz,62,42,1|lbi3c0,49,63,0|lhzi3z,49,63,0|lhzi40,62,42,1|lu85zz,62,42,1|lu8600,49,63,0|m0pkrz,49,63,0|m0pks0,62,42,1|mcy8nz,62,42,1|mcy8o0,49,63,0|mjfnfz,49,63,0|mjfng0,62,42,1|mvobbz,62,42,1|mvobc0,49,63,0|n25q3z,49,63,0|n25q40,62,42,1|needzz,62,42,1|neee00,49,63,0|nkvsrz,49,63,0|nkvss0,62,42,1|nx4gnz,62,42,1|nx4go0,49,63,0|o3yu3z,49,63,0|o3yu40,62,42,1|og7hzz,62,42,1|og7i00,49,63,0|omowrz,49,63,0|omows0,62,42,1|oyxknz,62,42,1|oyxko0,49,63,0|p5ezfz,49,63,0|p5ezg0,62,42,1|phnnbz,62,42,1|phnnc0,49,63,0|po523z,49,63,0|po5240,62,42,1|q0dpzz,62,42,1|q0dq00,49,63,0|q6v4rz,49,63,0|q6v4s0,62,42,1|qj3snz,62,42,1|qj3so0,49,63,0|qpy63z,49,63,0|qpy640,62,42,1|r26tzz,62,42,1|r26u00,49,63,0|r8o8rz,49,63,0|r8o8s0,62,42,1|rkwwnz,62,42,1|rkwwo0,49,63,0|rrebfz,49,63,0|rrebg0,62,42,1|s3mzbz,62,42,1|s3mzc0,49,63,0|sa4e3z,49,63,0|sa4e40,62,42,1|smd1zz,62,42,1|smd200,49,63,0|ssugrz,49,63,0|ssugs0,62,42,1|t534nz,62,42,1|t534o0,49,63,0|tbkjfz,49,63,0|tbkjg0,62,42,1|tnt7bz,62,42,1|tnt7c0,49,63,0|tunkrz,49,63,0|tunks0,62,42,1|u6w8nz,62,42,1|u6w8o0,49,63,0|uddnfz,49,63,0|uddng0,62,42,1|upmbbz,62,42,1|upmbc0,49,63,0|uw3q3z,49,63,0|uw3q40,62,42,1|v8cdzz,62,42,1|v8ce00,49,63,0|vetsrz,49,63,0|vetss0,62,42,1|vr2gnz,62,42,1|vr2go0,49,63,0|vxjvfz,49,63,0|vxjvg0,62,42,1|w9sjbz,62,42,1|w9sjc0,49,63,0|wgmwrz,49,63,0|wgmws0,62,42,1|wsvknz,62,42,1|wsvko0,49,63,0|wzczfz,49,63,0|wzczg0,62,42,1|xblnbz,62,42,1|xblnc0,49,63,0|xi323z,49,63,0|xi3240,62,42,1|xubpzz,62,42,1|xubq00,49,63,0|y0t4rz,49,63,0|y0t4s0,62,42,1|yd1snz,62,42,1|yd1so0,49,63,0|yjj7fz,49,63,0|yjj7g0,62,42,1|yvrvbz,62,42,1|yvrvc0,49,63,0|z29a3z,49,63,0|z29a40,62,42,1|zehxzz,62,42,1|zehy00,49,63,0","America/Nipigon|,0,150,0|-1353bnk,49,63,0|-qzoxw1,49,63,0|-qzoxw0,62,42,1|-qpm201,62,42,1|-qpm200,49,63,0|-f9oi41,49,63,0|-f9oi40,62,42,1|-ek24k1,62,42,1|-ek24k0,70,42,1|-cq2tg1,70,42,1|-cq2tg0,71,42,1|-cnp3c1,71,42,1|-cnp3c0,49,63,0|296rfz,49,63,0|296rg0,62,42,1|2ijpzz,62,42,1|2ijq00,49,63,0|2rwu3z,49,63,0|2rwu40,62,42,1|319snz,62,42,1|319so0,49,63,0|3amwrz,49,63,0|3amws0,62,42,1|3kctzz,62,42,1|3kcu00,49,63,0|3tczfz,49,63,0|3tczg0,62,42,1|432wnz,62,42,1|432wo0,49,63,0|4cg0rz,49,63,0|4cg0s0,62,42,1|4lszbz,62,42,1|4lszc0,49,63,0|4v63fz,49,63,0|4v63g0,62,42,1|54j1zz,62,42,1|54j200,49,63,0|5dw63z,49,63,0|5dw640,62,42,1|5n94nz,62,42,1|5n94o0,49,63,0|5wm8rz,49,63,0|5wm8s0,62,42,1|65z7bz,62,42,1|65z7c0,49,63,0|6fcbfz,49,63,0|6fcbg0,62,42,1|6p28nz,62,42,1|6p28o0,49,63,0|6y2e3z,49,63,0|6y2e40,62,42,1|77sbbz,62,42,1|77sbc0,49,63,0|7h5ffz,49,63,0|7h5fg0,62,42,1|7qidzz,62,42,1|7qie00,49,63,0|7zvi3z,49,63,0|7zvi40,62,42,1|898gnz,62,42,1|898go0,49,63,0|8ilkrz,49,63,0|8ilks0,62,42,1|8ryjbz,62,42,1|8ryjc0,49,63,0|908rfz,49,63,0|908rg0,62,42,1|9aolzz,62,42,1|9aom00,49,63,0|9iyu3z,49,63,0|9iyu40,62,42,1|9trnbz,62,42,1|9trnc0,49,63,0|a1owrz,49,63,0|a1ows0,62,42,1|achpzz,62,42,1|achq00,49,63,0|akezfz,49,63,0|akezg0,62,42,1|av7snz,62,42,1|av7so0,49,63,0|b3i0rz,49,63,0|b3i0s0,62,42,1|bdxvbz,62,42,1|bdxvc0,49,63,0|bm83fz,49,63,0|bm83g0,62,42,1|bwnxzz,62,42,1|bwny00,49,63,0|c4y63z,49,63,0|c4y640,62,42,1|cfqzbz,62,42,1|cfqzc0,49,63,0|cno8rz,49,63,0|cno8s0,62,42,1|cyh1zz,62,42,1|cyh200,49,63,0|d6ebfz,49,63,0|d6ebg0,62,42,1|dh74nz,62,42,1|dh74o0,49,63,0|dphcrz,49,63,0|dphcs0,62,42,1|dzx7bz,62,42,1|dzx7c0,49,63,0|e87ffz,49,63,0|e87fg0,62,42,1|ein9zz,62,42,1|eina00,49,63,0|eqxi3z,49,63,0|eqxi40,62,42,1|f1dcnz,62,42,1|f1dco0,49,63,0|f9nkrz,49,63,0|f9nks0,62,42,1|fkgdzz,62,42,1|fkge00,49,63,0|fsdnfz,49,63,0|fsdng0,62,42,1|g36gnz,62,42,1|g36go0,49,63,0|gb3q3z,49,63,0|gb3q40,62,42,1|glwjbz,62,42,1|glwjc0,49,63,0|gu6rfz,49,63,0|gu6rg0,62,42,1|h4mlzz,62,42,1|h4mm00,49,63,0|hcwu3z,49,63,0|hcwu40,62,42,1|hnconz,62,42,1|hncoo0,49,63,0|hvmwrz,49,63,0|hvmws0,62,42,1|i6fpzz,62,42,1|i6fq00,49,63,0|ieczfz,49,63,0|ieczg0,62,42,1|ip5snz,62,42,1|ip5so0,49,63,0|ix323z,49,63,0|ix3240,62,42,1|j7vvbz,62,42,1|j7vvc0,49,63,0|jeq8rz,49,63,0|jeq8s0,62,42,1|jqywnz,62,42,1|jqywo0,49,63,0|jxgbfz,49,63,0|jxgbg0,62,42,1|k9ozbz,62,42,1|k9ozc0,49,63,0|kg6e3z,49,63,0|kg6e40,62,42,1|ksf1zz,62,42,1|ksf200,49,63,0|kz9ffz,49,63,0|kz9fg0,62,42,1|lbi3bz,62,42,1|lbi3c0,49,63,0|lhzi3z,49,63,0|lhzi40,62,42,1|lu85zz,62,42,1|lu8600,49,63,0|m0pkrz,49,63,0|m0pks0,62,42,1|mcy8nz,62,42,1|mcy8o0,49,63,0|mjfnfz,49,63,0|mjfng0,62,42,1|mvobbz,62,42,1|mvobc0,49,63,0|n25q3z,49,63,0|n25q40,62,42,1|needzz,62,42,1|neee00,49,63,0|nkvsrz,49,63,0|nkvss0,62,42,1|nx4gnz,62,42,1|nx4go0,49,63,0|o3yu3z,49,63,0|o3yu40,62,42,1|og7hzz,62,42,1|og7i00,49,63,0|omowrz,49,63,0|omows0,62,42,1|oyxknz,62,42,1|oyxko0,49,63,0|p5ezfz,49,63,0|p5ezg0,62,42,1|phnnbz,62,42,1|phnnc0,49,63,0|po523z,49,63,0|po5240,62,42,1|q0dpzz,62,42,1|q0dq00,49,63,0|q6v4rz,49,63,0|q6v4s0,62,42,1|qj3snz,62,42,1|qj3so0,49,63,0|qpy63z,49,63,0|qpy640,62,42,1|r26tzz,62,42,1|r26u00,49,63,0|r8o8rz,49,63,0|r8o8s0,62,42,1|rkwwnz,62,42,1|rkwwo0,49,63,0|rrebfz,49,63,0|rrebg0,62,42,1|s3mzbz,62,42,1|s3mzc0,49,63,0|sa4e3z,49,63,0|sa4e40,62,42,1|smd1zz,62,42,1|smd200,49,63,0|ssugrz,49,63,0|ssugs0,62,42,1|t534nz,62,42,1|t534o0,49,63,0|tbkjfz,49,63,0|tbkjg0,62,42,1|tnt7bz,62,42,1|tnt7c0,49,63,0|tunkrz,49,63,0|tunks0,62,42,1|u6w8nz,62,42,1|u6w8o0,49,63,0|uddnfz,49,63,0|uddng0,62,42,1|upmbbz,62,42,1|upmbc0,49,63,0|uw3q3z,49,63,0|uw3q40,62,42,1|v8cdzz,62,42,1|v8ce00,49,63,0|vetsrz,49,63,0|vetss0,62,42,1|vr2gnz,62,42,1|vr2go0,49,63,0|vxjvfz,49,63,0|vxjvg0,62,42,1|w9sjbz,62,42,1|w9sjc0,49,63,0|wgmwrz,49,63,0|wgmws0,62,42,1|wsvknz,62,42,1|wsvko0,49,63,0|wzczfz,49,63,0|wzczg0,62,42,1|xblnbz,62,42,1|xblnc0,49,63,0|xi323z,49,63,0|xi3240,62,42,1|xubpzz,62,42,1|xubq00,49,63,0|y0t4rz,49,63,0|y0t4s0,62,42,1|yd1snz,62,42,1|yd1so0,49,63,0|yjj7fz,49,63,0|yjj7g0,62,42,1|yvrvbz,62,42,1|yvrvc0,49,63,0|z29a3z,49,63,0|z29a40,62,42,1|zehxzz,62,42,1|zehy00,49,63,0","America/Nome|,0,151,0|-1hc7qjz,0,152,0|-1078qpb,0,152,0|-1078qpa,24,35,0|-ek1nw1,24,35,0|-ek1nw0,25,36,1|-cq2tg1,25,36,1|-cq2tg0,26,36,1|-cnomo1,26,36,1|-cnomo0,24,35,0|-1fq441,24,35,0|-1fq440,27,35,0|-cs3w1,27,35,0|-cs3w0,28,36,1|-3f5c1,28,36,1|-3f5c0,27,35,0|5xyrz,27,35,0|5xys0,28,36,1|faxbz,28,36,1|faxc0,27,35,0|oo1fz,27,35,0|oo1g0,28,36,1|ydynz,28,36,1|ydyo0,27,35,0|17r2rz,27,35,0|17r2s0,28,36,1|1h41bz,28,36,1|1h41c0,27,35,0|1qh5fz,27,35,0|1qh5g0,28,36,1|1zu3zz,28,36,1|1zu400,27,35,0|23ftfz,27,35,0|23ftg0,28,36,1|2ik6nz,28,36,1|2ik6o0,27,35,0|2oomrz,27,35,0|2ooms0,28,36,1|31a9bz,28,36,1|31a9c0,27,35,0|3andfz,27,35,0|3andg0,28,36,1|3kdanz,28,36,1|3kdao0,27,35,0|3tdg3z,27,35,0|3tdg40,28,36,1|433dbz,28,36,1|433dc0,27,35,0|4cghfz,27,35,0|4cghg0,28,36,1|4ltfzz,28,36,1|4ltg00,27,35,0|4v6k3z,27,35,0|4v6k40,28,36,1|54jinz,28,36,1|54jio0,27,35,0|5dwmrz,27,35,0|5dwms0,28,36,1|5n9lbz,28,36,1|5n9lc0,27,35,0|5wmpfz,27,35,0|5wmpg0,28,36,1|65znzz,28,36,1|65zo00,27,35,0|6fcs3z,27,35,0|6fcs40,28,36,1|6p2pbz,28,36,1|6p2pc0,27,35,0|6y2urz,27,35,0|6y2us0,28,36,1|77srzz,28,36,1|77ss00,36,37,0|79dybz,36,37,0|79dyc0,37,37,0|7h5qjz,37,37,0|7h5qk0,38,40,1|7qip3z,38,40,1|7qip40,37,37,0|7zvt7z,37,37,0|7zvt80,38,40,1|898rrz,38,40,1|898rs0,37,37,0|8ilvvz,37,37,0|8ilvw0,38,40,1|8ryufz,38,40,1|8ryug0,37,37,0|9092jz,37,37,0|9092k0,38,40,1|9aox3z,38,40,1|9aox40,37,37,0|9iz57z,37,37,0|9iz580,38,40,1|9tryfz,38,40,1|9tryg0,37,37,0|a1p7vz,37,37,0|a1p7w0,38,40,1|aci13z,38,40,1|aci140,37,37,0|akfajz,37,37,0|akfak0,38,40,1|av83rz,38,40,1|av83s0,37,37,0|b3ibvz,37,37,0|b3ibw0,38,40,1|bdy6fz,38,40,1|bdy6g0,37,37,0|bm8ejz,37,37,0|bm8ek0,38,40,1|bwo93z,38,40,1|bwo940,37,37,0|c4yh7z,37,37,0|c4yh80,38,40,1|cfrafz,38,40,1|cfrag0,37,37,0|cnojvz,37,37,0|cnojw0,38,40,1|cyhd3z,38,40,1|cyhd40,37,37,0|d6emjz,37,37,0|d6emk0,38,40,1|dh7frz,38,40,1|dh7fs0,37,37,0|dphnvz,37,37,0|dphnw0,38,40,1|dzxifz,38,40,1|dzxig0,37,37,0|e87qjz,37,37,0|e87qk0,38,40,1|einl3z,38,40,1|einl40,37,37,0|eqxt7z,37,37,0|eqxt80,38,40,1|f1dnrz,38,40,1|f1dns0,37,37,0|f9nvvz,37,37,0|f9nvw0,38,40,1|fkgp3z,38,40,1|fkgp40,37,37,0|fsdyjz,37,37,0|fsdyk0,38,40,1|g36rrz,38,40,1|g36rs0,37,37,0|gb417z,37,37,0|gb4180,38,40,1|glwufz,38,40,1|glwug0,37,37,0|gu72jz,37,37,0|gu72k0,38,40,1|h4mx3z,38,40,1|h4mx40,37,37,0|hcx57z,37,37,0|hcx580,38,40,1|hnczrz,38,40,1|hnczs0,37,37,0|hvn7vz,37,37,0|hvn7w0,38,40,1|i6g13z,38,40,1|i6g140,37,37,0|iedajz,37,37,0|iedak0,38,40,1|ip63rz,38,40,1|ip63s0,37,37,0|ix3d7z,37,37,0|ix3d80,38,40,1|j7w6fz,38,40,1|j7w6g0,37,37,0|jeqjvz,37,37,0|jeqjw0,38,40,1|jqz7rz,38,40,1|jqz7s0,37,37,0|jxgmjz,37,37,0|jxgmk0,38,40,1|k9pafz,38,40,1|k9pag0,37,37,0|kg6p7z,37,37,0|kg6p80,38,40,1|ksfd3z,38,40,1|ksfd40,37,37,0|kz9qjz,37,37,0|kz9qk0,38,40,1|lbiefz,38,40,1|lbieg0,37,37,0|lhzt7z,37,37,0|lhzt80,38,40,1|lu8h3z,38,40,1|lu8h40,37,37,0|m0pvvz,37,37,0|m0pvw0,38,40,1|mcyjrz,38,40,1|mcyjs0,37,37,0|mjfyjz,37,37,0|mjfyk0,38,40,1|mvomfz,38,40,1|mvomg0,37,37,0|n2617z,37,37,0|n26180,38,40,1|neep3z,38,40,1|neep40,37,37,0|nkw3vz,37,37,0|nkw3w0,38,40,1|nx4rrz,38,40,1|nx4rs0,37,37,0|o3z57z,37,37,0|o3z580,38,40,1|og7t3z,38,40,1|og7t40,37,37,0|omp7vz,37,37,0|omp7w0,38,40,1|oyxvrz,38,40,1|oyxvs0,37,37,0|p5fajz,37,37,0|p5fak0,38,40,1|phnyfz,38,40,1|phnyg0,37,37,0|po5d7z,37,37,0|po5d80,38,40,1|q0e13z,38,40,1|q0e140,37,37,0|q6vfvz,37,37,0|q6vfw0,38,40,1|qj43rz,38,40,1|qj43s0,37,37,0|qpyh7z,37,37,0|qpyh80,38,40,1|r2753z,38,40,1|r27540,37,37,0|r8ojvz,37,37,0|r8ojw0,38,40,1|rkx7rz,38,40,1|rkx7s0,37,37,0|rremjz,37,37,0|rremk0,38,40,1|s3nafz,38,40,1|s3nag0,37,37,0|sa4p7z,37,37,0|sa4p80,38,40,1|smdd3z,38,40,1|smdd40,37,37,0|ssurvz,37,37,0|ssurw0,38,40,1|t53frz,38,40,1|t53fs0,37,37,0|tbkujz,37,37,0|tbkuk0,38,40,1|tntifz,38,40,1|tntig0,37,37,0|tunvvz,37,37,0|tunvw0,38,40,1|u6wjrz,38,40,1|u6wjs0,37,37,0|uddyjz,37,37,0|uddyk0,38,40,1|upmmfz,38,40,1|upmmg0,37,37,0|uw417z,37,37,0|uw4180,38,40,1|v8cp3z,38,40,1|v8cp40,37,37,0|veu3vz,37,37,0|veu3w0,38,40,1|vr2rrz,38,40,1|vr2rs0,37,37,0|vxk6jz,37,37,0|vxk6k0,38,40,1|w9sufz,38,40,1|w9sug0,37,37,0|wgn7vz,37,37,0|wgn7w0,38,40,1|wsvvrz,38,40,1|wsvvs0,37,37,0|wzdajz,37,37,0|wzdak0,38,40,1|xblyfz,38,40,1|xblyg0,37,37,0|xi3d7z,37,37,0|xi3d80,38,40,1|xuc13z,38,40,1|xuc140,37,37,0|y0tfvz,37,37,0|y0tfw0,38,40,1|yd23rz,38,40,1|yd23s0,37,37,0|yjjijz,37,37,0|yjjik0,38,40,1|yvs6fz,38,40,1|yvs6g0,37,37,0|z29l7z,37,37,0|z29l80,38,40,1|zei93z,38,40,1|zei940,37,37,0","America/Noronha|,0,153,0|-t85lzw,40,45,0|-jyld81,40,45,0|-jyld80,13,15,1|-jpb3w1,13,15,1|-jpb3w0,40,45,0|-jfsfs1,40,45,0|-jfsfs0,13,15,1|-j6j6k1,13,15,1|-j6j6k0,40,45,0|-ahd141,40,45,0|-ahd140,13,15,1|-aad6g1,13,15,1|-aad6g0,40,45,0|-9yl3s1,40,45,0|-9yl3s0,13,15,1|-9sd3w1,13,15,1|-9sd3w0,40,45,0|-9ft6g1,40,45,0|-9ft6g0,13,15,1|-99jbw1,13,15,1|-99jbw0,40,45,0|-8wzeg1,40,45,0|-8wzeg0,13,15,1|-8sct81,13,15,1|-8sct80,40,45,0|-35xp41,40,45,0|-35xp40,13,15,1|-31o2k1,13,15,1|-31o2k0,40,45,0|-2kdrs1,40,45,0|-2kdrs0,13,15,1|-2hcl81,13,15,1|-2hcl80,40,45,0|-24qt41,40,45,0|-24qt40,13,15,1|-2047w1,13,15,1|-2047w0,40,45,0|-1nifs1,40,45,0|-1nifs0,13,15,1|-1hcak1,13,15,1|-1hcak0,40,45,0|-14qig1,40,45,0|-14qig0,13,15,1|-yiik1,13,15,1|-yiik0,40,45,0|89j9jz,40,45,0|89j9k0,13,15,1|8gdhfz,13,15,1|8gdhg0,40,45,0|8rwdjz,40,45,0|8rwdk0,13,15,1|8xnpfz,13,15,1|8xnpg0,40,45,0|9aoavz,40,45,0|9aoaw0,13,15,1|9g2o3z,13,15,1|9g2o40,40,45,0|9t1evz,40,45,0|9t1ew0,13,15,1|9yfs3z,13,15,1|9yfs40,40,45,0|abrhjz,40,45,0|abrhk0,13,15,1|ahvs3z,13,15,1|ahvs40,40,45,0|fj087z,40,45,0|fj0880,13,15,1|fqkdfz,13,15,1|fqkdg0,40,45,0|g239jz,40,45,0|g239k0,13,15,1|g2g5fz,13,15,1|g2g5g0,40,45,0|gl6avz,40,45,0|gl6aw0,13,15,1|grnk3z,13,15,1|grnk40,40,45,0","America/North_Dakota/Beulah|,0,154,0|-18y0j80,50,66,0|-r0epo1,50,66,0|-r0epo0,52,62,1|-qplwg1,52,62,1|-qplwg0,50,66,0|-qhon01,50,66,0|-qhon00,52,62,1|-q6vts1,52,62,1|-q6vts0,50,66,0|-ek1z01,50,66,0|-ek1z00,58,62,1|-cq2tg1,58,62,1|-cq2tg0,59,62,1|-cnoxs1,59,62,1|-cnoxs0,50,66,0|-1e8kc1,50,66,0|-1e8kc0,52,62,1|-14vls1,52,62,1|-14vls0,50,66,0|-viho1,50,66,0|-viho0,52,62,1|-m5j41,52,62,1|-m5j40,50,66,0|-csf01,50,66,0|-csf00,52,62,1|-3fgg1,52,62,1|-3fgg0,50,66,0|5xnnz,50,66,0|5xno0,52,62,1|fam7z,52,62,1|fam80,50,66,0|onqbz,50,66,0|onqc0,52,62,1|ydnjz,52,62,1|ydnk0,50,66,0|17qrnz,50,66,0|17qro0,52,62,1|1h3q7z,52,62,1|1h3q80,50,66,0|1qgubz,50,66,0|1qguc0,52,62,1|1ztsvz,52,62,1|1ztsw0,50,66,0|23fibz,50,66,0|23fic0,52,62,1|2ijvjz,52,62,1|2ijvk0,50,66,0|2oobnz,50,66,0|2oobo0,52,62,1|319y7z,52,62,1|319y80,50,66,0|3an2bz,50,66,0|3an2c0,52,62,1|3kczjz,52,62,1|3kczk0,50,66,0|3td4zz,50,66,0|3td500,52,62,1|43327z,52,62,1|433280,50,66,0|4cg6bz,50,66,0|4cg6c0,52,62,1|4lt4vz,52,62,1|4lt4w0,50,66,0|4v68zz,50,66,0|4v6900,52,62,1|54j7jz,52,62,1|54j7k0,50,66,0|5dwbnz,50,66,0|5dwbo0,52,62,1|5n9a7z,52,62,1|5n9a80,50,66,0|5wmebz,50,66,0|5wmec0,52,62,1|65zcvz,52,62,1|65zcw0,50,66,0|6fcgzz,50,66,0|6fch00,52,62,1|6p2e7z,52,62,1|6p2e80,50,66,0|6y2jnz,50,66,0|6y2jo0,52,62,1|77sgvz,52,62,1|77sgw0,50,66,0|7h5kzz,50,66,0|7h5l00,52,62,1|7qijjz,52,62,1|7qijk0,50,66,0|7zvnnz,50,66,0|7zvno0,52,62,1|898m7z,52,62,1|898m80,50,66,0|8ilqbz,50,66,0|8ilqc0,52,62,1|8ryovz,52,62,1|8ryow0,50,66,0|908wzz,50,66,0|908x00,52,62,1|9aorjz,52,62,1|9aork0,50,66,0|9iyznz,50,66,0|9iyzo0,52,62,1|9trsvz,52,62,1|9trsw0,50,66,0|a1p2bz,50,66,0|a1p2c0,52,62,1|achvjz,52,62,1|achvk0,50,66,0|akf4zz,50,66,0|akf500,52,62,1|av7y7z,52,62,1|av7y80,50,66,0|b3i6bz,50,66,0|b3i6c0,52,62,1|bdy0vz,52,62,1|bdy0w0,50,66,0|bm88zz,50,66,0|bm8900,52,62,1|bwo3jz,52,62,1|bwo3k0,50,66,0|c4ybnz,50,66,0|c4ybo0,52,62,1|cfr4vz,52,62,1|cfr4w0,50,66,0|cnoebz,50,66,0|cnoec0,52,62,1|cyh7jz,52,62,1|cyh7k0,50,66,0|d6egzz,50,66,0|d6eh00,52,62,1|dh7a7z,52,62,1|dh7a80,50,66,0|dphibz,50,66,0|dphic0,52,62,1|dzxcvz,52,62,1|dzxcw0,50,66,0|e87kzz,50,66,0|e87l00,52,62,1|einfjz,52,62,1|einfk0,50,66,0|eqxnnz,50,66,0|eqxno0,52,62,1|f1di7z,52,62,1|f1di80,50,66,0|f9nqbz,50,66,0|f9nqc0,52,62,1|fkgjjz,52,62,1|fkgjk0,50,66,0|fsdszz,50,66,0|fsdt00,52,62,1|g36m7z,52,62,1|g36m80,50,66,0|gb3vnz,50,66,0|gb3vo0,52,62,1|glwovz,52,62,1|glwow0,50,66,0|gu6wzz,50,66,0|gu6x00,52,62,1|h4mrjz,52,62,1|h4mrk0,50,66,0|hcwznz,50,66,0|hcwzo0,52,62,1|hncu7z,52,62,1|hncu80,50,66,0|hvn2bz,50,66,0|hvn2c0,52,62,1|i6fvjz,52,62,1|i6fvk0,50,66,0|ied4zz,50,66,0|ied500,52,62,1|ip5y7z,52,62,1|ip5y80,50,66,0|ix37nz,50,66,0|ix37o0,52,62,1|j7w0vz,52,62,1|j7w0w0,50,66,0|jeqebz,50,66,0|jeqec0,52,62,1|jqz27z,52,62,1|jqz280,50,66,0|jxggzz,50,66,0|jxgh00,52,62,1|k9p4vz,52,62,1|k9p4w0,50,66,0|kg6jnz,50,66,0|kg6jo0,52,62,1|ksf7jz,52,62,1|ksf7k0,50,66,0|kz9kzz,50,66,0|kz9l00,52,62,1|lbi8vz,52,62,1|lbi8w0,45,62,0|lhzkvz,45,62,0|lhzkw0,46,63,1|lu88rz,46,63,1|lu88s0,45,62,0|m0pnjz,45,62,0|m0pnk0,46,63,1|mcybfz,46,63,1|mcybg0,45,62,0|mjfq7z,45,62,0|mjfq80,46,63,1|mvoe3z,46,63,1|mvoe40,45,62,0|n25svz,45,62,0|n25sw0,46,63,1|neegrz,46,63,1|neegs0,45,62,0|nkvvjz,45,62,0|nkvvk0,46,63,1|nx4jfz,46,63,1|nx4jg0,45,62,0|o3ywvz,45,62,0|o3yww0,46,63,1|og7krz,46,63,1|og7ks0,45,62,0|omozjz,45,62,0|omozk0,46,63,1|oyxnfz,46,63,1|oyxng0,45,62,0|p5f27z,45,62,0|p5f280,46,63,1|phnq3z,46,63,1|phnq40,45,62,0|po54vz,45,62,0|po54w0,46,63,1|q0dsrz,46,63,1|q0dss0,45,62,0|q6v7jz,45,62,0|q6v7k0,46,63,1|qj3vfz,46,63,1|qj3vg0,45,62,0|qpy8vz,45,62,0|qpy8w0,46,63,1|r26wrz,46,63,1|r26ws0,45,62,0|r8objz,45,62,0|r8obk0,46,63,1|rkwzfz,46,63,1|rkwzg0,45,62,0|rree7z,45,62,0|rree80,46,63,1|s3n23z,46,63,1|s3n240,45,62,0|sa4gvz,45,62,0|sa4gw0,46,63,1|smd4rz,46,63,1|smd4s0,45,62,0|ssujjz,45,62,0|ssujk0,46,63,1|t537fz,46,63,1|t537g0,45,62,0|tbkm7z,45,62,0|tbkm80,46,63,1|tnta3z,46,63,1|tnta40,45,62,0|tunnjz,45,62,0|tunnk0,46,63,1|u6wbfz,46,63,1|u6wbg0,45,62,0|uddq7z,45,62,0|uddq80,46,63,1|upme3z,46,63,1|upme40,45,62,0|uw3svz,45,62,0|uw3sw0,46,63,1|v8cgrz,46,63,1|v8cgs0,45,62,0|vetvjz,45,62,0|vetvk0,46,63,1|vr2jfz,46,63,1|vr2jg0,45,62,0|vxjy7z,45,62,0|vxjy80,46,63,1|w9sm3z,46,63,1|w9sm40,45,62,0|wgmzjz,45,62,0|wgmzk0,46,63,1|wsvnfz,46,63,1|wsvng0,45,62,0|wzd27z,45,62,0|wzd280,46,63,1|xblq3z,46,63,1|xblq40,45,62,0|xi34vz,45,62,0|xi34w0,46,63,1|xubsrz,46,63,1|xubss0,45,62,0|y0t7jz,45,62,0|y0t7k0,46,63,1|yd1vfz,46,63,1|yd1vg0,45,62,0|yjja7z,45,62,0|yjja80,46,63,1|yvry3z,46,63,1|yvry40,45,62,0|z29cvz,45,62,0|z29cw0,46,63,1|zei0rz,46,63,1|zei0s0,45,62,0","America/North_Dakota/Center|,0,155,0|-18y0j80,50,66,0|-r0epo1,50,66,0|-r0epo0,52,62,1|-qplwg1,52,62,1|-qplwg0,50,66,0|-qhon01,50,66,0|-qhon00,52,62,1|-q6vts1,52,62,1|-q6vts0,50,66,0|-ek1z01,50,66,0|-ek1z00,58,62,1|-cq2tg1,58,62,1|-cq2tg0,59,62,1|-cnoxs1,59,62,1|-cnoxs0,50,66,0|-1e8kc1,50,66,0|-1e8kc0,52,62,1|-14vls1,52,62,1|-14vls0,50,66,0|-viho1,50,66,0|-viho0,52,62,1|-m5j41,52,62,1|-m5j40,50,66,0|-csf01,50,66,0|-csf00,52,62,1|-3fgg1,52,62,1|-3fgg0,50,66,0|5xnnz,50,66,0|5xno0,52,62,1|fam7z,52,62,1|fam80,50,66,0|onqbz,50,66,0|onqc0,52,62,1|ydnjz,52,62,1|ydnk0,50,66,0|17qrnz,50,66,0|17qro0,52,62,1|1h3q7z,52,62,1|1h3q80,50,66,0|1qgubz,50,66,0|1qguc0,52,62,1|1ztsvz,52,62,1|1ztsw0,50,66,0|23fibz,50,66,0|23fic0,52,62,1|2ijvjz,52,62,1|2ijvk0,50,66,0|2oobnz,50,66,0|2oobo0,52,62,1|319y7z,52,62,1|319y80,50,66,0|3an2bz,50,66,0|3an2c0,52,62,1|3kczjz,52,62,1|3kczk0,50,66,0|3td4zz,50,66,0|3td500,52,62,1|43327z,52,62,1|433280,50,66,0|4cg6bz,50,66,0|4cg6c0,52,62,1|4lt4vz,52,62,1|4lt4w0,50,66,0|4v68zz,50,66,0|4v6900,52,62,1|54j7jz,52,62,1|54j7k0,50,66,0|5dwbnz,50,66,0|5dwbo0,52,62,1|5n9a7z,52,62,1|5n9a80,50,66,0|5wmebz,50,66,0|5wmec0,52,62,1|65zcvz,52,62,1|65zcw0,50,66,0|6fcgzz,50,66,0|6fch00,52,62,1|6p2e7z,52,62,1|6p2e80,50,66,0|6y2jnz,50,66,0|6y2jo0,52,62,1|77sgvz,52,62,1|77sgw0,50,66,0|7h5kzz,50,66,0|7h5l00,52,62,1|7qijjz,52,62,1|7qijk0,50,66,0|7zvnnz,50,66,0|7zvno0,52,62,1|898m7z,52,62,1|898m80,50,66,0|8ilqbz,50,66,0|8ilqc0,52,62,1|8ryovz,52,62,1|8ryow0,50,66,0|908wzz,50,66,0|908x00,52,62,1|9aorjz,52,62,1|9aork0,50,66,0|9iyznz,50,66,0|9iyzo0,52,62,1|9trsvz,52,62,1|9trsw0,50,66,0|a1p2bz,50,66,0|a1p2c0,52,62,1|achvjz,52,62,1|achvk0,50,66,0|akf4zz,50,66,0|akf500,52,62,1|av7y7z,52,62,1|av7y80,50,66,0|b3i6bz,50,66,0|b3i6c0,52,62,1|bdy0vz,52,62,1|bdy0w0,50,66,0|bm88zz,50,66,0|bm8900,52,62,1|bwo3jz,52,62,1|bwo3k0,45,62,0|c4y8vz,45,62,0|c4y8w0,46,63,1|cfr23z,46,63,1|cfr240,45,62,0|cnobjz,45,62,0|cnobk0,46,63,1|cyh4rz,46,63,1|cyh4s0,45,62,0|d6ee7z,45,62,0|d6ee80,46,63,1|dh77fz,46,63,1|dh77g0,45,62,0|dphfjz,45,62,0|dphfk0,46,63,1|dzxa3z,46,63,1|dzxa40,45,62,0|e87i7z,45,62,0|e87i80,46,63,1|eincrz,46,63,1|eincs0,45,62,0|eqxkvz,45,62,0|eqxkw0,46,63,1|f1dffz,46,63,1|f1dfg0,45,62,0|f9nnjz,45,62,0|f9nnk0,46,63,1|fkggrz,46,63,1|fkggs0,45,62,0|fsdq7z,45,62,0|fsdq80,46,63,1|g36jfz,46,63,1|g36jg0,45,62,0|gb3svz,45,62,0|gb3sw0,46,63,1|glwm3z,46,63,1|glwm40,45,62,0|gu6u7z,45,62,0|gu6u80,46,63,1|h4morz,46,63,1|h4mos0,45,62,0|hcwwvz,45,62,0|hcwww0,46,63,1|hncrfz,46,63,1|hncrg0,45,62,0|hvmzjz,45,62,0|hvmzk0,46,63,1|i6fsrz,46,63,1|i6fss0,45,62,0|ied27z,45,62,0|ied280,46,63,1|ip5vfz,46,63,1|ip5vg0,45,62,0|ix34vz,45,62,0|ix34w0,46,63,1|j7vy3z,46,63,1|j7vy40,45,62,0|jeqbjz,45,62,0|jeqbk0,46,63,1|jqyzfz,46,63,1|jqyzg0,45,62,0|jxge7z,45,62,0|jxge80,46,63,1|k9p23z,46,63,1|k9p240,45,62,0|kg6gvz,45,62,0|kg6gw0,46,63,1|ksf4rz,46,63,1|ksf4s0,45,62,0|kz9i7z,45,62,0|kz9i80,46,63,1|lbi63z,46,63,1|lbi640,45,62,0|lhzkvz,45,62,0|lhzkw0,46,63,1|lu88rz,46,63,1|lu88s0,45,62,0|m0pnjz,45,62,0|m0pnk0,46,63,1|mcybfz,46,63,1|mcybg0,45,62,0|mjfq7z,45,62,0|mjfq80,46,63,1|mvoe3z,46,63,1|mvoe40,45,62,0|n25svz,45,62,0|n25sw0,46,63,1|neegrz,46,63,1|neegs0,45,62,0|nkvvjz,45,62,0|nkvvk0,46,63,1|nx4jfz,46,63,1|nx4jg0,45,62,0|o3ywvz,45,62,0|o3yww0,46,63,1|og7krz,46,63,1|og7ks0,45,62,0|omozjz,45,62,0|omozk0,46,63,1|oyxnfz,46,63,1|oyxng0,45,62,0|p5f27z,45,62,0|p5f280,46,63,1|phnq3z,46,63,1|phnq40,45,62,0|po54vz,45,62,0|po54w0,46,63,1|q0dsrz,46,63,1|q0dss0,45,62,0|q6v7jz,45,62,0|q6v7k0,46,63,1|qj3vfz,46,63,1|qj3vg0,45,62,0|qpy8vz,45,62,0|qpy8w0,46,63,1|r26wrz,46,63,1|r26ws0,45,62,0|r8objz,45,62,0|r8obk0,46,63,1|rkwzfz,46,63,1|rkwzg0,45,62,0|rree7z,45,62,0|rree80,46,63,1|s3n23z,46,63,1|s3n240,45,62,0|sa4gvz,45,62,0|sa4gw0,46,63,1|smd4rz,46,63,1|smd4s0,45,62,0|ssujjz,45,62,0|ssujk0,46,63,1|t537fz,46,63,1|t537g0,45,62,0|tbkm7z,45,62,0|tbkm80,46,63,1|tnta3z,46,63,1|tnta40,45,62,0|tunnjz,45,62,0|tunnk0,46,63,1|u6wbfz,46,63,1|u6wbg0,45,62,0|uddq7z,45,62,0|uddq80,46,63,1|upme3z,46,63,1|upme40,45,62,0|uw3svz,45,62,0|uw3sw0,46,63,1|v8cgrz,46,63,1|v8cgs0,45,62,0|vetvjz,45,62,0|vetvk0,46,63,1|vr2jfz,46,63,1|vr2jg0,45,62,0|vxjy7z,45,62,0|vxjy80,46,63,1|w9sm3z,46,63,1|w9sm40,45,62,0|wgmzjz,45,62,0|wgmzk0,46,63,1|wsvnfz,46,63,1|wsvng0,45,62,0|wzd27z,45,62,0|wzd280,46,63,1|xblq3z,46,63,1|xblq40,45,62,0|xi34vz,45,62,0|xi34w0,46,63,1|xubsrz,46,63,1|xubss0,45,62,0|y0t7jz,45,62,0|y0t7k0,46,63,1|yd1vfz,46,63,1|yd1vg0,45,62,0|yjja7z,45,62,0|yjja80,46,63,1|yvry3z,46,63,1|yvry40,45,62,0|z29cvz,45,62,0|z29cw0,46,63,1|zei0rz,46,63,1|zei0s0,45,62,0","America/North_Dakota/New_Salem|,0,156,0|-18y0j80,50,66,0|-r0epo1,50,66,0|-r0epo0,52,62,1|-qplwg1,52,62,1|-qplwg0,50,66,0|-qhon01,50,66,0|-qhon00,52,62,1|-q6vts1,52,62,1|-q6vts0,50,66,0|-ek1z01,50,66,0|-ek1z00,58,62,1|-cq2tg1,58,62,1|-cq2tg0,59,62,1|-cnoxs1,59,62,1|-cnoxs0,50,66,0|-1e8kc1,50,66,0|-1e8kc0,52,62,1|-14vls1,52,62,1|-14vls0,50,66,0|-viho1,50,66,0|-viho0,52,62,1|-m5j41,52,62,1|-m5j40,50,66,0|-csf01,50,66,0|-csf00,52,62,1|-3fgg1,52,62,1|-3fgg0,50,66,0|5xnnz,50,66,0|5xno0,52,62,1|fam7z,52,62,1|fam80,50,66,0|onqbz,50,66,0|onqc0,52,62,1|ydnjz,52,62,1|ydnk0,50,66,0|17qrnz,50,66,0|17qro0,52,62,1|1h3q7z,52,62,1|1h3q80,50,66,0|1qgubz,50,66,0|1qguc0,52,62,1|1ztsvz,52,62,1|1ztsw0,50,66,0|23fibz,50,66,0|23fic0,52,62,1|2ijvjz,52,62,1|2ijvk0,50,66,0|2oobnz,50,66,0|2oobo0,52,62,1|319y7z,52,62,1|319y80,50,66,0|3an2bz,50,66,0|3an2c0,52,62,1|3kczjz,52,62,1|3kczk0,50,66,0|3td4zz,50,66,0|3td500,52,62,1|43327z,52,62,1|433280,50,66,0|4cg6bz,50,66,0|4cg6c0,52,62,1|4lt4vz,52,62,1|4lt4w0,50,66,0|4v68zz,50,66,0|4v6900,52,62,1|54j7jz,52,62,1|54j7k0,50,66,0|5dwbnz,50,66,0|5dwbo0,52,62,1|5n9a7z,52,62,1|5n9a80,50,66,0|5wmebz,50,66,0|5wmec0,52,62,1|65zcvz,52,62,1|65zcw0,50,66,0|6fcgzz,50,66,0|6fch00,52,62,1|6p2e7z,52,62,1|6p2e80,50,66,0|6y2jnz,50,66,0|6y2jo0,52,62,1|77sgvz,52,62,1|77sgw0,50,66,0|7h5kzz,50,66,0|7h5l00,52,62,1|7qijjz,52,62,1|7qijk0,50,66,0|7zvnnz,50,66,0|7zvno0,52,62,1|898m7z,52,62,1|898m80,50,66,0|8ilqbz,50,66,0|8ilqc0,52,62,1|8ryovz,52,62,1|8ryow0,50,66,0|908wzz,50,66,0|908x00,52,62,1|9aorjz,52,62,1|9aork0,50,66,0|9iyznz,50,66,0|9iyzo0,52,62,1|9trsvz,52,62,1|9trsw0,50,66,0|a1p2bz,50,66,0|a1p2c0,52,62,1|achvjz,52,62,1|achvk0,50,66,0|akf4zz,50,66,0|akf500,52,62,1|av7y7z,52,62,1|av7y80,50,66,0|b3i6bz,50,66,0|b3i6c0,52,62,1|bdy0vz,52,62,1|bdy0w0,50,66,0|bm88zz,50,66,0|bm8900,52,62,1|bwo3jz,52,62,1|bwo3k0,50,66,0|c4ybnz,50,66,0|c4ybo0,52,62,1|cfr4vz,52,62,1|cfr4w0,50,66,0|cnoebz,50,66,0|cnoec0,52,62,1|cyh7jz,52,62,1|cyh7k0,50,66,0|d6egzz,50,66,0|d6eh00,52,62,1|dh7a7z,52,62,1|dh7a80,50,66,0|dphibz,50,66,0|dphic0,52,62,1|dzxcvz,52,62,1|dzxcw0,50,66,0|e87kzz,50,66,0|e87l00,52,62,1|einfjz,52,62,1|einfk0,50,66,0|eqxnnz,50,66,0|eqxno0,52,62,1|f1di7z,52,62,1|f1di80,50,66,0|f9nqbz,50,66,0|f9nqc0,52,62,1|fkgjjz,52,62,1|fkgjk0,50,66,0|fsdszz,50,66,0|fsdt00,52,62,1|g36m7z,52,62,1|g36m80,50,66,0|gb3vnz,50,66,0|gb3vo0,52,62,1|glwovz,52,62,1|glwow0,50,66,0|gu6wzz,50,66,0|gu6x00,52,62,1|h4mrjz,52,62,1|h4mrk0,50,66,0|hcwznz,50,66,0|hcwzo0,52,62,1|hncu7z,52,62,1|hncu80,45,62,0|hvmzjz,45,62,0|hvmzk0,46,63,1|i6fsrz,46,63,1|i6fss0,45,62,0|ied27z,45,62,0|ied280,46,63,1|ip5vfz,46,63,1|ip5vg0,45,62,0|ix34vz,45,62,0|ix34w0,46,63,1|j7vy3z,46,63,1|j7vy40,45,62,0|jeqbjz,45,62,0|jeqbk0,46,63,1|jqyzfz,46,63,1|jqyzg0,45,62,0|jxge7z,45,62,0|jxge80,46,63,1|k9p23z,46,63,1|k9p240,45,62,0|kg6gvz,45,62,0|kg6gw0,46,63,1|ksf4rz,46,63,1|ksf4s0,45,62,0|kz9i7z,45,62,0|kz9i80,46,63,1|lbi63z,46,63,1|lbi640,45,62,0|lhzkvz,45,62,0|lhzkw0,46,63,1|lu88rz,46,63,1|lu88s0,45,62,0|m0pnjz,45,62,0|m0pnk0,46,63,1|mcybfz,46,63,1|mcybg0,45,62,0|mjfq7z,45,62,0|mjfq80,46,63,1|mvoe3z,46,63,1|mvoe40,45,62,0|n25svz,45,62,0|n25sw0,46,63,1|neegrz,46,63,1|neegs0,45,62,0|nkvvjz,45,62,0|nkvvk0,46,63,1|nx4jfz,46,63,1|nx4jg0,45,62,0|o3ywvz,45,62,0|o3yww0,46,63,1|og7krz,46,63,1|og7ks0,45,62,0|omozjz,45,62,0|omozk0,46,63,1|oyxnfz,46,63,1|oyxng0,45,62,0|p5f27z,45,62,0|p5f280,46,63,1|phnq3z,46,63,1|phnq40,45,62,0|po54vz,45,62,0|po54w0,46,63,1|q0dsrz,46,63,1|q0dss0,45,62,0|q6v7jz,45,62,0|q6v7k0,46,63,1|qj3vfz,46,63,1|qj3vg0,45,62,0|qpy8vz,45,62,0|qpy8w0,46,63,1|r26wrz,46,63,1|r26ws0,45,62,0|r8objz,45,62,0|r8obk0,46,63,1|rkwzfz,46,63,1|rkwzg0,45,62,0|rree7z,45,62,0|rree80,46,63,1|s3n23z,46,63,1|s3n240,45,62,0|sa4gvz,45,62,0|sa4gw0,46,63,1|smd4rz,46,63,1|smd4s0,45,62,0|ssujjz,45,62,0|ssujk0,46,63,1|t537fz,46,63,1|t537g0,45,62,0|tbkm7z,45,62,0|tbkm80,46,63,1|tnta3z,46,63,1|tnta40,45,62,0|tunnjz,45,62,0|tunnk0,46,63,1|u6wbfz,46,63,1|u6wbg0,45,62,0|uddq7z,45,62,0|uddq80,46,63,1|upme3z,46,63,1|upme40,45,62,0|uw3svz,45,62,0|uw3sw0,46,63,1|v8cgrz,46,63,1|v8cgs0,45,62,0|vetvjz,45,62,0|vetvk0,46,63,1|vr2jfz,46,63,1|vr2jg0,45,62,0|vxjy7z,45,62,0|vxjy80,46,63,1|w9sm3z,46,63,1|w9sm40,45,62,0|wgmzjz,45,62,0|wgmzk0,46,63,1|wsvnfz,46,63,1|wsvng0,45,62,0|wzd27z,45,62,0|wzd280,46,63,1|xblq3z,46,63,1|xblq40,45,62,0|xi34vz,45,62,0|xi34w0,46,63,1|xubsrz,46,63,1|xubss0,45,62,0|y0t7jz,45,62,0|y0t7k0,46,63,1|yd1vfz,46,63,1|yd1vg0,45,62,0|yjja7z,45,62,0|yjja80,46,63,1|yvry3z,46,63,1|yvry40,45,62,0|z29cvz,45,62,0|z29cw0,46,63,1|zei0rz,46,63,1|zei0s0,45,62,0","America/Nuuk|,0,157,0|-rvumf4,39,44,0|5ct4jz,39,44,0|5ct4k0,40,45,1|5lsw3z,40,45,1|5lsw40,39,44,0|5v5xfz,39,44,0|5v5xg0,40,45,1|64iyrz,40,45,1|64iys0,39,44,0|6dw03z,39,44,0|6dw040,40,45,1|6n91fz,40,45,1|6n91g0,39,44,0|6wm2rz,39,44,0|6wm2s0,40,45,1|75z43z,40,45,1|75z440,39,44,0|7fc5fz,39,44,0|7fc5g0,40,45,1|7p25fz,40,45,1|7p25g0,39,44,0|7yf6rz,39,44,0|7yf6s0,40,45,1|87s83z,40,45,1|87s840,39,44,0|8h59fz,39,44,0|8h59g0,40,45,1|8qiarz,40,45,1|8qias0,39,44,0|8zvc3z,39,44,0|8zvc40,40,45,1|998dfz,40,45,1|998dg0,39,44,0|9ilerz,39,44,0|9iles0,40,45,1|9ryg3z,40,45,1|9ryg40,39,44,0|a1bhfz,39,44,0|a1bhg0,40,45,1|aaoirz,40,45,1|aaois0,39,44,0|ak1k3z,39,44,0|ak1k40,40,45,1|atrk3z,40,45,1|atrk40,39,44,0|b34lfz,39,44,0|b34lg0,40,45,1|bchmrz,40,45,1|bchms0,39,44,0|bluo3z,39,44,0|bluo40,40,45,1|bv7pfz,40,45,1|bv7pg0,39,44,0|c4kqrz,39,44,0|c4kqs0,40,45,1|cdxs3z,40,45,1|cdxs40,39,44,0|cnatfz,39,44,0|cnatg0,40,45,1|cwnurz,40,45,1|cwnus0,39,44,0|d60w3z,39,44,0|d60w40,40,45,1|dfdxfz,40,45,1|dfdxg0,39,44,0|dp3xfz,39,44,0|dp3xg0,40,45,1|dzwtfz,40,45,1|dzwtg0,39,44,0|e7u03z,39,44,0|e7u040,40,45,1|eimw3z,40,45,1|eimw40,39,44,0|eqk2rz,39,44,0|eqk2s0,40,45,1|f1cyrz,40,45,1|f1cys0,39,44,0|f9a5fz,39,44,0|f9a5g0,40,45,1|fkg03z,40,45,1|fkg040,39,44,0|fs083z,39,44,0|fs0840,40,45,1|g362rz,40,45,1|g362s0,39,44,0|gaqarz,39,44,0|gaqas0,40,45,1|glw5fz,40,45,1|glw5g0,39,44,0|gttc3z,39,44,0|gttc40,40,45,1|h4m83z,40,45,1|h4m840,39,44,0|hcjerz,39,44,0|hcjes0,40,45,1|hncarz,40,45,1|hncas0,39,44,0|hv9hfz,39,44,0|hv9hg0,40,45,1|i6fc3z,40,45,1|i6fc40,39,44,0|idzk3z,39,44,0|idzk40,40,45,1|ip5erz,40,45,1|ip5es0,39,44,0|iwpmrz,39,44,0|iwpms0,40,45,1|j7vhfz,40,45,1|j7vhg0,39,44,0|jffpfz,39,44,0|jffpg0,40,45,1|jqlk3z,40,45,1|jqlk40,39,44,0|jyiqrz,39,44,0|jyiqs0,40,45,1|k9bmrz,40,45,1|k9bms0,39,44,0|kh8tfz,39,44,0|kh8tg0,40,45,1|ks1pfz,40,45,1|ks1pg0,39,44,0|kzyw3z,39,44,0|kzyw40,40,45,1|lb4qrz,40,45,1|lb4qs0,39,44,0|lioyrz,39,44,0|lioys0,40,45,1|ltutfz,40,45,1|ltutg0,39,44,0|m1f1fz,39,44,0|m1f1g0,40,45,1|mckw3z,40,45,1|mckw40,39,44,0|mki2rz,39,44,0|mki2s0,40,45,1|mvayrz,40,45,1|mvays0,39,44,0|n385fz,39,44,0|n385g0,40,45,1|ne11fz,40,45,1|ne11g0,39,44,0|nly83z,39,44,0|nly840,40,45,1|nwr43z,40,45,1|nwr440,39,44,0|o4oarz,39,44,0|o4oas0,40,45,1|ofu5fz,40,45,1|ofu5g0,39,44,0|onedfz,39,44,0|onedg0,40,45,1|oyk83z,40,45,1|oyk840,39,44,0|p64g3z,39,44,0|p64g40,40,45,1|phaarz,40,45,1|phaas0,39,44,0|pp7hfz,39,44,0|pp7hg0,40,45,1|q00dfz,40,45,1|q00dg0,39,44,0|q7xk3z,39,44,0|q7xk40,40,45,1|qiqg3z,40,45,1|qiqg40,39,44,0|qqnmrz,39,44,0|qqnms0,40,45,1|r1thfz,40,45,1|r1thg0,39,44,0|r9dpfz,39,44,0|r9dpg0,40,45,1|rkjk3z,40,45,1|rkjk40,39,44,0|rs3s3z,39,44,0|rs3s40,40,45,1|s39mrz,40,45,1|s39ms0,39,44,0|sb6tfz,39,44,0|sb6tg0,40,45,1|slzpfz,40,45,1|slzpg0,39,44,0|stww3z,39,44,0|stww40,40,45,1|t4ps3z,40,45,1|t4ps40,39,44,0|tcmyrz,39,44,0|tcmys0,40,45,1|tnfurz,40,45,1|tnfus0,39,44,0|tvd1fz,39,44,0|tvd1g0,40,45,1|u6iw3z,40,45,1|u6iw40,39,44,0|ue343z,39,44,0|ue3440,40,45,1|up8yrz,40,45,1|up8ys0,39,44,0|uwt6rz,39,44,0|uwt6s0,40,45,1|v7z1fz,40,45,1|v7z1g0,39,44,0|vfw83z,39,44,0|vfw840,40,45,1|vqp43z,40,45,1|vqp440,39,44,0|vymarz,39,44,0|vymas0,40,45,1|w9f6rz,40,45,1|w9f6s0,39,44,0|whcdfz,39,44,0|whcdg0,40,45,1|wsi83z,40,45,1|wsi840,39,44,0|x02g3z,39,44,0|x02g40,40,45,1|xb8arz,40,45,1|xb8as0,39,44,0|xisirz,39,44,0|xisis0,40,45,1|xtydfz,40,45,1|xtydg0,39,44,0|y1ilfz,39,44,0|y1ilg0,40,45,1|ycog3z,40,45,1|ycog40,39,44,0|yklmrz,39,44,0|yklms0,40,45,1|yveirz,40,45,1|yveis0,39,44,0|z3bpfz,39,44,0|z3bpg0,40,45,1|ze4lfz,40,45,1|ze4lg0,39,44,0","America/Ojinaga|,0,158,0|-p1u4k0,50,66,0|-m7mko1,50,66,0|-m7mko0,45,62,0|-kf67c1,45,62,0|-kf67c0,50,66,0|-k6j3c1,50,66,0|-k6j3c0,45,62,0|-jypm01,45,62,0|-jypm00,50,66,0|-jpan81,50,66,0|-jpan80,45,62,0|dphfjz,45,62,0|dphfk0,46,63,1|dzxa3z,46,63,1|dzxa40,45,62,0|e87i7z,45,62,0|e87i80,46,63,1|eincrz,46,63,1|eincs0,45,62,0|eqxnnz,45,62,0|eqxno0,52,62,1|f1di7z,52,62,1|f1di80,50,66,0|f9nqbz,50,66,0|f9nqc0,52,62,1|fkgjjz,52,62,1|fkgjk0,50,66,0|fsdszz,50,66,0|fsdt00,52,62,1|g36m7z,52,62,1|g36m80,50,66,0|gcwozz,50,66,0|gcwp00,52,62,1|gkgu7z,52,62,1|gkgu80,50,66,0|gu6wzz,50,66,0|gu6x00,52,62,1|h4mrjz,52,62,1|h4mrk0,50,66,0|hcwznz,50,66,0|hcwzo0,52,62,1|hncu7z,52,62,1|hncu80,50,66,0|hvn2bz,50,66,0|hvn2c0,52,62,1|i6fvjz,52,62,1|i6fvk0,50,66,0|ied4zz,50,66,0|ied500,52,62,1|ip5y7z,52,62,1|ip5y80,50,66,0|ix37nz,50,66,0|ix37o0,52,62,1|j7w0vz,52,62,1|j7w0w0,50,66,0|jftabz,50,66,0|jftac0,52,62,1|jqm3jz,52,62,1|jqm3k0,50,66,0|jywbnz,50,66,0|jywbo0,52,62,1|k9c67z,52,62,1|k9c680,50,66,0|khmebz,50,66,0|khmec0,52,62,1|ks28vz,52,62,1|ks28w0,50,66,0|kz9kzz,50,66,0|kz9l00,52,62,1|lbi8vz,52,62,1|lbi8w0,50,66,0|lhznnz,50,66,0|lhzno0,52,62,1|lu8bjz,52,62,1|lu8bk0,50,66,0|m0pqbz,50,66,0|m0pqc0,52,62,1|mcye7z,52,62,1|mcye80,50,66,0|mjfszz,50,66,0|mjft00,52,62,1|mvogvz,52,62,1|mvogw0,50,66,0|n25vnz,50,66,0|n25vo0,52,62,1|neejjz,52,62,1|neejk0,50,66,0|nkvybz,50,66,0|nkvyc0,52,62,1|nx4m7z,52,62,1|nx4m80,50,66,0|o3yznz,50,66,0|o3yzo0,52,62,1|og7njz,52,62,1|og7nk0,50,66,0|omp2bz,50,66,0|omp2c0,52,62,1|oyxq7z,52,62,1|oyxq80,50,66,0|p5f4zz,50,66,0|p5f500,52,62,1|phnsvz,52,62,1|phnsw0,50,66,0|po57nz,50,66,0|po57o0,52,62,1|q0dvjz,52,62,1|q0dvk0,50,66,0|q6vabz,50,66,0|q6vac0,52,62,1|qj3y7z,52,62,1|qj3y80,50,66,0|qpybnz,50,66,0|qpybo0,52,62,1|r26zjz,52,62,1|r26zk0,50,66,0|r8oebz,50,66,0|r8oec0,52,62,1|rkx27z,52,62,1|rkx280,50,66,0|rregzz,50,66,0|rreh00,52,62,1|s3n4vz,52,62,1|s3n4w0,50,66,0|sa4jnz,50,66,0|sa4jo0,52,62,1|smd7jz,52,62,1|smd7k0,50,66,0|ssumbz,50,66,0|ssumc0,52,62,1|t53a7z,52,62,1|t53a80,50,66,0|tbkozz,50,66,0|tbkp00,52,62,1|tntcvz,52,62,1|tntcw0,50,66,0|tunqbz,50,66,0|tunqc0,52,62,1|u6we7z,52,62,1|u6we80,50,66,0|uddszz,50,66,0|uddt00,52,62,1|upmgvz,52,62,1|upmgw0,50,66,0|uw3vnz,50,66,0|uw3vo0,52,62,1|v8cjjz,52,62,1|v8cjk0,50,66,0|vetybz,50,66,0|vetyc0,52,62,1|vr2m7z,52,62,1|vr2m80,50,66,0|vxk0zz,50,66,0|vxk100,52,62,1|w9sovz,52,62,1|w9sow0,50,66,0|wgn2bz,50,66,0|wgn2c0,52,62,1|wsvq7z,52,62,1|wsvq80,50,66,0|wzd4zz,50,66,0|wzd500,52,62,1|xblsvz,52,62,1|xblsw0,50,66,0|xi37nz,50,66,0|xi37o0,52,62,1|xubvjz,52,62,1|xubvk0,50,66,0|y0tabz,50,66,0|y0tac0,52,62,1|yd1y7z,52,62,1|yd1y80,50,66,0|yjjczz,50,66,0|yjjd00,52,62,1|yvs0vz,52,62,1|yvs0w0,50,66,0|z29fnz,50,66,0|z29fo0,52,62,1|zei3jz,52,62,1|zei3k0,50,66,0","America/Panama|,0,80,0|-15r0uls,41,81,0|-w757vd,41,81,0|-w757vc,49,63,0","America/Pangnirtung|,60,1,0|-pkmlc0,32,42,0|-ek27c1,32,42,0|-ek27c0,33,44,1|-cq2tg1,33,44,1|-cq2tg0,34,44,1|-cnp641,34,44,1|-cnp640,32,42,0|-2g2281,32,42,0|-2g2280,73,45,1|-26c281,73,45,1|-26c280,32,42,0|5dw3bz,32,42,0|5dw3c0,54,44,1|5n91vz,54,44,1|5n91w0,32,42,0|5wm5zz,32,42,0|5wm600,54,44,1|65z4jz,54,44,1|65z4k0,32,42,0|6fc8nz,32,42,0|6fc8o0,54,44,1|6p25vz,54,44,1|6p25w0,32,42,0|6y2bbz,32,42,0|6y2bc0,54,44,1|77s8jz,54,44,1|77s8k0,32,42,0|7h5cnz,32,42,0|7h5co0,54,44,1|7qib7z,54,44,1|7qib80,32,42,0|7zvfbz,32,42,0|7zvfc0,54,44,1|898dvz,54,44,1|898dw0,32,42,0|8ilhzz,32,42,0|8ili00,54,44,1|8rygjz,54,44,1|8rygk0,32,42,0|908onz,32,42,0|908oo0,54,44,1|9aoj7z,54,44,1|9aoj80,32,42,0|9iyrbz,32,42,0|9iyrc0,54,44,1|9trkjz,54,44,1|9trkk0,32,42,0|a1otzz,32,42,0|a1ou00,54,44,1|achn7z,54,44,1|achn80,32,42,0|akewnz,32,42,0|akewo0,54,44,1|av7pvz,54,44,1|av7pw0,32,42,0|b3hxzz,32,42,0|b3hy00,54,44,1|bdxsjz,54,44,1|bdxsk0,32,42,0|bm80nz,32,42,0|bm80o0,54,44,1|bwnv7z,54,44,1|bwnv80,32,42,0|c4y3bz,32,42,0|c4y3c0,54,44,1|cfqwjz,54,44,1|cfqwk0,32,42,0|cno5zz,32,42,0|cno600,54,44,1|cygz7z,54,44,1|cygz80,32,42,0|d6e8nz,32,42,0|d6e8o0,62,42,1|dh74nz,62,42,1|dh74o0,49,63,0|dphcrz,49,63,0|dphcs0,62,42,1|dzx7bz,62,42,1|dzx7c0,49,63,0|e87ffz,49,63,0|e87fg0,62,42,1|ein9zz,62,42,1|eina00,49,63,0|eqxi3z,49,63,0|eqxi40,62,42,1|f1dcnz,62,42,1|f1dco0,49,63,0|f9nkrz,49,63,0|f9nks0,62,42,1|fkgdzz,62,42,1|fkge00,45,62,0|fsdq7z,45,62,0|fsdq80,46,63,1|g36jfz,46,63,1|g36jg0,49,63,0|gb3q3z,49,63,0|gb3q40,62,42,1|glwjbz,62,42,1|glwjc0,49,63,0|gu6rfz,49,63,0|gu6rg0,62,42,1|h4mlzz,62,42,1|h4mm00,49,63,0|hcwu3z,49,63,0|hcwu40,62,42,1|hnconz,62,42,1|hncoo0,49,63,0|hvmwrz,49,63,0|hvmws0,62,42,1|i6fpzz,62,42,1|i6fq00,49,63,0|ieczfz,49,63,0|ieczg0,62,42,1|ip5snz,62,42,1|ip5so0,49,63,0|ix323z,49,63,0|ix3240,62,42,1|j7vvbz,62,42,1|j7vvc0,49,63,0|jeq8rz,49,63,0|jeq8s0,62,42,1|jqywnz,62,42,1|jqywo0,49,63,0|jxgbfz,49,63,0|jxgbg0,62,42,1|k9ozbz,62,42,1|k9ozc0,49,63,0|kg6e3z,49,63,0|kg6e40,62,42,1|ksf1zz,62,42,1|ksf200,49,63,0|kz9ffz,49,63,0|kz9fg0,62,42,1|lbi3bz,62,42,1|lbi3c0,49,63,0|lhzi3z,49,63,0|lhzi40,62,42,1|lu85zz,62,42,1|lu8600,49,63,0|m0pkrz,49,63,0|m0pks0,62,42,1|mcy8nz,62,42,1|mcy8o0,49,63,0|mjfnfz,49,63,0|mjfng0,62,42,1|mvobbz,62,42,1|mvobc0,49,63,0|n25q3z,49,63,0|n25q40,62,42,1|needzz,62,42,1|neee00,49,63,0|nkvsrz,49,63,0|nkvss0,62,42,1|nx4gnz,62,42,1|nx4go0,49,63,0|o3yu3z,49,63,0|o3yu40,62,42,1|og7hzz,62,42,1|og7i00,49,63,0|omowrz,49,63,0|omows0,62,42,1|oyxknz,62,42,1|oyxko0,49,63,0|p5ezfz,49,63,0|p5ezg0,62,42,1|phnnbz,62,42,1|phnnc0,49,63,0|po523z,49,63,0|po5240,62,42,1|q0dpzz,62,42,1|q0dq00,49,63,0|q6v4rz,49,63,0|q6v4s0,62,42,1|qj3snz,62,42,1|qj3so0,49,63,0|qpy63z,49,63,0|qpy640,62,42,1|r26tzz,62,42,1|r26u00,49,63,0|r8o8rz,49,63,0|r8o8s0,62,42,1|rkwwnz,62,42,1|rkwwo0,49,63,0|rrebfz,49,63,0|rrebg0,62,42,1|s3mzbz,62,42,1|s3mzc0,49,63,0|sa4e3z,49,63,0|sa4e40,62,42,1|smd1zz,62,42,1|smd200,49,63,0|ssugrz,49,63,0|ssugs0,62,42,1|t534nz,62,42,1|t534o0,49,63,0|tbkjfz,49,63,0|tbkjg0,62,42,1|tnt7bz,62,42,1|tnt7c0,49,63,0|tunkrz,49,63,0|tunks0,62,42,1|u6w8nz,62,42,1|u6w8o0,49,63,0|uddnfz,49,63,0|uddng0,62,42,1|upmbbz,62,42,1|upmbc0,49,63,0|uw3q3z,49,63,0|uw3q40,62,42,1|v8cdzz,62,42,1|v8ce00,49,63,0|vetsrz,49,63,0|vetss0,62,42,1|vr2gnz,62,42,1|vr2go0,49,63,0|vxjvfz,49,63,0|vxjvg0,62,42,1|w9sjbz,62,42,1|w9sjc0,49,63,0|wgmwrz,49,63,0|wgmws0,62,42,1|wsvknz,62,42,1|wsvko0,49,63,0|wzczfz,49,63,0|wzczg0,62,42,1|xblnbz,62,42,1|xblnc0,49,63,0|xi323z,49,63,0|xi3240,62,42,1|xubpzz,62,42,1|xubq00,49,63,0|y0t4rz,49,63,0|y0t4s0,62,42,1|yd1snz,62,42,1|yd1so0,49,63,0|yjj7fz,49,63,0|yjj7g0,62,42,1|yvrvbz,62,42,1|yvrvc0,49,63,0|z29a3z,49,63,0|z29a40,62,42,1|zehxzz,62,42,1|zehy00,49,63,0","America/Paramaribo|,0,159,0|-usj4g8,7,160,0|-i9lsfx,7,160,0|-i9lsfw,7,161,0|-cnnf4d,7,161,0|-cnnf4c,81,101,0|7p471z,81,101,0|7p4720,39,44,0","America/Phoenix|,0,162,0|-18y0j80,50,66,0|-r0epo1,50,66,0|-r0epo0,52,62,1|-qplwg1,52,62,1|-qplwg0,50,66,0|-qhon01,50,66,0|-qhon00,52,62,1|-q6vts1,52,62,1|-q6vts0,50,66,0|-ek1z01,50,66,0|-ek1z00,58,62,1|-dkikmd,58,62,1|-dkikmc,50,66,0|-dftz6d,50,66,0|-dftz6c,58,62,1|-d6f5yd,58,62,1|-d6f5yc,50,66,0|-1e8kc1,50,66,0|-1e8kc0,52,62,1|-14vls1,52,62,1|-14vls0,50,66,0","America/Port-au-Prince|,0,163,0|-15r0vxs,84,164,0|-rmk9ad,84,164,0|-rmk9ac,49,63,0|6ys5vz,49,63,0|6ys5w0,62,42,1|77s5rz,62,42,1|77s5s0,49,63,0|7h59vz,49,63,0|7h59w0,62,42,1|7qi8fz,62,42,1|7qi8g0,49,63,0|7zvcjz,49,63,0|7zvck0,62,42,1|898b3z,62,42,1|898b40,49,63,0|8ilf7z,49,63,0|8ilf80,62,42,1|8rydrz,62,42,1|8ryds0,49,63,0|91bhvz,49,63,0|91bhw0,62,42,1|9aogfz,62,42,1|9aogg0,49,63,0|9iyrbz,49,63,0|9iyrc0,62,42,1|9trnbz,62,42,1|9trnc0,49,63,0|a1otzz,49,63,0|a1ou00,62,42,1|achpzz,62,42,1|achq00,49,63,0|akewnz,49,63,0|akewo0,62,42,1|av7snz,62,42,1|av7so0,49,63,0|b3hxzz,49,63,0|b3hy00,62,42,1|bdxvbz,62,42,1|bdxvc0,49,63,0|bm80nz,49,63,0|bm80o0,62,42,1|bwnxzz,62,42,1|bwny00,49,63,0|c4y3bz,49,63,0|c4y3c0,62,42,1|cfqzbz,62,42,1|cfqzc0,49,63,0|cno5zz,49,63,0|cno600,62,42,1|cyh1zz,62,42,1|cyh200,49,63,0|d6e8nz,49,63,0|d6e8o0,62,42,1|dh74nz,62,42,1|dh74o0,49,63,0|dph9zz,49,63,0|dpha00,62,42,1|dzx7bz,62,42,1|dzx7c0,49,63,0|e87cnz,49,63,0|e87co0,62,42,1|ein9zz,62,42,1|eina00,49,63,0|iectvz,49,63,0|iectw0,62,42,1|ip5n3z,62,42,1|ip5n40,49,63,0|ix2wjz,49,63,0|ix2wk0,62,42,1|j7vprz,62,42,1|j7vps0,49,63,0|m0pkrz,49,63,0|m0pks0,62,42,1|mcy8nz,62,42,1|mcy8o0,49,63,0|mjfnfz,49,63,0|mjfng0,62,42,1|mvobbz,62,42,1|mvobc0,49,63,0|n25q3z,49,63,0|n25q40,62,42,1|needzz,62,42,1|neee00,49,63,0|nkvsrz,49,63,0|nkvss0,62,42,1|nx4gnz,62,42,1|nx4go0,49,63,0|omowrz,49,63,0|omows0,62,42,1|oyxknz,62,42,1|oyxko0,49,63,0|p5ezfz,49,63,0|p5ezg0,62,42,1|phnnbz,62,42,1|phnnc0,49,63,0|po523z,49,63,0|po5240,62,42,1|q0dpzz,62,42,1|q0dq00,49,63,0|q6v4rz,49,63,0|q6v4s0,62,42,1|qj3snz,62,42,1|qj3so0,49,63,0|qpy63z,49,63,0|qpy640,62,42,1|r26tzz,62,42,1|r26u00,49,63,0|r8o8rz,49,63,0|r8o8s0,62,42,1|rkwwnz,62,42,1|rkwwo0,49,63,0|rrebfz,49,63,0|rrebg0,62,42,1|s3mzbz,62,42,1|s3mzc0,49,63,0|sa4e3z,49,63,0|sa4e40,62,42,1|smd1zz,62,42,1|smd200,49,63,0|ssugrz,49,63,0|ssugs0,62,42,1|t534nz,62,42,1|t534o0,49,63,0|tbkjfz,49,63,0|tbkjg0,62,42,1|tnt7bz,62,42,1|tnt7c0,49,63,0|tunkrz,49,63,0|tunks0,62,42,1|u6w8nz,62,42,1|u6w8o0,49,63,0|uddnfz,49,63,0|uddng0,62,42,1|upmbbz,62,42,1|upmbc0,49,63,0|uw3q3z,49,63,0|uw3q40,62,42,1|v8cdzz,62,42,1|v8ce00,49,63,0|vetsrz,49,63,0|vetss0,62,42,1|vr2gnz,62,42,1|vr2go0,49,63,0|vxjvfz,49,63,0|vxjvg0,62,42,1|w9sjbz,62,42,1|w9sjc0,49,63,0|wgmwrz,49,63,0|wgmws0,62,42,1|wsvknz,62,42,1|wsvko0,49,63,0|wzczfz,49,63,0|wzczg0,62,42,1|xblnbz,62,42,1|xblnc0,49,63,0|xi323z,49,63,0|xi3240,62,42,1|xubpzz,62,42,1|xubq00,49,63,0|y0t4rz,49,63,0|y0t4s0,62,42,1|yd1snz,62,42,1|yd1so0,49,63,0|yjj7fz,49,63,0|yjj7g0,62,42,1|yvrvbz,62,42,1|yvrvc0,49,63,0|z29a3z,49,63,0|z29a40,62,42,1|zehxzz,62,42,1|zehy00,49,63,0","America/Port_of_Spain|,0,41,0|-u6m79w,32,42,0","America/Porto_Velho|,0,165,0|-t85g60,42,42,0|-jyl7o1,42,42,0|-jyl7o0,39,44,1|-jpayc1,39,44,1|-jpayc0,42,42,0|-jfsa81,42,42,0|-jfsa80,39,44,1|-j6j101,39,44,1|-j6j100,42,42,0|-ahcvk1,42,42,0|-ahcvk0,39,44,1|-aad0w1,39,44,1|-aad0w0,42,42,0|-9yky81,42,42,0|-9yky80,39,44,1|-9scyc1,39,44,1|-9scyc0,42,42,0|-9ft0w1,42,42,0|-9ft0w0,39,44,1|-99j6c1,39,44,1|-99j6c0,42,42,0|-8wz8w1,42,42,0|-8wz8w0,39,44,1|-8scno1,39,44,1|-8scno0,42,42,0|-35xjk1,42,42,0|-35xjk0,39,44,1|-31nx01,39,44,1|-31nx00,42,42,0|-2kdm81,42,42,0|-2kdm80,39,44,1|-2hcfo1,39,44,1|-2hcfo0,42,42,0|-24qnk1,42,42,0|-24qnk0,39,44,1|-2042c1,39,44,1|-2042c0,42,42,0|-1nia81,42,42,0|-1nia80,39,44,1|-1hc501,39,44,1|-1hc500,42,42,0|-14qcw1,42,42,0|-14qcw0,39,44,1|-yid01,39,44,1|-yid00,42,42,0|89jf3z,42,42,0|89jf40,39,44,1|8gdmzz,39,44,1|8gdn00,42,42,0|8rwj3z,42,42,0|8rwj40,39,44,1|8xnuzz,39,44,1|8xnv00,42,42,0|9aogfz,42,42,0|9aogg0,39,44,1|9g2tnz,39,44,1|9g2to0,42,42,0","America/Puerto_Rico|,0,166,0|-10xhp3b,32,42,0|-efsnk1,32,42,0|-efsnk0,33,44,1|-cq2tg1,33,44,1|-cq2tg0,34,44,1|-cnp641,34,44,1|-cnp640,32,42,0","America/Punta_Arenas|,0,167,0|-15r0w78,85,168,0|-vauawr,85,168,0|-vauawq,56,63,0|-rx8i41,56,63,0|-rx8i40,85,168,0|-qs16wr,85,168,0|-qs16wq,42,42,0|-qcwsw1,42,42,0|-qcwsw0,85,168,0|-m3etkr,85,168,0|-m3etkq,42,42,1|-lsgfk1,42,42,1|-lsgfk0,56,63,0|-lkl0s1,56,63,0|-lkl0s0,42,42,1|-l9oi81,42,42,1|-l9oi80,56,63,0|-l1t3g1,56,63,0|-l1t3g0,42,42,1|-kqwkw1,42,42,1|-kqwkw0,56,63,0|-kj1641,56,63,0|-kj1640,42,42,1|-k84nk1,42,42,1|-k84nk0,56,63,0|-k098s1,56,63,0|-k098s0,42,42,1|-jpavk1,42,42,1|-jpavk0,56,63,0|-jhfgs1,56,63,0|-jhfgs0,42,42,0|-eeay81,42,42,0|-eeay80,56,63,0|-eb5ws1,56,63,0|-eb5ws0,42,42,0|-bvifk1,42,42,0|-bvifk0,56,63,0|-bsvzk1,56,63,0|-bsvzk0,42,42,0|-lsvk1,42,42,0|-lsvk0,39,44,1|-e8qc1,39,44,1|-e8qc0,42,42,0|-1zww1,42,42,0|-1zww0,39,44,1|4hcbz,39,44,1|4hcc0,42,42,0|ekdrz,42,42,0|ekds0,39,44,1|mhhnz,39,44,1|mhho0,42,42,0|xagfz,42,42,0|xagg0,39,44,1|157kbz,39,44,1|157kc0,42,42,0|1gdhrz,42,42,0|1gdhs0,39,44,1|1nxmzz,39,44,1|1nxn00,42,42,0|1ydn3z,42,42,0|1ydn40,39,44,1|26npnz,39,44,1|26npo0,42,42,0|2htn3z,42,42,0|2htn40,39,44,1|2pdsbz,39,44,1|2pdsc0,42,42,0|30jprz,42,42,0|30jps0,39,44,1|38gtnz,39,44,1|38gto0,42,42,0|3j9sfz,42,42,0|3j9sg0,39,44,1|3r6wbz,39,44,1|3r6wc0,42,42,0|41zv3z,42,42,0|41zv40,39,44,1|49wyzz,39,44,1|49wz00,42,42,0|4l2wfz,42,42,0|4l2wg0,39,44,1|4sn1nz,39,44,1|4sn1o0,42,42,0|53sz3z,42,42,0|53sz40,39,44,1|5bd4bz,39,44,1|5bd4c0,42,42,0|5mj1rz,42,42,0|5mj1s0,39,44,1|5ug5nz,39,44,1|5ug5o0,42,42,0|6594fz,42,42,0|6594g0,39,44,1|6d68bz,39,44,1|6d68c0,42,42,0|6nz73z,42,42,0|6nz740,39,44,1|6vwazz,39,44,1|6vwb00,42,42,0|76p9rz,42,42,0|76p9s0,39,44,1|7emdnz,39,44,1|7emdo0,42,42,0|7psb3z,42,42,0|7psb40,39,44,1|7xcgbz,39,44,1|7xcgc0,42,42,0|88idrz,42,42,0|88ids0,39,44,1|8g2izz,39,44,1|8g2j00,42,42,0|8r8gfz,42,42,0|8r8gg0,39,44,1|90lezz,39,44,1|90lf00,42,42,0|99yj3z,42,42,0|99yj40,39,44,1|9hvmzz,39,44,1|9hvn00,42,42,0|9solrz,42,42,0|9sols0,39,44,1|a0lpnz,39,44,1|a0lpo0,42,42,0|abrn3z,42,42,0|abrn40,39,44,1|ajbsbz,39,44,1|ajbsc0,42,42,0|at1v3z,42,42,0|at1v40,39,44,1|b21uzz,39,44,1|b21v00,42,42,0|bd7sfz,42,42,0|bd7sg0,39,44,1|bl4wbz,39,44,1|bl4wc0,42,42,0|bvxv3z,42,42,0|bvxv40,39,44,1|c3uyzz,39,44,1|c3uz00,42,42,0|cenxrz,42,42,0|cenxs0,39,44,1|cml1nz,39,44,1|cml1o0,42,42,0|cxe0fz,42,42,0|cxe0g0,39,44,1|d5b4bz,39,44,1|d5b4c0,42,42,0|dgh1rz,42,42,0|dgh1s0,39,44,1|do16zz,39,44,1|do1700,42,42,0|dz74fz,42,42,0|dz74g0,39,44,1|e7u5nz,39,44,1|e7u5o0,42,42,0|ehx73z,42,42,0|ehx740,39,44,1|epuazz,39,44,1|epub00,42,42,0|ezxcfz,42,42,0|ezxcg0,39,44,1|f9n9nz,39,44,1|f9n9o0,42,42,0|fjdcfz,42,42,0|fjdcg0,39,44,1|fragbz,39,44,1|fragc0,42,42,0|g2gdrz,42,42,0|g2gds0,39,44,1|ga0izz,39,44,1|ga0j00,42,42,0|gl6gfz,42,42,0|gl6gg0,39,44,1|gsqlnz,39,44,1|gsqlo0,42,42,0|h3wj3z,42,42,0|h3wj40,39,44,1|hbgobz,39,44,1|hbgoc0,42,42,0|hmmlrz,42,42,0|hmmls0,39,44,1|hujpnz,39,44,1|hujpo0,42,42,0|i5cofz,42,42,0|i5cog0,39,44,1|id9sbz,39,44,1|id9sc0,42,42,0|io2r3z,42,42,0|io2r40,39,44,1|ivzuzz,39,44,1|ivzv00,42,42,0|j75sfz,42,42,0|j75sg0,39,44,1|jepxnz,39,44,1|jepxo0,42,42,0|jpvv3z,42,42,0|jpvv40,39,44,1|jyiwbz,39,44,1|jyiwc0,42,42,0|k8lxrz,42,42,0|k8lxs0,39,44,1|kgj1nz,39,44,1|kgj1o0,42,42,0|krc0fz,42,42,0|krc0g0,39,44,1|l0c0bz,39,44,1|l0c0c0,42,42,0|la233z,42,42,0|la2340,39,44,1|lkuwbz,39,44,1|lkuwc0,42,42,0|lq9f3z,42,42,0|lq9f40,39,44,1|m380bz,39,44,1|m380c0,42,42,0|m9pf3z,42,42,0|m9pf40,39,44,1|mly2zz,39,44,1|mly300,42,42,0|mssgfz,42,42,0|mssgg0,39,44,1|n4o5nz,39,44,1|n4o5o0,42,42,0|nbij3z,42,42,0|nbij40,39,44,1|o776zz,39,44,1|o77700,42,42,0|obvsfz,42,42,0|obvsg0,39,44,1|ohn4bz,39,44,1|ohn4c0,39,44,0","America/Rainy_River|,0,169,0|-1353ahk,45,62,0|-qzov41,45,62,0|-qzov40,46,63,1|-qplz81,46,63,1|-qplz80,45,62,0|-f9ofc1,45,62,0|-f9ofc0,46,63,1|-ek21s1,46,63,1|-ek21s0,47,63,1|-cq2tg1,47,63,1|-cq2tg0,48,63,1|-cnp0k1,48,63,1|-cnp0k0,45,62,0|296u7z,45,62,0|296u80,46,63,1|2ijsrz,46,63,1|2ijss0,45,62,0|2rwwvz,45,62,0|2rwww0,46,63,1|319vfz,46,63,1|319vg0,45,62,0|3amzjz,45,62,0|3amzk0,46,63,1|3kcwrz,46,63,1|3kcws0,45,62,0|3td27z,45,62,0|3td280,46,63,1|432zfz,46,63,1|432zg0,45,62,0|4cg3jz,45,62,0|4cg3k0,46,63,1|4lt23z,46,63,1|4lt240,45,62,0|4v667z,45,62,0|4v6680,46,63,1|54j4rz,46,63,1|54j4s0,45,62,0|5dw8vz,45,62,0|5dw8w0,46,63,1|5n97fz,46,63,1|5n97g0,45,62,0|5wmbjz,45,62,0|5wmbk0,46,63,1|65za3z,46,63,1|65za40,45,62,0|6fce7z,45,62,0|6fce80,46,63,1|6p2bfz,46,63,1|6p2bg0,45,62,0|6y2gvz,45,62,0|6y2gw0,46,63,1|77se3z,46,63,1|77se40,45,62,0|7h5i7z,45,62,0|7h5i80,46,63,1|7qigrz,46,63,1|7qigs0,45,62,0|7zvkvz,45,62,0|7zvkw0,46,63,1|898jfz,46,63,1|898jg0,45,62,0|8ilnjz,45,62,0|8ilnk0,46,63,1|8rym3z,46,63,1|8rym40,45,62,0|908u7z,45,62,0|908u80,46,63,1|9aoorz,46,63,1|9aoos0,45,62,0|9iywvz,45,62,0|9iyww0,46,63,1|9trq3z,46,63,1|9trq40,45,62,0|a1ozjz,45,62,0|a1ozk0,46,63,1|achsrz,46,63,1|achss0,45,62,0|akf27z,45,62,0|akf280,46,63,1|av7vfz,46,63,1|av7vg0,45,62,0|b3i3jz,45,62,0|b3i3k0,46,63,1|bdxy3z,46,63,1|bdxy40,45,62,0|bm867z,45,62,0|bm8680,46,63,1|bwo0rz,46,63,1|bwo0s0,45,62,0|c4y8vz,45,62,0|c4y8w0,46,63,1|cfr23z,46,63,1|cfr240,45,62,0|cnobjz,45,62,0|cnobk0,46,63,1|cyh4rz,46,63,1|cyh4s0,45,62,0|d6ee7z,45,62,0|d6ee80,46,63,1|dh77fz,46,63,1|dh77g0,45,62,0|dphfjz,45,62,0|dphfk0,46,63,1|dzxa3z,46,63,1|dzxa40,45,62,0|e87i7z,45,62,0|e87i80,46,63,1|eincrz,46,63,1|eincs0,45,62,0|eqxkvz,45,62,0|eqxkw0,46,63,1|f1dffz,46,63,1|f1dfg0,45,62,0|f9nnjz,45,62,0|f9nnk0,46,63,1|fkggrz,46,63,1|fkggs0,45,62,0|fsdq7z,45,62,0|fsdq80,46,63,1|g36jfz,46,63,1|g36jg0,45,62,0|gb3svz,45,62,0|gb3sw0,46,63,1|glwm3z,46,63,1|glwm40,45,62,0|gu6u7z,45,62,0|gu6u80,46,63,1|h4morz,46,63,1|h4mos0,45,62,0|hcwwvz,45,62,0|hcwww0,46,63,1|hncrfz,46,63,1|hncrg0,45,62,0|hvmzjz,45,62,0|hvmzk0,46,63,1|i6fsrz,46,63,1|i6fss0,45,62,0|ied27z,45,62,0|ied280,46,63,1|ip5vfz,46,63,1|ip5vg0,45,62,0|ix34vz,45,62,0|ix34w0,46,63,1|j7vy3z,46,63,1|j7vy40,45,62,0|jeqbjz,45,62,0|jeqbk0,46,63,1|jqyzfz,46,63,1|jqyzg0,45,62,0|jxge7z,45,62,0|jxge80,46,63,1|k9p23z,46,63,1|k9p240,45,62,0|kg6gvz,45,62,0|kg6gw0,46,63,1|ksf4rz,46,63,1|ksf4s0,45,62,0|kz9i7z,45,62,0|kz9i80,46,63,1|lbi63z,46,63,1|lbi640,45,62,0|lhzkvz,45,62,0|lhzkw0,46,63,1|lu88rz,46,63,1|lu88s0,45,62,0|m0pnjz,45,62,0|m0pnk0,46,63,1|mcybfz,46,63,1|mcybg0,45,62,0|mjfq7z,45,62,0|mjfq80,46,63,1|mvoe3z,46,63,1|mvoe40,45,62,0|n25svz,45,62,0|n25sw0,46,63,1|neegrz,46,63,1|neegs0,45,62,0|nkvvjz,45,62,0|nkvvk0,46,63,1|nx4jfz,46,63,1|nx4jg0,45,62,0|o3ywvz,45,62,0|o3yww0,46,63,1|og7krz,46,63,1|og7ks0,45,62,0|omozjz,45,62,0|omozk0,46,63,1|oyxnfz,46,63,1|oyxng0,45,62,0|p5f27z,45,62,0|p5f280,46,63,1|phnq3z,46,63,1|phnq40,45,62,0|po54vz,45,62,0|po54w0,46,63,1|q0dsrz,46,63,1|q0dss0,45,62,0|q6v7jz,45,62,0|q6v7k0,46,63,1|qj3vfz,46,63,1|qj3vg0,45,62,0|qpy8vz,45,62,0|qpy8w0,46,63,1|r26wrz,46,63,1|r26ws0,45,62,0|r8objz,45,62,0|r8obk0,46,63,1|rkwzfz,46,63,1|rkwzg0,45,62,0|rree7z,45,62,0|rree80,46,63,1|s3n23z,46,63,1|s3n240,45,62,0|sa4gvz,45,62,0|sa4gw0,46,63,1|smd4rz,46,63,1|smd4s0,45,62,0|ssujjz,45,62,0|ssujk0,46,63,1|t537fz,46,63,1|t537g0,45,62,0|tbkm7z,45,62,0|tbkm80,46,63,1|tnta3z,46,63,1|tnta40,45,62,0|tunnjz,45,62,0|tunnk0,46,63,1|u6wbfz,46,63,1|u6wbg0,45,62,0|uddq7z,45,62,0|uddq80,46,63,1|upme3z,46,63,1|upme40,45,62,0|uw3svz,45,62,0|uw3sw0,46,63,1|v8cgrz,46,63,1|v8cgs0,45,62,0|vetvjz,45,62,0|vetvk0,46,63,1|vr2jfz,46,63,1|vr2jg0,45,62,0|vxjy7z,45,62,0|vxjy80,46,63,1|w9sm3z,46,63,1|w9sm40,45,62,0|wgmzjz,45,62,0|wgmzk0,46,63,1|wsvnfz,46,63,1|wsvng0,45,62,0|wzd27z,45,62,0|wzd280,46,63,1|xblq3z,46,63,1|xblq40,45,62,0|xi34vz,45,62,0|xi34w0,46,63,1|xubsrz,46,63,1|xubss0,45,62,0|y0t7jz,45,62,0|y0t7k0,46,63,1|yd1vfz,46,63,1|yd1vg0,45,62,0|yjja7z,45,62,0|yjja80,46,63,1|yvry3z,46,63,1|yvry40,45,62,0|z29cvz,45,62,0|z29cw0,46,63,1|zei0rz,46,63,1|zei0s0,45,62,0","America/Rankin_Inlet|,60,1,0|-6s8lc0,45,62,0|-2g1wo1,45,62,0|-2g1wo0,86,42,1|-26bwo1,86,42,1|-26bwo0,45,62,0|5dw8vz,45,62,0|5dw8w0,46,63,1|5n97fz,46,63,1|5n97g0,45,62,0|5wmbjz,45,62,0|5wmbk0,46,63,1|65za3z,46,63,1|65za40,45,62,0|6fce7z,45,62,0|6fce80,46,63,1|6p2bfz,46,63,1|6p2bg0,45,62,0|6y2gvz,45,62,0|6y2gw0,46,63,1|77se3z,46,63,1|77se40,45,62,0|7h5i7z,45,62,0|7h5i80,46,63,1|7qigrz,46,63,1|7qigs0,45,62,0|7zvkvz,45,62,0|7zvkw0,46,63,1|898jfz,46,63,1|898jg0,45,62,0|8ilnjz,45,62,0|8ilnk0,46,63,1|8rym3z,46,63,1|8rym40,45,62,0|908u7z,45,62,0|908u80,46,63,1|9aoorz,46,63,1|9aoos0,45,62,0|9iywvz,45,62,0|9iyww0,46,63,1|9trq3z,46,63,1|9trq40,45,62,0|a1ozjz,45,62,0|a1ozk0,46,63,1|achsrz,46,63,1|achss0,45,62,0|akf27z,45,62,0|akf280,46,63,1|av7vfz,46,63,1|av7vg0,45,62,0|b3i3jz,45,62,0|b3i3k0,46,63,1|bdxy3z,46,63,1|bdxy40,45,62,0|bm867z,45,62,0|bm8680,46,63,1|bwo0rz,46,63,1|bwo0s0,45,62,0|c4y8vz,45,62,0|c4y8w0,46,63,1|cfr23z,46,63,1|cfr240,45,62,0|cnobjz,45,62,0|cnobk0,46,63,1|cyh4rz,46,63,1|cyh4s0,45,62,0|d6ee7z,45,62,0|d6ee80,46,63,1|dh77fz,46,63,1|dh77g0,45,62,0|dphfjz,45,62,0|dphfk0,46,63,1|dzxa3z,46,63,1|dzxa40,45,62,0|e87i7z,45,62,0|e87i80,46,63,1|eincrz,46,63,1|eincs0,45,62,0|eqxkvz,45,62,0|eqxkw0,46,63,1|f1dffz,46,63,1|f1dfg0,45,62,0|f9nnjz,45,62,0|f9nnk0,46,63,1|fkggrz,46,63,1|fkggs0,45,62,0|fsdq7z,45,62,0|fsdq80,46,63,1|g36jfz,46,63,1|g36jg0,49,63,0|gb3svz,49,63,0|gb3sw0,46,63,1|glwm3z,46,63,1|glwm40,45,62,0|gu6u7z,45,62,0|gu6u80,46,63,1|h4morz,46,63,1|h4mos0,45,62,0|hcwwvz,45,62,0|hcwww0,46,63,1|hncrfz,46,63,1|hncrg0,45,62,0|hvmzjz,45,62,0|hvmzk0,46,63,1|i6fsrz,46,63,1|i6fss0,45,62,0|ied27z,45,62,0|ied280,46,63,1|ip5vfz,46,63,1|ip5vg0,45,62,0|ix34vz,45,62,0|ix34w0,46,63,1|j7vy3z,46,63,1|j7vy40,45,62,0|jeqbjz,45,62,0|jeqbk0,46,63,1|jqyzfz,46,63,1|jqyzg0,45,62,0|jxge7z,45,62,0|jxge80,46,63,1|k9p23z,46,63,1|k9p240,45,62,0|kg6gvz,45,62,0|kg6gw0,46,63,1|ksf4rz,46,63,1|ksf4s0,45,62,0|kz9i7z,45,62,0|kz9i80,46,63,1|lbi63z,46,63,1|lbi640,45,62,0|lhzkvz,45,62,0|lhzkw0,46,63,1|lu88rz,46,63,1|lu88s0,45,62,0|m0pnjz,45,62,0|m0pnk0,46,63,1|mcybfz,46,63,1|mcybg0,45,62,0|mjfq7z,45,62,0|mjfq80,46,63,1|mvoe3z,46,63,1|mvoe40,45,62,0|n25svz,45,62,0|n25sw0,46,63,1|neegrz,46,63,1|neegs0,45,62,0|nkvvjz,45,62,0|nkvvk0,46,63,1|nx4jfz,46,63,1|nx4jg0,45,62,0|o3ywvz,45,62,0|o3yww0,46,63,1|og7krz,46,63,1|og7ks0,45,62,0|omozjz,45,62,0|omozk0,46,63,1|oyxnfz,46,63,1|oyxng0,45,62,0|p5f27z,45,62,0|p5f280,46,63,1|phnq3z,46,63,1|phnq40,45,62,0|po54vz,45,62,0|po54w0,46,63,1|q0dsrz,46,63,1|q0dss0,45,62,0|q6v7jz,45,62,0|q6v7k0,46,63,1|qj3vfz,46,63,1|qj3vg0,45,62,0|qpy8vz,45,62,0|qpy8w0,46,63,1|r26wrz,46,63,1|r26ws0,45,62,0|r8objz,45,62,0|r8obk0,46,63,1|rkwzfz,46,63,1|rkwzg0,45,62,0|rree7z,45,62,0|rree80,46,63,1|s3n23z,46,63,1|s3n240,45,62,0|sa4gvz,45,62,0|sa4gw0,46,63,1|smd4rz,46,63,1|smd4s0,45,62,0|ssujjz,45,62,0|ssujk0,46,63,1|t537fz,46,63,1|t537g0,45,62,0|tbkm7z,45,62,0|tbkm80,46,63,1|tnta3z,46,63,1|tnta40,45,62,0|tunnjz,45,62,0|tunnk0,46,63,1|u6wbfz,46,63,1|u6wbg0,45,62,0|uddq7z,45,62,0|uddq80,46,63,1|upme3z,46,63,1|upme40,45,62,0|uw3svz,45,62,0|uw3sw0,46,63,1|v8cgrz,46,63,1|v8cgs0,45,62,0|vetvjz,45,62,0|vetvk0,46,63,1|vr2jfz,46,63,1|vr2jg0,45,62,0|vxjy7z,45,62,0|vxjy80,46,63,1|w9sm3z,46,63,1|w9sm40,45,62,0|wgmzjz,45,62,0|wgmzk0,46,63,1|wsvnfz,46,63,1|wsvng0,45,62,0|wzd27z,45,62,0|wzd280,46,63,1|xblq3z,46,63,1|xblq40,45,62,0|xi34vz,45,62,0|xi34w0,46,63,1|xubsrz,46,63,1|xubss0,45,62,0|y0t7jz,45,62,0|y0t7k0,46,63,1|yd1vfz,46,63,1|yd1vg0,45,62,0|yjja7z,45,62,0|yjja80,46,63,1|yvry3z,46,63,1|yvry40,45,62,0|z29cvz,45,62,0|z29cw0,46,63,1|zei0rz,46,63,1|zei0s0,45,62,0","America/Recife|,0,170,0|-t85ljc,39,44,0|-jylag1,39,44,0|-jylag0,40,45,1|-jpb141,40,45,1|-jpb140,39,44,0|-jfsd01,39,44,0|-jfsd00,40,45,1|-j6j3s1,40,45,1|-j6j3s0,39,44,0|-ahcyc1,39,44,0|-ahcyc0,40,45,1|-aad3o1,40,45,1|-aad3o0,39,44,0|-9yl101,39,44,0|-9yl100,40,45,1|-9sd141,40,45,1|-9sd140,39,44,0|-9ft3o1,39,44,0|-9ft3o0,40,45,1|-99j941,40,45,1|-99j940,39,44,0|-8wzbo1,39,44,0|-8wzbo0,40,45,1|-8scqg1,40,45,1|-8scqg0,39,44,0|-35xmc1,39,44,0|-35xmc0,40,45,1|-31nzs1,40,45,1|-31nzs0,39,44,0|-2kdp01,39,44,0|-2kdp00,40,45,1|-2hcig1,40,45,1|-2hcig0,39,44,0|-24qqc1,39,44,0|-24qqc0,40,45,1|-204541,40,45,1|-204540,39,44,0|-1nid01,39,44,0|-1nid00,40,45,1|-1hc7s1,40,45,1|-1hc7s0,39,44,0|-14qfo1,39,44,0|-14qfo0,40,45,1|-yifs1,40,45,1|-yifs0,39,44,0|89jcbz,39,44,0|89jcc0,40,45,1|8gdk7z,40,45,1|8gdk80,39,44,0|8rwgbz,39,44,0|8rwgc0,40,45,1|8xns7z,40,45,1|8xns80,39,44,0|9aodnz,39,44,0|9aodo0,40,45,1|9g2qvz,40,45,1|9g2qw0,39,44,0|9t1hnz,39,44,0|9t1ho0,40,45,1|9yfuvz,40,45,1|9yfuw0,39,44,0|abrkbz,39,44,0|abrkc0,40,45,1|ahvuvz,40,45,1|ahvuw0,39,44,0|fj0azz,39,44,0|fj0b00,40,45,1|fqkg7z,40,45,1|fqkg80,39,44,0|g23cbz,39,44,0|g23cc0,40,45,1|g2g87z,40,45,1|g2g880,39,44,0|gl6dnz,39,44,0|gl6do0,40,45,1|grnmvz,40,45,1|grnmw0,39,44,0","America/Regina|,0,171,0|-xkq9yc,50,66,0|-qzosc1,50,66,0|-qzosc0,52,62,1|-qplwg1,52,62,1|-qplwg0,50,66,0|-kp78k1,50,66,0|-kp78k0,52,62,1|-kha4o1,52,62,1|-kha4o0,50,66,0|-k6h5w1,50,66,0|-k6h5w0,52,62,1|-jyk201,52,62,1|-jyk200,50,66,0|-jnr381,50,66,0|-jnr380,52,62,1|-jftzc1,52,62,1|-jftzc0,50,66,0|-j4o1w1,50,66,0|-j4o1w0,52,62,1|-ix3wo1,52,62,1|-ix3wo0,50,66,0|-ilxz81,50,66,0|-ilxz80,52,62,1|-ie0vc1,52,62,1|-ie0vc0,50,66,0|-h2un81,50,66,0|-h2un80,52,62,1|-gthoo1,52,62,1|-gthoo0,50,66,0|-gk4kk1,50,66,0|-gk4kk0,52,62,1|-gb4ko1,52,62,1|-gb4ko0,50,66,0|-g1ehw1,50,66,0|-g1ehw0,52,62,1|-fs1jc1,52,62,1|-fs1jc0,50,66,0|-fibgk1,50,66,0|-fibgk0,52,62,1|-f8yi01,52,62,1|-f8yi00,50,66,0|-ezldw1,50,66,0|-ezldw0,52,62,1|-eq8fc1,52,62,1|-eq8fc0,50,66,0|-ek1z01,50,66,0|-ek1z00,58,62,1|-cq2tg1,58,62,1|-cq2tg0,59,62,1|-cnoxs1,59,62,1|-cnoxs0,50,66,0|-cdlwc1,50,66,0|-cdlwc0,52,62,1|-c48xs1,52,62,1|-c48xs0,50,66,0|-bu5wc1,50,66,0|-bu5wc0,52,62,1|-bm8sg1,52,62,1|-bm8sg0,50,66,0|-bbfto1,50,66,0|-bbfto0,52,62,1|-b3ips1,52,62,1|-b3ips0,50,66,0|-aspr01,50,66,0|-aspr00,52,62,1|-aksn41,52,62,1|-aksn40,50,66,0|-a9mpo1,50,66,0|-a9mpo0,52,62,1|-a22kg1,52,62,1|-a22kg0,50,66,0|-9qwn01,50,66,0|-9qwn00,52,62,1|-9izj41,52,62,1|-9izj40,50,66,0|-986kc1,50,66,0|-986kc0,52,62,1|-909gg1,52,62,1|-909gg0,50,66,0|-8pgho1,50,66,0|-8pgho0,52,62,1|-8hjds1,52,62,1|-8hjds0,50,66,0|-86qf01,50,66,0|-86qf00,52,62,1|-7ytb41,52,62,1|-7ytb40,50,66,0|-7o0cc1,50,66,0|-7o0cc0,52,62,1|-7g38g1,52,62,1|-7g38g0,50,66,0|-74xb01,50,66,0|-74xb00,52,62,1|-6x0741,52,62,1|-6x0740,50,66,0|-6m78c1,50,66,0|-6m78c0,52,62,1|-6ea4g1,52,62,1|-6ea4g0,50,66,0|-5kr301,50,66,0|-5kr300,52,62,1|-5be4g1,52,62,1|-5be4g0,50,66,0|-5210c1,50,66,0|-5210c0,45,62,0","America/Resolute|,60,1,0|-bnp9c0,45,62,0|-2g1wo1,45,62,0|-2g1wo0,86,42,1|-26bwo1,86,42,1|-26bwo0,45,62,0|5dw8vz,45,62,0|5dw8w0,46,63,1|5n97fz,46,63,1|5n97g0,45,62,0|5wmbjz,45,62,0|5wmbk0,46,63,1|65za3z,46,63,1|65za40,45,62,0|6fce7z,45,62,0|6fce80,46,63,1|6p2bfz,46,63,1|6p2bg0,45,62,0|6y2gvz,45,62,0|6y2gw0,46,63,1|77se3z,46,63,1|77se40,45,62,0|7h5i7z,45,62,0|7h5i80,46,63,1|7qigrz,46,63,1|7qigs0,45,62,0|7zvkvz,45,62,0|7zvkw0,46,63,1|898jfz,46,63,1|898jg0,45,62,0|8ilnjz,45,62,0|8ilnk0,46,63,1|8rym3z,46,63,1|8rym40,45,62,0|908u7z,45,62,0|908u80,46,63,1|9aoorz,46,63,1|9aoos0,45,62,0|9iywvz,45,62,0|9iyww0,46,63,1|9trq3z,46,63,1|9trq40,45,62,0|a1ozjz,45,62,0|a1ozk0,46,63,1|achsrz,46,63,1|achss0,45,62,0|akf27z,45,62,0|akf280,46,63,1|av7vfz,46,63,1|av7vg0,45,62,0|b3i3jz,45,62,0|b3i3k0,46,63,1|bdxy3z,46,63,1|bdxy40,45,62,0|bm867z,45,62,0|bm8680,46,63,1|bwo0rz,46,63,1|bwo0s0,45,62,0|c4y8vz,45,62,0|c4y8w0,46,63,1|cfr23z,46,63,1|cfr240,45,62,0|cnobjz,45,62,0|cnobk0,46,63,1|cyh4rz,46,63,1|cyh4s0,45,62,0|d6ee7z,45,62,0|d6ee80,46,63,1|dh77fz,46,63,1|dh77g0,45,62,0|dphfjz,45,62,0|dphfk0,46,63,1|dzxa3z,46,63,1|dzxa40,45,62,0|e87i7z,45,62,0|e87i80,46,63,1|eincrz,46,63,1|eincs0,45,62,0|eqxkvz,45,62,0|eqxkw0,46,63,1|f1dffz,46,63,1|f1dfg0,45,62,0|f9nnjz,45,62,0|f9nnk0,46,63,1|fkggrz,46,63,1|fkggs0,45,62,0|fsdq7z,45,62,0|fsdq80,46,63,1|g36jfz,46,63,1|g36jg0,49,63,0|gb3svz,49,63,0|gb3sw0,46,63,1|glwm3z,46,63,1|glwm40,45,62,0|gu6u7z,45,62,0|gu6u80,46,63,1|h4morz,46,63,1|h4mos0,45,62,0|hcwwvz,45,62,0|hcwww0,46,63,1|hncrfz,46,63,1|hncrg0,45,62,0|hvmzjz,45,62,0|hvmzk0,46,63,1|i6fsrz,46,63,1|i6fss0,45,62,0|ied27z,45,62,0|ied280,46,63,1|ip5vfz,46,63,1|ip5vg0,45,62,0|ix34vz,45,62,0|ix34w0,46,63,1|j7vy3z,46,63,1|j7vy40,49,63,0|jeqbjz,49,63,0|jeqbk0,46,63,1|jqyzfz,46,63,1|jqyzg0,45,62,0|jxge7z,45,62,0|jxge80,46,63,1|k9p23z,46,63,1|k9p240,45,62,0|kg6gvz,45,62,0|kg6gw0,46,63,1|ksf4rz,46,63,1|ksf4s0,45,62,0|kz9i7z,45,62,0|kz9i80,46,63,1|lbi63z,46,63,1|lbi640,45,62,0|lhzkvz,45,62,0|lhzkw0,46,63,1|lu88rz,46,63,1|lu88s0,45,62,0|m0pnjz,45,62,0|m0pnk0,46,63,1|mcybfz,46,63,1|mcybg0,45,62,0|mjfq7z,45,62,0|mjfq80,46,63,1|mvoe3z,46,63,1|mvoe40,45,62,0|n25svz,45,62,0|n25sw0,46,63,1|neegrz,46,63,1|neegs0,45,62,0|nkvvjz,45,62,0|nkvvk0,46,63,1|nx4jfz,46,63,1|nx4jg0,45,62,0|o3ywvz,45,62,0|o3yww0,46,63,1|og7krz,46,63,1|og7ks0,45,62,0|omozjz,45,62,0|omozk0,46,63,1|oyxnfz,46,63,1|oyxng0,45,62,0|p5f27z,45,62,0|p5f280,46,63,1|phnq3z,46,63,1|phnq40,45,62,0|po54vz,45,62,0|po54w0,46,63,1|q0dsrz,46,63,1|q0dss0,45,62,0|q6v7jz,45,62,0|q6v7k0,46,63,1|qj3vfz,46,63,1|qj3vg0,45,62,0|qpy8vz,45,62,0|qpy8w0,46,63,1|r26wrz,46,63,1|r26ws0,45,62,0|r8objz,45,62,0|r8obk0,46,63,1|rkwzfz,46,63,1|rkwzg0,45,62,0|rree7z,45,62,0|rree80,46,63,1|s3n23z,46,63,1|s3n240,45,62,0|sa4gvz,45,62,0|sa4gw0,46,63,1|smd4rz,46,63,1|smd4s0,45,62,0|ssujjz,45,62,0|ssujk0,46,63,1|t537fz,46,63,1|t537g0,45,62,0|tbkm7z,45,62,0|tbkm80,46,63,1|tnta3z,46,63,1|tnta40,45,62,0|tunnjz,45,62,0|tunnk0,46,63,1|u6wbfz,46,63,1|u6wbg0,45,62,0|uddq7z,45,62,0|uddq80,46,63,1|upme3z,46,63,1|upme40,45,62,0|uw3svz,45,62,0|uw3sw0,46,63,1|v8cgrz,46,63,1|v8cgs0,45,62,0|vetvjz,45,62,0|vetvk0,46,63,1|vr2jfz,46,63,1|vr2jg0,45,62,0|vxjy7z,45,62,0|vxjy80,46,63,1|w9sm3z,46,63,1|w9sm40,45,62,0|wgmzjz,45,62,0|wgmzk0,46,63,1|wsvnfz,46,63,1|wsvng0,45,62,0|wzd27z,45,62,0|wzd280,46,63,1|xblq3z,46,63,1|xblq40,45,62,0|xi34vz,45,62,0|xi34w0,46,63,1|xubsrz,46,63,1|xubss0,45,62,0|y0t7jz,45,62,0|y0t7k0,46,63,1|yd1vfz,46,63,1|yd1vg0,45,62,0|yjja7z,45,62,0|yjja80,46,63,1|yvry3z,46,63,1|yvry40,45,62,0|z29cvz,45,62,0|z29cw0,46,63,1|zei0rz,46,63,1|zei0s0,45,62,0","America/Rio_Branco|,0,172,0|-t85fg0,56,63,0|-jyl4w1,56,63,0|-jyl4w0,42,42,1|-jpavk1,42,42,1|-jpavk0,56,63,0|-jfs7g1,56,63,0|-jfs7g0,42,42,1|-j6iy81,42,42,1|-j6iy80,56,63,0|-ahcss1,56,63,0|-ahcss0,42,42,1|-aacy41,42,42,1|-aacy40,56,63,0|-9ykvg1,56,63,0|-9ykvg0,42,42,1|-9scvk1,42,42,1|-9scvk0,56,63,0|-9fsy41,56,63,0|-9fsy40,42,42,1|-99j3k1,42,42,1|-99j3k0,56,63,0|-8wz641,56,63,0|-8wz640,42,42,1|-8sckw1,42,42,1|-8sckw0,56,63,0|-35xgs1,56,63,0|-35xgs0,42,42,1|-31nu81,42,42,1|-31nu80,56,63,0|-2kdjg1,56,63,0|-2kdjg0,42,42,1|-2hccw1,42,42,1|-2hccw0,56,63,0|-24qks1,56,63,0|-24qks0,42,42,1|-203zk1,42,42,1|-203zk0,56,63,0|-1ni7g1,56,63,0|-1ni7g0,42,42,1|-1hc281,42,42,1|-1hc280,56,63,0|-14qa41,56,63,0|-14qa40,42,42,1|-yia81,42,42,1|-yia80,56,63,0|89jhvz,56,63,0|89jhw0,42,42,1|8gdprz,42,42,1|8gdps0,56,63,0|8rwlvz,56,63,0|8rwlw0,42,42,1|8xnxrz,42,42,1|8xnxs0,56,63,0|9aoj7z,56,63,0|9aoj80,42,42,1|9g2wfz,42,42,1|9g2wg0,56,63,0|k2yb7z,56,63,0|k2yb80,42,42,0|mw14fz,42,42,0|mw14g0,56,63,0","America/Santarem|,0,173,0|-t85hvc,42,42,0|-jyl7o1,42,42,0|-jyl7o0,39,44,1|-jpayc1,39,44,1|-jpayc0,42,42,0|-jfsa81,42,42,0|-jfsa80,39,44,1|-j6j101,39,44,1|-j6j100,42,42,0|-ahcvk1,42,42,0|-ahcvk0,39,44,1|-aad0w1,39,44,1|-aad0w0,42,42,0|-9yky81,42,42,0|-9yky80,39,44,1|-9scyc1,39,44,1|-9scyc0,42,42,0|-9ft0w1,42,42,0|-9ft0w0,39,44,1|-99j6c1,39,44,1|-99j6c0,42,42,0|-8wz8w1,42,42,0|-8wz8w0,39,44,1|-8scno1,39,44,1|-8scno0,42,42,0|-35xjk1,42,42,0|-35xjk0,39,44,1|-31nx01,39,44,1|-31nx00,42,42,0|-2kdm81,42,42,0|-2kdm80,39,44,1|-2hcfo1,39,44,1|-2hcfo0,42,42,0|-24qnk1,42,42,0|-24qnk0,39,44,1|-2042c1,39,44,1|-2042c0,42,42,0|-1nia81,42,42,0|-1nia80,39,44,1|-1hc501,39,44,1|-1hc500,42,42,0|-14qcw1,42,42,0|-14qcw0,39,44,1|-yid01,39,44,1|-yid00,42,42,0|89jf3z,42,42,0|89jf40,39,44,1|8gdmzz,39,44,1|8gdn00,42,42,0|8rwj3z,42,42,0|8rwj40,39,44,1|8xnuzz,39,44,1|8xnv00,42,42,0|9aogfz,42,42,0|9aogg0,39,44,1|9g2tnz,39,44,1|9g2to0,42,42,0|k2y8fz,42,42,0|k2y8g0,39,44,0","America/Santiago|,0,168,0|-15r0w8q,85,168,0|-vauawr,85,168,0|-vauawq,56,63,0|-rx8i41,56,63,0|-rx8i40,85,168,0|-qs16wr,85,168,0|-qs16wq,42,42,0|-qcwsw1,42,42,0|-qcwsw0,85,168,0|-m3etkr,85,168,0|-m3etkq,42,42,1|-lsgfk1,42,42,1|-lsgfk0,56,63,0|-lkl0s1,56,63,0|-lkl0s0,42,42,1|-l9oi81,42,42,1|-l9oi80,56,63,0|-l1t3g1,56,63,0|-l1t3g0,42,42,1|-kqwkw1,42,42,1|-kqwkw0,56,63,0|-kj1641,56,63,0|-kj1640,42,42,1|-k84nk1,42,42,1|-k84nk0,56,63,0|-k098s1,56,63,0|-k098s0,42,42,1|-jpavk1,42,42,1|-jpavk0,56,63,0|-jhfgs1,56,63,0|-jhfgs0,42,42,0|-eeay81,42,42,0|-eeay80,56,63,0|-eb5ws1,56,63,0|-eb5ws0,42,42,0|-c8vww1,42,42,0|-c8vww0,39,44,1|-c6f3o1,39,44,1|-c6f3o0,42,42,0|-bvifk1,42,42,0|-bvifk0,56,63,0|-bsvzk1,56,63,0|-bsvzk0,42,42,0|-lsvk1,42,42,0|-lsvk0,39,44,1|-e8qc1,39,44,1|-e8qc0,42,42,0|-1zww1,42,42,0|-1zww0,39,44,1|4hcbz,39,44,1|4hcc0,42,42,0|ekdrz,42,42,0|ekds0,39,44,1|mhhnz,39,44,1|mhho0,42,42,0|xagfz,42,42,0|xagg0,39,44,1|157kbz,39,44,1|157kc0,42,42,0|1gdhrz,42,42,0|1gdhs0,39,44,1|1nxmzz,39,44,1|1nxn00,42,42,0|1ydn3z,42,42,0|1ydn40,39,44,1|26npnz,39,44,1|26npo0,42,42,0|2htn3z,42,42,0|2htn40,39,44,1|2pdsbz,39,44,1|2pdsc0,42,42,0|30jprz,42,42,0|30jps0,39,44,1|38gtnz,39,44,1|38gto0,42,42,0|3j9sfz,42,42,0|3j9sg0,39,44,1|3r6wbz,39,44,1|3r6wc0,42,42,0|41zv3z,42,42,0|41zv40,39,44,1|49wyzz,39,44,1|49wz00,42,42,0|4l2wfz,42,42,0|4l2wg0,39,44,1|4sn1nz,39,44,1|4sn1o0,42,42,0|53sz3z,42,42,0|53sz40,39,44,1|5bd4bz,39,44,1|5bd4c0,42,42,0|5mj1rz,42,42,0|5mj1s0,39,44,1|5ug5nz,39,44,1|5ug5o0,42,42,0|6594fz,42,42,0|6594g0,39,44,1|6d68bz,39,44,1|6d68c0,42,42,0|6nz73z,42,42,0|6nz740,39,44,1|6vwazz,39,44,1|6vwb00,42,42,0|76p9rz,42,42,0|76p9s0,39,44,1|7emdnz,39,44,1|7emdo0,42,42,0|7psb3z,42,42,0|7psb40,39,44,1|7xcgbz,39,44,1|7xcgc0,42,42,0|88idrz,42,42,0|88ids0,39,44,1|8g2izz,39,44,1|8g2j00,42,42,0|8r8gfz,42,42,0|8r8gg0,39,44,1|90lezz,39,44,1|90lf00,42,42,0|99yj3z,42,42,0|99yj40,39,44,1|9hvmzz,39,44,1|9hvn00,42,42,0|9solrz,42,42,0|9sols0,39,44,1|a0lpnz,39,44,1|a0lpo0,42,42,0|abrn3z,42,42,0|abrn40,39,44,1|ajbsbz,39,44,1|ajbsc0,42,42,0|at1v3z,42,42,0|at1v40,39,44,1|b21uzz,39,44,1|b21v00,42,42,0|bd7sfz,42,42,0|bd7sg0,39,44,1|bl4wbz,39,44,1|bl4wc0,42,42,0|bvxv3z,42,42,0|bvxv40,39,44,1|c3uyzz,39,44,1|c3uz00,42,42,0|cenxrz,42,42,0|cenxs0,39,44,1|cml1nz,39,44,1|cml1o0,42,42,0|cxe0fz,42,42,0|cxe0g0,39,44,1|d5b4bz,39,44,1|d5b4c0,42,42,0|dgh1rz,42,42,0|dgh1s0,39,44,1|do16zz,39,44,1|do1700,42,42,0|dz74fz,42,42,0|dz74g0,39,44,1|e7u5nz,39,44,1|e7u5o0,42,42,0|ehx73z,42,42,0|ehx740,39,44,1|epuazz,39,44,1|epub00,42,42,0|ezxcfz,42,42,0|ezxcg0,39,44,1|f9n9nz,39,44,1|f9n9o0,42,42,0|fjdcfz,42,42,0|fjdcg0,39,44,1|fragbz,39,44,1|fragc0,42,42,0|g2gdrz,42,42,0|g2gds0,39,44,1|ga0izz,39,44,1|ga0j00,42,42,0|gl6gfz,42,42,0|gl6gg0,39,44,1|gsqlnz,39,44,1|gsqlo0,42,42,0|h3wj3z,42,42,0|h3wj40,39,44,1|hbgobz,39,44,1|hbgoc0,42,42,0|hmmlrz,42,42,0|hmmls0,39,44,1|hujpnz,39,44,1|hujpo0,42,42,0|i5cofz,42,42,0|i5cog0,39,44,1|id9sbz,39,44,1|id9sc0,42,42,0|io2r3z,42,42,0|io2r40,39,44,1|ivzuzz,39,44,1|ivzv00,42,42,0|j75sfz,42,42,0|j75sg0,39,44,1|jepxnz,39,44,1|jepxo0,42,42,0|jpvv3z,42,42,0|jpvv40,39,44,1|jyiwbz,39,44,1|jyiwc0,42,42,0|k8lxrz,42,42,0|k8lxs0,39,44,1|kgj1nz,39,44,1|kgj1o0,42,42,0|krc0fz,42,42,0|krc0g0,39,44,1|l0c0bz,39,44,1|l0c0c0,42,42,0|la233z,42,42,0|la2340,39,44,1|lkuwbz,39,44,1|lkuwc0,42,42,0|lq9f3z,42,42,0|lq9f40,39,44,1|m380bz,39,44,1|m380c0,42,42,0|m9pf3z,42,42,0|m9pf40,39,44,1|mly2zz,39,44,1|mly300,42,42,0|mssgfz,42,42,0|mssgg0,39,44,1|n4o5nz,39,44,1|n4o5o0,42,42,0|nbij3z,42,42,0|nbij40,39,44,1|o776zz,39,44,1|o77700,42,42,0|obvsfz,42,42,0|obvsg0,39,44,1|opx9nz,39,44,1|opx9o0,42,42,0|oulv3z,42,42,0|oulv40,39,44,1|p8ncbz,39,44,1|p8ncc0,42,42,0|pdbxrz,42,42,0|pdbxs0,39,44,1|ppklnz,39,44,1|ppklo0,42,42,0|pxhv3z,42,42,0|pxhv40,39,44,1|q8aobz,39,44,1|q8aoc0,42,42,0|qg7xrz,42,42,0|qg7xs0,39,44,1|qr0qzz,39,44,1|qr0r00,42,42,0|qyy0fz,42,42,0|qyy0g0,39,44,1|r9qtnz,39,44,1|r9qto0,42,42,0|rho33z,42,42,0|rho340,39,44,1|rsgwbz,39,44,1|rsgwc0,42,42,0|s0e5rz,42,42,0|s0e5s0,39,44,1|sbjxnz,39,44,1|sbjxo0,42,42,0|sjh73z,42,42,0|sjh740,39,44,1|sua0bz,39,44,1|sua0c0,42,42,0|t279rz,42,42,0|t279s0,39,44,1|td02zz,39,44,1|td0300,42,42,0|tkxcfz,42,42,0|tkxcg0,39,44,1|tvq5nz,39,44,1|tvq5o0,42,42,0|u3nf3z,42,42,0|u3nf40,39,44,1|ueg8bz,39,44,1|ueg8c0,42,42,0|umdhrz,42,42,0|umdhs0,39,44,1|uxj9nz,39,44,1|uxj9o0,42,42,0|v53kfz,42,42,0|v53kg0,39,44,1|vg9cbz,39,44,1|vg9cc0,42,42,0|vo6lrz,42,42,0|vo6ls0,39,44,1|vyzezz,39,44,1|vyzf00,42,42,0|w6wofz,42,42,0|w6wog0,39,44,1|whphnz,39,44,1|whpho0,42,42,0|wpmr3z,42,42,0|wpmr40,39,44,1|x0fkbz,39,44,1|x0fkc0,42,42,0|x8ctrz,42,42,0|x8cts0,39,44,1|xj5mzz,39,44,1|xj5n00,42,42,0|xr2wfz,42,42,0|xr2wg0,39,44,1|y28obz,39,44,1|y28oc0,42,42,0|y9sz3z,42,42,0|y9sz40,39,44,1|ykyqzz,39,44,1|ykyr00,42,42,0|ysw0fz,42,42,0|ysw0g0,39,44,1|z3otnz,39,44,1|z3oto0,42,42,0|zbm33z,42,42,0|zbm340,39,44,1","America/Santo_Domingo|,0,174,0|-15r0we0,87,175,0|-j6hz1d,87,175,0|-j6hz1c,49,63,0|-1nlws1,49,63,0|-1nlws0,62,42,1|-1hdww1,62,42,1|-1hdww0,49,63,0|-3fos1,49,63,0|-3fos0,43,59,1|2mshz,43,59,1|2msi0,49,63,0|fadvz,49,63,0|fadw0,43,59,1|jrghz,43,59,1|jrgi0,49,63,0|ydf7z,49,63,0|ydf80,43,59,1|12l8hz,43,59,1|12l8i0,49,63,0|1h3hvz,49,63,0|1h3hw0,43,59,1|1lf0hz,43,59,1|1lf0i0,49,63,0|1ztkjz,49,63,0|1ztkk0,43,59,1|246xtz,43,59,1|246xu0,49,63,0|2ijn7z,49,63,0|2ijn80,32,42,0|g36gnz,32,42,0|g36go0,49,63,0|g4z9zz,49,63,0|g4za00,32,42,0","America/Sao_Paulo|,0,176,0|-t85jd8,39,44,0|-jylag1,39,44,0|-jylag0,40,45,1|-jpb141,40,45,1|-jpb140,39,44,0|-jfsd01,39,44,0|-jfsd00,40,45,1|-j6j3s1,40,45,1|-j6j3s0,39,44,0|-ahcyc1,39,44,0|-ahcyc0,40,45,1|-aad3o1,40,45,1|-aad3o0,39,44,0|-9yl101,39,44,0|-9yl100,40,45,1|-9sd141,40,45,1|-9sd140,39,44,0|-9ft3o1,39,44,0|-9ft3o0,40,45,1|-99j941,40,45,1|-99j940,39,44,0|-8wzbo1,39,44,0|-8wzbo0,40,45,1|-8scqg1,40,45,1|-8scqg0,39,44,0|-38cno1,39,44,0|-38cno0,40,45,1|-31nzs1,40,45,1|-31nzs0,39,44,0|-2kdp01,39,44,0|-2kdp00,40,45,1|-2hcig1,40,45,1|-2hcig0,39,44,0|-24qqc1,39,44,0|-24qqc0,40,45,1|-204541,40,45,1|-204540,39,44,0|-1nid01,39,44,0|-1nid00,40,45,1|-1hc7s1,40,45,1|-1hc7s0,39,44,0|-14qfo1,39,44,0|-14qfo0,40,45,1|-yifs1,40,45,1|-yifs0,39,44,0|89jcbz,39,44,0|89jcc0,40,45,1|8gdk7z,40,45,1|8gdk80,39,44,0|8rwgbz,39,44,0|8rwgc0,40,45,1|8xns7z,40,45,1|8xns80,39,44,0|9aodnz,39,44,0|9aodo0,40,45,1|9g2qvz,40,45,1|9g2qw0,39,44,0|9t1hnz,39,44,0|9t1ho0,40,45,1|9yfuvz,40,45,1|9yfuw0,39,44,0|abrkbz,39,44,0|abrkc0,40,45,1|ahvuvz,40,45,1|ahvuw0,39,44,0|auulnz,39,44,0|auulo0,40,45,1|b0yw7z,40,45,1|b0yw80,39,44,0|bdkobz,39,44,0|bdkoc0,40,45,1|bjc07z,40,45,1|bjc080,39,44,0|bwnpnz,39,44,0|bwnpo0,40,45,1|c1p47z,40,45,1|c1p480,39,44,0|cf0tnz,39,44,0|cf0to0,40,45,1|cli2vz,40,45,1|cli2w0,39,44,0|cxqwbz,39,44,0|cxqwc0,40,45,1|d485jz,40,45,1|d485k0,39,44,0|dggyzz,39,44,0|dggz00,40,45,1|dml9jz,40,45,1|dml9k0,39,44,0|dyu2zz,39,44,0|dyu300,40,45,1|e5oavz,40,45,1|e5oaw0,39,44,0|ehm0bz,39,44,0|ehm0c0,40,45,1|ep4avz,40,45,1|ep4aw0,39,44,0|f0n6zz,39,44,0|f0n700,40,45,1|f7hevz,40,45,1|f7hew0,39,44,0|fj0azz,39,44,0|fj0b00,40,45,1|fqkg7z,40,45,1|fqkg80,39,44,0|g23cbz,39,44,0|g23cc0,40,45,1|g8xk7z,40,45,1|g8xk80,39,44,0|gl6dnz,39,44,0|gl6do0,40,45,1|grnmvz,40,45,1|grnmw0,39,44,0|h4zcbz,39,44,0|h4zcc0,40,45,1|hadpjz,40,45,1|hadpk0,39,44,0|hmzhnz,39,44,0|hmzho0,40,45,1|ht3s7z,40,45,1|ht3s80,39,44,0|i6j6zz,39,44,0|i6j700,40,45,1|ic6tjz,40,45,1|ic6tk0,39,44,0|iofmzz,39,44,0|iofn00,40,45,1|iuww7z,40,45,1|iuww80,39,44,0|j88lnz,39,44,0|j88lo0,40,45,1|jdzxjz,40,45,1|jdzxk0,39,44,0|jpvsbz,39,44,0|jpvsc0,40,45,1|jwd1jz,40,45,1|jwd1k0,39,44,0|k8ytnz,39,44,0|k8yto0,40,45,1|kf347z,40,45,1|kf3480,39,44,0|krowbz,39,44,0|krowc0,40,45,1|ky65jz,40,45,1|ky65k0,39,44,0|laeyzz,39,44,0|laez00,40,45,1|lgw87z,40,45,1|lgw880,39,44,0|lt51nz,39,44,0|lt51o0,40,45,1|lzz9jz,40,45,1|lzz9k0,39,44,0|mc82zz,39,44,0|mc8300,40,45,1|micdjz,40,45,1|micdk0,39,44,0|muy5nz,39,44,0|muy5o0,40,45,1|n12g7z,40,45,1|n12g80,39,44,0|ndo8bz,39,44,0|ndo8c0,40,45,1|nk5hjz,40,45,1|nk5hk0,39,44,0|nweazz,39,44,0|nweb00,40,45,1|o2vk7z,40,45,1|o2vk80,39,44,0|of4dnz,39,44,0|of4do0,40,45,1|ollmvz,40,45,1|ollmw0,39,44,0|oxugbz,39,44,0|oxugc0,40,45,1|p4bpjz,40,45,1|p4bpk0,39,44,0|phnezz,39,44,0|phnf00,40,45,1|pn1s7z,40,45,1|pn1s80,39,44,0","America/Scoresbysund|,0,177,0|-rvurxk,40,45,0|5ct1rz,40,45,0|5ct1s0,13,15,1|5lt4fz,13,15,1|5lt4g0,40,45,0|5v607z,40,45,0|5v6080,17,1,1|64iyrz,17,1,1|64iys0,13,15,0|6dw03z,13,15,0|6dw040,17,1,1|6n91fz,17,1,1|6n91g0,13,15,0|6wm2rz,13,15,0|6wm2s0,17,1,1|75z43z,17,1,1|75z440,13,15,0|7fc5fz,13,15,0|7fc5g0,17,1,1|7p25fz,17,1,1|7p25g0,13,15,0|7yf6rz,13,15,0|7yf6s0,17,1,1|87s83z,17,1,1|87s840,13,15,0|8h59fz,13,15,0|8h59g0,17,1,1|8qiarz,17,1,1|8qias0,13,15,0|8zvc3z,13,15,0|8zvc40,17,1,1|998dfz,17,1,1|998dg0,13,15,0|9ilerz,13,15,0|9iles0,17,1,1|9ryg3z,17,1,1|9ryg40,13,15,0|a1bhfz,13,15,0|a1bhg0,17,1,1|aaoirz,17,1,1|aaois0,13,15,0|ak1k3z,13,15,0|ak1k40,17,1,1|atrk3z,17,1,1|atrk40,13,15,0|b34lfz,13,15,0|b34lg0,17,1,1|bchmrz,17,1,1|bchms0,13,15,0|bluo3z,13,15,0|bluo40,17,1,1|bv7pfz,17,1,1|bv7pg0,13,15,0|c4kqrz,13,15,0|c4kqs0,17,1,1|cdxs3z,17,1,1|cdxs40,13,15,0|cnatfz,13,15,0|cnatg0,17,1,1|cwnurz,17,1,1|cwnus0,13,15,0|d60w3z,13,15,0|d60w40,17,1,1|dfdxfz,17,1,1|dfdxg0,13,15,0|dp3xfz,13,15,0|dp3xg0,17,1,1|dzwtfz,17,1,1|dzwtg0,13,15,0|e7u03z,13,15,0|e7u040,17,1,1|eimw3z,17,1,1|eimw40,13,15,0|eqk2rz,13,15,0|eqk2s0,17,1,1|f1cyrz,17,1,1|f1cys0,13,15,0|f9a5fz,13,15,0|f9a5g0,17,1,1|fkg03z,17,1,1|fkg040,13,15,0|fs083z,13,15,0|fs0840,17,1,1|g362rz,17,1,1|g362s0,13,15,0|gaqarz,13,15,0|gaqas0,17,1,1|glw5fz,17,1,1|glw5g0,13,15,0|gttc3z,13,15,0|gttc40,17,1,1|h4m83z,17,1,1|h4m840,13,15,0|hcjerz,13,15,0|hcjes0,17,1,1|hncarz,17,1,1|hncas0,13,15,0|hv9hfz,13,15,0|hv9hg0,17,1,1|i6fc3z,17,1,1|i6fc40,13,15,0|idzk3z,13,15,0|idzk40,17,1,1|ip5erz,17,1,1|ip5es0,13,15,0|iwpmrz,13,15,0|iwpms0,17,1,1|j7vhfz,17,1,1|j7vhg0,13,15,0|jffpfz,13,15,0|jffpg0,17,1,1|jqlk3z,17,1,1|jqlk40,13,15,0|jyiqrz,13,15,0|jyiqs0,17,1,1|k9bmrz,17,1,1|k9bms0,13,15,0|kh8tfz,13,15,0|kh8tg0,17,1,1|ks1pfz,17,1,1|ks1pg0,13,15,0|kzyw3z,13,15,0|kzyw40,17,1,1|lb4qrz,17,1,1|lb4qs0,13,15,0|lioyrz,13,15,0|lioys0,17,1,1|ltutfz,17,1,1|ltutg0,13,15,0|m1f1fz,13,15,0|m1f1g0,17,1,1|mckw3z,17,1,1|mckw40,13,15,0|mki2rz,13,15,0|mki2s0,17,1,1|mvayrz,17,1,1|mvays0,13,15,0|n385fz,13,15,0|n385g0,17,1,1|ne11fz,17,1,1|ne11g0,13,15,0|nly83z,13,15,0|nly840,17,1,1|nwr43z,17,1,1|nwr440,13,15,0|o4oarz,13,15,0|o4oas0,17,1,1|ofu5fz,17,1,1|ofu5g0,13,15,0|onedfz,13,15,0|onedg0,17,1,1|oyk83z,17,1,1|oyk840,13,15,0|p64g3z,13,15,0|p64g40,17,1,1|phaarz,17,1,1|phaas0,13,15,0|pp7hfz,13,15,0|pp7hg0,17,1,1|q00dfz,17,1,1|q00dg0,13,15,0|q7xk3z,13,15,0|q7xk40,17,1,1|qiqg3z,17,1,1|qiqg40,13,15,0|qqnmrz,13,15,0|qqnms0,17,1,1|r1thfz,17,1,1|r1thg0,13,15,0|r9dpfz,13,15,0|r9dpg0,17,1,1|rkjk3z,17,1,1|rkjk40,13,15,0|rs3s3z,13,15,0|rs3s40,17,1,1|s39mrz,17,1,1|s39ms0,13,15,0|sb6tfz,13,15,0|sb6tg0,17,1,1|slzpfz,17,1,1|slzpg0,13,15,0|stww3z,13,15,0|stww40,17,1,1|t4ps3z,17,1,1|t4ps40,13,15,0|tcmyrz,13,15,0|tcmys0,17,1,1|tnfurz,17,1,1|tnfus0,13,15,0|tvd1fz,13,15,0|tvd1g0,17,1,1|u6iw3z,17,1,1|u6iw40,13,15,0|ue343z,13,15,0|ue3440,17,1,1|up8yrz,17,1,1|up8ys0,13,15,0|uwt6rz,13,15,0|uwt6s0,17,1,1|v7z1fz,17,1,1|v7z1g0,13,15,0|vfw83z,13,15,0|vfw840,17,1,1|vqp43z,17,1,1|vqp440,13,15,0|vymarz,13,15,0|vymas0,17,1,1|w9f6rz,17,1,1|w9f6s0,13,15,0|whcdfz,13,15,0|whcdg0,17,1,1|wsi83z,17,1,1|wsi840,13,15,0|x02g3z,13,15,0|x02g40,17,1,1|xb8arz,17,1,1|xb8as0,13,15,0|xisirz,13,15,0|xisis0,17,1,1|xtydfz,17,1,1|xtydg0,13,15,0|y1ilfz,13,15,0|y1ilg0,17,1,1|ycog3z,17,1,1|ycog40,13,15,0|yklmrz,13,15,0|yklms0,17,1,1|yveirz,17,1,1|yveis0,13,15,0|z3bpfz,13,15,0|z3bpg0,17,1,1|ze4lfz,17,1,1|ze4lg0,13,15,0","America/Sitka|,0,178,0|-1hc7qjz,0,179,0|-1078wa0,0,179,0|-1078w9z,51,40,0|-ek1w81,51,40,0|-ek1w80,68,66,1|-cq2tg1,68,66,1|-cq2tg0,69,66,1|-cnov01,69,66,1|-cnov00,51,40,0|-csc81,51,40,0|-csc80,57,66,1|-3fdo1,57,66,1|-3fdo0,51,40,0|5xqfz,51,40,0|5xqg0,57,66,1|faozz,57,66,1|fap00,51,40,0|ont3z,51,40,0|ont40,57,66,1|ydqbz,57,66,1|ydqc0,51,40,0|17qufz,51,40,0|17qug0,57,66,1|1h3szz,57,66,1|1h3t00,51,40,0|1qgx3z,51,40,0|1qgx40,57,66,1|1ztvnz,57,66,1|1ztvo0,51,40,0|23fl3z,51,40,0|23fl40,57,66,1|2ijybz,57,66,1|2ijyc0,51,40,0|2ooefz,51,40,0|2ooeg0,57,66,1|31a0zz,57,66,1|31a100,51,40,0|3an53z,51,40,0|3an540,57,66,1|3kd2bz,57,66,1|3kd2c0,51,40,0|3td7rz,51,40,0|3td7s0,57,66,1|4334zz,57,66,1|433500,51,40,0|4cg93z,51,40,0|4cg940,57,66,1|4lt7nz,57,66,1|4lt7o0,51,40,0|4v6brz,51,40,0|4v6bs0,57,66,1|54jabz,57,66,1|54jac0,51,40,0|5dwefz,51,40,0|5dweg0,57,66,1|5n9czz,57,66,1|5n9d00,51,40,0|5wmh3z,51,40,0|5wmh40,57,66,1|65zfnz,57,66,1|65zfo0,51,40,0|6fcjrz,51,40,0|6fcjs0,57,66,1|6p2gzz,57,66,1|6p2h00,51,40,0|6y2mfz,51,40,0|6y2mg0,57,66,1|77sjnz,57,66,1|77sjo0,36,37,0|79dybz,36,37,0|79dyc0,37,37,0|7h5qjz,37,37,0|7h5qk0,38,40,1|7qip3z,38,40,1|7qip40,37,37,0|7zvt7z,37,37,0|7zvt80,38,40,1|898rrz,38,40,1|898rs0,37,37,0|8ilvvz,37,37,0|8ilvw0,38,40,1|8ryufz,38,40,1|8ryug0,37,37,0|9092jz,37,37,0|9092k0,38,40,1|9aox3z,38,40,1|9aox40,37,37,0|9iz57z,37,37,0|9iz580,38,40,1|9tryfz,38,40,1|9tryg0,37,37,0|a1p7vz,37,37,0|a1p7w0,38,40,1|aci13z,38,40,1|aci140,37,37,0|akfajz,37,37,0|akfak0,38,40,1|av83rz,38,40,1|av83s0,37,37,0|b3ibvz,37,37,0|b3ibw0,38,40,1|bdy6fz,38,40,1|bdy6g0,37,37,0|bm8ejz,37,37,0|bm8ek0,38,40,1|bwo93z,38,40,1|bwo940,37,37,0|c4yh7z,37,37,0|c4yh80,38,40,1|cfrafz,38,40,1|cfrag0,37,37,0|cnojvz,37,37,0|cnojw0,38,40,1|cyhd3z,38,40,1|cyhd40,37,37,0|d6emjz,37,37,0|d6emk0,38,40,1|dh7frz,38,40,1|dh7fs0,37,37,0|dphnvz,37,37,0|dphnw0,38,40,1|dzxifz,38,40,1|dzxig0,37,37,0|e87qjz,37,37,0|e87qk0,38,40,1|einl3z,38,40,1|einl40,37,37,0|eqxt7z,37,37,0|eqxt80,38,40,1|f1dnrz,38,40,1|f1dns0,37,37,0|f9nvvz,37,37,0|f9nvw0,38,40,1|fkgp3z,38,40,1|fkgp40,37,37,0|fsdyjz,37,37,0|fsdyk0,38,40,1|g36rrz,38,40,1|g36rs0,37,37,0|gb417z,37,37,0|gb4180,38,40,1|glwufz,38,40,1|glwug0,37,37,0|gu72jz,37,37,0|gu72k0,38,40,1|h4mx3z,38,40,1|h4mx40,37,37,0|hcx57z,37,37,0|hcx580,38,40,1|hnczrz,38,40,1|hnczs0,37,37,0|hvn7vz,37,37,0|hvn7w0,38,40,1|i6g13z,38,40,1|i6g140,37,37,0|iedajz,37,37,0|iedak0,38,40,1|ip63rz,38,40,1|ip63s0,37,37,0|ix3d7z,37,37,0|ix3d80,38,40,1|j7w6fz,38,40,1|j7w6g0,37,37,0|jeqjvz,37,37,0|jeqjw0,38,40,1|jqz7rz,38,40,1|jqz7s0,37,37,0|jxgmjz,37,37,0|jxgmk0,38,40,1|k9pafz,38,40,1|k9pag0,37,37,0|kg6p7z,37,37,0|kg6p80,38,40,1|ksfd3z,38,40,1|ksfd40,37,37,0|kz9qjz,37,37,0|kz9qk0,38,40,1|lbiefz,38,40,1|lbieg0,37,37,0|lhzt7z,37,37,0|lhzt80,38,40,1|lu8h3z,38,40,1|lu8h40,37,37,0|m0pvvz,37,37,0|m0pvw0,38,40,1|mcyjrz,38,40,1|mcyjs0,37,37,0|mjfyjz,37,37,0|mjfyk0,38,40,1|mvomfz,38,40,1|mvomg0,37,37,0|n2617z,37,37,0|n26180,38,40,1|neep3z,38,40,1|neep40,37,37,0|nkw3vz,37,37,0|nkw3w0,38,40,1|nx4rrz,38,40,1|nx4rs0,37,37,0|o3z57z,37,37,0|o3z580,38,40,1|og7t3z,38,40,1|og7t40,37,37,0|omp7vz,37,37,0|omp7w0,38,40,1|oyxvrz,38,40,1|oyxvs0,37,37,0|p5fajz,37,37,0|p5fak0,38,40,1|phnyfz,38,40,1|phnyg0,37,37,0|po5d7z,37,37,0|po5d80,38,40,1|q0e13z,38,40,1|q0e140,37,37,0|q6vfvz,37,37,0|q6vfw0,38,40,1|qj43rz,38,40,1|qj43s0,37,37,0|qpyh7z,37,37,0|qpyh80,38,40,1|r2753z,38,40,1|r27540,37,37,0|r8ojvz,37,37,0|r8ojw0,38,40,1|rkx7rz,38,40,1|rkx7s0,37,37,0|rremjz,37,37,0|rremk0,38,40,1|s3nafz,38,40,1|s3nag0,37,37,0|sa4p7z,37,37,0|sa4p80,38,40,1|smdd3z,38,40,1|smdd40,37,37,0|ssurvz,37,37,0|ssurw0,38,40,1|t53frz,38,40,1|t53fs0,37,37,0|tbkujz,37,37,0|tbkuk0,38,40,1|tntifz,38,40,1|tntig0,37,37,0|tunvvz,37,37,0|tunvw0,38,40,1|u6wjrz,38,40,1|u6wjs0,37,37,0|uddyjz,37,37,0|uddyk0,38,40,1|upmmfz,38,40,1|upmmg0,37,37,0|uw417z,37,37,0|uw4180,38,40,1|v8cp3z,38,40,1|v8cp40,37,37,0|veu3vz,37,37,0|veu3w0,38,40,1|vr2rrz,38,40,1|vr2rs0,37,37,0|vxk6jz,37,37,0|vxk6k0,38,40,1|w9sufz,38,40,1|w9sug0,37,37,0|wgn7vz,37,37,0|wgn7w0,38,40,1|wsvvrz,38,40,1|wsvvs0,37,37,0|wzdajz,37,37,0|wzdak0,38,40,1|xblyfz,38,40,1|xblyg0,37,37,0|xi3d7z,37,37,0|xi3d80,38,40,1|xuc13z,38,40,1|xuc140,37,37,0|y0tfvz,37,37,0|y0tfw0,38,40,1|yd23rz,38,40,1|yd23s0,37,37,0|yjjijz,37,37,0|yjjik0,38,40,1|yvs6fz,38,40,1|yvs6g0,37,37,0|z29l7z,37,37,0|z29l80,38,40,1|zei93z,38,40,1|zei940,37,37,0","America/St_Barthelemy|,0,41,0|-u6m79w,32,42,0","America/St_Johns|,0,99,0|-18vs8wk,24,99,0|-ris3cl,24,99,0|-ris3ck,72,100,1|-rag64l,72,100,1|-rag64k,24,99,0|-qzp20l,24,99,0|-qzp20k,72,100,1|-qpm64l,72,100,1|-qpm64k,24,99,0|-qfsmcl,24,99,0|-qfsmck,72,100,1|-qapd4l,72,100,1|-qapd4k,24,99,0|-px4ecl,24,99,0|-px4eck,72,100,1|-pnrfsl,72,100,1|-pnrfsk,24,99,0|-peebol,24,99,0|-peebok,72,100,1|-p51d4l,72,100,1|-p51d4k,24,99,0|-ovbacl,24,99,0|-ovback,72,100,1|-ombagl,72,100,1|-ombagk,24,99,0|-ocl7ol,24,99,0|-ocl7ok,72,100,1|-o3l7sl,72,100,1|-o3l7sk,24,99,0|-ntv50l,24,99,0|-ntv50k,72,100,1|-nkv54l,72,100,1|-nkv54k,24,99,0|-nb52cl,24,99,0|-nb52ck,72,100,1|-n252gl,72,100,1|-n252gk,24,99,0|-msezol,24,99,0|-msezok,72,100,1|-mj214l,72,100,1|-mj214k,24,99,0|-m9ox0l,24,99,0|-m9ox0k,72,100,1|-m0bygl,72,100,1|-m0bygk,24,99,0|-lqlvol,24,99,0|-lqlvok,72,100,1|-lhlvsl,72,100,1|-lhlvsk,24,99,0|-l7vt0l,24,99,0|-l7vt0k,72,100,1|-kyvt4l,72,100,1|-kyvt4k,24,99,0|-kp5qcl,24,99,0|-kp5qck,72,100,1|-kg5qgl,72,100,1|-kg5qgk,24,99,0|-k6fnol,24,99,0|-k6fnok,72,100,1|-jxfnsl,72,100,1|-jxfnsk,24,99,0|-jnpl0l,24,99,0|-jnpl0k,72,100,1|-jecmgl,72,100,1|-jecmgk,24,99,0|-j4mjol,24,99,0|-j4mjok,72,100,1|-ivmjsl,72,100,1|-ivmjsk,24,99,0|-ilwh0l,24,99,0|-ilwh0k,72,100,1|-icwh4l,72,100,1|-icwh4k,24,99,0|-i52u8l,24,99,0|-i52u8k,24,101,0|-i36ee1,24,101,0|-i36ee0,72,102,1|-hu6ei1,72,102,1|-hu6ei0,24,101,0|-hk3aa1,24,101,0|-hk3aa0,72,102,1|-hcj521,72,102,1|-hcj520,24,101,0|-h1d7m1,24,101,0|-h1d7m0,72,102,1|-gtt2e1,72,102,1|-gtt2e0,24,101,0|-gin4y1,24,101,0|-gin4y0,72,102,1|-gb2zq1,72,102,1|-gb2zq0,24,101,0|-fzk3m1,24,101,0|-fzk3m0,72,102,1|-fscx21,72,102,1|-fscx20,24,101,0|-fgu0y1,24,101,0|-fgu0y0,72,102,1|-f99vq1,72,102,1|-f99vq0,24,101,0|-ey3ya1,24,101,0|-ey3ya0,72,102,1|-eqjt21,72,102,1|-eqjt20,24,101,0|-efdvm1,24,101,0|-efdvm0,25,102,1|-cq2tg1,25,102,1|-cq2tg0,26,102,1|-cnp7i1,26,102,1|-cnp7i0,24,101,0|-cc6be1,24,101,0|-cc6be0,72,102,1|-c4m661,72,102,1|-c4m660,24,101,0|-btg8q1,24,101,0|-btg8q0,72,102,1|-blw3i1,72,102,1|-blw3i0,24,101,0|-baq621,24,101,0|-baq620,72,102,1|-b360u1,72,102,1|-b360u0,24,101,0|-as03e1,24,101,0|-as03e0,72,102,1|-akfy61,72,102,1|-akfy60,24,101,0|-a8x221,24,101,0|-a8x220,72,102,1|-a1cwu1,72,102,1|-a1cwu0,24,101,0|-9qwwq1,24,101,0|-9qwwq0,72,102,1|-9izsu1,72,102,1|-9izsu0,24,101,0|-986u21,24,101,0|-986u20,72,102,1|-909q61,72,102,1|-909q60,24,101,0|-8pgre1,24,101,0|-8pgre0,72,102,1|-8hjni1,72,102,1|-8hjni0,24,101,0|-86qoq1,24,101,0|-86qoq0,72,102,1|-7ytku1,72,102,1|-7ytku0,24,101,0|-7o0m21,24,101,0|-7o0m20,72,102,1|-7g3i61,72,102,1|-7g3i60,24,101,0|-74xkq1,24,101,0|-74xkq0,72,102,1|-6x0gu1,72,102,1|-6x0gu0,24,101,0|-6m7i21,24,101,0|-6m7i20,72,102,1|-6eae61,72,102,1|-6eae60,24,101,0|-63hfe1,24,101,0|-63hfe0,72,102,1|-5vkbi1,72,102,1|-5vkbi0,24,101,0|-5krcq1,24,101,0|-5krcq0,72,102,1|-5cu8u1,72,102,1|-5cu8u0,24,101,0|-521a21,24,101,0|-521a20,72,102,1|-4sbcu1,72,102,1|-4sbcu0,24,101,0|-4iy8q1,24,101,0|-4iy8q0,72,102,1|-49la61,72,102,1|-49la60,24,101,0|-408621,24,101,0|-408620,72,102,1|-3qv7i1,72,102,1|-3qv7i0,24,101,0|-3hi3e1,24,101,0|-3hi3e0,72,102,1|-3854u1,72,102,1|-3854u0,24,101,0|-2ys0q1,24,101,0|-2ys0q0,72,102,1|-2pf261,72,102,1|-2pf260,24,101,0|-2g1y21,24,101,0|-2g1y20,72,102,1|-26c0u1,72,102,1|-26c0u0,24,101,0|-1xbve1,24,101,0|-1xbve0,72,102,1|-1nly61,72,102,1|-1nly60,24,101,0|-1e8u21,24,101,0|-1e8u20,72,102,1|-14vvi1,72,102,1|-14vvi0,24,101,0|-vire1,24,101,0|-vire0,72,102,1|-m5su1,72,102,1|-m5su0,24,101,0|-csoq1,24,101,0|-csoq0,72,102,1|-3fq61,72,102,1|-3fq60,24,101,0|5xdxz,24,101,0|5xdy0,72,102,1|fachz,72,102,1|faci0,24,101,0|onglz,24,101,0|ongm0,72,102,1|yddtz,72,102,1|yddu0,24,101,0|17qhxz,24,101,0|17qhy0,72,102,1|1h3ghz,72,102,1|1h3gi0,24,101,0|1qgklz,24,101,0|1qgkm0,72,102,1|1ztj5z,72,102,1|1ztj60,24,101,0|296n9z,24,101,0|296na0,72,102,1|2ijltz,72,102,1|2ijlu0,24,101,0|2rwpxz,24,101,0|2rwpy0,72,102,1|319ohz,72,102,1|319oi0,24,101,0|3amslz,24,101,0|3amsm0,72,102,1|3kcptz,72,102,1|3kcpu0,24,101,0|3tcv9z,24,101,0|3tcva0,72,102,1|432shz,72,102,1|432si0,24,101,0|4cfwlz,24,101,0|4cfwm0,72,102,1|4lsv5z,72,102,1|4lsv60,24,101,0|4v5z9z,24,101,0|4v5za0,72,102,1|54ixtz,72,102,1|54ixu0,24,101,0|5dw1xz,24,101,0|5dw1y0,72,102,1|5n90hz,72,102,1|5n90i0,24,101,0|5wm4lz,24,101,0|5wm4m0,72,102,1|65z35z,72,102,1|65z360,24,101,0|6fc79z,24,101,0|6fc7a0,72,102,1|6p24hz,72,102,1|6p24i0,24,101,0|6y29xz,24,101,0|6y29y0,72,102,1|77s75z,72,102,1|77s760,24,101,0|7h5b9z,24,101,0|7h5ba0,72,102,1|7qi9tz,72,102,1|7qi9u0,24,101,0|7zvdxz,24,101,0|7zvdy0,72,102,1|898chz,72,102,1|898ci0,24,101,0|8ilglz,24,101,0|8ilgm0,72,102,1|8ryf5z,72,102,1|8ryf60,24,101,0|908hrn,24,101,0|908hro,72,102,1|9aocbn,72,102,1|9aocbo,24,101,0|9iykfn,24,101,0|9iykfo,88,147,1|9travn,88,147,1|9travo,24,101,0|a1on3n,24,101,0|a1on3o,72,102,1|achgbn,72,102,1|achgbo,24,101,0|akeprn,24,101,0|akepro,72,102,1|av7izn,72,102,1|av7izo,24,101,0|b3hr3n,24,101,0|b3hr3o,72,102,1|bdxlnn,72,102,1|bdxlno,24,101,0|bm7trn,24,101,0|bm7tro,72,102,1|bwnobn,72,102,1|bwnobo,24,101,0|c4xwfn,24,101,0|c4xwfo,72,102,1|cfqpnn,72,102,1|cfqpno,24,101,0|cnnz3n,24,101,0|cnnz3o,72,102,1|cygsbn,72,102,1|cygsbo,24,101,0|d6e1rn,24,101,0|d6e1ro,72,102,1|dh6uzn,72,102,1|dh6uzo,24,101,0|dph33n,24,101,0|dph33o,72,102,1|dzwxnn,72,102,1|dzwxno,24,101,0|e875rn,24,101,0|e875ro,72,102,1|ein0bn,72,102,1|ein0bo,24,101,0|eqx8fn,24,101,0|eqx8fo,72,102,1|f1d2zn,72,102,1|f1d2zo,24,101,0|f9nb3n,24,101,0|f9nb3o,72,102,1|fkg4bn,72,102,1|fkg4bo,24,101,0|fsddrn,24,101,0|fsddro,72,102,1|g366zn,72,102,1|g366zo,24,101,0|gb3gfn,24,101,0|gb3gfo,72,102,1|glw9nn,72,102,1|glw9no,24,101,0|gu6hrn,24,101,0|gu6hro,72,102,1|h4mcbn,72,102,1|h4mcbo,24,101,0|hcwkfn,24,101,0|hcwkfo,72,102,1|hncezn,72,102,1|hncezo,24,101,0|hvmn3n,24,101,0|hvmn3o,72,102,1|i6fgbn,72,102,1|i6fgbo,24,101,0|iecprn,24,101,0|iecpro,72,102,1|ip5izn,72,102,1|ip5izo,24,101,0|ix2sfn,24,101,0|ix2sfo,72,102,1|j7vlnn,72,102,1|j7vlno,24,101,0|jepz3n,24,101,0|jepz3o,72,102,1|jqymzn,72,102,1|jqymzo,24,101,0|jxg1rn,24,101,0|jxg1ro,72,102,1|k9opnn,72,102,1|k9opno,24,101,0|kg64fn,24,101,0|kg64fo,72,102,1|ksesbn,72,102,1|ksesbo,24,101,0|kz95rn,24,101,0|kz95ro,72,102,1|lbhtnn,72,102,1|lbhtno,24,101,0|lhz8fn,24,101,0|lhz8fo,72,102,1|lu81tz,72,102,1|lu81u0,24,101,0|m0pglz,24,101,0|m0pgm0,72,102,1|mcy4hz,72,102,1|mcy4i0,24,101,0|mjfj9z,24,101,0|mjfja0,72,102,1|mvo75z,72,102,1|mvo760,24,101,0|n25lxz,24,101,0|n25ly0,72,102,1|nee9tz,72,102,1|nee9u0,24,101,0|nkvolz,24,101,0|nkvom0,72,102,1|nx4chz,72,102,1|nx4ci0,24,101,0|o3ypxz,24,101,0|o3ypy0,72,102,1|og7dtz,72,102,1|og7du0,24,101,0|omoslz,24,101,0|omosm0,72,102,1|oyxghz,72,102,1|oyxgi0,24,101,0|p5ev9z,24,101,0|p5eva0,72,102,1|phnj5z,72,102,1|phnj60,24,101,0|po4xxz,24,101,0|po4xy0,72,102,1|q0dltz,72,102,1|q0dlu0,24,101,0|q6v0lz,24,101,0|q6v0m0,72,102,1|qj3ohz,72,102,1|qj3oi0,24,101,0|qpy1xz,24,101,0|qpy1y0,72,102,1|r26ptz,72,102,1|r26pu0,24,101,0|r8o4lz,24,101,0|r8o4m0,72,102,1|rkwshz,72,102,1|rkwsi0,24,101,0|rre79z,24,101,0|rre7a0,72,102,1|s3mv5z,72,102,1|s3mv60,24,101,0|sa49xz,24,101,0|sa49y0,72,102,1|smcxtz,72,102,1|smcxu0,24,101,0|ssuclz,24,101,0|ssucm0,72,102,1|t530hz,72,102,1|t530i0,24,101,0|tbkf9z,24,101,0|tbkfa0,72,102,1|tnt35z,72,102,1|tnt360,24,101,0|tunglz,24,101,0|tungm0,72,102,1|u6w4hz,72,102,1|u6w4i0,24,101,0|uddj9z,24,101,0|uddja0,72,102,1|upm75z,72,102,1|upm760,24,101,0|uw3lxz,24,101,0|uw3ly0,72,102,1|v8c9tz,72,102,1|v8c9u0,24,101,0|vetolz,24,101,0|vetom0,72,102,1|vr2chz,72,102,1|vr2ci0,24,101,0|vxjr9z,24,101,0|vxjra0,72,102,1|w9sf5z,72,102,1|w9sf60,24,101,0|wgmslz,24,101,0|wgmsm0,72,102,1|wsvghz,72,102,1|wsvgi0,24,101,0|wzcv9z,24,101,0|wzcva0,72,102,1|xblj5z,72,102,1|xblj60,24,101,0|xi2xxz,24,101,0|xi2xy0,72,102,1|xubltz,72,102,1|xublu0,24,101,0|y0t0lz,24,101,0|y0t0m0,72,102,1|yd1ohz,72,102,1|yd1oi0,24,101,0|yjj39z,24,101,0|yjj3a0,72,102,1|yvrr5z,72,102,1|yvrr60,24,101,0|z295xz,24,101,0|z295y0,72,102,1|zehttz,72,102,1|zehtu0,24,101,0","America/St_Kitts|,0,41,0|-u6m79w,32,42,0","America/St_Lucia|,0,41,0|-u6m79w,32,42,0","America/St_Thomas|,0,41,0|-u6m79w,32,42,0","America/St_Vincent|,0,41,0|-u6m79w,32,42,0","America/Swift_Current|,0,180,0|-xkq9d4,50,66,0|-qzosc1,50,66,0|-qzosc0,52,62,1|-qplwg1,52,62,1|-qplwg0,50,66,0|-ek1z01,50,66,0|-ek1z00,58,62,1|-cq2tg1,58,62,1|-cq2tg0,59,62,1|-cnoxs1,59,62,1|-cnoxs0,50,66,0|-ccvz01,50,66,0|-ccvz00,52,62,1|-c48xs1,52,62,1|-c48xs0,50,66,0|-bu5wc1,50,66,0|-bu5wc0,52,62,1|-bm8sg1,52,62,1|-bm8sg0,50,66,0|-bbfto1,50,66,0|-bbfto0,52,62,1|-b3ips1,52,62,1|-b3ips0,50,66,0|-aspr01,50,66,0|-aspr00,52,62,1|-aksn41,52,62,1|-aksn40,50,66,0|-6m78c1,50,66,0|-6m78c0,52,62,1|-6cu9s1,52,62,1|-6cu9s0,50,66,0|-5kr301,50,66,0|-5kr300,52,62,1|-5be4g1,52,62,1|-5be4g0,50,66,0|-5210c1,50,66,0|-5210c0,52,62,1|-4u3wg1,52,62,1|-4u3wg0,50,66,0|-4ixz01,50,66,0|-4ixz00,52,62,1|-4bdts1,52,62,1|-4bdts0,50,66,0|17qrnz,50,66,0|17qro0,45,62,0","America/Tegucigalpa|,0,181,0|-pfzh6k,45,62,0|91ojbz,45,62,0|91ojc0,46,63,1|998ojz,46,63,1|998ok0,45,62,0|9kelzz,45,62,0|9kem00,46,63,1|9ryr7z,46,63,1|9ryr80,45,62,0|iyvsnz,45,62,0|iyvso0,46,63,1|j3m37z,46,63,1|j3m380,45,62,0","America/Thule|,0,182,0|-rvuj9g,32,42,0|b34zbz,32,42,0|b34zc0,54,44,1|bchxvz,54,44,1|bchxw0,32,42,0|blv1zz,32,42,0|blv200,54,44,1|bv80jz,54,44,1|bv80k0,32,42,0|c4y3bz,32,42,0|c4y3c0,54,44,1|cfqwjz,54,44,1|cfqwk0,32,42,0|cno5zz,32,42,0|cno600,54,44,1|cygz7z,54,44,1|cygz80,32,42,0|d6e8nz,32,42,0|d6e8o0,54,44,1|dh71vz,54,44,1|dh71w0,32,42,0|dph9zz,32,42,0|dpha00,54,44,1|dzx4jz,54,44,1|dzx4k0,32,42,0|e87cnz,32,42,0|e87co0,54,44,1|ein77z,54,44,1|ein780,32,42,0|eqxfbz,32,42,0|eqxfc0,54,44,1|f1d9vz,54,44,1|f1d9w0,32,42,0|f9nhzz,32,42,0|f9ni00,54,44,1|fkgb7z,54,44,1|fkgb80,32,42,0|fsdknz,32,42,0|fsdko0,54,44,1|g36dvz,54,44,1|g36dw0,32,42,0|gb3nbz,32,42,0|gb3nc0,54,44,1|glwgjz,54,44,1|glwgk0,32,42,0|gu6onz,32,42,0|gu6oo0,54,44,1|h4mj7z,54,44,1|h4mj80,32,42,0|hcwrbz,32,42,0|hcwrc0,54,44,1|hnclvz,54,44,1|hnclw0,32,42,0|hvmtzz,32,42,0|hvmu00,54,44,1|i6fn7z,54,44,1|i6fn80,32,42,0|iecwnz,32,42,0|iecwo0,54,44,1|ip5pvz,54,44,1|ip5pw0,32,42,0|ix2zbz,32,42,0|ix2zc0,54,44,1|j7vsjz,54,44,1|j7vsk0,32,42,0|jeq5zz,32,42,0|jeq600,54,44,1|jqytvz,54,44,1|jqytw0,32,42,0|jxg8nz,32,42,0|jxg8o0,54,44,1|k9owjz,54,44,1|k9owk0,32,42,0|kg6bbz,32,42,0|kg6bc0,54,44,1|ksez7z,54,44,1|ksez80,32,42,0|kz9cnz,32,42,0|kz9co0,54,44,1|lbi0jz,54,44,1|lbi0k0,32,42,0|lhzfbz,32,42,0|lhzfc0,54,44,1|lu837z,54,44,1|lu8380,32,42,0|m0phzz,32,42,0|m0pi00,54,44,1|mcy5vz,54,44,1|mcy5w0,32,42,0|mjfknz,32,42,0|mjfko0,54,44,1|mvo8jz,54,44,1|mvo8k0,32,42,0|n25nbz,32,42,0|n25nc0,54,44,1|neeb7z,54,44,1|neeb80,32,42,0|nkvpzz,32,42,0|nkvq00,54,44,1|nx4dvz,54,44,1|nx4dw0,32,42,0|o3yrbz,32,42,0|o3yrc0,54,44,1|og7f7z,54,44,1|og7f80,32,42,0|omotzz,32,42,0|omou00,54,44,1|oyxhvz,54,44,1|oyxhw0,32,42,0|p5ewnz,32,42,0|p5ewo0,54,44,1|phnkjz,54,44,1|phnkk0,32,42,0|po4zbz,32,42,0|po4zc0,54,44,1|q0dn7z,54,44,1|q0dn80,32,42,0|q6v1zz,32,42,0|q6v200,54,44,1|qj3pvz,54,44,1|qj3pw0,32,42,0|qpy3bz,32,42,0|qpy3c0,54,44,1|r26r7z,54,44,1|r26r80,32,42,0|r8o5zz,32,42,0|r8o600,54,44,1|rkwtvz,54,44,1|rkwtw0,32,42,0|rre8nz,32,42,0|rre8o0,54,44,1|s3mwjz,54,44,1|s3mwk0,32,42,0|sa4bbz,32,42,0|sa4bc0,54,44,1|smcz7z,54,44,1|smcz80,32,42,0|ssudzz,32,42,0|ssue00,54,44,1|t531vz,54,44,1|t531w0,32,42,0|tbkgnz,32,42,0|tbkgo0,54,44,1|tnt4jz,54,44,1|tnt4k0,32,42,0|tunhzz,32,42,0|tuni00,54,44,1|u6w5vz,54,44,1|u6w5w0,32,42,0|uddknz,32,42,0|uddko0,54,44,1|upm8jz,54,44,1|upm8k0,32,42,0|uw3nbz,32,42,0|uw3nc0,54,44,1|v8cb7z,54,44,1|v8cb80,32,42,0|vetpzz,32,42,0|vetq00,54,44,1|vr2dvz,54,44,1|vr2dw0,32,42,0|vxjsnz,32,42,0|vxjso0,54,44,1|w9sgjz,54,44,1|w9sgk0,32,42,0|wgmtzz,32,42,0|wgmu00,54,44,1|wsvhvz,54,44,1|wsvhw0,32,42,0|wzcwnz,32,42,0|wzcwo0,54,44,1|xblkjz,54,44,1|xblkk0,32,42,0|xi2zbz,32,42,0|xi2zc0,54,44,1|xubn7z,54,44,1|xubn80,32,42,0|y0t1zz,32,42,0|y0t200,54,44,1|yd1pvz,54,44,1|yd1pw0,32,42,0|yjj4nz,32,42,0|yjj4o0,54,44,1|yvrsjz,54,44,1|yvrsk0,32,42,0|z297bz,32,42,0|z297c0,54,44,1|zehv7z,54,44,1|zehv80,32,42,0","America/Thunder_Bay|,0,183,0|-1353bh0,45,62,0|-vbavc1,45,62,0|-vbavc0,49,63,0|-ek24k1,49,63,0|-ek24k0,70,42,1|-cq2tg1,70,42,1|-cq2tg0,71,42,1|-cnp3c1,71,42,1|-cnp3c0,49,63,0|5xi3z,49,63,0|5xi40,62,42,1|fagnz,62,42,1|fago0,49,63,0|onkrz,49,63,0|onks0,62,42,1|ydhzz,62,42,1|ydi00,49,63,0|17qm3z,49,63,0|17qm40,62,42,1|1h3knz,62,42,1|1h3ko0,49,63,0|296rfz,49,63,0|296rg0,62,42,1|2ijpzz,62,42,1|2ijq00,49,63,0|2rwu3z,49,63,0|2rwu40,62,42,1|319snz,62,42,1|319so0,49,63,0|3amwrz,49,63,0|3amws0,62,42,1|3kctzz,62,42,1|3kcu00,49,63,0|3tczfz,49,63,0|3tczg0,62,42,1|432wnz,62,42,1|432wo0,49,63,0|4cg0rz,49,63,0|4cg0s0,62,42,1|4lszbz,62,42,1|4lszc0,49,63,0|4v63fz,49,63,0|4v63g0,62,42,1|54j1zz,62,42,1|54j200,49,63,0|5dw63z,49,63,0|5dw640,62,42,1|5n94nz,62,42,1|5n94o0,49,63,0|5wm8rz,49,63,0|5wm8s0,62,42,1|65z7bz,62,42,1|65z7c0,49,63,0|6fcbfz,49,63,0|6fcbg0,62,42,1|6p28nz,62,42,1|6p28o0,49,63,0|6y2e3z,49,63,0|6y2e40,62,42,1|77sbbz,62,42,1|77sbc0,49,63,0|7h5ffz,49,63,0|7h5fg0,62,42,1|7qidzz,62,42,1|7qie00,49,63,0|7zvi3z,49,63,0|7zvi40,62,42,1|898gnz,62,42,1|898go0,49,63,0|8ilkrz,49,63,0|8ilks0,62,42,1|8ryjbz,62,42,1|8ryjc0,49,63,0|908rfz,49,63,0|908rg0,62,42,1|9aolzz,62,42,1|9aom00,49,63,0|9iyu3z,49,63,0|9iyu40,62,42,1|9trnbz,62,42,1|9trnc0,49,63,0|a1owrz,49,63,0|a1ows0,62,42,1|achpzz,62,42,1|achq00,49,63,0|akezfz,49,63,0|akezg0,62,42,1|av7snz,62,42,1|av7so0,49,63,0|b3i0rz,49,63,0|b3i0s0,62,42,1|bdxvbz,62,42,1|bdxvc0,49,63,0|bm83fz,49,63,0|bm83g0,62,42,1|bwnxzz,62,42,1|bwny00,49,63,0|c4y63z,49,63,0|c4y640,62,42,1|cfqzbz,62,42,1|cfqzc0,49,63,0|cno8rz,49,63,0|cno8s0,62,42,1|cyh1zz,62,42,1|cyh200,49,63,0|d6ebfz,49,63,0|d6ebg0,62,42,1|dh74nz,62,42,1|dh74o0,49,63,0|dphcrz,49,63,0|dphcs0,62,42,1|dzx7bz,62,42,1|dzx7c0,49,63,0|e87ffz,49,63,0|e87fg0,62,42,1|ein9zz,62,42,1|eina00,49,63,0|eqxi3z,49,63,0|eqxi40,62,42,1|f1dcnz,62,42,1|f1dco0,49,63,0|f9nkrz,49,63,0|f9nks0,62,42,1|fkgdzz,62,42,1|fkge00,49,63,0|fsdnfz,49,63,0|fsdng0,62,42,1|g36gnz,62,42,1|g36go0,49,63,0|gb3q3z,49,63,0|gb3q40,62,42,1|glwjbz,62,42,1|glwjc0,49,63,0|gu6rfz,49,63,0|gu6rg0,62,42,1|h4mlzz,62,42,1|h4mm00,49,63,0|hcwu3z,49,63,0|hcwu40,62,42,1|hnconz,62,42,1|hncoo0,49,63,0|hvmwrz,49,63,0|hvmws0,62,42,1|i6fpzz,62,42,1|i6fq00,49,63,0|ieczfz,49,63,0|ieczg0,62,42,1|ip5snz,62,42,1|ip5so0,49,63,0|ix323z,49,63,0|ix3240,62,42,1|j7vvbz,62,42,1|j7vvc0,49,63,0|jeq8rz,49,63,0|jeq8s0,62,42,1|jqywnz,62,42,1|jqywo0,49,63,0|jxgbfz,49,63,0|jxgbg0,62,42,1|k9ozbz,62,42,1|k9ozc0,49,63,0|kg6e3z,49,63,0|kg6e40,62,42,1|ksf1zz,62,42,1|ksf200,49,63,0|kz9ffz,49,63,0|kz9fg0,62,42,1|lbi3bz,62,42,1|lbi3c0,49,63,0|lhzi3z,49,63,0|lhzi40,62,42,1|lu85zz,62,42,1|lu8600,49,63,0|m0pkrz,49,63,0|m0pks0,62,42,1|mcy8nz,62,42,1|mcy8o0,49,63,0|mjfnfz,49,63,0|mjfng0,62,42,1|mvobbz,62,42,1|mvobc0,49,63,0|n25q3z,49,63,0|n25q40,62,42,1|needzz,62,42,1|neee00,49,63,0|nkvsrz,49,63,0|nkvss0,62,42,1|nx4gnz,62,42,1|nx4go0,49,63,0|o3yu3z,49,63,0|o3yu40,62,42,1|og7hzz,62,42,1|og7i00,49,63,0|omowrz,49,63,0|omows0,62,42,1|oyxknz,62,42,1|oyxko0,49,63,0|p5ezfz,49,63,0|p5ezg0,62,42,1|phnnbz,62,42,1|phnnc0,49,63,0|po523z,49,63,0|po5240,62,42,1|q0dpzz,62,42,1|q0dq00,49,63,0|q6v4rz,49,63,0|q6v4s0,62,42,1|qj3snz,62,42,1|qj3so0,49,63,0|qpy63z,49,63,0|qpy640,62,42,1|r26tzz,62,42,1|r26u00,49,63,0|r8o8rz,49,63,0|r8o8s0,62,42,1|rkwwnz,62,42,1|rkwwo0,49,63,0|rrebfz,49,63,0|rrebg0,62,42,1|s3mzbz,62,42,1|s3mzc0,49,63,0|sa4e3z,49,63,0|sa4e40,62,42,1|smd1zz,62,42,1|smd200,49,63,0|ssugrz,49,63,0|ssugs0,62,42,1|t534nz,62,42,1|t534o0,49,63,0|tbkjfz,49,63,0|tbkjg0,62,42,1|tnt7bz,62,42,1|tnt7c0,49,63,0|tunkrz,49,63,0|tunks0,62,42,1|u6w8nz,62,42,1|u6w8o0,49,63,0|uddnfz,49,63,0|uddng0,62,42,1|upmbbz,62,42,1|upmbc0,49,63,0|uw3q3z,49,63,0|uw3q40,62,42,1|v8cdzz,62,42,1|v8ce00,49,63,0|vetsrz,49,63,0|vetss0,62,42,1|vr2gnz,62,42,1|vr2go0,49,63,0|vxjvfz,49,63,0|vxjvg0,62,42,1|w9sjbz,62,42,1|w9sjc0,49,63,0|wgmwrz,49,63,0|wgmws0,62,42,1|wsvknz,62,42,1|wsvko0,49,63,0|wzczfz,49,63,0|wzczg0,62,42,1|xblnbz,62,42,1|xblnc0,49,63,0|xi323z,49,63,0|xi3240,62,42,1|xubpzz,62,42,1|xubq00,49,63,0|y0t4rz,49,63,0|y0t4s0,62,42,1|yd1snz,62,42,1|yd1so0,49,63,0|yjj7fz,49,63,0|yjj7g0,62,42,1|yvrvbz,62,42,1|yvrvc0,49,63,0|z29a3z,49,63,0|z29a40,62,42,1|zehxzz,62,42,1|zehy00,49,63,0","America/Tijuana|,0,184,0|-p1u1s0,50,66,0|-o0a9w1,50,66,0|-o0a9w0,51,40,0|-m7mhw1,51,40,0|-m7mhw0,50,66,0|-kf64k1,50,66,0|-kf64k0,51,40,0|-k84cg1,51,40,0|-k84cg0,57,66,1|-jyrdw1,57,66,1|-jyrdw0,51,40,0|-eg90g1,51,40,0|-eg90g0,68,66,1|-cq2tg1,68,66,1|-cq2tg0,69,66,1|-clhdw1,69,66,1|-clhdw0,51,40,0|-bcgxs1,51,40,0|-bcgxs0,57,66,1|-axv381,57,66,1|-axv380,51,40,0|-86qf01,51,40,0|-86qf00,57,66,1|-7yt8c1,57,66,1|-7yt8c0,51,40,0|-7o0cc1,51,40,0|-7o0cc0,57,66,1|-7g35o1,57,66,1|-7g35o0,51,40,0|-74xb01,51,40,0|-74xb00,57,66,1|-6x04c1,57,66,1|-6x04c0,51,40,0|-6m78c1,51,40,0|-6m78c0,57,66,1|-6ea1o1,57,66,1|-6ea1o0,51,40,0|-63h5o1,51,40,0|-63h5o0,57,66,1|-5vjz01,57,66,1|-5vjz00,51,40,0|-5kr301,51,40,0|-5kr300,57,66,1|-5ctwc1,57,66,1|-5ctwc0,51,40,0|-5210c1,51,40,0|-5210c0,57,66,1|-4u3to1,57,66,1|-4u3to0,51,40,0|3an53z,51,40,0|3an540,57,66,1|3kd2bz,57,66,1|3kd2c0,51,40,0|3td7rz,51,40,0|3td7s0,57,66,1|4334zz,57,66,1|433500,51,40,0|4cg93z,51,40,0|4cg940,57,66,1|4lt7nz,57,66,1|4lt7o0,51,40,0|4v6brz,51,40,0|4v6bs0,57,66,1|54jabz,57,66,1|54jac0,51,40,0|5dwefz,51,40,0|5dweg0,57,66,1|5n9czz,57,66,1|5n9d00,51,40,0|5wmh3z,51,40,0|5wmh40,57,66,1|65zfnz,57,66,1|65zfo0,51,40,0|6fcjrz,51,40,0|6fcjs0,57,66,1|6p2gzz,57,66,1|6p2h00,51,40,0|6y2mfz,51,40,0|6y2mg0,57,66,1|77sjnz,57,66,1|77sjo0,51,40,0|7h5nrz,51,40,0|7h5ns0,57,66,1|7qimbz,57,66,1|7qimc0,51,40,0|7zvqfz,51,40,0|7zvqg0,57,66,1|898ozz,57,66,1|898p00,51,40,0|8ilt3z,51,40,0|8ilt40,57,66,1|8ryrnz,57,66,1|8ryro0,51,40,0|908zrz,51,40,0|908zs0,57,66,1|9aoubz,57,66,1|9aouc0,51,40,0|9iz2fz,51,40,0|9iz2g0,57,66,1|9trvnz,57,66,1|9trvo0,51,40,0|a1p53z,51,40,0|a1p540,57,66,1|achybz,57,66,1|achyc0,51,40,0|akf7rz,51,40,0|akf7s0,57,66,1|av80zz,57,66,1|av8100,51,40,0|b3i93z,51,40,0|b3i940,57,66,1|bdy3nz,57,66,1|bdy3o0,51,40,0|bm8brz,51,40,0|bm8bs0,57,66,1|bwo6bz,57,66,1|bwo6c0,51,40,0|c4yefz,51,40,0|c4yeg0,57,66,1|cfr7nz,57,66,1|cfr7o0,51,40,0|cnoh3z,51,40,0|cnoh40,57,66,1|cyhabz,57,66,1|cyhac0,51,40,0|d6ejrz,51,40,0|d6ejs0,57,66,1|dh7czz,57,66,1|dh7d00,51,40,0|dphl3z,51,40,0|dphl40,57,66,1|dzxfnz,57,66,1|dzxfo0,51,40,0|e87nrz,51,40,0|e87ns0,57,66,1|einibz,57,66,1|einic0,51,40,0|eqxqfz,51,40,0|eqxqg0,57,66,1|f1dkzz,57,66,1|f1dl00,51,40,0|f9nt3z,51,40,0|f9nt40,57,66,1|fkgmbz,57,66,1|fkgmc0,51,40,0|fsdvrz,51,40,0|fsdvs0,57,66,1|g36ozz,57,66,1|g36p00,51,40,0|gb3yfz,51,40,0|gb3yg0,57,66,1|glwrnz,57,66,1|glwro0,51,40,0|gu6zrz,51,40,0|gu6zs0,57,66,1|h4mubz,57,66,1|h4muc0,51,40,0|hcx2fz,51,40,0|hcx2g0,57,66,1|hncwzz,57,66,1|hncx00,51,40,0|hvn53z,51,40,0|hvn540,57,66,1|i6fybz,57,66,1|i6fyc0,51,40,0|ied7rz,51,40,0|ied7s0,57,66,1|ip60zz,57,66,1|ip6100,51,40,0|ix3afz,51,40,0|ix3ag0,57,66,1|j7w3nz,57,66,1|j7w3o0,51,40,0|jftd3z,51,40,0|jftd40,57,66,1|jqm6bz,57,66,1|jqm6c0,51,40,0|jywefz,51,40,0|jyweg0,57,66,1|k9c8zz,57,66,1|k9c900,51,40,0|khmh3z,51,40,0|khmh40,57,66,1|ks2bnz,57,66,1|ks2bo0,51,40,0|kz9nrz,51,40,0|kz9ns0,57,66,1|lbibnz,57,66,1|lbibo0,51,40,0|lhzqfz,51,40,0|lhzqg0,57,66,1|lu8ebz,57,66,1|lu8ec0,51,40,0|m0pt3z,51,40,0|m0pt40,57,66,1|mcygzz,57,66,1|mcyh00,51,40,0|mjfvrz,51,40,0|mjfvs0,57,66,1|mvojnz,57,66,1|mvojo0,51,40,0|n25yfz,51,40,0|n25yg0,57,66,1|neembz,57,66,1|neemc0,51,40,0|nkw13z,51,40,0|nkw140,57,66,1|nx4ozz,57,66,1|nx4p00,51,40,0|o3z2fz,51,40,0|o3z2g0,57,66,1|og7qbz,57,66,1|og7qc0,51,40,0|omp53z,51,40,0|omp540,57,66,1|oyxszz,57,66,1|oyxt00,51,40,0|p5f7rz,51,40,0|p5f7s0,57,66,1|phnvnz,57,66,1|phnvo0,51,40,0|po5afz,51,40,0|po5ag0,57,66,1|q0dybz,57,66,1|q0dyc0,51,40,0|q6vd3z,51,40,0|q6vd40,57,66,1|qj40zz,57,66,1|qj4100,51,40,0|qpyefz,51,40,0|qpyeg0,57,66,1|r272bz,57,66,1|r272c0,51,40,0|r8oh3z,51,40,0|r8oh40,57,66,1|rkx4zz,57,66,1|rkx500,51,40,0|rrejrz,51,40,0|rrejs0,57,66,1|s3n7nz,57,66,1|s3n7o0,51,40,0|sa4mfz,51,40,0|sa4mg0,57,66,1|smdabz,57,66,1|smdac0,51,40,0|ssup3z,51,40,0|ssup40,57,66,1|t53czz,57,66,1|t53d00,51,40,0|tbkrrz,51,40,0|tbkrs0,57,66,1|tntfnz,57,66,1|tntfo0,51,40,0|tunt3z,51,40,0|tunt40,57,66,1|u6wgzz,57,66,1|u6wh00,51,40,0|uddvrz,51,40,0|uddvs0,57,66,1|upmjnz,57,66,1|upmjo0,51,40,0|uw3yfz,51,40,0|uw3yg0,57,66,1|v8cmbz,57,66,1|v8cmc0,51,40,0|veu13z,51,40,0|veu140,57,66,1|vr2ozz,57,66,1|vr2p00,51,40,0|vxk3rz,51,40,0|vxk3s0,57,66,1|w9srnz,57,66,1|w9sro0,51,40,0|wgn53z,51,40,0|wgn540,57,66,1|wsvszz,57,66,1|wsvt00,51,40,0|wzd7rz,51,40,0|wzd7s0,57,66,1|xblvnz,57,66,1|xblvo0,51,40,0|xi3afz,51,40,0|xi3ag0,57,66,1|xubybz,57,66,1|xubyc0,51,40,0|y0td3z,51,40,0|y0td40,57,66,1|yd20zz,57,66,1|yd2100,51,40,0|yjjfrz,51,40,0|yjjfs0,57,66,1|yvs3nz,57,66,1|yvs3o0,51,40,0|z29ifz,51,40,0|z29ig0,57,66,1|zei6bz,57,66,1|zei6c0,51,40,0","America/Toronto|,0,185,0|-1353das,49,63,0|-qzoxw1,49,63,0|-qzoxw0,62,42,1|-qpm201,62,42,1|-qpm200,49,63,0|-qhn4u1,49,63,0|-qhn4u0,62,42,1|-q6w4w1,62,42,1|-q6w4w0,49,63,0|-px5wk1,49,63,0|-px5wk0,62,42,1|-pplww1,62,42,1|-pplww0,49,63,0|-pdpwk1,49,63,0|-pdpwk0,62,42,1|-p7e7c1,62,42,1|-p7e7c0,49,63,0|-ouztw1,49,63,0|-ouztw0,62,42,1|-ooiko1,62,42,1|-ooiko0,49,63,0|-oc9r81,49,63,0|-oc9r80,62,42,1|-o5si01,62,42,1|-o5si00,49,63,0|-ntwn81,49,63,0|-ntwn80,62,42,1|-nmpgo1,62,42,1|-nmpgo0,49,63,0|-nb6kk1,49,63,0|-nb6kk0,62,42,1|-n3ze01,62,42,1|-n3ze00,49,63,0|-msghw1,49,63,0|-msghw0,62,42,1|-ml9bc1,62,42,1|-ml9bc0,49,63,0|-m9qf81,49,63,0|-m9qf80,62,42,1|-m26a01,62,42,1|-m26a00,49,63,0|-lr0ck1,49,63,0|-lr0ck0,62,42,1|-lj38o1,62,42,1|-lj38o0,49,63,0|-l8a9w1,49,63,0|-l8a9w0,62,42,1|-l0d601,62,42,1|-l0d600,49,63,0|-kpk781,49,63,0|-kpk780,62,42,1|-khn3c1,62,42,1|-khn3c0,49,63,0|-k6u4k1,49,63,0|-k6u4k0,62,42,1|-jyx0o1,62,42,1|-jyx0o0,49,63,0|-jnr381,49,63,0|-jnr380,62,42,1|-jg6y01,62,42,1|-jg6y00,49,63,0|-j510k1,49,63,0|-j510k0,62,42,1|-ix3wo1,62,42,1|-ix3wo0,49,63,0|-imaxw1,49,63,0|-imaxw0,62,42,1|-iedu01,62,42,1|-iedu00,49,63,0|-i3kv81,49,63,0|-i3kv80,62,42,1|-hvnrc1,62,42,1|-hvnrc0,49,63,0|-hkusk1,49,63,0|-hkusk0,62,42,1|-hcxoo1,62,42,1|-hcxoo0,49,63,0|-h24pw1,49,63,0|-h24pw0,62,42,1|-gu7m01,62,42,1|-gu7m00,49,63,0|-gjen81,49,63,0|-gjen80,62,42,1|-gbhjc1,62,42,1|-gbhjc0,49,63,0|-g0blw1,49,63,0|-g0blw0,62,42,1|-fsrgo1,62,42,1|-fsrgo0,49,63,0|-fhlj81,49,63,0|-fhlj80,62,42,1|-ek24k1,62,42,1|-ek24k0,70,42,1|-cq2tg1,70,42,1|-cq2tg0,71,42,1|-cnp3c1,71,42,1|-cnp3c0,49,63,0|-ccw4k1,49,63,0|-ccw4k0,62,42,1|-c4z0o1,62,42,1|-c4z0o0,49,63,0|-bu67g1,49,63,0|-bu67g0,62,42,1|-bm93k1,62,42,1|-bm93k0,49,63,0|-bbg4s1,49,63,0|-bbg4s0,62,42,1|-b3j0w1,62,42,1|-b3j0w0,49,63,0|-asq241,49,63,0|-asq240,62,42,1|-ahka81,62,42,1|-ahka80,49,63,0|-a9mv81,49,63,0|-a9mv80,62,42,1|-9yu201,62,42,1|-9yu200,49,63,0|-9qwsk1,49,63,0|-9qwsk0,62,42,1|-9izoo1,62,42,1|-9izoo0,49,63,0|-986pw1,49,63,0|-986pw0,62,42,1|-909m01,62,42,1|-909m00,49,63,0|-8pgn81,49,63,0|-8pgn80,62,42,1|-8hjjc1,62,42,1|-8hjjc0,49,63,0|-86qkk1,49,63,0|-86qkk0,62,42,1|-7ytgo1,62,42,1|-7ytgo0,49,63,0|-7o0hw1,49,63,0|-7o0hw0,62,42,1|-7g3e01,62,42,1|-7g3e00,49,63,0|-74xgk1,49,63,0|-74xgk0,62,42,1|-6x0co1,62,42,1|-6x0co0,49,63,0|-6m7dw1,49,63,0|-6m7dw0,62,42,1|-6cufc1,62,42,1|-6cufc0,49,63,0|-63hb81,49,63,0|-63hb80,62,42,1|-5u4co1,62,42,1|-5u4co0,49,63,0|-5kr8k1,49,63,0|-5kr8k0,62,42,1|-5bea01,62,42,1|-5bea00,49,63,0|-5215w1,49,63,0|-5215w0,62,42,1|-4sb8o1,62,42,1|-4sb8o0,49,63,0|-4iy4k1,49,63,0|-4iy4k0,62,42,1|-49l601,62,42,1|-49l600,49,63,0|-4081w1,49,63,0|-4081w0,62,42,1|-3qv3c1,62,42,1|-3qv3c0,49,63,0|-3hhz81,49,63,0|-3hhz80,62,42,1|-3850o1,62,42,1|-3850o0,49,63,0|-2yrwk1,49,63,0|-2yrwk0,62,42,1|-2pey01,62,42,1|-2pey00,49,63,0|-2g1tw1,49,63,0|-2g1tw0,62,42,1|-26bwo1,62,42,1|-26bwo0,49,63,0|-1xbr81,49,63,0|-1xbr80,62,42,1|-1nlu01,62,42,1|-1nlu00,49,63,0|-1e8pw1,49,63,0|-1e8pw0,62,42,1|-14vrc1,62,42,1|-14vrc0,49,63,0|-vin81,49,63,0|-vin80,62,42,1|-m5oo1,62,42,1|-m5oo0,49,63,0|-cskk1,49,63,0|-cskk0,62,42,1|-3fm01,62,42,1|-3fm00,49,63,0|5xi3z,49,63,0|5xi40,62,42,1|fagnz,62,42,1|fago0,49,63,0|onkrz,49,63,0|onks0,62,42,1|ydhzz,62,42,1|ydi00,49,63,0|17qm3z,49,63,0|17qm40,62,42,1|1h3knz,62,42,1|1h3ko0,49,63,0|1qgorz,49,63,0|1qgos0,62,42,1|1ztnbz,62,42,1|1ztnc0,49,63,0|296rfz,49,63,0|296rg0,62,42,1|2ijpzz,62,42,1|2ijq00,49,63,0|2rwu3z,49,63,0|2rwu40,62,42,1|319snz,62,42,1|319so0,49,63,0|3amwrz,49,63,0|3amws0,62,42,1|3kctzz,62,42,1|3kcu00,49,63,0|3tczfz,49,63,0|3tczg0,62,42,1|432wnz,62,42,1|432wo0,49,63,0|4cg0rz,49,63,0|4cg0s0,62,42,1|4lszbz,62,42,1|4lszc0,49,63,0|4v63fz,49,63,0|4v63g0,62,42,1|54j1zz,62,42,1|54j200,49,63,0|5dw63z,49,63,0|5dw640,62,42,1|5n94nz,62,42,1|5n94o0,49,63,0|5wm8rz,49,63,0|5wm8s0,62,42,1|65z7bz,62,42,1|65z7c0,49,63,0|6fcbfz,49,63,0|6fcbg0,62,42,1|6p28nz,62,42,1|6p28o0,49,63,0|6y2e3z,49,63,0|6y2e40,62,42,1|77sbbz,62,42,1|77sbc0,49,63,0|7h5ffz,49,63,0|7h5fg0,62,42,1|7qidzz,62,42,1|7qie00,49,63,0|7zvi3z,49,63,0|7zvi40,62,42,1|898gnz,62,42,1|898go0,49,63,0|8ilkrz,49,63,0|8ilks0,62,42,1|8ryjbz,62,42,1|8ryjc0,49,63,0|908rfz,49,63,0|908rg0,62,42,1|9aolzz,62,42,1|9aom00,49,63,0|9iyu3z,49,63,0|9iyu40,62,42,1|9trnbz,62,42,1|9trnc0,49,63,0|a1owrz,49,63,0|a1ows0,62,42,1|achpzz,62,42,1|achq00,49,63,0|akezfz,49,63,0|akezg0,62,42,1|av7snz,62,42,1|av7so0,49,63,0|b3i0rz,49,63,0|b3i0s0,62,42,1|bdxvbz,62,42,1|bdxvc0,49,63,0|bm83fz,49,63,0|bm83g0,62,42,1|bwnxzz,62,42,1|bwny00,49,63,0|c4y63z,49,63,0|c4y640,62,42,1|cfqzbz,62,42,1|cfqzc0,49,63,0|cno8rz,49,63,0|cno8s0,62,42,1|cyh1zz,62,42,1|cyh200,49,63,0|d6ebfz,49,63,0|d6ebg0,62,42,1|dh74nz,62,42,1|dh74o0,49,63,0|dphcrz,49,63,0|dphcs0,62,42,1|dzx7bz,62,42,1|dzx7c0,49,63,0|e87ffz,49,63,0|e87fg0,62,42,1|ein9zz,62,42,1|eina00,49,63,0|eqxi3z,49,63,0|eqxi40,62,42,1|f1dcnz,62,42,1|f1dco0,49,63,0|f9nkrz,49,63,0|f9nks0,62,42,1|fkgdzz,62,42,1|fkge00,49,63,0|fsdnfz,49,63,0|fsdng0,62,42,1|g36gnz,62,42,1|g36go0,49,63,0|gb3q3z,49,63,0|gb3q40,62,42,1|glwjbz,62,42,1|glwjc0,49,63,0|gu6rfz,49,63,0|gu6rg0,62,42,1|h4mlzz,62,42,1|h4mm00,49,63,0|hcwu3z,49,63,0|hcwu40,62,42,1|hnconz,62,42,1|hncoo0,49,63,0|hvmwrz,49,63,0|hvmws0,62,42,1|i6fpzz,62,42,1|i6fq00,49,63,0|ieczfz,49,63,0|ieczg0,62,42,1|ip5snz,62,42,1|ip5so0,49,63,0|ix323z,49,63,0|ix3240,62,42,1|j7vvbz,62,42,1|j7vvc0,49,63,0|jeq8rz,49,63,0|jeq8s0,62,42,1|jqywnz,62,42,1|jqywo0,49,63,0|jxgbfz,49,63,0|jxgbg0,62,42,1|k9ozbz,62,42,1|k9ozc0,49,63,0|kg6e3z,49,63,0|kg6e40,62,42,1|ksf1zz,62,42,1|ksf200,49,63,0|kz9ffz,49,63,0|kz9fg0,62,42,1|lbi3bz,62,42,1|lbi3c0,49,63,0|lhzi3z,49,63,0|lhzi40,62,42,1|lu85zz,62,42,1|lu8600,49,63,0|m0pkrz,49,63,0|m0pks0,62,42,1|mcy8nz,62,42,1|mcy8o0,49,63,0|mjfnfz,49,63,0|mjfng0,62,42,1|mvobbz,62,42,1|mvobc0,49,63,0|n25q3z,49,63,0|n25q40,62,42,1|needzz,62,42,1|neee00,49,63,0|nkvsrz,49,63,0|nkvss0,62,42,1|nx4gnz,62,42,1|nx4go0,49,63,0|o3yu3z,49,63,0|o3yu40,62,42,1|og7hzz,62,42,1|og7i00,49,63,0|omowrz,49,63,0|omows0,62,42,1|oyxknz,62,42,1|oyxko0,49,63,0|p5ezfz,49,63,0|p5ezg0,62,42,1|phnnbz,62,42,1|phnnc0,49,63,0|po523z,49,63,0|po5240,62,42,1|q0dpzz,62,42,1|q0dq00,49,63,0|q6v4rz,49,63,0|q6v4s0,62,42,1|qj3snz,62,42,1|qj3so0,49,63,0|qpy63z,49,63,0|qpy640,62,42,1|r26tzz,62,42,1|r26u00,49,63,0|r8o8rz,49,63,0|r8o8s0,62,42,1|rkwwnz,62,42,1|rkwwo0,49,63,0|rrebfz,49,63,0|rrebg0,62,42,1|s3mzbz,62,42,1|s3mzc0,49,63,0|sa4e3z,49,63,0|sa4e40,62,42,1|smd1zz,62,42,1|smd200,49,63,0|ssugrz,49,63,0|ssugs0,62,42,1|t534nz,62,42,1|t534o0,49,63,0|tbkjfz,49,63,0|tbkjg0,62,42,1|tnt7bz,62,42,1|tnt7c0,49,63,0|tunkrz,49,63,0|tunks0,62,42,1|u6w8nz,62,42,1|u6w8o0,49,63,0|uddnfz,49,63,0|uddng0,62,42,1|upmbbz,62,42,1|upmbc0,49,63,0|uw3q3z,49,63,0|uw3q40,62,42,1|v8cdzz,62,42,1|v8ce00,49,63,0|vetsrz,49,63,0|vetss0,62,42,1|vr2gnz,62,42,1|vr2go0,49,63,0|vxjvfz,49,63,0|vxjvg0,62,42,1|w9sjbz,62,42,1|w9sjc0,49,63,0|wgmwrz,49,63,0|wgmws0,62,42,1|wsvknz,62,42,1|wsvko0,49,63,0|wzczfz,49,63,0|wzczg0,62,42,1|xblnbz,62,42,1|xblnc0,49,63,0|xi323z,49,63,0|xi3240,62,42,1|xubpzz,62,42,1|xubq00,49,63,0|y0t4rz,49,63,0|y0t4s0,62,42,1|yd1snz,62,42,1|yd1so0,49,63,0|yjj7fz,49,63,0|yjj7g0,62,42,1|yvrvbz,62,42,1|yvrvc0,49,63,0|z29a3z,49,63,0|z29a40,62,42,1|zehxzz,62,42,1|zehy00,49,63,0","America/Tortola|,0,41,0|-u6m79w,32,42,0","America/Vancouver|,0,186,0|-18vrvv8,51,40,0|-qzopk1,51,40,0|-qzopk0,57,66,1|-qplto1,57,66,1|-qplto0,51,40,0|-ek1w81,51,40,0|-ek1w80,68,66,1|-cq2tg1,68,66,1|-cq2tg0,69,66,1|-cnov01,69,66,1|-cnov00,51,40,0|-ccvw81,51,40,0|-ccvw80,57,66,1|-c4ysc1,57,66,1|-c4ysc0,51,40,0|-bu5tk1,51,40,0|-bu5tk0,57,66,1|-bm8po1,57,66,1|-bm8po0,51,40,0|-bbfqw1,51,40,0|-bbfqw0,57,66,1|-b3in01,57,66,1|-b3in00,51,40,0|-aspo81,51,40,0|-aspo80,57,66,1|-akskc1,57,66,1|-akskc0,51,40,0|-a9mmw1,51,40,0|-a9mmw0,57,66,1|-a22ho1,57,66,1|-a22ho0,51,40,0|-9qwk81,51,40,0|-9qwk80,57,66,1|-9izgc1,57,66,1|-9izgc0,51,40,0|-986hk1,51,40,0|-986hk0,57,66,1|-909do1,57,66,1|-909do0,51,40,0|-8pgew1,51,40,0|-8pgew0,57,66,1|-8hjb01,57,66,1|-8hjb00,51,40,0|-86qc81,51,40,0|-86qc80,57,66,1|-7yt8c1,57,66,1|-7yt8c0,51,40,0|-7o09k1,51,40,0|-7o09k0,57,66,1|-7g35o1,57,66,1|-7g35o0,51,40,0|-74x881,51,40,0|-74x880,57,66,1|-6x04c1,57,66,1|-6x04c0,51,40,0|-6m75k1,51,40,0|-6m75k0,57,66,1|-6ea1o1,57,66,1|-6ea1o0,51,40,0|-63h2w1,51,40,0|-63h2w0,57,66,1|-5vjz01,57,66,1|-5vjz00,51,40,0|-5kr081,51,40,0|-5kr080,57,66,1|-5ctwc1,57,66,1|-5ctwc0,51,40,0|-520xk1,51,40,0|-520xk0,57,66,1|-4u3to1,57,66,1|-4u3to0,51,40,0|-4ixw81,51,40,0|-4ixw80,57,66,1|-4bdr01,57,66,1|-4bdr00,51,40,0|-407tk1,51,40,0|-407tk0,57,66,1|-3quv01,57,66,1|-3quv00,51,40,0|-3hhqw1,51,40,0|-3hhqw0,57,66,1|-384sc1,57,66,1|-384sc0,51,40,0|-2yro81,51,40,0|-2yro80,57,66,1|-2pepo1,57,66,1|-2pepo0,51,40,0|-2g1lk1,51,40,0|-2g1lk0,57,66,1|-26boc1,57,66,1|-26boc0,51,40,0|-1xbiw1,51,40,0|-1xbiw0,57,66,1|-1nllo1,57,66,1|-1nllo0,51,40,0|-1e8hk1,51,40,0|-1e8hk0,57,66,1|-14vj01,57,66,1|-14vj00,51,40,0|-view1,51,40,0|-view0,57,66,1|-m5gc1,57,66,1|-m5gc0,51,40,0|-csc81,51,40,0|-csc80,57,66,1|-3fdo1,57,66,1|-3fdo0,51,40,0|5xqfz,51,40,0|5xqg0,57,66,1|faozz,57,66,1|fap00,51,40,0|ont3z,51,40,0|ont40,57,66,1|ydqbz,57,66,1|ydqc0,51,40,0|17qufz,51,40,0|17qug0,57,66,1|1h3szz,57,66,1|1h3t00,51,40,0|1qgx3z,51,40,0|1qgx40,57,66,1|1ztvnz,57,66,1|1ztvo0,51,40,0|296zrz,51,40,0|296zs0,57,66,1|2ijybz,57,66,1|2ijyc0,51,40,0|2rx2fz,51,40,0|2rx2g0,57,66,1|31a0zz,57,66,1|31a100,51,40,0|3an53z,51,40,0|3an540,57,66,1|3kd2bz,57,66,1|3kd2c0,51,40,0|3td7rz,51,40,0|3td7s0,57,66,1|4334zz,57,66,1|433500,51,40,0|4cg93z,51,40,0|4cg940,57,66,1|4lt7nz,57,66,1|4lt7o0,51,40,0|4v6brz,51,40,0|4v6bs0,57,66,1|54jabz,57,66,1|54jac0,51,40,0|5dwefz,51,40,0|5dweg0,57,66,1|5n9czz,57,66,1|5n9d00,51,40,0|5wmh3z,51,40,0|5wmh40,57,66,1|65zfnz,57,66,1|65zfo0,51,40,0|6fcjrz,51,40,0|6fcjs0,57,66,1|6p2gzz,57,66,1|6p2h00,51,40,0|6y2mfz,51,40,0|6y2mg0,57,66,1|77sjnz,57,66,1|77sjo0,51,40,0|7h5nrz,51,40,0|7h5ns0,57,66,1|7qimbz,57,66,1|7qimc0,51,40,0|7zvqfz,51,40,0|7zvqg0,57,66,1|898ozz,57,66,1|898p00,51,40,0|8ilt3z,51,40,0|8ilt40,57,66,1|8ryrnz,57,66,1|8ryro0,51,40,0|908zrz,51,40,0|908zs0,57,66,1|9aoubz,57,66,1|9aouc0,51,40,0|9iz2fz,51,40,0|9iz2g0,57,66,1|9trvnz,57,66,1|9trvo0,51,40,0|a1p53z,51,40,0|a1p540,57,66,1|achybz,57,66,1|achyc0,51,40,0|akf7rz,51,40,0|akf7s0,57,66,1|av80zz,57,66,1|av8100,51,40,0|b3i93z,51,40,0|b3i940,57,66,1|bdy3nz,57,66,1|bdy3o0,51,40,0|bm8brz,51,40,0|bm8bs0,57,66,1|bwo6bz,57,66,1|bwo6c0,51,40,0|c4yefz,51,40,0|c4yeg0,57,66,1|cfr7nz,57,66,1|cfr7o0,51,40,0|cnoh3z,51,40,0|cnoh40,57,66,1|cyhabz,57,66,1|cyhac0,51,40,0|d6ejrz,51,40,0|d6ejs0,57,66,1|dh7czz,57,66,1|dh7d00,51,40,0|dphl3z,51,40,0|dphl40,57,66,1|dzxfnz,57,66,1|dzxfo0,51,40,0|e87nrz,51,40,0|e87ns0,57,66,1|einibz,57,66,1|einic0,51,40,0|eqxqfz,51,40,0|eqxqg0,57,66,1|f1dkzz,57,66,1|f1dl00,51,40,0|f9nt3z,51,40,0|f9nt40,57,66,1|fkgmbz,57,66,1|fkgmc0,51,40,0|fsdvrz,51,40,0|fsdvs0,57,66,1|g36ozz,57,66,1|g36p00,51,40,0|gb3yfz,51,40,0|gb3yg0,57,66,1|glwrnz,57,66,1|glwro0,51,40,0|gu6zrz,51,40,0|gu6zs0,57,66,1|h4mubz,57,66,1|h4muc0,51,40,0|hcx2fz,51,40,0|hcx2g0,57,66,1|hncwzz,57,66,1|hncx00,51,40,0|hvn53z,51,40,0|hvn540,57,66,1|i6fybz,57,66,1|i6fyc0,51,40,0|ied7rz,51,40,0|ied7s0,57,66,1|ip60zz,57,66,1|ip6100,51,40,0|ix3afz,51,40,0|ix3ag0,57,66,1|j7w3nz,57,66,1|j7w3o0,51,40,0|jeqh3z,51,40,0|jeqh40,57,66,1|jqz4zz,57,66,1|jqz500,51,40,0|jxgjrz,51,40,0|jxgjs0,57,66,1|k9p7nz,57,66,1|k9p7o0,51,40,0|kg6mfz,51,40,0|kg6mg0,57,66,1|ksfabz,57,66,1|ksfac0,51,40,0|kz9nrz,51,40,0|kz9ns0,57,66,1|lbibnz,57,66,1|lbibo0,51,40,0|lhzqfz,51,40,0|lhzqg0,57,66,1|lu8ebz,57,66,1|lu8ec0,51,40,0|m0pt3z,51,40,0|m0pt40,57,66,1|mcygzz,57,66,1|mcyh00,51,40,0|mjfvrz,51,40,0|mjfvs0,57,66,1|mvojnz,57,66,1|mvojo0,51,40,0|n25yfz,51,40,0|n25yg0,57,66,1|neembz,57,66,1|neemc0,51,40,0|nkw13z,51,40,0|nkw140,57,66,1|nx4ozz,57,66,1|nx4p00,51,40,0|o3z2fz,51,40,0|o3z2g0,57,66,1|og7qbz,57,66,1|og7qc0,51,40,0|omp53z,51,40,0|omp540,57,66,1|oyxszz,57,66,1|oyxt00,51,40,0|p5f7rz,51,40,0|p5f7s0,57,66,1|phnvnz,57,66,1|phnvo0,51,40,0|po5afz,51,40,0|po5ag0,57,66,1|q0dybz,57,66,1|q0dyc0,51,40,0|q6vd3z,51,40,0|q6vd40,57,66,1|qj40zz,57,66,1|qj4100,51,40,0|qpyefz,51,40,0|qpyeg0,57,66,1|r272bz,57,66,1|r272c0,51,40,0|r8oh3z,51,40,0|r8oh40,57,66,1|rkx4zz,57,66,1|rkx500,51,40,0|rrejrz,51,40,0|rrejs0,57,66,1|s3n7nz,57,66,1|s3n7o0,51,40,0|sa4mfz,51,40,0|sa4mg0,57,66,1|smdabz,57,66,1|smdac0,51,40,0|ssup3z,51,40,0|ssup40,57,66,1|t53czz,57,66,1|t53d00,51,40,0|tbkrrz,51,40,0|tbkrs0,57,66,1|tntfnz,57,66,1|tntfo0,51,40,0|tunt3z,51,40,0|tunt40,57,66,1|u6wgzz,57,66,1|u6wh00,51,40,0|uddvrz,51,40,0|uddvs0,57,66,1|upmjnz,57,66,1|upmjo0,51,40,0|uw3yfz,51,40,0|uw3yg0,57,66,1|v8cmbz,57,66,1|v8cmc0,51,40,0|veu13z,51,40,0|veu140,57,66,1|vr2ozz,57,66,1|vr2p00,51,40,0|vxk3rz,51,40,0|vxk3s0,57,66,1|w9srnz,57,66,1|w9sro0,51,40,0|wgn53z,51,40,0|wgn540,57,66,1|wsvszz,57,66,1|wsvt00,51,40,0|wzd7rz,51,40,0|wzd7s0,57,66,1|xblvnz,57,66,1|xblvo0,51,40,0|xi3afz,51,40,0|xi3ag0,57,66,1|xubybz,57,66,1|xubyc0,51,40,0|y0td3z,51,40,0|y0td40,57,66,1|yd20zz,57,66,1|yd2100,51,40,0|yjjfrz,51,40,0|yjjfs0,57,66,1|yvs3nz,57,66,1|yvs3o0,51,40,0|z29ifz,51,40,0|z29ig0,57,66,1|zei6bz,57,66,1|zei6c0,51,40,0","America/Whitehorse|,0,187,0|-1079tno,36,37,0|-qzoms1,36,37,0|-qzoms0,64,40,1|-qplqw1,64,40,1|-qplqw0,36,37,0|-qess41,36,37,0|-qess40,64,40,1|-q6kps1,64,40,1|-q6kps0,36,37,0|-ek1tg1,36,37,0|-ek1tg0,65,40,1|-cq2tg1,65,40,1|-cq2tg0,66,40,1|-cnos81,66,40,1|-cnos80,36,37,0|-2g1oc1,36,37,0|-2g1oc0,67,66,1|-26boc1,67,66,1|-26boc0,36,37,0|-1cspo1,36,37,0|-1cspo0,51,40,0|5dwefz,51,40,0|5dweg0,57,66,1|5n9czz,57,66,1|5n9d00,51,40,0|5wmh3z,51,40,0|5wmh40,57,66,1|65zfnz,57,66,1|65zfo0,51,40,0|6fcjrz,51,40,0|6fcjs0,57,66,1|6p2gzz,57,66,1|6p2h00,51,40,0|6y2mfz,51,40,0|6y2mg0,57,66,1|77sjnz,57,66,1|77sjo0,51,40,0|7h5nrz,51,40,0|7h5ns0,57,66,1|7qimbz,57,66,1|7qimc0,51,40,0|7zvqfz,51,40,0|7zvqg0,57,66,1|898ozz,57,66,1|898p00,51,40,0|8ilt3z,51,40,0|8ilt40,57,66,1|8ryrnz,57,66,1|8ryro0,51,40,0|908zrz,51,40,0|908zs0,57,66,1|9aoubz,57,66,1|9aouc0,51,40,0|9iz2fz,51,40,0|9iz2g0,57,66,1|9trvnz,57,66,1|9trvo0,51,40,0|a1p53z,51,40,0|a1p540,57,66,1|achybz,57,66,1|achyc0,51,40,0|akf7rz,51,40,0|akf7s0,57,66,1|av80zz,57,66,1|av8100,51,40,0|b3i93z,51,40,0|b3i940,57,66,1|bdy3nz,57,66,1|bdy3o0,51,40,0|bm8brz,51,40,0|bm8bs0,57,66,1|bwo6bz,57,66,1|bwo6c0,51,40,0|c4yefz,51,40,0|c4yeg0,57,66,1|cfr7nz,57,66,1|cfr7o0,51,40,0|cnoh3z,51,40,0|cnoh40,57,66,1|cyhabz,57,66,1|cyhac0,51,40,0|d6ejrz,51,40,0|d6ejs0,57,66,1|dh7czz,57,66,1|dh7d00,51,40,0|dphl3z,51,40,0|dphl40,57,66,1|dzxfnz,57,66,1|dzxfo0,51,40,0|e87nrz,51,40,0|e87ns0,57,66,1|einibz,57,66,1|einic0,51,40,0|eqxqfz,51,40,0|eqxqg0,57,66,1|f1dkzz,57,66,1|f1dl00,51,40,0|f9nt3z,51,40,0|f9nt40,57,66,1|fkgmbz,57,66,1|fkgmc0,51,40,0|fsdvrz,51,40,0|fsdvs0,57,66,1|g36ozz,57,66,1|g36p00,51,40,0|gb3yfz,51,40,0|gb3yg0,57,66,1|glwrnz,57,66,1|glwro0,51,40,0|gu6zrz,51,40,0|gu6zs0,57,66,1|h4mubz,57,66,1|h4muc0,51,40,0|hcx2fz,51,40,0|hcx2g0,57,66,1|hncwzz,57,66,1|hncx00,51,40,0|hvn53z,51,40,0|hvn540,57,66,1|i6fybz,57,66,1|i6fyc0,51,40,0|ied7rz,51,40,0|ied7s0,57,66,1|ip60zz,57,66,1|ip6100,51,40,0|ix3afz,51,40,0|ix3ag0,57,66,1|j7w3nz,57,66,1|j7w3o0,51,40,0|jeqh3z,51,40,0|jeqh40,57,66,1|jqz4zz,57,66,1|jqz500,51,40,0|jxgjrz,51,40,0|jxgjs0,57,66,1|k9p7nz,57,66,1|k9p7o0,51,40,0|kg6mfz,51,40,0|kg6mg0,57,66,1|ksfabz,57,66,1|ksfac0,51,40,0|kz9nrz,51,40,0|kz9ns0,57,66,1|lbibnz,57,66,1|lbibo0,51,40,0|lhzqfz,51,40,0|lhzqg0,57,66,1|lu8ebz,57,66,1|lu8ec0,51,40,0|m0pt3z,51,40,0|m0pt40,57,66,1|mcygzz,57,66,1|mcyh00,51,40,0|mjfvrz,51,40,0|mjfvs0,57,66,1|mvojnz,57,66,1|mvojo0,51,40,0|n25yfz,51,40,0|n25yg0,57,66,1|neembz,57,66,1|neemc0,51,40,0|nkw13z,51,40,0|nkw140,57,66,1|nx4ozz,57,66,1|nx4p00,51,40,0|o3z2fz,51,40,0|o3z2g0,57,66,1|og7qbz,57,66,1|og7qc0,51,40,0|omp53z,51,40,0|omp540,57,66,1|oyxszz,57,66,1|oyxt00,51,40,0|p5f7rz,51,40,0|p5f7s0,57,66,1|phnvnz,57,66,1|phnvo0,51,40,0|po5afz,51,40,0|po5ag0,57,66,1|q0dybz,57,66,1|q0dyc0,51,40,0|q6vd3z,51,40,0|q6vd40,57,66,1|qj3vfz,57,66,1|qj3vg0,50,66,0","America/Winnipeg|,0,188,0|-171bfcc,45,62,0|-s0s7c1,45,62,0|-s0s7c0,46,63,1|-rt8241,46,63,1|-rt8240,45,62,0|-qzov41,45,62,0|-qzov40,46,63,1|-qplz81,46,63,1|-qplz80,45,62,0|-h11r41,45,62,0|-h11r40,46,63,1|-gu7j81,46,63,1|-gu7j80,45,62,0|-ek21s1,45,62,0|-ek21s0,47,63,1|-cq2tg1,47,63,1|-cq2tg0,48,63,1|-cnp0k1,48,63,1|-cnp0k0,45,62,0|-cc64g1,45,62,0|-cc64g0,46,63,1|-c490k1,46,63,1|-c490k0,45,62,0|-bu5z41,45,62,0|-bu5z40,46,63,1|-bm8v81,46,63,1|-bm8v80,45,62,0|-bbfwg1,45,62,0|-bbfwg0,46,63,1|-b3isk1,46,63,1|-b3isk0,45,62,0|-aspts1,45,62,0|-aspts0,46,63,1|-akspw1,46,63,1|-akspw0,45,62,0|-a9kxs1,45,62,0|-a9kxs0,46,63,1|-a1rj81,46,63,1|-a1rj80,45,62,0|-9qwps1,45,62,0|-9qwps0,46,63,1|-9izlw1,46,63,1|-9izlw0,45,62,0|-986n41,45,62,0|-986n40,46,63,1|-909j81,46,63,1|-909j80,45,62,0|-8pgkg1,45,62,0|-8pgkg0,46,63,1|-8hjgk1,46,63,1|-8hjgk0,45,62,0|-86qhs1,45,62,0|-86qhs0,46,63,1|-7ytdw1,46,63,1|-7ytdw0,45,62,0|-7o0f41,45,62,0|-7o0f40,46,63,1|-7g3b81,46,63,1|-7g3b80,45,62,0|-74xds1,45,62,0|-74xds0,46,63,1|-6x09w1,46,63,1|-6x09w0,45,62,0|-6m7b41,45,62,0|-6m7b40,46,63,1|-6ea781,46,63,1|-6ea780,45,62,0|-63h8g1,45,62,0|-63h8g0,46,63,1|-5vk4k1,46,63,1|-5vk4k0,45,62,0|-5kr5s1,45,62,0|-5kr5s0,46,63,1|-5be781,46,63,1|-5be780,45,62,0|-521341,45,62,0|-521340,46,63,1|-4u3z81,46,63,1|-4u3z80,45,62,0|-3hhwg1,45,62,0|-3hhwg0,46,63,1|-39xr81,46,63,1|-39xr80,45,62,0|-1xbog1,45,62,0|-1xbog0,46,63,1|-1nlog1,46,63,1|-1nlog0,45,62,0|-1e8n41,45,62,0|-1e8n40,46,63,1|-14vls1,46,63,1|-14vls0,45,62,0|-vikg1,45,62,0|-vikg0,46,63,1|-m5j41,46,63,1|-m5j40,45,62,0|-cshs1,45,62,0|-cshs0,46,63,1|-3fgg1,46,63,1|-3fgg0,45,62,0|5xkvz,45,62,0|5xkw0,46,63,1|fam7z,46,63,1|fam80,45,62,0|onnjz,45,62,0|onnk0,46,63,1|ydnjz,46,63,1|ydnk0,45,62,0|17qovz,45,62,0|17qow0,46,63,1|1h3q7z,46,63,1|1h3q80,45,62,0|1qgrjz,45,62,0|1qgrk0,46,63,1|1ztsvz,46,63,1|1ztsw0,45,62,0|296u7z,45,62,0|296u80,46,63,1|2ijvjz,46,63,1|2ijvk0,45,62,0|2rwwvz,45,62,0|2rwww0,46,63,1|319y7z,46,63,1|319y80,45,62,0|3amzjz,45,62,0|3amzk0,46,63,1|3kczjz,46,63,1|3kczk0,45,62,0|3td27z,45,62,0|3td280,46,63,1|43327z,46,63,1|433280,45,62,0|4cg3jz,45,62,0|4cg3k0,46,63,1|4lt4vz,46,63,1|4lt4w0,45,62,0|4v667z,45,62,0|4v6680,46,63,1|54j7jz,46,63,1|54j7k0,45,62,0|5dw8vz,45,62,0|5dw8w0,46,63,1|5n9a7z,46,63,1|5n9a80,45,62,0|5wmbjz,45,62,0|5wmbk0,46,63,1|65zcvz,46,63,1|65zcw0,45,62,0|6fce7z,45,62,0|6fce80,46,63,1|6p2e7z,46,63,1|6p2e80,45,62,0|6y2gvz,45,62,0|6y2gw0,46,63,1|77sgvz,46,63,1|77sgw0,45,62,0|7h5i7z,45,62,0|7h5i80,46,63,1|7qijjz,46,63,1|7qijk0,45,62,0|7zvkvz,45,62,0|7zvkw0,46,63,1|898m7z,46,63,1|898m80,45,62,0|8ilnjz,45,62,0|8ilnk0,46,63,1|8ryovz,46,63,1|8ryow0,45,62,0|908u7z,45,62,0|908u80,46,63,1|9aorjz,46,63,1|9aork0,45,62,0|9iywvz,45,62,0|9iyww0,46,63,1|9trsvz,46,63,1|9trsw0,45,62,0|a1ozjz,45,62,0|a1ozk0,46,63,1|achvjz,46,63,1|achvk0,45,62,0|akf27z,45,62,0|akf280,46,63,1|av7y7z,46,63,1|av7y80,45,62,0|b3i3jz,45,62,0|b3i3k0,46,63,1|bdy0vz,46,63,1|bdy0w0,45,62,0|bm867z,45,62,0|bm8680,46,63,1|bwo3jz,46,63,1|bwo3k0,45,62,0|c4y8vz,45,62,0|c4y8w0,46,63,1|cfr4vz,46,63,1|cfr4w0,45,62,0|cnobjz,45,62,0|cnobk0,46,63,1|cyh7jz,46,63,1|cyh7k0,45,62,0|d6ee7z,45,62,0|d6ee80,46,63,1|dh7a7z,46,63,1|dh7a80,45,62,0|dphfjz,45,62,0|dphfk0,46,63,1|dzxcvz,46,63,1|dzxcw0,45,62,0|e87i7z,45,62,0|e87i80,46,63,1|einfjz,46,63,1|einfk0,45,62,0|eqxkvz,45,62,0|eqxkw0,46,63,1|f1di7z,46,63,1|f1di80,45,62,0|f9nnjz,45,62,0|f9nnk0,46,63,1|fkgjjz,46,63,1|fkgjk0,45,62,0|fsdq7z,45,62,0|fsdq80,46,63,1|g36m7z,46,63,1|g36m80,45,62,0|gb3svz,45,62,0|gb3sw0,46,63,1|glwovz,46,63,1|glwow0,45,62,0|gu6u7z,45,62,0|gu6u80,46,63,1|h4mrjz,46,63,1|h4mrk0,45,62,0|hcwwvz,45,62,0|hcwww0,46,63,1|hncu7z,46,63,1|hncu80,45,62,0|hvmzjz,45,62,0|hvmzk0,46,63,1|i6fvjz,46,63,1|i6fvk0,45,62,0|ied27z,45,62,0|ied280,46,63,1|ip5y7z,46,63,1|ip5y80,45,62,0|ix34vz,45,62,0|ix34w0,46,63,1|j7vy3z,46,63,1|j7vy40,45,62,0|jeqbjz,45,62,0|jeqbk0,46,63,1|jqyzfz,46,63,1|jqyzg0,45,62,0|jxge7z,45,62,0|jxge80,46,63,1|k9p23z,46,63,1|k9p240,45,62,0|kg6gvz,45,62,0|kg6gw0,46,63,1|ksf4rz,46,63,1|ksf4s0,45,62,0|kz9i7z,45,62,0|kz9i80,46,63,1|lbi63z,46,63,1|lbi640,45,62,0|lhzkvz,45,62,0|lhzkw0,46,63,1|lu88rz,46,63,1|lu88s0,45,62,0|m0pnjz,45,62,0|m0pnk0,46,63,1|mcybfz,46,63,1|mcybg0,45,62,0|mjfq7z,45,62,0|mjfq80,46,63,1|mvoe3z,46,63,1|mvoe40,45,62,0|n25svz,45,62,0|n25sw0,46,63,1|neegrz,46,63,1|neegs0,45,62,0|nkvvjz,45,62,0|nkvvk0,46,63,1|nx4jfz,46,63,1|nx4jg0,45,62,0|o3ywvz,45,62,0|o3yww0,46,63,1|og7krz,46,63,1|og7ks0,45,62,0|omozjz,45,62,0|omozk0,46,63,1|oyxnfz,46,63,1|oyxng0,45,62,0|p5f27z,45,62,0|p5f280,46,63,1|phnq3z,46,63,1|phnq40,45,62,0|po54vz,45,62,0|po54w0,46,63,1|q0dsrz,46,63,1|q0dss0,45,62,0|q6v7jz,45,62,0|q6v7k0,46,63,1|qj3vfz,46,63,1|qj3vg0,45,62,0|qpy8vz,45,62,0|qpy8w0,46,63,1|r26wrz,46,63,1|r26ws0,45,62,0|r8objz,45,62,0|r8obk0,46,63,1|rkwzfz,46,63,1|rkwzg0,45,62,0|rree7z,45,62,0|rree80,46,63,1|s3n23z,46,63,1|s3n240,45,62,0|sa4gvz,45,62,0|sa4gw0,46,63,1|smd4rz,46,63,1|smd4s0,45,62,0|ssujjz,45,62,0|ssujk0,46,63,1|t537fz,46,63,1|t537g0,45,62,0|tbkm7z,45,62,0|tbkm80,46,63,1|tnta3z,46,63,1|tnta40,45,62,0|tunnjz,45,62,0|tunnk0,46,63,1|u6wbfz,46,63,1|u6wbg0,45,62,0|uddq7z,45,62,0|uddq80,46,63,1|upme3z,46,63,1|upme40,45,62,0|uw3svz,45,62,0|uw3sw0,46,63,1|v8cgrz,46,63,1|v8cgs0,45,62,0|vetvjz,45,62,0|vetvk0,46,63,1|vr2jfz,46,63,1|vr2jg0,45,62,0|vxjy7z,45,62,0|vxjy80,46,63,1|w9sm3z,46,63,1|w9sm40,45,62,0|wgmzjz,45,62,0|wgmzk0,46,63,1|wsvnfz,46,63,1|wsvng0,45,62,0|wzd27z,45,62,0|wzd280,46,63,1|xblq3z,46,63,1|xblq40,45,62,0|xi34vz,45,62,0|xi34w0,46,63,1|xubsrz,46,63,1|xubss0,45,62,0|y0t7jz,45,62,0|y0t7k0,46,63,1|yd1vfz,46,63,1|yd1vg0,45,62,0|yjja7z,45,62,0|yjja80,46,63,1|yvry3z,46,63,1|yvry40,45,62,0|z29cvz,45,62,0|z29cw0,46,63,1|zei0rz,46,63,1|zei0s0,45,62,0","America/Yakutat|,0,189,0|-1hc7qjz,0,190,0|-1078vgi,0,190,0|-1078vgh,36,37,0|-ek1tg1,36,37,0|-ek1tg0,65,40,1|-cq2tg1,65,40,1|-cq2tg0,66,40,1|-cnos81,66,40,1|-cnos80,36,37,0|-cs9g1,36,37,0|-cs9g0,64,40,1|-3faw1,64,40,1|-3faw0,36,37,0|5xt7z,36,37,0|5xt80,64,40,1|farrz,64,40,1|fars0,36,37,0|onvvz,36,37,0|onvw0,64,40,1|ydt3z,64,40,1|ydt40,36,37,0|17qx7z,36,37,0|17qx80,64,40,1|1h3vrz,64,40,1|1h3vs0,36,37,0|1qgzvz,36,37,0|1qgzw0,64,40,1|1ztyfz,64,40,1|1ztyg0,36,37,0|23fnvz,36,37,0|23fnw0,64,40,1|2ik13z,64,40,1|2ik140,36,37,0|2ooh7z,36,37,0|2ooh80,64,40,1|31a3rz,64,40,1|31a3s0,36,37,0|3an7vz,36,37,0|3an7w0,64,40,1|3kd53z,64,40,1|3kd540,36,37,0|3tdajz,36,37,0|3tdak0,64,40,1|4337rz,64,40,1|4337s0,36,37,0|4cgbvz,36,37,0|4cgbw0,64,40,1|4ltafz,64,40,1|4ltag0,36,37,0|4v6ejz,36,37,0|4v6ek0,64,40,1|54jd3z,64,40,1|54jd40,36,37,0|5dwh7z,36,37,0|5dwh80,64,40,1|5n9frz,64,40,1|5n9fs0,36,37,0|5wmjvz,36,37,0|5wmjw0,64,40,1|65zifz,64,40,1|65zig0,36,37,0|6fcmjz,36,37,0|6fcmk0,64,40,1|6p2jrz,64,40,1|6p2js0,36,37,0|6y2p7z,36,37,0|6y2p80,64,40,1|77smfz,64,40,1|77smg0,36,37,0|79dybz,36,37,0|79dyc0,37,37,0|7h5qjz,37,37,0|7h5qk0,38,40,1|7qip3z,38,40,1|7qip40,37,37,0|7zvt7z,37,37,0|7zvt80,38,40,1|898rrz,38,40,1|898rs0,37,37,0|8ilvvz,37,37,0|8ilvw0,38,40,1|8ryufz,38,40,1|8ryug0,37,37,0|9092jz,37,37,0|9092k0,38,40,1|9aox3z,38,40,1|9aox40,37,37,0|9iz57z,37,37,0|9iz580,38,40,1|9tryfz,38,40,1|9tryg0,37,37,0|a1p7vz,37,37,0|a1p7w0,38,40,1|aci13z,38,40,1|aci140,37,37,0|akfajz,37,37,0|akfak0,38,40,1|av83rz,38,40,1|av83s0,37,37,0|b3ibvz,37,37,0|b3ibw0,38,40,1|bdy6fz,38,40,1|bdy6g0,37,37,0|bm8ejz,37,37,0|bm8ek0,38,40,1|bwo93z,38,40,1|bwo940,37,37,0|c4yh7z,37,37,0|c4yh80,38,40,1|cfrafz,38,40,1|cfrag0,37,37,0|cnojvz,37,37,0|cnojw0,38,40,1|cyhd3z,38,40,1|cyhd40,37,37,0|d6emjz,37,37,0|d6emk0,38,40,1|dh7frz,38,40,1|dh7fs0,37,37,0|dphnvz,37,37,0|dphnw0,38,40,1|dzxifz,38,40,1|dzxig0,37,37,0|e87qjz,37,37,0|e87qk0,38,40,1|einl3z,38,40,1|einl40,37,37,0|eqxt7z,37,37,0|eqxt80,38,40,1|f1dnrz,38,40,1|f1dns0,37,37,0|f9nvvz,37,37,0|f9nvw0,38,40,1|fkgp3z,38,40,1|fkgp40,37,37,0|fsdyjz,37,37,0|fsdyk0,38,40,1|g36rrz,38,40,1|g36rs0,37,37,0|gb417z,37,37,0|gb4180,38,40,1|glwufz,38,40,1|glwug0,37,37,0|gu72jz,37,37,0|gu72k0,38,40,1|h4mx3z,38,40,1|h4mx40,37,37,0|hcx57z,37,37,0|hcx580,38,40,1|hnczrz,38,40,1|hnczs0,37,37,0|hvn7vz,37,37,0|hvn7w0,38,40,1|i6g13z,38,40,1|i6g140,37,37,0|iedajz,37,37,0|iedak0,38,40,1|ip63rz,38,40,1|ip63s0,37,37,0|ix3d7z,37,37,0|ix3d80,38,40,1|j7w6fz,38,40,1|j7w6g0,37,37,0|jeqjvz,37,37,0|jeqjw0,38,40,1|jqz7rz,38,40,1|jqz7s0,37,37,0|jxgmjz,37,37,0|jxgmk0,38,40,1|k9pafz,38,40,1|k9pag0,37,37,0|kg6p7z,37,37,0|kg6p80,38,40,1|ksfd3z,38,40,1|ksfd40,37,37,0|kz9qjz,37,37,0|kz9qk0,38,40,1|lbiefz,38,40,1|lbieg0,37,37,0|lhzt7z,37,37,0|lhzt80,38,40,1|lu8h3z,38,40,1|lu8h40,37,37,0|m0pvvz,37,37,0|m0pvw0,38,40,1|mcyjrz,38,40,1|mcyjs0,37,37,0|mjfyjz,37,37,0|mjfyk0,38,40,1|mvomfz,38,40,1|mvomg0,37,37,0|n2617z,37,37,0|n26180,38,40,1|neep3z,38,40,1|neep40,37,37,0|nkw3vz,37,37,0|nkw3w0,38,40,1|nx4rrz,38,40,1|nx4rs0,37,37,0|o3z57z,37,37,0|o3z580,38,40,1|og7t3z,38,40,1|og7t40,37,37,0|omp7vz,37,37,0|omp7w0,38,40,1|oyxvrz,38,40,1|oyxvs0,37,37,0|p5fajz,37,37,0|p5fak0,38,40,1|phnyfz,38,40,1|phnyg0,37,37,0|po5d7z,37,37,0|po5d80,38,40,1|q0e13z,38,40,1|q0e140,37,37,0|q6vfvz,37,37,0|q6vfw0,38,40,1|qj43rz,38,40,1|qj43s0,37,37,0|qpyh7z,37,37,0|qpyh80,38,40,1|r2753z,38,40,1|r27540,37,37,0|r8ojvz,37,37,0|r8ojw0,38,40,1|rkx7rz,38,40,1|rkx7s0,37,37,0|rremjz,37,37,0|rremk0,38,40,1|s3nafz,38,40,1|s3nag0,37,37,0|sa4p7z,37,37,0|sa4p80,38,40,1|smdd3z,38,40,1|smdd40,37,37,0|ssurvz,37,37,0|ssurw0,38,40,1|t53frz,38,40,1|t53fs0,37,37,0|tbkujz,37,37,0|tbkuk0,38,40,1|tntifz,38,40,1|tntig0,37,37,0|tunvvz,37,37,0|tunvw0,38,40,1|u6wjrz,38,40,1|u6wjs0,37,37,0|uddyjz,37,37,0|uddyk0,38,40,1|upmmfz,38,40,1|upmmg0,37,37,0|uw417z,37,37,0|uw4180,38,40,1|v8cp3z,38,40,1|v8cp40,37,37,0|veu3vz,37,37,0|veu3w0,38,40,1|vr2rrz,38,40,1|vr2rs0,37,37,0|vxk6jz,37,37,0|vxk6k0,38,40,1|w9sufz,38,40,1|w9sug0,37,37,0|wgn7vz,37,37,0|wgn7w0,38,40,1|wsvvrz,38,40,1|wsvvs0,37,37,0|wzdajz,37,37,0|wzdak0,38,40,1|xblyfz,38,40,1|xblyg0,37,37,0|xi3d7z,37,37,0|xi3d80,38,40,1|xuc13z,38,40,1|xuc140,37,37,0|y0tfvz,37,37,0|y0tfw0,38,40,1|yd23rz,38,40,1|yd23s0,37,37,0|yjjijz,37,37,0|yjjik0,38,40,1|yvs6fz,38,40,1|yvs6g0,37,37,0|z29l7z,37,37,0|z29l80,38,40,1|zei93z,38,40,1|zei940,37,37,0","America/Yellowknife|,60,1,0|-i9m2o0,50,66,0|-ek1z01,50,66,0|-ek1z00,58,62,1|-cq2tg1,58,62,1|-cq2tg0,59,62,1|-cnoxs1,59,62,1|-cnoxs0,50,66,0|-2g1tw1,50,66,0|-2g1tw0,61,63,1|-26btw1,61,63,1|-26btw0,50,66,0|5dwbnz,50,66,0|5dwbo0,52,62,1|5n9a7z,52,62,1|5n9a80,50,66,0|5wmebz,50,66,0|5wmec0,52,62,1|65zcvz,52,62,1|65zcw0,50,66,0|6fcgzz,50,66,0|6fch00,52,62,1|6p2e7z,52,62,1|6p2e80,50,66,0|6y2jnz,50,66,0|6y2jo0,52,62,1|77sgvz,52,62,1|77sgw0,50,66,0|7h5kzz,50,66,0|7h5l00,52,62,1|7qijjz,52,62,1|7qijk0,50,66,0|7zvnnz,50,66,0|7zvno0,52,62,1|898m7z,52,62,1|898m80,50,66,0|8ilqbz,50,66,0|8ilqc0,52,62,1|8ryovz,52,62,1|8ryow0,50,66,0|908wzz,50,66,0|908x00,52,62,1|9aorjz,52,62,1|9aork0,50,66,0|9iyznz,50,66,0|9iyzo0,52,62,1|9trsvz,52,62,1|9trsw0,50,66,0|a1p2bz,50,66,0|a1p2c0,52,62,1|achvjz,52,62,1|achvk0,50,66,0|akf4zz,50,66,0|akf500,52,62,1|av7y7z,52,62,1|av7y80,50,66,0|b3i6bz,50,66,0|b3i6c0,52,62,1|bdy0vz,52,62,1|bdy0w0,50,66,0|bm88zz,50,66,0|bm8900,52,62,1|bwo3jz,52,62,1|bwo3k0,50,66,0|c4ybnz,50,66,0|c4ybo0,52,62,1|cfr4vz,52,62,1|cfr4w0,50,66,0|cnoebz,50,66,0|cnoec0,52,62,1|cyh7jz,52,62,1|cyh7k0,50,66,0|d6egzz,50,66,0|d6eh00,52,62,1|dh7a7z,52,62,1|dh7a80,50,66,0|dphibz,50,66,0|dphic0,52,62,1|dzxcvz,52,62,1|dzxcw0,50,66,0|e87kzz,50,66,0|e87l00,52,62,1|einfjz,52,62,1|einfk0,50,66,0|eqxnnz,50,66,0|eqxno0,52,62,1|f1di7z,52,62,1|f1di80,50,66,0|f9nqbz,50,66,0|f9nqc0,52,62,1|fkgjjz,52,62,1|fkgjk0,50,66,0|fsdszz,50,66,0|fsdt00,52,62,1|g36m7z,52,62,1|g36m80,50,66,0|gb3vnz,50,66,0|gb3vo0,52,62,1|glwovz,52,62,1|glwow0,50,66,0|gu6wzz,50,66,0|gu6x00,52,62,1|h4mrjz,52,62,1|h4mrk0,50,66,0|hcwznz,50,66,0|hcwzo0,52,62,1|hncu7z,52,62,1|hncu80,50,66,0|hvn2bz,50,66,0|hvn2c0,52,62,1|i6fvjz,52,62,1|i6fvk0,50,66,0|ied4zz,50,66,0|ied500,52,62,1|ip5y7z,52,62,1|ip5y80,50,66,0|ix37nz,50,66,0|ix37o0,52,62,1|j7w0vz,52,62,1|j7w0w0,50,66,0|jeqebz,50,66,0|jeqec0,52,62,1|jqz27z,52,62,1|jqz280,50,66,0|jxggzz,50,66,0|jxgh00,52,62,1|k9p4vz,52,62,1|k9p4w0,50,66,0|kg6jnz,50,66,0|kg6jo0,52,62,1|ksf7jz,52,62,1|ksf7k0,50,66,0|kz9kzz,50,66,0|kz9l00,52,62,1|lbi8vz,52,62,1|lbi8w0,50,66,0|lhznnz,50,66,0|lhzno0,52,62,1|lu8bjz,52,62,1|lu8bk0,50,66,0|m0pqbz,50,66,0|m0pqc0,52,62,1|mcye7z,52,62,1|mcye80,50,66,0|mjfszz,50,66,0|mjft00,52,62,1|mvogvz,52,62,1|mvogw0,50,66,0|n25vnz,50,66,0|n25vo0,52,62,1|neejjz,52,62,1|neejk0,50,66,0|nkvybz,50,66,0|nkvyc0,52,62,1|nx4m7z,52,62,1|nx4m80,50,66,0|o3yznz,50,66,0|o3yzo0,52,62,1|og7njz,52,62,1|og7nk0,50,66,0|omp2bz,50,66,0|omp2c0,52,62,1|oyxq7z,52,62,1|oyxq80,50,66,0|p5f4zz,50,66,0|p5f500,52,62,1|phnsvz,52,62,1|phnsw0,50,66,0|po57nz,50,66,0|po57o0,52,62,1|q0dvjz,52,62,1|q0dvk0,50,66,0|q6vabz,50,66,0|q6vac0,52,62,1|qj3y7z,52,62,1|qj3y80,50,66,0|qpybnz,50,66,0|qpybo0,52,62,1|r26zjz,52,62,1|r26zk0,50,66,0|r8oebz,50,66,0|r8oec0,52,62,1|rkx27z,52,62,1|rkx280,50,66,0|rregzz,50,66,0|rreh00,52,62,1|s3n4vz,52,62,1|s3n4w0,50,66,0|sa4jnz,50,66,0|sa4jo0,52,62,1|smd7jz,52,62,1|smd7k0,50,66,0|ssumbz,50,66,0|ssumc0,52,62,1|t53a7z,52,62,1|t53a80,50,66,0|tbkozz,50,66,0|tbkp00,52,62,1|tntcvz,52,62,1|tntcw0,50,66,0|tunqbz,50,66,0|tunqc0,52,62,1|u6we7z,52,62,1|u6we80,50,66,0|uddszz,50,66,0|uddt00,52,62,1|upmgvz,52,62,1|upmgw0,50,66,0|uw3vnz,50,66,0|uw3vo0,52,62,1|v8cjjz,52,62,1|v8cjk0,50,66,0|vetybz,50,66,0|vetyc0,52,62,1|vr2m7z,52,62,1|vr2m80,50,66,0|vxk0zz,50,66,0|vxk100,52,62,1|w9sovz,52,62,1|w9sow0,50,66,0|wgn2bz,50,66,0|wgn2c0,52,62,1|wsvq7z,52,62,1|wsvq80,50,66,0|wzd4zz,50,66,0|wzd500,52,62,1|xblsvz,52,62,1|xblsw0,50,66,0|xi37nz,50,66,0|xi37o0,52,62,1|xubvjz,52,62,1|xubvk0,50,66,0|y0tabz,50,66,0|y0tac0,52,62,1|yd1y7z,52,62,1|yd1y80,50,66,0|yjjczz,50,66,0|yjjd00,52,62,1|yvs0vz,52,62,1|yvs0w0,50,66,0|z29fnz,50,66,0|z29fo0,52,62,1|zei3jz,52,62,1|zei3k0,50,66,0","Antarctica/Casey|,60,1,0|-irxc0,89,191,0|kro7bz,89,191,0|kro7c0,90,192,0|kyrizz,90,192,0|kyrj00,89,191,0|ltqknz,89,191,0|ltqko0,90,192,0|lzr5vz,90,192,0|lzr5w0,89,191,0|ofen3z,89,191,0|ofen40,90,192,0|p5dwjz,90,192,0|p5dwk0,89,191,0|pg70vz,89,191,0|pg70w0,90,192,0|pogv3z,90,192,0|pogv40,89,191,0|pytbfz,89,191,0|pytbg0,90,192,0|q6tz3z,90,192,0|q6tz40,89,191,0|qhmv5n,89,191,0|qhmv5o,90,192,0","Antarctica/Davis|,60,1,0|-6rmdc0,91,193,0|-2p2zg1,91,193,0|-2p2zg0,60,1,0|-h6io1,60,1,0|-h6io0,91,193,0|kroa3z,91,193,0|kroa40,92,194,0|kz30vz,92,194,0|kz30w0,91,193,0|ltqnfz,91,193,0|ltqng0,92,194,0|lzre7z,92,194,0|lzre80,91,193,0","Antarctica/DumontDUrville|,60,1,0|-c05eo0,93,195,0|-9dkmg1,93,195,0|-9dkmg0,60,1,0|-6vdk01,60,1,0|-6vdk00,93,195,0","Antarctica/Macquarie|,60,1,0|-10mb9c0,94,195,0|-rsj4w1,94,195,0|-rsj4w0,95,192,1|-rjj281,95,192,1|-rjj280,94,195,0|-qhmeg1,94,195,0|-qhmeg0,60,1,0|-bd1xc1,60,1,0|-bd1xc0,94,195,0|-16cow1,94,195,0|-16cow0,95,192,1|-wznk1,95,192,1|-wznk0,94,195,0|-m6rk1,94,195,0|-m6rk0,95,192,1|-fcgw1,95,192,1|-fcgw0,94,195,0|-3gow1,94,195,0|-3gow0,95,192,1|3dlrz,95,192,1|3dls0,94,195,0|f9drz,94,195,0|f9ds0,95,192,1|mgn3z,95,192,1|mgn40,94,195,0|ycf3z,94,195,0|ycf40,95,192,1|14gsfz,95,192,1|14gsg0,94,195,0|1h2hrz,94,195,0|1h2hs0,95,192,1|1njtrz,95,192,1|1njts0,94,195,0|1zskfz,94,195,0|1zskg0,95,192,1|269wfz,95,192,1|269wg0,94,195,0|2iin3z,94,195,0|2iin40,95,192,1|2ozz3z,95,192,1|2ozz40,94,195,0|318prz,94,195,0|318ps0,95,192,1|3830fz,95,192,1|3830g0,94,195,0|3kbr3z,94,195,0|3kbr40,95,192,1|3qt33z,95,192,1|3qt340,94,195,0|431trz,94,195,0|431ts0,95,192,1|49j5rz,95,192,1|49j5s0,94,195,0|4lrwfz,94,195,0|4lrwg0,95,192,1|4s98fz,95,192,1|4s98g0,94,195,0|54hz3z,94,195,0|54hz40,95,192,1|5azb3z,95,192,1|5azb40,94,195,0|5n81rz,94,195,0|5n81s0,95,192,1|5tpdrz,95,192,1|5tpds0,94,195,0|65y4fz,94,195,0|65y4g0,95,192,1|6dvb3z,95,192,1|6dvb40,94,195,0|6p15rz,94,195,0|6p15s0,95,192,1|6wldrz,95,192,1|6wlds0,94,195,0|77r8fz,94,195,0|77r8g0,95,192,1|7e8kfz,95,192,1|7e8kg0,94,195,0|7qhb3z,94,195,0|7qhb40,95,192,1|7wyn3z,95,192,1|7wyn40,94,195,0|897drz,94,195,0|897ds0,95,192,1|8foprz,95,192,1|8fops0,94,195,0|8rkhrz,94,195,0|8rkhs0,95,192,1|8z4prz,95,192,1|8z4ps0,94,195,0|9anj3z,94,195,0|9anj40,95,192,1|9i7r3z,95,192,1|9i7r40,94,195,0|9tqkfz,94,195,0|9tqkg0,95,192,1|a0xtrz,95,192,1|a0xts0,94,195,0|acgn3z,94,195,0|acgn40,95,192,1|ajnwfz,95,192,1|ajnwg0,94,195,0|av6prz,94,195,0|av6ps0,95,192,1|b33wfz,95,192,1|b33wg0,94,195,0|bctwfz,94,195,0|bctwg0,95,192,1|bltz3z,95,192,1|bltz40,94,195,0|bvjz3z,94,195,0|bvjz40,95,192,1|c4k1rz,95,192,1|c4k1s0,94,195,0|cea1rz,94,195,0|cea1s0,95,192,1|cna4fz,95,192,1|cna4g0,94,195,0|cx04fz,94,195,0|cx04g0,95,192,1|d6073z,95,192,1|d60740,94,195,0|dfq73z,94,195,0|dfq740,95,192,1|dp38fz,95,192,1|dp38g0,94,195,0|dyt8fz,94,195,0|dyt8g0,95,192,1|e7tb3z,95,192,1|e7tb40,94,195,0|ehjb3z,94,195,0|ehjb40,95,192,1|eqjdrz,95,192,1|eqjds0,94,195,0|f09drz,94,195,0|f09ds0,95,192,1|f99gfz,95,192,1|f99gg0,94,195,0|fizgfz,94,195,0|fizgg0,95,192,1|frzj3z,95,192,1|frzj40,94,195,0|fzwprz,94,195,0|fzwps0,95,192,1|gaplrz,95,192,1|gapls0,94,195,0|gkskfz,94,195,0|gkskg0,95,192,1|gtsn3z,95,192,1|gtsn40,94,195,0|h3in3z,94,195,0|h3in40,95,192,1|hciprz,95,192,1|hcips0,94,195,0|hm8prz,94,195,0|hm8ps0,95,192,1|hv8sfz,95,192,1|hv8sg0,94,195,0|i4ysfz,94,195,0|i4ysg0,95,192,1|idyv3z,95,192,1|idyv40,94,195,0|inov3z,94,195,0|inov40,95,192,1|ix1wfz,95,192,1|ix1wg0,94,195,0|j6exrz,94,195,0|j6exs0,95,192,1|jff0fz,95,192,1|jff0g0,94,195,0|jphz3z,94,195,0|jphz40,95,192,1|jyv0fz,95,192,1|jyv0g0,94,195,0|k881rz,94,195,0|k881s0,95,192,1|khl33z,95,192,1|khl340,94,195,0|kqy4fz,94,195,0|kqy4g0,95,192,1|lj18fz,95,192,1|lj18g0,94,195,0|lse9rz,94,195,0|lse9s0,95,192,1|m1rb3z,95,192,1|m1rb40,94,195,0|mbhb3z,94,195,0|mbhb40,95,192,1|mkucfz,95,192,1|mkucg0,94,195,0|mu7drz,94,195,0|mu7ds0,95,192,1|n3kf3z,95,192,1|n3kf40,94,195,0|ncxgfz,94,195,0|ncxgg0,95,192,1|nmahrz,95,192,1|nmahs0,94,195,0|nvnj3z,94,195,0|nvnj40,95,192,1|o50kfz,95,192,1|o50kg0,94,195,0|oedlrz,94,195,0|oedls0,95,192,1|onqn3z,95,192,1|onqn40,94,195,0|ox3ofz,94,195,0|ox3og0,95,192,1|p6gprz,95,192,1|p6gps0,94,195,0|pg6prz,94,195,0|pg6ps0,95,192,1|ppjr3z,95,192,1|ppjr40,94,195,0|pywsfz,94,195,0|pywsg0,95,192,1|q89trz,95,192,1|q89ts0,94,195,0|qhmv3z,94,195,0|qhmv40,95,192,1|qqzwfz,95,192,1|qqzwg0,94,195,0|r0cxrz,94,195,0|r0cxs0,95,192,1|r9pz3z,95,192,1|r9pz40,94,195,0|rj30fz,94,195,0|rj30g0,95,192,1|rsg1rz,95,192,1|rsg1s0,94,195,0|s1t33z,94,195,0|s1t340,95,192,1|sbj33z,95,192,1|sbj340,94,195,0|skw4fz,94,195,0|skw4g0,95,192,1|su95rz,95,192,1|su95s0,94,195,0|t3m73z,94,195,0|t3m740,95,192,1|tcz8fz,95,192,1|tcz8g0,94,195,0|tmc9rz,94,195,0|tmc9s0,95,192,1|tvpb3z,95,192,1|tvpb40,94,195,0|u52cfz,94,195,0|u52cg0,95,192,1|uefdrz,95,192,1|uefds0,94,195,0|unsf3z,94,195,0|unsf40,95,192,1|ux5gfz,95,192,1|ux5gg0,94,195,0|v6vgfz,94,195,0|v6vgg0,95,192,1|vg8hrz,95,192,1|vg8hs0,94,195,0|vplj3z,94,195,0|vplj40,95,192,1|vyykfz,95,192,1|vyykg0,94,195,0|w8blrz,94,195,0|w8bls0,95,192,1|whon3z,95,192,1|whon40,94,195,0|wr1ofz,94,195,0|wr1og0,95,192,1|x0eprz,95,192,1|x0eps0,94,195,0|x9rr3z,94,195,0|x9rr40,95,192,1|xj4sfz,95,192,1|xj4sg0,94,195,0|xshtrz,94,195,0|xshts0,95,192,1|y1uv3z,95,192,1|y1uv40,94,195,0|ybkv3z,94,195,0|ybkv40,95,192,1|ykxwfz,95,192,1|ykxwg0,94,195,0|yuaxrz,94,195,0|yuaxs0,95,192,1|z3nz3z,95,192,1|z3nz40,94,195,0|zd10fz,94,195,0|zd10g0,95,192,1","Antarctica/Mawson|,60,1,0|-8aelc0,96,196,0|krocvz,96,196,0|krocw0,92,194,0","Antarctica/McMurdo|,0,197,0|-1gsoz14,97,198,0|-m01p21,97,198,0|-m01p20,98,199,1|-ltxei1,98,199,1|-ltxei0,97,198,0|-lieie1,97,198,0|-lieie0,98,200,1|-lahd41,98,200,1|-lahd40,97,198,0|-kzofq1,97,198,0|-kzofq0,98,200,1|-krrag1,98,200,1|-krrag0,97,198,0|-kgyd21,97,198,0|-kgyd20,98,200,1|-k917s1,98,200,1|-k917s0,97,198,0|-jy8ae1,97,198,0|-jy8ae0,98,200,1|-jpy6g1,98,200,1|-jpy6g0,97,198,0|-jfi7q1,97,198,0|-jfi7q0,98,200,1|-j783s1,98,200,1|-j783s0,97,198,0|-iws521,97,198,0|-iws520,98,200,1|-imc941,98,200,1|-imc940,97,198,0|-ief121,97,198,0|-ief120,98,200,1|-i3m6g1,98,200,1|-i3m6g0,97,198,0|-hvoye1,97,198,0|-hvoye0,98,200,1|-hkw3s1,98,200,1|-hkw3s0,97,198,0|-hcyvq1,97,198,0|-hcyvq0,98,200,1|-h26141,98,200,1|-h26140,97,198,0|-gu8t21,97,198,0|-gu8t20,98,200,1|-gjfyg1,98,200,1|-gjfyg0,97,198,0|-gbiqe1,97,198,0|-gbiqe0,98,200,1|-g0cx41,98,200,1|-g0cx40,97,198,0|-fssnq1,97,198,0|-fssnq0,98,200,1|-fhmug1,98,200,1|-fhmug0,97,198,0|-f9pme1,97,198,0|-f9pme0,98,200,1|-ciy9c1,98,200,1|-ciy9c0,98,200,0|2ivg7z,98,200,0|2ivg80,99,201,1|2omuvz,99,201,1|2omuw0,98,200,0|318k7z,98,200,0|318k80,99,201,1|382uvz,99,201,1|382uw0,98,200,0|3kbljz,98,200,0|3kblk0,99,201,1|3qsxjz,99,201,1|3qsxk0,98,200,0|431o7z,98,200,0|431o80,99,201,1|49j07z,99,201,1|49j080,98,200,0|4lrqvz,98,200,0|4lrqw0,99,201,1|4s92vz,99,201,1|4s92w0,98,200,0|54htjz,98,200,0|54htk0,99,201,1|5az5jz,99,201,1|5az5k0,98,200,0|5n7w7z,98,200,0|5n7w80,99,201,1|5tp87z,99,201,1|5tp880,98,200,0|65xyvz,98,200,0|65xyw0,99,201,1|6cs9jz,99,201,1|6cs9k0,98,200,0|6p107z,98,200,0|6p1080,99,201,1|6vic7z,99,201,1|6vic80,98,200,0|77r2vz,98,200,0|77r2w0,99,201,1|7e8evz,99,201,1|7e8ew0,98,200,0|7qh5jz,98,200,0|7qh5k0,99,201,1|7wyhjz,99,201,1|7wyhk0,98,200,0|89787z,98,200,0|897880,99,201,1|8fok7z,99,201,1|8fok80,98,200,0|8rxavz,98,200,0|8rxaw0,99,201,1|8yemvz,99,201,1|8yemw0,98,200,0|9andjz,98,200,0|9andk0,99,201,1|9hho7z,99,201,1|9hho80,98,200,0|9tqevz,98,200,0|9tqew0,99,201,1|a07qvz,99,201,1|a07qw0,98,200,0|abdljz,98,200,0|abdlk0,99,201,1|ajnqvz,99,201,1|ajnqw0,98,200,0|au3o7z,98,200,0|au3o80,99,201,1|b2dtjz,99,201,1|b2dtk0,98,200,0|bctqvz,98,200,0|bctqw0,99,201,1|bl3w7z,99,201,1|bl3w80,98,200,0|bvjtjz,98,200,0|bvjtk0,99,201,1|c46xjz,99,201,1|c46xk0,98,200,0|ce9w7z,98,200,0|ce9w80,99,201,1|cmx07z,99,201,1|cmx080,98,200,0|cwzyvz,98,200,0|cwzyw0,99,201,1|d5n2vz,99,201,1|d5n2w0,98,200,0|dfq1jz,98,200,0|dfq1k0,99,201,1|dod5jz,99,201,1|dod5k0,98,200,0|dyt2vz,98,200,0|dyt2w0,99,201,1|e7387z,99,201,1|e73880,98,200,0|ehj5jz,98,200,0|ehj5k0,99,201,1|eptavz,99,201,1|eptaw0,98,200,0|f0987z,98,200,0|f09880,99,201,1|f8wc7z,99,201,1|f8wc80,98,200,0|fizavz,98,200,0|fizaw0,99,201,1|frmevz,99,201,1|frmew0,98,200,0|g1pdjz,98,200,0|g1pdk0,99,201,1|gachjz,99,201,1|gachk0,98,200,0|gksevz,98,200,0|gksew0,99,201,1|gt2k7z,99,201,1|gt2k80,98,200,0|h3ihjz,98,200,0|h3ihk0,99,201,1|hbsmvz,99,201,1|hbsmw0,98,200,0|hm8k7z,98,200,0|hm8k80,99,201,1|huvo7z,99,201,1|huvo80,98,200,0|i4ymvz,98,200,0|i4ymw0,99,201,1|idlqvz,99,201,1|idlqw0,98,200,0|inopjz,98,200,0|inopk0,99,201,1|iwbtjz,99,201,1|iwbtk0,98,200,0|j6es7z,98,200,0|j6es80,99,201,1|jf1w7z,99,201,1|jf1w80,98,200,0|jp4uvz,98,200,0|jp4uw0,99,201,1|jyuuvz,99,201,1|jyuuw0,98,200,0|k7uxjz,98,200,0|k7uxk0,99,201,1|khkxjz,99,201,1|khkxk0,98,200,0|kql07z,98,200,0|kql080,99,201,1|l0b07z,99,201,1|l0b080,98,200,0|l9b2vz,98,200,0|l9b2w0,99,201,1|lj12vz,99,201,1|lj12w0,98,200,0|ls15jz,98,200,0|ls15k0,99,201,1|m1r5jz,99,201,1|m1r5k0,98,200,0|mb46vz,98,200,0|mb46w0,99,201,1|mku6vz,99,201,1|mku6w0,98,200,0|mtu9jz,98,200,0|mtu9k0,99,201,1|n3k9jz,99,201,1|n3k9k0,98,200,0|nckc7z,98,200,0|nckc80,99,201,1|nmac7z,99,201,1|nmac80,98,200,0|nvaevz,98,200,0|nvaew0,99,201,1|o50evz,99,201,1|o50ew0,98,200,0|oe0hjz,98,200,0|oe0hk0,99,201,1|onqhjz,99,201,1|onqhk0,98,200,0|owqk7z,98,200,0|owqk80,99,201,1|p6gk7z,99,201,1|p6gk80,98,200,0|pftljz,98,200,0|pftlk0,99,201,1|ppjljz,99,201,1|ppjlk0,98,200,0|pyjo7z,98,200,0|pyjo80,99,201,1|q89o7z,99,201,1|q89o80,98,200,0|qh9qvz,98,200,0|qh9qw0,99,201,1|qqzqvz,99,201,1|qqzqw0,98,200,0|qzztjz,98,200,0|qzztk0,99,201,1|r9ptjz,99,201,1|r9ptk0,98,200,0|ripw7z,98,200,0|ripw80,99,201,1|rsfw7z,99,201,1|rsfw80,98,200,0|s1fyvz,98,200,0|s1fyw0,99,201,1|sbixjz,99,201,1|sbixk0,98,200,0|skj07z,98,200,0|skj080,99,201,1|su907z,99,201,1|su9080,98,200,0|t392vz,98,200,0|t392w0,99,201,1|tcz2vz,99,201,1|tcz2w0,98,200,0|tlz5jz,98,200,0|tlz5k0,99,201,1|tvp5jz,99,201,1|tvp5k0,98,200,0|u4p87z,98,200,0|u4p880,99,201,1|uef87z,99,201,1|uef880,98,200,0|unfavz,98,200,0|unfaw0,99,201,1|ux5avz,99,201,1|ux5aw0,98,200,0|v6ic7z,98,200,0|v6ic80,99,201,1|vg8c7z,99,201,1|vg8c80,98,200,0|vp8evz,98,200,0|vp8ew0,99,201,1|vyyevz,99,201,1|vyyew0,98,200,0|w7yhjz,98,200,0|w7yhk0,99,201,1|whohjz,99,201,1|whohk0,98,200,0|wqok7z,98,200,0|wqok80,99,201,1|x0ek7z,99,201,1|x0ek80,98,200,0|x9emvz,98,200,0|x9emw0,99,201,1|xj4mvz,99,201,1|xj4mw0,98,200,0|xs4pjz,98,200,0|xs4pk0,99,201,1|y1upjz,99,201,1|y1upk0,98,200,0|yb7qvz,98,200,0|yb7qw0,99,201,1|ykxqvz,99,201,1|ykxqw0,98,200,0|ytxtjz,98,200,0|ytxtk0,99,201,1|z3ntjz,99,201,1|z3ntk0,98,200,0|zcnw7z,98,200,0|zcnw80,99,201,1","Antarctica/Palmer|,60,1,0|-2lxhc0,39,44,1|-2ivzo1,39,44,1|-2ivzo0,42,42,0|-275ow1,42,42,0|-275ow0,39,44,1|-2042c1,39,44,1|-2042c0,42,42,0|-1odrk1,42,42,0|-1odrk0,39,44,1|-1fovo1,39,44,1|-1fovo0,42,42,0|-16brk1,42,42,0|-16brk0,39,44,1|-wluc1,39,44,1|-wluc0,42,42,0|-n8q81,42,42,0|-n8q80,39,44,1|-dvro1,39,44,1|-dvro0,42,42,0|-4ink1,42,42,0|-4ink0,39,44,0|24aizz,39,44,0|24aj00,40,45,1|29bxjz,40,45,1|29bxk0,39,44,0|6fn4bz,39,44,0|6fn4c0,42,42,0|6nz73z,42,42,0|6nz740,39,44,1|6vwazz,39,44,1|6vwb00,42,42,0|76p9rz,42,42,0|76p9s0,39,44,1|7emdnz,39,44,1|7emdo0,42,42,0|7psb3z,42,42,0|7psb40,39,44,1|7xcgbz,39,44,1|7xcgc0,42,42,0|88idrz,42,42,0|88ids0,39,44,1|8g2izz,39,44,1|8g2j00,42,42,0|8r8gfz,42,42,0|8r8gg0,39,44,1|90lezz,39,44,1|90lf00,42,42,0|99yj3z,42,42,0|99yj40,39,44,1|9hvmzz,39,44,1|9hvn00,42,42,0|9solrz,42,42,0|9sols0,39,44,1|a0lpnz,39,44,1|a0lpo0,42,42,0|abrn3z,42,42,0|abrn40,39,44,1|ajbsbz,39,44,1|ajbsc0,42,42,0|at1v3z,42,42,0|at1v40,39,44,1|b21uzz,39,44,1|b21v00,42,42,0|bd7sfz,42,42,0|bd7sg0,39,44,1|bl4wbz,39,44,1|bl4wc0,42,42,0|bvxv3z,42,42,0|bvxv40,39,44,1|c3uyzz,39,44,1|c3uz00,42,42,0|cenxrz,42,42,0|cenxs0,39,44,1|cml1nz,39,44,1|cml1o0,42,42,0|cxe0fz,42,42,0|cxe0g0,39,44,1|d5b4bz,39,44,1|d5b4c0,42,42,0|dgh1rz,42,42,0|dgh1s0,39,44,1|do16zz,39,44,1|do1700,42,42,0|dz74fz,42,42,0|dz74g0,39,44,1|e7u5nz,39,44,1|e7u5o0,42,42,0|ehx73z,42,42,0|ehx740,39,44,1|epuazz,39,44,1|epub00,42,42,0|ezxcfz,42,42,0|ezxcg0,39,44,1|f9n9nz,39,44,1|f9n9o0,42,42,0|fjdcfz,42,42,0|fjdcg0,39,44,1|fragbz,39,44,1|fragc0,42,42,0|g2gdrz,42,42,0|g2gds0,39,44,1|ga0izz,39,44,1|ga0j00,42,42,0|gl6gfz,42,42,0|gl6gg0,39,44,1|gsqlnz,39,44,1|gsqlo0,42,42,0|h3wj3z,42,42,0|h3wj40,39,44,1|hbgobz,39,44,1|hbgoc0,42,42,0|hmmlrz,42,42,0|hmmls0,39,44,1|hujpnz,39,44,1|hujpo0,42,42,0|i5cofz,42,42,0|i5cog0,39,44,1|id9sbz,39,44,1|id9sc0,42,42,0|io2r3z,42,42,0|io2r40,39,44,1|ivzuzz,39,44,1|ivzv00,42,42,0|j75sfz,42,42,0|j75sg0,39,44,1|jepxnz,39,44,1|jepxo0,42,42,0|jpvv3z,42,42,0|jpvv40,39,44,1|jyiwbz,39,44,1|jyiwc0,42,42,0|k8lxrz,42,42,0|k8lxs0,39,44,1|kgj1nz,39,44,1|kgj1o0,42,42,0|krc0fz,42,42,0|krc0g0,39,44,1|l0c0bz,39,44,1|l0c0c0,42,42,0|la233z,42,42,0|la2340,39,44,1|lkuwbz,39,44,1|lkuwc0,42,42,0|lq9f3z,42,42,0|lq9f40,39,44,1|m380bz,39,44,1|m380c0,42,42,0|m9pf3z,42,42,0|m9pf40,39,44,1|mly2zz,39,44,1|mly300,42,42,0|mssgfz,42,42,0|mssgg0,39,44,1|n4o5nz,39,44,1|n4o5o0,42,42,0|nbij3z,42,42,0|nbij40,39,44,1|o776zz,39,44,1|o77700,42,42,0|obvsfz,42,42,0|obvsg0,39,44,1|ohn4bz,39,44,1|ohn4c0,39,44,0","Antarctica/Rothera|,60,1,0|3lxs00,39,44,0","Antarctica/Syowa|,60,1,0|-6qsqo0,100,6,0","Antarctica/Troll|,60,1,0|ibruo0,17,1,0|idzk3z,17,1,0|idzk40,101,11,1|ip5erz,101,11,1|ip5es0,17,1,0|iwpmrz,17,1,0|iwpms0,101,11,1|j7vhfz,101,11,1|j7vhg0,17,1,0|jffpfz,17,1,0|jffpg0,101,11,1|jqlk3z,101,11,1|jqlk40,17,1,0|jyiqrz,17,1,0|jyiqs0,101,11,1|k9bmrz,101,11,1|k9bms0,17,1,0|kh8tfz,17,1,0|kh8tg0,101,11,1|ks1pfz,101,11,1|ks1pg0,17,1,0|kzyw3z,17,1,0|kzyw40,101,11,1|lb4qrz,101,11,1|lb4qs0,17,1,0|lioyrz,17,1,0|lioys0,101,11,1|ltutfz,101,11,1|ltutg0,17,1,0|m1f1fz,17,1,0|m1f1g0,101,11,1|mckw3z,101,11,1|mckw40,17,1,0|mki2rz,17,1,0|mki2s0,101,11,1|mvayrz,101,11,1|mvays0,17,1,0|n385fz,17,1,0|n385g0,101,11,1|ne11fz,101,11,1|ne11g0,17,1,0|nly83z,17,1,0|nly840,101,11,1|nwr43z,101,11,1|nwr440,17,1,0|o4oarz,17,1,0|o4oas0,101,11,1|ofu5fz,101,11,1|ofu5g0,17,1,0|onedfz,17,1,0|onedg0,101,11,1|oyk83z,101,11,1|oyk840,17,1,0|p64g3z,17,1,0|p64g40,101,11,1|phaarz,101,11,1|phaas0,17,1,0|pp7hfz,17,1,0|pp7hg0,101,11,1|q00dfz,101,11,1|q00dg0,17,1,0|q7xk3z,17,1,0|q7xk40,101,11,1|qiqg3z,101,11,1|qiqg40,17,1,0|qqnmrz,17,1,0|qqnms0,101,11,1|r1thfz,101,11,1|r1thg0,17,1,0|r9dpfz,17,1,0|r9dpg0,101,11,1|rkjk3z,101,11,1|rkjk40,17,1,0|rs3s3z,17,1,0|rs3s40,101,11,1|s39mrz,101,11,1|s39ms0,17,1,0|sb6tfz,17,1,0|sb6tg0,101,11,1|slzpfz,101,11,1|slzpg0,17,1,0|stww3z,17,1,0|stww40,101,11,1|t4ps3z,101,11,1|t4ps40,17,1,0|tcmyrz,17,1,0|tcmys0,101,11,1|tnfurz,101,11,1|tnfus0,17,1,0|tvd1fz,17,1,0|tvd1g0,101,11,1|u6iw3z,101,11,1|u6iw40,17,1,0|ue343z,17,1,0|ue3440,101,11,1|up8yrz,101,11,1|up8ys0,17,1,0|uwt6rz,17,1,0|uwt6s0,101,11,1|v7z1fz,101,11,1|v7z1g0,17,1,0|vfw83z,17,1,0|vfw840,101,11,1|vqp43z,101,11,1|vqp440,17,1,0|vymarz,17,1,0|vymas0,101,11,1|w9f6rz,101,11,1|w9f6s0,17,1,0|whcdfz,17,1,0|whcdg0,101,11,1|wsi83z,101,11,1|wsi840,17,1,0|x02g3z,17,1,0|x02g40,101,11,1|xb8arz,101,11,1|xb8as0,17,1,0|xisirz,17,1,0|xisis0,101,11,1|xtydfz,101,11,1|xtydg0,17,1,0|y1ilfz,17,1,0|y1ilg0,101,11,1|ycog3z,101,11,1|ycog40,17,1,0|yklmrz,17,1,0|yklms0,101,11,1|yveirz,101,11,1|yveis0,17,1,0|z3bpfz,17,1,0|z3bpg0,101,11,1|ze4lfz,101,11,1|ze4lg0,17,1,0","Antarctica/Vostok|,60,1,0|-6aaao0,96,196,0","Arctic/Longyearbyen|,0,202,0|-1353tzo,10,10,0|-rzayo1,10,10,0|-rzayo0,11,11,1|-rskiw1,11,11,1|-rskiw0,10,10,0|-fc7s81,10,10,0|-fc7s80,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d6dp81,11,11,1|-d6dp80,10,10,0|-cx0nw1,10,10,0|-cx0nw0,11,11,1|-cnnmk1,11,11,1|-cnnmk0,10,10,0|-5mxh81,10,10,0|-5mxh80,11,11,1|-5d7h81,11,11,1|-5d7h80,10,10,0|-53ufw1,10,10,0|-53ufw0,11,11,1|-4uhek1,11,11,1|-4uhek0,10,10,0|-4l4d81,10,10,0|-4l4d80,11,11,1|-4brbw1,11,11,1|-4brbw0,10,10,0|-42eak1,10,10,0|-42eak0,11,11,1|-3t1981,11,11,1|-3t1980,10,10,0|-3jo7w1,10,10,0|-3jo7w0,11,11,1|-3ab6k1,11,11,1|-3ab6k0,10,10,0|-30y581,10,10,0|-30y580,11,11,1|-2r8581,11,11,1|-2r8580,10,10,0|-2g2ak1,10,10,0|-2g2ak0,11,11,1|-28i2k1,11,11,1|-28i2k0,10,10,0|5cstfz,10,10,0|5cstg0,11,11,1|5lsw3z,11,11,1|5lsw40,10,10,0|5v5xfz,10,10,0|5v5xg0,11,11,1|64iyrz,11,11,1|64iys0,10,10,0|6dw03z,10,10,0|6dw040,11,11,1|6n91fz,11,11,1|6n91g0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Asia/Aden|,0,203,0|-bwgbbg,100,6,0","Asia/Almaty|,0,204,0|-nu1a90,92,194,0|-kmr9w1,92,194,0|-kmr9w0,96,196,0|5vaxzz,96,196,0|5vay00,91,193,1|64pr7z,91,193,1|64pr80,96,196,0|6e2vbz,96,196,0|6e2vc0,91,193,1|6nhojz,91,193,1|6nhok0,96,196,0|6wusnz,96,196,0|6wuso0,91,193,1|769lvz,91,193,1|769lw0,96,196,0|7foknz,96,196,0|7foko0,91,193,1|7p1rjz,91,193,1|7p1rk0,96,196,0|7yesvz,96,196,0|7yesw0,91,193,1|87ru7z,91,193,1|87ru80,96,196,0|8h4vjz,96,196,0|8h4vk0,91,193,1|8qhwvz,91,193,1|8qhww0,96,196,0|8zuy7z,96,196,0|8zuy80,91,193,1|997zjz,91,193,1|997zk0,96,196,0|9il0vz,96,196,0|9il0w0,91,193,1|9ry27z,91,193,1|9ry280,96,196,0|a1b3jz,96,196,0|a1b3k0,91,193,1|aao4vz,91,193,1|aao4w0,96,196,0|ak167z,96,196,0|ak1680,91,193,1|atr67z,91,193,1|atr680,96,196,0|b347jz,96,196,0|b347k0,96,196,1|bchbnz,96,196,1|bchbo0,92,194,0|bi8qbz,92,194,0|bi8qc0,96,196,0|blua7z,96,196,0|blua80,91,193,1|bv7bjz,91,193,1|bv7bk0,96,196,0|c4kcvz,96,196,0|c4kcw0,91,193,1|cdxe7z,91,193,1|cdxe80,96,196,0|cnafjz,96,196,0|cnafk0,91,193,1|cwngvz,91,193,1|cwngw0,96,196,0|d60i7z,96,196,0|d60i80,91,193,1|dfdjjz,91,193,1|dfdjk0,96,196,0|dp3jjz,96,196,0|dp3jk0,91,193,1|dzwfjz,91,193,1|dzwfk0,96,196,0|e7tm7z,96,196,0|e7tm80,91,193,1|eimi7z,91,193,1|eimi80,96,196,0|eqjovz,96,196,0|eqjow0,91,193,1|f1ckvz,91,193,1|f1ckw0,96,196,0|f99rjz,96,196,0|f99rk0,91,193,1|fkfm7z,91,193,1|fkfm80,96,196,0|frzu7z,96,196,0|frzu80,91,193,1|g35ovz,91,193,1|g35ow0,96,196,0|gapwvz,96,196,0|gapww0,91,193,1|glvrjz,91,193,1|glvrk0,96,196,0|gtsy7z,96,196,0|gtsy80,91,193,1|h4lu7z,91,193,1|h4lu80,96,196,0|hcj0vz,96,196,0|hcj0w0,91,193,1|hnbwvz,91,193,1|hnbww0,96,196,0|hv93jz,96,196,0|hv93k0,91,193,1|i6ey7z,91,193,1|i6ey80,96,196,0","Asia/Amman|,0,205,0|-kcrtbk,15,11,0|1sed3z,15,11,0|1sed40,16,6,1|1yeybz,16,6,1|1yeyc0,15,11,0|29bmfz,15,11,0|29bmg0,16,6,1|2h6vnz,16,6,1|2h6vo0,15,11,0|2s3jrz,15,11,0|2s3js0,16,6,1|2zyszz,16,6,1|2zyt00,15,11,0|3axbrz,15,11,0|3axbs0,16,6,1|3kdznz,16,6,1|3kdzo0,15,11,0|3tp93z,15,11,0|3tp940,16,6,1|41kibz,16,6,1|41kic0,15,11,0|4cfbrz,15,11,0|4cfbs0,16,6,1|4kakzz,16,6,1|4kal00,15,11,0|7ygt3z,15,11,0|7ygt40,16,6,1|87vmbz,16,6,1|87vmc0,15,11,0|8heafz,15,11,0|8heag0,16,6,1|8qr8zz,16,6,1|8qr900,15,11,0|904d3z,15,11,0|904d40,16,6,1|99hbnz,16,6,1|99hbo0,15,11,0|9iufrz,15,11,0|9iufs0,16,6,1|9skczz,16,6,1|9skd00,15,11,0|a3ivrz,15,11,0|a3ivs0,16,6,1|abafnz,16,6,1|abafo0,15,11,0|alqfrz,15,11,0|alqfs0,16,6,1|au0ibz,16,6,1|au0ic0,15,11,0|b3zufz,15,11,0|b3zug0,16,6,1|bcdmbz,16,6,1|bcdmc0,15,11,0|bmgnrz,15,11,0|bmgns0,16,6,1|bvgnnz,16,6,1|bvgno0,15,11,0|c4trrz,15,11,0|c4trs0,16,6,1|ce6qbz,16,6,1|ce6qc0,15,11,0|cnjufz,15,11,0|cnjug0,16,6,1|cw6vnz,16,6,1|cw6vo0,15,11,0|d6mvrz,15,11,0|d6mvs0,16,6,1|dex13z,16,6,1|dex140,15,11,0|dpcyfz,15,11,0|dpcyg0,16,6,1|dy02fz,16,6,1|dy02g0,15,11,0|e8313z,15,11,0|e83140,16,6,1|egq53z,16,6,1|egq540,15,11,0|eqt3rz,15,11,0|eqt3s0,16,6,1|ezg7rz,16,6,1|ezg7s0,15,11,0|fe5ufz,15,11,0|fe5ug0,16,6,1|fij93z,16,6,1|fij940,15,11,0|fs7efz,15,11,0|fs7eg0,16,6,1|g1mafz,16,6,1|g1mag0,15,11,0|gaxh3z,15,11,0|gaxh40,16,6,1|gkcd3z,16,6,1|gkcd40,15,11,0|gtpefz,15,11,0|gtpeg0,16,6,1|h32frz,16,6,1|h32fs0,15,11,0|hcfh3z,15,11,0|hcfh40,16,6,1|hn8d3z,16,6,1|hn8d40,15,11,0|hv5jrz,15,11,0|hv5js0,16,6,1|i5lh3z,16,6,1|i5lh40,15,11,0|ie8l3z,15,11,0|ie8l40,16,6,1|inlmfz,16,6,1|inlmg0,15,11,0|iwynrz,15,11,0|iwyns0,16,6,1|j7rjrz,16,6,1|j7rjs0,15,11,0|jfoqfz,15,11,0|jfoqg0,16,6,1|jqhmfz,16,6,1|jqhmg0,15,11,0|jyet3z,15,11,0|jyet40,16,6,1|k9knrz,16,6,1|k9kns0,15,11,0|kh4vrz,15,11,0|kh4vs0,16,6,1|ksaqfz,16,6,1|ksaqg0,15,11,0|kzuyfz,15,11,0|kzuyg0,16,6,1|lb0t3z,16,6,1|lb0t40,15,11,0|lixzrz,15,11,0|lixzs0,16,6,1|ltqvrz,16,6,1|ltqvs0,15,11,0|m1o2fz,15,11,0|m1o2g0,16,6,1|my2nnz,16,6,1|my2no0,15,11,0|n347rz,15,11,0|n347s0,16,6,1|nea2fz,16,6,1|nea2g0,15,11,0|nluafz,15,11,0|nluag0,16,6,1|nx053z,16,6,1|nx0540,15,11,0|o4xbrz,15,11,0|o4xbs0,16,6,1|ofq7rz,16,6,1|ofq7s0,15,11,0|onnefz,15,11,0|onneg0,16,6,1|oygafz,16,6,1|oygag0,15,11,0|p6dh3z,15,11,0|p6dh40,16,6,1|ph6d3z,16,6,1|ph6d40,15,11,0|pp3jrz,15,11,0|pp3js0,16,6,1|pzwfrz,16,6,1|pzwfs0,15,11,0|q7tmfz,15,11,0|q7tmg0,16,6,1|qizh3z,16,6,1|qizh40,15,11,0|qqjp3z,15,11,0|qqjp40,16,6,1|r1pjrz,16,6,1|r1pjs0,15,11,0|r9mqfz,15,11,0|r9mqg0,16,6,1|rkfmfz,16,6,1|rkfmg0,15,11,0|rsct3z,15,11,0|rsct40,16,6,1|s35p3z,16,6,1|s35p40,15,11,0|sb2vrz,15,11,0|sb2vs0,16,6,1|slvrrz,16,6,1|slvrs0,15,11,0|stsyfz,15,11,0|stsyg0,16,6,1|t4yt3z,16,6,1|t4yt40,15,11,0|tcj13z,15,11,0|tcj140,16,6,1|tnovrz,16,6,1|tnovs0,15,11,0|tv93rz,15,11,0|tv93s0,16,6,1|u6eyfz,16,6,1|u6eyg0,15,11,0|uec53z,15,11,0|uec540,16,6,1|up513z,16,6,1|up5140,15,11,0|ux27rz,15,11,0|ux27s0,16,6,1|v7v3rz,16,6,1|v7v3s0,15,11,0|vfsafz,15,11,0|vfsag0,16,6,1|vql6fz,16,6,1|vql6g0,15,11,0|vyid3z,15,11,0|vyid40,16,6,1|w9o7rz,16,6,1|w9o7s0,15,11,0|wh8frz,15,11,0|wh8fs0,16,6,1|wseafz,16,6,1|wseag0,15,11,0|x0bh3z,15,11,0|x0bh40,16,6,1|xb4d3z,16,6,1|xb4d40,15,11,0|xj1jrz,15,11,0|xj1js0,16,6,1|xtufrz,16,6,1|xtufs0,15,11,0|y1rmfz,15,11,0|y1rmg0,16,6,1|yckifz,16,6,1|yckig0,15,11,0|ykhp3z,15,11,0|ykhp40,16,6,1|yvnjrz,16,6,1|yvnjs0,15,11,0|z37rrz,15,11,0|z37rs0,16,6,1|zedmfz,16,6,1|zedmg0,15,11,0","Asia/Anadyr|,0,206,0|-nu1sv8,102,200,0|-kmrtc1,102,200,0|-kmrtc0,103,201,0|5vaejz,103,201,0|5vaek0,104,207,1|64p7rz,104,207,1|64p7s0,103,201,0|6e2bvz,103,201,0|6e2bw0,103,201,1|6nh7vz,103,201,1|6nh7w0,102,200,0|6wubzz,102,200,0|6wuc00,103,201,1|76957z,103,201,1|769580,102,200,0|7fo3zz,102,200,0|7fo400,103,201,1|7p1avz,103,201,1|7p1aw0,102,200,0|7yec7z,102,200,0|7yec80,103,201,1|87rdjz,103,201,1|87rdk0,102,200,0|8h4evz,102,200,0|8h4ew0,103,201,1|8qhg7z,103,201,1|8qhg80,102,200,0|8zuhjz,102,200,0|8zuhk0,103,201,1|997ivz,103,201,1|997iw0,102,200,0|9ikk7z,102,200,0|9ikk80,103,201,1|9rxljz,103,201,1|9rxlk0,102,200,0|a1amvz,102,200,0|a1amw0,103,201,1|aano7z,103,201,1|aano80,102,200,0|ak0pjz,102,200,0|ak0pk0,103,201,1|atqpjz,103,201,1|atqpk0,102,200,0|b33qvz,102,200,0|b33qw0,102,200,1|bcguzz,102,200,1|bcgv00,90,192,0|bi89nz,90,192,0|bi89o0,102,200,0|blttjz,102,200,0|blttk0,103,201,1|bv6uvz,103,201,1|bv6uw0,102,200,0|c4jw7z,102,200,0|c4jw80,103,201,1|cdwxjz,103,201,1|cdwxk0,102,200,0|cn9yvz,102,200,0|cn9yw0,103,201,1|cwn07z,103,201,1|cwn080,102,200,0|d601jz,102,200,0|d601k0,103,201,1|dfd2vz,103,201,1|dfd2w0,102,200,0|dp32vz,102,200,0|dp32w0,103,201,1|dzvyvz,103,201,1|dzvyw0,102,200,0|e7t5jz,102,200,0|e7t5k0,103,201,1|eim1jz,103,201,1|eim1k0,102,200,0|eqj87z,102,200,0|eqj880,103,201,1|f1c47z,103,201,1|f1c480,102,200,0|f99avz,102,200,0|f99aw0,103,201,1|fkf5jz,103,201,1|fkf5k0,102,200,0|frzdjz,102,200,0|frzdk0,103,201,1|g3587z,103,201,1|g35880,102,200,0|gapg7z,102,200,0|gapg80,103,201,1|glvavz,103,201,1|glvaw0,102,200,0|gtshjz,102,200,0|gtshk0,103,201,1|h4ldjz,103,201,1|h4ldk0,102,200,0|hcik7z,102,200,0|hcik80,103,201,1|hnbg7z,103,201,1|hnbg80,102,200,0|hv8mvz,102,200,0|hv8mw0,103,201,1|i6ehjz,103,201,1|i6ehk0,102,200,0|idypjz,102,200,0|idypk0,103,201,1|ip4k7z,103,201,1|ip4k80,102,200,0|iwos7z,102,200,0|iwos80,103,201,1|j7umvz,103,201,1|j7umw0,102,200,0|jfeuvz,102,200,0|jfeuw0,103,201,1|jqkpjz,103,201,1|jqkpk0,102,200,0|jyhw7z,102,200,0|jyhw80,103,201,1|k9as7z,103,201,1|k9as80,102,200,0|kh7yvz,102,200,0|kh7yw0,103,201,1|ks0uvz,103,201,1|ks0uw0,102,200,0|kzy1jz,102,200,0|kzy1k0,102,200,1|lb3yzz,102,200,1|lb3z00,90,192,0|lio6zz,90,192,0|lio700,102,200,0","Asia/Aqtau|,0,208,0|-nu15b4,105,209,0|-kmr741,105,209,0|-kmr740,92,194,0|64pwrz,92,194,0|64pws0,96,196,0|6e2vbz,96,196,0|6e2vc0,96,196,1|6nhrbz,96,196,1|6nhrc0,92,194,0|6wuvfz,92,194,0|6wuvg0,96,196,1|769onz,96,196,1|769oo0,92,194,0|7fonfz,92,194,0|7fong0,96,196,1|7p1ubz,96,196,1|7p1uc0,92,194,0|7yevnz,92,194,0|7yevo0,96,196,1|87rwzz,96,196,1|87rx00,92,194,0|8h4ybz,92,194,0|8h4yc0,96,196,1|8qhznz,96,196,1|8qhzo0,92,194,0|8zv0zz,92,194,0|8zv100,96,196,1|9982bz,96,196,1|9982c0,92,194,0|9il3nz,92,194,0|9il3o0,96,196,1|9ry4zz,96,196,1|9ry500,92,194,0|a1b6bz,92,194,0|a1b6c0,96,196,1|aao7nz,96,196,1|aao7o0,92,194,0|ak18zz,92,194,0|ak1900,96,196,1|atr8zz,96,196,1|atr900,92,194,0|b34abz,92,194,0|b34ac0,92,194,1|bchefz,92,194,1|bcheg0,105,209,0|bi8t3z,105,209,0|bi8t40,92,194,0|bluczz,92,194,0|blud00,96,196,1|bv7ebz,96,196,1|bv7ec0,92,194,0|c4kfnz,92,194,0|c4kfo0,96,196,1|cdxgzz,96,196,1|cdxh00,92,194,0|cnaibz,92,194,0|cnaic0,96,196,1|cwnjnz,96,196,1|cwnjo0,105,209,0|d60nrz,105,209,0|d60ns0,92,194,1|dfdp3z,92,194,1|dfdp40,105,209,0|dp3p3z,105,209,0|dp3p40,92,194,1|dzwl3z,92,194,1|dzwl40,105,209,0|e7trrz,105,209,0|e7trs0,92,194,1|eimnrz,92,194,1|eimns0,105,209,0|eqjufz,105,209,0|eqjug0,92,194,1|f1cqfz,92,194,1|f1cqg0,105,209,0|f99x3z,105,209,0|f99x40,92,194,1|fkfrrz,92,194,1|fkfrs0,105,209,0|frzzrz,105,209,0|frzzs0,92,194,1|g35ufz,92,194,1|g35ug0,105,209,0|gaq2fz,105,209,0|gaq2g0,92,194,1|glvx3z,92,194,1|glvx40,105,209,0|gtt3rz,105,209,0|gtt3s0,92,194,1|h4lzrz,92,194,1|h4lzs0,105,209,0|hcj6fz,105,209,0|hcj6g0,92,194,1|hnc2fz,92,194,1|hnc2g0,105,209,0|hv993z,105,209,0|hv9940,92,194,1|i6f3rz,92,194,1|i6f3s0,92,194,0","Asia/Aqtobe|,0,210,0|-nu16l4,105,209,0|-kmr741,105,209,0|-kmr740,92,194,0|5vb0rz,92,194,0|5vb0s0,96,196,1|64ptzz,96,196,1|64pu00,96,196,0|6e2vbz,96,196,0|6e2vc0,96,196,1|6nhrbz,96,196,1|6nhrc0,92,194,0|6wuvfz,92,194,0|6wuvg0,96,196,1|769onz,96,196,1|769oo0,92,194,0|7fonfz,92,194,0|7fong0,96,196,1|7p1ubz,96,196,1|7p1uc0,92,194,0|7yevnz,92,194,0|7yevo0,96,196,1|87rwzz,96,196,1|87rx00,92,194,0|8h4ybz,92,194,0|8h4yc0,96,196,1|8qhznz,96,196,1|8qhzo0,92,194,0|8zv0zz,92,194,0|8zv100,96,196,1|9982bz,96,196,1|9982c0,92,194,0|9il3nz,92,194,0|9il3o0,96,196,1|9ry4zz,96,196,1|9ry500,92,194,0|a1b6bz,92,194,0|a1b6c0,96,196,1|aao7nz,96,196,1|aao7o0,92,194,0|ak18zz,92,194,0|ak1900,96,196,1|atr8zz,96,196,1|atr900,92,194,0|b34abz,92,194,0|b34ac0,92,194,1|bchefz,92,194,1|bcheg0,105,209,0|bi8t3z,105,209,0|bi8t40,92,194,0|bluczz,92,194,0|blud00,96,196,1|bv7ebz,96,196,1|bv7ec0,92,194,0|c4kfnz,92,194,0|c4kfo0,96,196,1|cdxgzz,96,196,1|cdxh00,92,194,0|cnaibz,92,194,0|cnaic0,96,196,1|cwnjnz,96,196,1|cwnjo0,92,194,0|d60kzz,92,194,0|d60l00,96,196,1|dfdmbz,96,196,1|dfdmc0,92,194,0|dp3mbz,92,194,0|dp3mc0,96,196,1|dzwibz,96,196,1|dzwic0,92,194,0|e7tozz,92,194,0|e7tp00,96,196,1|eimkzz,96,196,1|eiml00,92,194,0|eqjrnz,92,194,0|eqjro0,96,196,1|f1cnnz,96,196,1|f1cno0,92,194,0|f99ubz,92,194,0|f99uc0,96,196,1|fkfozz,96,196,1|fkfp00,92,194,0|frzwzz,92,194,0|frzx00,96,196,1|g35rnz,96,196,1|g35ro0,92,194,0|gapznz,92,194,0|gapzo0,96,196,1|glvubz,96,196,1|glvuc0,92,194,0|gtt0zz,92,194,0|gtt100,96,196,1|h4lwzz,96,196,1|h4lx00,92,194,0|hcj3nz,92,194,0|hcj3o0,96,196,1|hnbznz,96,196,1|hnbzo0,92,194,0|hv96bz,92,194,0|hv96c0,96,196,1|i6f0zz,96,196,1|i6f100,92,194,0","Asia/Ashgabat|,0,211,0|-nu16t8,105,209,0|-kmr741,105,209,0|-kmr740,92,194,0|5vb0rz,92,194,0|5vb0s0,96,196,1|64ptzz,96,196,1|64pu00,92,194,0|6e2y3z,92,194,0|6e2y40,96,196,1|6nhrbz,96,196,1|6nhrc0,92,194,0|6wuvfz,92,194,0|6wuvg0,96,196,1|769onz,96,196,1|769oo0,92,194,0|7fonfz,92,194,0|7fong0,96,196,1|7p1ubz,96,196,1|7p1uc0,92,194,0|7yevnz,92,194,0|7yevo0,96,196,1|87rwzz,96,196,1|87rx00,92,194,0|8h4ybz,92,194,0|8h4yc0,96,196,1|8qhznz,96,196,1|8qhzo0,92,194,0|8zv0zz,92,194,0|8zv100,96,196,1|9982bz,96,196,1|9982c0,92,194,0|9il3nz,92,194,0|9il3o0,96,196,1|9ry4zz,96,196,1|9ry500,92,194,0|a1b6bz,92,194,0|a1b6c0,96,196,1|aao7nz,96,196,1|aao7o0,92,194,0|ak18zz,92,194,0|ak1900,96,196,1|atr8zz,96,196,1|atr900,92,194,0|b34abz,92,194,0|b34ac0,92,194,1|bchefz,92,194,1|bcheg0,105,209,0|bi8t3z,105,209,0|bi8t40,92,194,0","Asia/Atyrau|,0,212,0|-nu15m8,100,6,0|-kmr4c1,100,6,0|-kmr4c0,92,194,0|64pwrz,92,194,0|64pws0,96,196,0|6e2vbz,96,196,0|6e2vc0,96,196,1|6nhrbz,96,196,1|6nhrc0,92,194,0|6wuvfz,92,194,0|6wuvg0,96,196,1|769onz,96,196,1|769oo0,92,194,0|7fonfz,92,194,0|7fong0,96,196,1|7p1ubz,96,196,1|7p1uc0,92,194,0|7yevnz,92,194,0|7yevo0,96,196,1|87rwzz,96,196,1|87rx00,92,194,0|8h4ybz,92,194,0|8h4yc0,96,196,1|8qhznz,96,196,1|8qhzo0,92,194,0|8zv0zz,92,194,0|8zv100,96,196,1|9982bz,96,196,1|9982c0,92,194,0|9il3nz,92,194,0|9il3o0,96,196,1|9ry4zz,96,196,1|9ry500,92,194,0|a1b6bz,92,194,0|a1b6c0,96,196,1|aao7nz,96,196,1|aao7o0,92,194,0|ak18zz,92,194,0|ak1900,96,196,1|atr8zz,96,196,1|atr900,92,194,0|b34abz,92,194,0|b34ac0,92,194,1|bchefz,92,194,1|bcheg0,105,209,0|bi8t3z,105,209,0|bi8t40,92,194,0|bluczz,92,194,0|blud00,96,196,1|bv7ebz,96,196,1|bv7ec0,92,194,0|c4kfnz,92,194,0|c4kfo0,96,196,1|cdxgzz,96,196,1|cdxh00,92,194,0|cnaibz,92,194,0|cnaic0,96,196,1|cwnjnz,96,196,1|cwnjo0,92,194,0|d60kzz,92,194,0|d60l00,96,196,1|dfdmbz,96,196,1|dfdmc0,92,194,0|dp3mbz,92,194,0|dp3mc0,96,196,1|dzwibz,96,196,1|dzwic0,92,194,0|e7tozz,92,194,0|e7tp00,96,196,1|eimkzz,96,196,1|eiml00,92,194,0|eqjrnz,92,194,0|eqjro0,96,196,1|f1cnnz,96,196,1|f1cno0,92,194,0|f99ubz,92,194,0|f99uc0,92,194,1|fkfrrz,92,194,1|fkfrs0,105,209,0|frzzrz,105,209,0|frzzs0,92,194,1|g35ufz,92,194,1|g35ug0,105,209,0|gaq2fz,105,209,0|gaq2g0,92,194,1|glvx3z,92,194,1|glvx40,105,209,0|gtt3rz,105,209,0|gtt3s0,92,194,1|h4lzrz,92,194,1|h4lzs0,105,209,0|hcj6fz,105,209,0|hcj6g0,92,194,1|hnc2fz,92,194,1|hnc2g0,105,209,0|hv993z,105,209,0|hv9940,92,194,1|i6f3rz,92,194,1|i6f3s0,92,194,0","Asia/Baghdad|,0,213,0|-15r1hk4,53,214,0|-r50g81,53,214,0|-r50g80,100,6,0|6fmnnz,100,6,0|6fmno0,105,209,1|6nhwvz,105,209,1|6nhww0,100,6,0|6wt6bz,100,6,0|6wt6c0,105,209,1|769u7z,105,209,1|769u80,100,6,0|7foszz,100,6,0|7fot00,105,209,1|7p3m7z,105,209,1|7p3m80,100,6,0|7ygqbz,100,6,0|7ygqc0,105,209,1|87rzrz,105,209,1|87rzs0,100,6,0|8h513z,100,6,0|8h5140,105,209,1|8qi2fz,105,209,1|8qi2g0,100,6,0|8zv3rz,100,6,0|8zv3s0,105,209,1|99853z,105,209,1|998540,100,6,0|9il6fz,100,6,0|9il6g0,105,209,1|9ry7rz,105,209,1|9ry7s0,100,6,0|a1b93z,100,6,0|a1b940,105,209,1|aaoafz,105,209,1|aaoag0,100,6,0|ak1brz,100,6,0|ak1bs0,105,209,1|atrbrz,105,209,1|atrbs0,100,6,0|b36dbz,100,6,0|b36dc0,105,209,1|bcl9bz,105,209,1|bcl9c0,100,6,0|bm05bz,100,6,0|bm05c0,105,209,1|bvf1bz,105,209,1|bvf1c0,100,6,0|c4s2nz,100,6,0|c4s2o0,105,209,1|ce6ynz,105,209,1|ce6yo0,100,6,0|cnjzzz,100,6,0|cnk000,105,209,1|cwyvzz,105,209,1|cwyw00,100,6,0|d6bxbz,100,6,0|d6bxc0,105,209,1|dfqtbz,105,209,1|dfqtc0,100,6,0|dp5pbz,100,6,0|dp5pc0,105,209,1|dyklbz,105,209,1|dyklc0,100,6,0|e7xmnz,100,6,0|e7xmo0,105,209,1|ehcinz,105,209,1|ehcio0,100,6,0|eqpjzz,100,6,0|eqpk00,105,209,1|f04fzz,105,209,1|f04g00,100,6,0|f9hhbz,100,6,0|f9hhc0,105,209,1|fiwdbz,105,209,1|fiwdc0,100,6,0|fsb9bz,100,6,0|fsb9c0,105,209,1|g1q5bz,105,209,1|g1q5c0,100,6,0|gb36nz,100,6,0|gb36o0,105,209,1|gki2nz,105,209,1|gki2o0,100,6,0|gtv3zz,100,6,0|gtv400,105,209,1|h39zzz,105,209,1|h3a000,100,6,0|hcn1bz,100,6,0|hcn1c0,105,209,1|hm1xbz,105,209,1|hm1xc0,100,6,0|hvgtbz,100,6,0|hvgtc0,105,209,1|i4vpbz,105,209,1|i4vpc0,100,6,0|ie8qnz,100,6,0|ie8qo0,105,209,1|innmnz,105,209,1|innmo0,100,6,0|ix0nzz,100,6,0|ix0o00,105,209,1|j6fjzz,105,209,1|j6fk00,100,6,0|jfslbz,100,6,0|jfslc0,105,209,1|jp7hbz,105,209,1|jp7hc0,100,6,0","Asia/Bahrain|,0,215,0|-q3gmvk,105,209,0|19d0vz,105,209,0|19d0w0,100,6,0","Asia/Baku|,0,216,0|-nu158c,100,6,0|-6p7kc1,100,6,0|-6p7kc0,105,209,0|5vb3jz,105,209,0|5vb3k0,92,194,1|64pwrz,92,194,1|64pws0,105,209,0|6e30vz,105,209,0|6e30w0,92,194,1|6nhu3z,92,194,1|6nhu40,105,209,0|6wuy7z,105,209,0|6wuy80,92,194,1|769rfz,92,194,1|769rg0,105,209,0|7foq7z,105,209,0|7foq80,92,194,1|7p1x3z,92,194,1|7p1x40,105,209,0|7yeyfz,105,209,0|7yeyg0,92,194,1|87rzrz,92,194,1|87rzs0,105,209,0|8h513z,105,209,0|8h5140,92,194,1|8qi2fz,92,194,1|8qi2g0,105,209,0|8zv3rz,105,209,0|8zv3s0,92,194,1|99853z,92,194,1|998540,105,209,0|9il6fz,105,209,0|9il6g0,92,194,1|9ry7rz,92,194,1|9ry7s0,105,209,0|a1b93z,105,209,0|a1b940,92,194,1|aaoafz,92,194,1|aaoag0,105,209,0|ak1brz,105,209,0|ak1bs0,92,194,1|atrbrz,92,194,1|atrbs0,105,209,0|b34d3z,105,209,0|b34d40,105,209,1|bchh7z,105,209,1|bchh80,100,6,0|bluijz,100,6,0|bluik0,105,209,1|bv7jvz,105,209,1|bv7jw0,105,209,0|dp3xfz,105,209,0|dp3xg0,92,194,1|dzwtfz,92,194,1|dzwtg0,105,209,0|e7txbz,105,209,0|e7txc0,92,194,1|eimtbz,92,194,1|eimtc0,105,209,0|eqjzzz,105,209,0|eqk000,92,194,1|f1cvzz,92,194,1|f1cw00,105,209,0|f9a2nz,105,209,0|f9a2o0,92,194,1|fkfxbz,92,194,1|fkfxc0,105,209,0|fs05bz,105,209,0|fs05c0,92,194,1|g35zzz,92,194,1|g36000,105,209,0|gaq7zz,105,209,0|gaq800,92,194,1|glw2nz,92,194,1|glw2o0,105,209,0|gtt9bz,105,209,0|gtt9c0,92,194,1|h4m5bz,92,194,1|h4m5c0,105,209,0|hcjbzz,105,209,0|hcjc00,92,194,1|hnc7zz,92,194,1|hnc800,105,209,0|hv9enz,105,209,0|hv9eo0,92,194,1|i6f9bz,92,194,1|i6f9c0,105,209,0|idzhbz,105,209,0|idzhc0,92,194,1|ip5bzz,92,194,1|ip5c00,105,209,0|iwpjzz,105,209,0|iwpk00,92,194,1|j7venz,92,194,1|j7veo0,105,209,0|jffmnz,105,209,0|jffmo0,92,194,1|jqlhbz,92,194,1|jqlhc0,105,209,0|jyinzz,105,209,0|jyio00,92,194,1|k9bjzz,92,194,1|k9bk00,105,209,0|kh8qnz,105,209,0|kh8qo0,92,194,1|ks1mnz,92,194,1|ks1mo0,105,209,0|kzytbz,105,209,0|kzytc0,92,194,1|lb4nzz,92,194,1|lb4o00,105,209,0|liovzz,105,209,0|liow00,92,194,1|ltuqnz,92,194,1|ltuqo0,105,209,0|m1eynz,105,209,0|m1eyo0,92,194,1|mcktbz,92,194,1|mcktc0,105,209,0|mkhzzz,105,209,0|mki000,92,194,1|mvavzz,92,194,1|mvaw00,105,209,0|n382nz,105,209,0|n382o0,92,194,1|ne0ynz,92,194,1|ne0yo0,105,209,0|nly5bz,105,209,0|nly5c0,92,194,1|nwr1bz,92,194,1|nwr1c0,105,209,0","Asia/Bangkok|,0,217,0|-1ayyla4,53,217,0|-pysda5,53,217,0|-pysda4,91,193,0","Asia/Barnaul|,0,218,0|-q4ljic,96,196,0|-kmrco1,96,196,0|-kmrco0,91,193,0|5vav7z,91,193,0|5vav80,89,191,1|64pofz,89,191,1|64pog0,91,193,0|6e2sjz,91,193,0|6e2sk0,89,191,1|6nhlrz,89,191,1|6nhls0,91,193,0|6wupvz,91,193,0|6wupw0,89,191,1|769j3z,89,191,1|769j40,91,193,0|7fohvz,91,193,0|7fohw0,89,191,1|7p1orz,89,191,1|7p1os0,91,193,0|7yeq3z,91,193,0|7yeq40,89,191,1|87rrfz,89,191,1|87rrg0,91,193,0|8h4srz,91,193,0|8h4ss0,89,191,1|8qhu3z,89,191,1|8qhu40,91,193,0|8zuvfz,91,193,0|8zuvg0,89,191,1|997wrz,89,191,1|997ws0,91,193,0|9iky3z,91,193,0|9iky40,89,191,1|9rxzfz,89,191,1|9rxzg0,91,193,0|a1b0rz,91,193,0|a1b0s0,89,191,1|aao23z,89,191,1|aao240,91,193,0|ak13fz,91,193,0|ak13g0,89,191,1|atr3fz,89,191,1|atr3g0,91,193,0|b344rz,91,193,0|b344s0,91,193,1|bch8vz,91,193,1|bch8w0,96,196,0|bi8njz,96,196,0|bi8nk0,91,193,0|blu7fz,91,193,0|blu7g0,89,191,1|bv78rz,89,191,1|bv78s0,91,193,0|c4ka3z,91,193,0|c4ka40,89,191,1|cdxbfz,89,191,1|cdxbg0,91,193,0|cnacrz,91,193,0|cnacs0,89,191,1|cwne3z,89,191,1|cwne40,91,193,0|d60ffz,91,193,0|d60fg0,89,191,1|d98v3z,89,191,1|d98v40,91,193,1|dfdjjz,91,193,1|dfdjk0,96,196,0|dp3jjz,96,196,0|dp3jk0,91,193,1|dzwfjz,91,193,1|dzwfk0,96,196,0|e7tm7z,96,196,0|e7tm80,91,193,1|eimi7z,91,193,1|eimi80,96,196,0|eqjovz,96,196,0|eqjow0,91,193,1|f1ckvz,91,193,1|f1ckw0,96,196,0|f99rjz,96,196,0|f99rk0,91,193,1|fkfm7z,91,193,1|fkfm80,96,196,0|frzu7z,96,196,0|frzu80,91,193,1|g35ovz,91,193,1|g35ow0,96,196,0|gapwvz,96,196,0|gapww0,91,193,1|glvrjz,91,193,1|glvrk0,96,196,0|gtsy7z,96,196,0|gtsy80,91,193,1|h4lu7z,91,193,1|h4lu80,96,196,0|hcj0vz,96,196,0|hcj0w0,91,193,1|hnbwvz,91,193,1|hnbww0,96,196,0|hv93jz,96,196,0|hv93k0,91,193,1|i6ey7z,91,193,1|i6ey80,96,196,0|idz67z,96,196,0|idz680,91,193,1|ip50vz,91,193,1|ip50w0,96,196,0|iwp8vz,96,196,0|iwp8w0,91,193,1|j7v3jz,91,193,1|j7v3k0,96,196,0|jffbjz,96,196,0|jffbk0,91,193,1|jql67z,91,193,1|jql680,96,196,0|jyicvz,96,196,0|jyicw0,91,193,1|k9b8vz,91,193,1|k9b8w0,96,196,0|kh8fjz,96,196,0|kh8fk0,91,193,1|ks1bjz,91,193,1|ks1bk0,96,196,0|kzyi7z,96,196,0|kzyi80,91,193,1|lb4cvz,91,193,1|lb4cw0,96,196,0|liokvz,96,196,0|liokw0,91,193,0|ne0krz,91,193,0|ne0ks0,96,196,0|o4nwvz,96,196,0|o4nww0,91,193,0","Asia/Beirut|,0,219,0|-1ayy98o,15,11,0|-pyzew1,15,11,0|-pyzew0,16,6,1|-po4r01,16,6,1|-po4r00,15,11,0|-pfwdk1,15,11,0|-pfwdk0,16,6,1|-p6hkc1,16,6,1|-p6hkc0,15,11,0|-oxj9k1,15,11,0|-oxj9k0,16,6,1|-ongdo1,16,6,1|-ongdo0,15,11,0|-oddc81,15,11,0|-oddc80,16,6,1|-o5t701,16,6,1|-o5t700,15,11,0|-6m2iw1,15,11,0|-6m2iw0,16,6,1|-6e79o1,16,6,1|-6e79o0,15,11,0|-63alk1,15,11,0|-63alk0,16,6,1|-5vfcc1,16,6,1|-5vfcc0,15,11,0|-5kio81,15,11,0|-5kio80,16,6,1|-5cnf01,16,6,1|-5cnf00,15,11,0|-51ow81,15,11,0|-51ow80,16,6,1|-4ttn01,16,6,1|-4ttn00,15,11,0|-4iwyw1,15,11,0|-4iwyw0,16,6,1|-4b1po1,16,6,1|-4b1po0,15,11,0|1ag2fz,15,11,0|1ag2g0,16,6,1|1fn0zz,16,6,1|1fn100,15,11,0|1qjp3z,15,11,0|1qjp40,16,6,1|1yeybz,16,6,1|1yeyc0,15,11,0|29bmfz,15,11,0|29bmg0,16,6,1|2h6vnz,16,6,1|2h6vo0,15,11,0|2s3jrz,15,11,0|2s3js0,16,6,1|2zyszz,16,6,1|2zyt00,15,11,0|3axbrz,15,11,0|3axbs0,16,6,1|3iskzz,16,6,1|3isl00,15,11,0|3tp93z,15,11,0|3tp940,16,6,1|41kibz,16,6,1|41kic0,15,11,0|4cfbrz,15,11,0|4cfbs0,16,6,1|4kakzz,16,6,1|4kal00,15,11,0|7h8frz,15,11,0|7h8fs0,16,6,1|7pvgzz,16,6,1|7pvh00,15,11,0|800d3z,15,11,0|800d40,16,6,1|88nebz,16,6,1|88nec0,15,11,0|8isafz,15,11,0|8isag0,16,6,1|8rfbnz,16,6,1|8rfbo0,15,11,0|91k7rz,15,11,0|91k7s0,16,6,1|9a78zz,16,6,1|9a7900,15,11,0|9lzefz,15,11,0|9lzeg0,16,6,1|9t10zz,16,6,1|9t1100,15,11,0|a3ml3z,15,11,0|a3ml40,16,6,1|absybz,16,6,1|absyc0,15,11,0|alxufz,15,11,0|alxug0,16,6,1|aukvnz,16,6,1|aukvo0,15,11,0|b4prrz,15,11,0|b4prs0,16,6,1|bdcszz,16,6,1|bdct00,15,11,0|bnjjrz,15,11,0|bnjjs0,16,6,1|bvkczz,16,6,1|bvkd00,15,11,0|c4kifz,15,11,0|c4kig0,16,6,1|cdxgzz,16,6,1|cdxh00,15,11,0|cnal3z,15,11,0|cnal40,16,6,1|cwnjnz,16,6,1|cwnjo0,15,11,0|d60nrz,15,11,0|d60ns0,16,6,1|dfdmbz,16,6,1|dfdmc0,15,11,0|dp3p3z,15,11,0|dp3p40,16,6,1|dygnnz,16,6,1|dygno0,15,11,0|e7trrz,15,11,0|e7trs0,16,6,1|eh6qbz,16,6,1|eh6qc0,15,11,0|eqjufz,15,11,0|eqjug0,16,6,1|ezwszz,16,6,1|ezwt00,15,11,0|f99x3z,15,11,0|f99x40,16,6,1|fkfozz,16,6,1|fkfp00,15,11,0|frzzrz,15,11,0|frzzs0,16,6,1|g35rnz,16,6,1|g35ro0,15,11,0|gaq2fz,15,11,0|gaq2g0,16,6,1|glvubz,16,6,1|glvuc0,15,11,0|gtt3rz,15,11,0|gtt3s0,16,6,1|h4lwzz,16,6,1|h4lx00,15,11,0|hcj6fz,15,11,0|hcj6g0,16,6,1|hnbznz,16,6,1|hnbzo0,15,11,0|hv993z,15,11,0|hv9940,16,6,1|i6f0zz,16,6,1|i6f100,15,11,0|idzbrz,15,11,0|idzbs0,16,6,1|ip53nz,16,6,1|ip53o0,15,11,0|iwpefz,15,11,0|iwpeg0,16,6,1|j7v6bz,16,6,1|j7v6c0,15,11,0|jffh3z,15,11,0|jffh40,16,6,1|jql8zz,16,6,1|jql900,15,11,0|jyiifz,15,11,0|jyiig0,16,6,1|k9bbnz,16,6,1|k9bbo0,15,11,0|kh8l3z,15,11,0|kh8l40,16,6,1|ks1ebz,16,6,1|ks1ec0,15,11,0|kzynrz,15,11,0|kzyns0,16,6,1|lb4fnz,16,6,1|lb4fo0,15,11,0|lioqfz,15,11,0|lioqg0,16,6,1|ltuibz,16,6,1|ltuic0,15,11,0|m1et3z,15,11,0|m1et40,16,6,1|mckkzz,16,6,1|mckl00,15,11,0|mkhufz,15,11,0|mkhug0,16,6,1|mvannz,16,6,1|mvano0,15,11,0|n37x3z,15,11,0|n37x40,16,6,1|ne0qbz,16,6,1|ne0qc0,15,11,0|nlxzrz,15,11,0|nlxzs0,16,6,1|nwqszz,16,6,1|nwqt00,15,11,0|o4o2fz,15,11,0|o4o2g0,16,6,1|oftubz,16,6,1|oftuc0,15,11,0|one53z,15,11,0|one540,16,6,1|oyjwzz,16,6,1|oyjx00,15,11,0|p647rz,15,11,0|p647s0,16,6,1|ph9znz,16,6,1|ph9zo0,15,11,0|pp793z,15,11,0|pp7940,16,6,1|q002bz,16,6,1|q002c0,15,11,0|q7xbrz,15,11,0|q7xbs0,16,6,1|qiq4zz,16,6,1|qiq500,15,11,0|qqnefz,15,11,0|qqneg0,16,6,1|r1t6bz,16,6,1|r1t6c0,15,11,0|r9dh3z,15,11,0|r9dh40,16,6,1|rkj8zz,16,6,1|rkj900,15,11,0|rs3jrz,15,11,0|rs3js0,16,6,1|s39bnz,16,6,1|s39bo0,15,11,0|sb6l3z,15,11,0|sb6l40,16,6,1|slzebz,16,6,1|slzec0,15,11,0|stwnrz,15,11,0|stwns0,16,6,1|t4pgzz,16,6,1|t4ph00,15,11,0|tcmqfz,15,11,0|tcmqg0,16,6,1|tnfjnz,16,6,1|tnfjo0,15,11,0|tvct3z,15,11,0|tvct40,16,6,1|u6ikzz,16,6,1|u6il00,15,11,0|ue2vrz,15,11,0|ue2vs0,16,6,1|up8nnz,16,6,1|up8no0,15,11,0|uwsyfz,15,11,0|uwsyg0,16,6,1|v7yqbz,16,6,1|v7yqc0,15,11,0|vfvzrz,15,11,0|vfvzs0,16,6,1|vqoszz,16,6,1|vqot00,15,11,0|vym2fz,15,11,0|vym2g0,16,6,1|w9evnz,16,6,1|w9evo0,15,11,0|whc53z,15,11,0|whc540,16,6,1|wshwzz,16,6,1|wshx00,15,11,0|x027rz,15,11,0|x027s0,16,6,1|xb7znz,16,6,1|xb7zo0,15,11,0|xisafz,15,11,0|xisag0,16,6,1|xty2bz,16,6,1|xty2c0,15,11,0|y1id3z,15,11,0|y1id40,16,6,1|yco4zz,16,6,1|yco500,15,11,0|yklefz,15,11,0|ykleg0,16,6,1|yve7nz,16,6,1|yve7o0,15,11,0|z3bh3z,15,11,0|z3bh40,16,6,1|ze4abz,16,6,1|ze4ac0,15,11,0","Asia/Bishkek|,0,220,0|-nu19tc,92,194,0|-kmr9w1,92,194,0|-kmr9w0,96,196,0|5vaxzz,96,196,0|5vay00,91,193,1|64pr7z,91,193,1|64pr80,96,196,0|6e2vbz,96,196,0|6e2vc0,91,193,1|6nhojz,91,193,1|6nhok0,96,196,0|6wusnz,96,196,0|6wuso0,91,193,1|769lvz,91,193,1|769lw0,96,196,0|7foknz,96,196,0|7foko0,91,193,1|7p1rjz,91,193,1|7p1rk0,96,196,0|7yesvz,96,196,0|7yesw0,91,193,1|87ru7z,91,193,1|87ru80,96,196,0|8h4vjz,96,196,0|8h4vk0,91,193,1|8qhwvz,91,193,1|8qhww0,96,196,0|8zuy7z,96,196,0|8zuy80,91,193,1|997zjz,91,193,1|997zk0,96,196,0|9il0vz,96,196,0|9il0w0,91,193,1|9ry27z,91,193,1|9ry280,96,196,0|a1b3jz,96,196,0|a1b3k0,91,193,1|aao4vz,91,193,1|aao4w0,96,196,0|ak167z,96,196,0|ak1680,91,193,1|atr67z,91,193,1|atr680,96,196,0|b347jz,96,196,0|b347k0,96,196,1|bazjjz,96,196,1|bazjk0,92,194,0|bmk4rz,92,194,0|bmk4s0,96,196,1|bv75zz,96,196,1|bv7600,92,194,0|c5a7fz,92,194,0|c5a7g0,96,196,1|cdx8nz,96,196,1|cdx8o0,92,194,0|co0a3z,92,194,0|co0a40,96,196,1|cwnbbz,96,196,1|cwnbc0,92,194,0|d6qcrz,92,194,0|d6qcs0,96,196,1|dfddzz,96,196,1|dfde00,92,194,0|dpgffz,92,194,0|dpgfg0,96,196,1|dygfbz,96,196,1|dygfc0,92,194,0|e7tqdz,92,194,0|e7tqe0,96,196,1|eimjlz,96,196,1|eimjm0,92,194,0|eqjt1z,92,194,0|eqjt20,96,196,1|f1cm9z,96,196,1|f1cma0,92,194,0|f99vpz,92,194,0|f99vq0,96,196,1|fkfnlz,96,196,1|fkfnm0,92,194,0|frzydz,92,194,0|frzye0,96,196,1|g35q9z,96,196,1|g35qa0,92,194,0|gaq11z,92,194,0|gaq120,96,196,1|glvsxz,96,196,1|glvsy0,92,194,0|gtt2dz,92,194,0|gtt2e0,96,196,1|h4lvlz,96,196,1|h4lvm0,92,194,0|hcj51z,92,194,0|hcj520,96,196,1|hnby9z,96,196,1|hnbya0,92,194,0|hv97pz,92,194,0|hv97q0,96,196,1|i6ezlz,96,196,1|i6ezm0,92,194,0|idzadz,92,194,0|idzae0,96,196,1|il2knz,96,196,1|il2ko0,96,196,0","Asia/Brunei|,0,221,0|-mvofy4,106,222,0|-jb6i61,106,222,0|-jb6i60,89,191,0","Asia/Chita|,0,223,0|-q4cfog,89,191,0|-kmri81,89,191,0|-kmri80,107,224,0|5vapnz,107,224,0|5vapo0,93,195,1|64pivz,93,195,1|64piw0,107,224,0|6e2mzz,107,224,0|6e2n00,93,195,1|6nhg7z,93,195,1|6nhg80,107,224,0|6wukbz,107,224,0|6wukc0,93,195,1|769djz,93,195,1|769dk0,107,224,0|7focbz,107,224,0|7focc0,93,195,1|7p1j7z,93,195,1|7p1j80,107,224,0|7yekjz,107,224,0|7yekk0,93,195,1|87rlvz,93,195,1|87rlw0,107,224,0|8h4n7z,107,224,0|8h4n80,93,195,1|8qhojz,93,195,1|8qhok0,107,224,0|8zupvz,107,224,0|8zupw0,93,195,1|997r7z,93,195,1|997r80,107,224,0|9iksjz,107,224,0|9iksk0,93,195,1|9rxtvz,93,195,1|9rxtw0,107,224,0|a1av7z,107,224,0|a1av80,93,195,1|aanwjz,93,195,1|aanwk0,107,224,0|ak0xvz,107,224,0|ak0xw0,93,195,1|atqxvz,93,195,1|atqxw0,107,224,0|b33z7z,107,224,0|b33z80,107,224,1|bch3bz,107,224,1|bch3c0,89,191,0|bi8hzz,89,191,0|bi8i00,107,224,0|blu1vz,107,224,0|blu1w0,93,195,1|bv737z,93,195,1|bv7380,107,224,0|c4k4jz,107,224,0|c4k4k0,93,195,1|cdx5vz,93,195,1|cdx5w0,107,224,0|cna77z,107,224,0|cna780,93,195,1|cwn8jz,93,195,1|cwn8k0,107,224,0|d609vz,107,224,0|d609w0,93,195,1|dfdb7z,93,195,1|dfdb80,107,224,0|dp3b7z,107,224,0|dp3b80,93,195,1|dzw77z,93,195,1|dzw780,107,224,0|e7tdvz,107,224,0|e7tdw0,93,195,1|eim9vz,93,195,1|eim9w0,107,224,0|eqjgjz,107,224,0|eqjgk0,93,195,1|f1ccjz,93,195,1|f1cck0,107,224,0|f99j7z,107,224,0|f99j80,93,195,1|fkfdvz,93,195,1|fkfdw0,107,224,0|frzlvz,107,224,0|frzlw0,93,195,1|g35gjz,93,195,1|g35gk0,107,224,0|gapojz,107,224,0|gapok0,93,195,1|glvj7z,93,195,1|glvj80,107,224,0|gtspvz,107,224,0|gtspw0,93,195,1|h4llvz,93,195,1|h4llw0,107,224,0|hcisjz,107,224,0|hcisk0,93,195,1|hnbojz,93,195,1|hnbok0,107,224,0|hv8v7z,107,224,0|hv8v80,93,195,1|i6epvz,93,195,1|i6epw0,107,224,0|idyxvz,107,224,0|idyxw0,93,195,1|ip4sjz,93,195,1|ip4sk0,107,224,0|iwp0jz,107,224,0|iwp0k0,93,195,1|j7uv7z,93,195,1|j7uv80,107,224,0|jff37z,107,224,0|jff380,93,195,1|jqkxvz,93,195,1|jqkxw0,107,224,0|jyi4jz,107,224,0|jyi4k0,93,195,1|k9b0jz,93,195,1|k9b0k0,107,224,0|kh877z,107,224,0|kh8780,93,195,1|ks137z,93,195,1|ks1380,107,224,0|kzy9vz,107,224,0|kzy9w0,93,195,1|lb44jz,93,195,1|lb44k0,107,224,0|liocjz,107,224,0|liock0,93,195,0|ne0cfz,93,195,0|ne0cg0,89,191,0|o4nrbz,89,191,0|o4nrc0,107,224,0","Asia/Choibalsan|,0,225,0|-xmct7c,91,193,0|46akjz,91,193,0|46akk0,89,191,0|6wun3z,89,191,0|6wun40,93,195,1|769djz,93,195,1|769dk0,107,224,0|7focbz,107,224,0|7focc0,93,195,1|7p1avz,93,195,1|7p1aw0,107,224,0|7yeezz,107,224,0|7yef00,93,195,1|87rdjz,93,195,1|87rdk0,107,224,0|8h4hnz,107,224,0|8h4ho0,93,195,1|8qhg7z,93,195,1|8qhg80,107,224,0|8zukbz,107,224,0|8zukc0,93,195,1|997ivz,93,195,1|997iw0,107,224,0|9ikmzz,107,224,0|9ikn00,93,195,1|9rxljz,93,195,1|9rxlk0,107,224,0|a1apnz,107,224,0|a1apo0,93,195,1|aano7z,93,195,1|aano80,107,224,0|ak0sbz,107,224,0|ak0sc0,93,195,1|atqpjz,93,195,1|atqpk0,107,224,0|b33tnz,107,224,0|b33to0,93,195,1|bcgs7z,93,195,1|bcgs80,107,224,0|bltwbz,107,224,0|bltwc0,93,195,1|bv6uvz,93,195,1|bv6uw0,107,224,0|c4jyzz,107,224,0|c4jz00,93,195,1|cdwxjz,93,195,1|cdwxk0,107,224,0|cna1nz,107,224,0|cna1o0,93,195,1|cwn07z,93,195,1|cwn080,107,224,0|d604bz,107,224,0|d604c0,93,195,1|dfd2vz,93,195,1|dfd2w0,107,224,0|dp35nz,107,224,0|dp35o0,93,195,1|dyg47z,93,195,1|dyg480,107,224,0|e7t8bz,107,224,0|e7t8c0,93,195,1|eh66vz,93,195,1|eh66w0,107,224,0|eqjazz,107,224,0|eqjb00,93,195,1|ezw9jz,93,195,1|ezw9k0,107,224,0|gcgn7z,107,224,0|gcgn80,93,195,1|gkdr3z,93,195,1|gkdr40,107,224,0|gtqv7z,107,224,0|gtqv80,93,195,1|h33trz,93,195,1|h33ts0,107,224,0|hcgxvz,107,224,0|hcgxw0,93,195,1|hltwfz,93,195,1|hltwg0,107,224,0|hv70jz,107,224,0|hv70k0,93,195,1|i4jz3z,93,195,1|i4jz40,107,224,0|idx37z,107,224,0|idx380,93,195,1|ina1rz,93,195,1|ina1s0,107,224,0|iwn5vz,107,224,0|iwn5w0,93,195,1|j6d33z,93,195,1|j6d340,107,224,0|jyjtnz,107,224,0|jyjto0,89,191,0|nlvtzz,89,191,0|nlvu00,107,224,1|nv8mzz,107,224,1|nv8n00,89,191,0|o4lwnz,89,191,0|o4lwo0,107,224,1|odypnz,107,224,1|odypo0,89,191,0","Asia/Colombo|,0,226,0|-1ayyhgc,21,227,0|-xehasl,21,227,0|-xehask,108,228,0|-elvwm1,108,228,0|-elvwm0,96,196,1|-e9lco1,96,196,1|-e9lco0,109,229,1|-cmw9u1,109,229,1|-cmw9u0,108,228,0|drxa1z,108,228,0|drxa20,109,229,0|dzufbz,109,229,0|dzufc0,96,196,0|ixq61z,96,196,0|ixq620,108,228,0","Asia/Damascus|,0,230,0|-q3gk20,15,11,0|-pxwdc1,15,11,0|-pxwdc0,16,6,1|-pp9c41,16,6,1|-pp9c40,15,11,0|-pf6ao1,15,11,0|-pf6ao0,16,6,1|-p6j9g1,16,6,1|-p6j9g0,15,11,0|-owg801,15,11,0|-owg800,16,6,1|-ont6s1,16,6,1|-ont6s0,15,11,0|-odq5c1,15,11,0|-odq5c0,16,6,1|-o4q5g1,16,6,1|-o4q5g0,15,11,0|-408lc1,15,11,0|-408lc0,16,6,1|-3s9ms1,16,6,1|-3s9ms0,15,11,0|-3hcyo1,15,11,0|-3hcyo0,16,6,1|-39jk41,16,6,1|-39jk40,15,11,0|-2yj6o1,15,11,0|-2yj6o0,16,6,1|-2qnxg1,16,6,1|-2qnxg0,15,11,0|-2fr9c1,15,11,0|-2fr9c0,16,6,1|-27xus1,16,6,1|-27xus0,15,11,0|-1xcao1,15,11,0|-1xcao0,16,6,1|-1p42s1,16,6,1|-1p42s0,15,11,0|-1e7eo1,15,11,0|-1e7eo0,16,6,1|-16c5g1,16,6,1|-16c5g0,15,11,0|-vdmo1,15,11,0|-vdmo0,16,6,1|-nidg1,16,6,1|-nidg0,15,11,0|-clpc1,15,11,0|-clpc0,16,6,1|-4qg41,16,6,1|-4qg40,15,11,0|667zz,15,11,0|66800,16,6,1|e1h7z,16,6,1|e1h80,15,11,0|oy5bz,15,11,0|oy5c0,16,6,1|wtejz,16,6,1|wtek0,15,11,0|17rxbz,15,11,0|17rxc0,16,6,1|1fn6jz,16,6,1|1fn6k0,15,11,0|1qjunz,15,11,0|1qjuo0,16,6,1|1yf3vz,16,6,1|1yf3w0,15,11,0|29brzz,15,11,0|29bs00,16,6,1|2h717z,16,6,1|2h7180,15,11,0|2s3pbz,15,11,0|2s3pc0,16,6,1|2zyyjz,16,6,1|2zyyk0,15,11,0|3axhbz,15,11,0|3axhc0,16,6,1|3isqjz,16,6,1|3isqk0,15,11,0|3tpenz,15,11,0|3tpeo0,16,6,1|4013vz,16,6,1|4013w0,15,11,0|4chbzz,15,11,0|4chc00,16,6,1|4it17z,16,6,1|4it180,15,11,0|6xa2nz,15,11,0|6xa2o0,16,6,1|76a2jz,16,6,1|76a2k0,15,11,0|7g3unz,15,11,0|7g3uo0,16,6,1|7p3ujz,16,6,1|7p3uk0,15,11,0|8ezenz,15,11,0|8ezeo0,16,6,1|8r2ijz,16,6,1|8r2ik0,15,11,0|8yfenz,15,11,0|8yfeo0,16,6,1|9az6jz,16,6,1|9az6k0,15,11,0|9hz3zz,15,11,0|9hz400,16,6,1|9tsyjz,16,6,1|9tsyk0,15,11,0|a1knzz,15,11,0|a1ko00,16,6,1|ab1bvz,16,6,1|ab1bw0,15,11,0|akefzz,15,11,0|akeg00,16,6,1|atrejz,16,6,1|atrek0,15,11,0|b367rz,15,11,0|b367s0,16,6,1|bcl0zz,16,6,1|bcl100,15,11,0|bmcyfz,15,11,0|bmcyg0,16,6,1|bveszz,16,6,1|bvet00,15,11,0|c4gt3z,15,11,0|c4gt40,16,6,1|cdvmbz,16,6,1|cdvmc0,15,11,0|cnjufz,15,11,0|cnjug0,16,6,1|cwynnz,16,6,1|cwyno0,15,11,0|d6brrz,15,11,0|d6brs0,16,6,1|dfqkzz,16,6,1|dfql00,15,11,0|dp5jrz,15,11,0|dp5js0,16,6,1|dykczz,16,6,1|dykd00,15,11,0|e7vmfz,15,11,0|e7vmg0,16,6,1|ehcabz,16,6,1|ehcac0,15,11,0|eqlp3z,15,11,0|eqlp40,16,6,1|f047nz,16,6,1|f047o0,15,11,0|f9hbrz,15,11,0|f9hbs0,16,6,1|fiw4zz,16,6,1|fiw500,15,11,0|fsb3rz,15,11,0|fsb3s0,16,6,1|g1pwzz,16,6,1|g1px00,15,11,0|gb313z,15,11,0|gb3140,16,6,1|gkhubz,16,6,1|gkhuc0,15,11,0|gtuyfz,15,11,0|gtuyg0,16,6,1|h39rnz,16,6,1|h39ro0,15,11,0|hcmvrz,15,11,0|hcmvs0,16,6,1|hm1ozz,16,6,1|hm1p00,15,11,0|hvgnrz,15,11,0|hvgns0,16,6,1|i4vgzz,16,6,1|i4vh00,15,11,0|ie8l3z,15,11,0|ie8l40,16,6,1|innebz,16,6,1|innec0,15,11,0|ix0ifz,15,11,0|ix0ig0,16,6,1|j5ynnz,16,6,1|j5yno0,15,11,0|jfoqfz,15,11,0|jfoqg0,16,6,1|jquibz,16,6,1|jquic0,15,11,0|jyrrrz,15,11,0|jyrrs0,16,6,1|k9mfnz,16,6,1|k9mfo0,15,11,0|kh4vrz,15,11,0|kh4vs0,16,6,1|ksannz,16,6,1|ksano0,15,11,0|l07x3z,15,11,0|l07x40,16,6,1|lb0qbz,16,6,1|lb0qc0,15,11,0|lixzrz,15,11,0|lixzs0,16,6,1|ltqszz,16,6,1|ltqt00,15,11,0|m1o2fz,15,11,0|m1o2g0,16,6,1|mcgvnz,16,6,1|mcgvo0,15,11,0|mke53z,15,11,0|mke540,16,6,1|mv6ybz,16,6,1|mv6yc0,15,11,0|n347rz,15,11,0|n347s0,16,6,1|ne9znz,16,6,1|ne9zo0,15,11,0|nluafz,15,11,0|nluag0,16,6,1|nx02bz,16,6,1|nx02c0,15,11,0|o4kd3z,15,11,0|o4kd40,16,6,1|ofq4zz,16,6,1|ofq500,15,11,0|onnefz,15,11,0|onneg0,16,6,1|oyg7nz,16,6,1|oyg7o0,15,11,0|p6dh3z,15,11,0|p6dh40,16,6,1|ph6abz,16,6,1|ph6ac0,15,11,0|pp3jrz,15,11,0|pp3js0,16,6,1|pzwczz,16,6,1|pzwd00,15,11,0|q7tmfz,15,11,0|q7tmg0,16,6,1|qizebz,16,6,1|qizec0,15,11,0|qqjp3z,15,11,0|qqjp40,16,6,1|r1pgzz,16,6,1|r1ph00,15,11,0|r99rrz,15,11,0|r99rs0,16,6,1|rkfjnz,16,6,1|rkfjo0,15,11,0|rsct3z,15,11,0|rsct40,16,6,1|s35mbz,16,6,1|s35mc0,15,11,0|sb2vrz,15,11,0|sb2vs0,16,6,1|slvozz,16,6,1|slvp00,15,11,0|stsyfz,15,11,0|stsyg0,16,6,1|t4yqbz,16,6,1|t4yqc0,15,11,0|tcj13z,15,11,0|tcj140,16,6,1|tnoszz,16,6,1|tnot00,15,11,0|tv93rz,15,11,0|tv93s0,16,6,1|u6evnz,16,6,1|u6evo0,15,11,0|uec53z,15,11,0|uec540,16,6,1|up4ybz,16,6,1|up4yc0,15,11,0|ux27rz,15,11,0|ux27s0,16,6,1|v7v0zz,16,6,1|v7v100,15,11,0|vfsafz,15,11,0|vfsag0,16,6,1|vql3nz,16,6,1|vql3o0,15,11,0|vyid3z,15,11,0|vyid40,16,6,1|w9o4zz,16,6,1|w9o500,15,11,0|wh8frz,15,11,0|wh8fs0,16,6,1|wse7nz,16,6,1|wse7o0,15,11,0|wzyifz,15,11,0|wzyig0,16,6,1|xb4abz,16,6,1|xb4ac0,15,11,0|xj1jrz,15,11,0|xj1js0,16,6,1|xtuczz,16,6,1|xtud00,15,11,0|y1rmfz,15,11,0|y1rmg0,16,6,1|yckfnz,16,6,1|yckfo0,15,11,0|ykhp3z,15,11,0|ykhp40,16,6,1|yvngzz,16,6,1|yvnh00,15,11,0|z37rrz,15,11,0|z37rs0,16,6,1|zedjnz,16,6,1|zedjo0,15,11,0","Asia/Dhaka|,0,231,0|-15r1q2s,77,232,0|-eqtpox,77,232,0|-eqtpow,109,229,0|-ef78q1,109,229,0|-ef78q0,108,228,0|-e9lba1,108,228,0|-e9lba0,109,229,0|-9j0ne1,109,229,0|-9j0ne0,96,196,0|klhwjz,96,196,0|klhwk0,91,193,1|kvj0jz,91,193,1|kvj0k0,96,196,0","Asia/Dili|,0,233,0|-u9s4l8,89,191,0|-ejfac1,89,191,0|-ejfac0,107,224,0|3b0hnz,107,224,0|3b0ho0,89,191,0|g0zlrz,89,191,0|g0zls0,107,224,0","Asia/Dubai|,0,234,0|-q3gnko,105,209,0","Asia/Dushanbe|,0,235,0|-nu18qo,92,194,0|-kmr9w1,92,194,0|-kmr9w0,96,196,0|5vaxzz,96,196,0|5vay00,91,193,1|64pr7z,91,193,1|64pr80,96,196,0|6e2vbz,96,196,0|6e2vc0,91,193,1|6nhojz,91,193,1|6nhok0,96,196,0|6wusnz,96,196,0|6wuso0,91,193,1|769lvz,91,193,1|769lw0,96,196,0|7foknz,96,196,0|7foko0,91,193,1|7p1rjz,91,193,1|7p1rk0,96,196,0|7yesvz,96,196,0|7yesw0,91,193,1|87ru7z,91,193,1|87ru80,96,196,0|8h4vjz,96,196,0|8h4vk0,91,193,1|8qhwvz,91,193,1|8qhww0,96,196,0|8zuy7z,96,196,0|8zuy80,91,193,1|997zjz,91,193,1|997zk0,96,196,0|9il0vz,96,196,0|9il0w0,91,193,1|9ry27z,91,193,1|9ry280,96,196,0|a1b3jz,96,196,0|a1b3k0,91,193,1|aao4vz,91,193,1|aao4w0,96,196,0|ak167z,96,196,0|ak1680,91,193,1|atr67z,91,193,1|atr680,96,196,0|b347jz,96,196,0|b347k0,96,196,1|bbgabz,96,196,1|bbgac0,92,194,0","Asia/Famagusta|,0,236,0|-p4bqac,15,11,0|2r67rz,15,11,0|2r67s0,16,6,1|30j6bz,16,6,1|30j6c0,15,11,0|3bn93z,15,11,0|3bn940,16,6,1|3jb3nz,16,6,1|3jb3o0,15,11,0|3s9efz,15,11,0|3s9eg0,16,6,1|419ebz,16,6,1|419ec0,15,11,0|4azh3z,15,11,0|4azh40,16,6,1|4keabz,16,6,1|4keac0,15,11,0|4tpjrz,15,11,0|4tpjs0,16,6,1|532ibz,16,6,1|532ic0,15,11,0|5csl3z,15,11,0|5csl40,16,6,1|5lskzz,16,6,1|5lsl00,15,11,0|5v5p3z,15,11,0|5v5p40,16,6,1|64innz,16,6,1|64ino0,15,11,0|6dvrrz,15,11,0|6dvrs0,16,6,1|6n8qbz,16,6,1|6n8qc0,15,11,0|6wlufz,15,11,0|6wlug0,16,6,1|75yszz,16,6,1|75yt00,15,11,0|7fbx3z,15,11,0|7fbx40,16,6,1|7p1ubz,16,6,1|7p1uc0,15,11,0|7yeyfz,15,11,0|7yeyg0,16,6,1|87rwzz,16,6,1|87rx00,15,11,0|8h513z,15,11,0|8h5140,16,6,1|8qhznz,16,6,1|8qhzo0,15,11,0|8zv3rz,15,11,0|8zv3s0,16,6,1|9982bz,16,6,1|9982c0,15,11,0|9il6fz,15,11,0|9il6g0,16,6,1|9ry4zz,16,6,1|9ry500,15,11,0|a1b93z,15,11,0|a1b940,16,6,1|aao7nz,16,6,1|aao7o0,15,11,0|ak1brz,15,11,0|ak1bs0,16,6,1|atr8zz,16,6,1|atr900,15,11,0|b34d3z,15,11,0|b34d40,16,6,1|bchbnz,16,6,1|bchbo0,15,11,0|blufrz,15,11,0|blufs0,16,6,1|bv7ebz,16,6,1|bv7ec0,15,11,0|c4kifz,15,11,0|c4kig0,16,6,1|cdxgzz,16,6,1|cdxh00,15,11,0|cnal3z,15,11,0|cnal40,16,6,1|cwnjnz,16,6,1|cwnjo0,15,11,0|d60nrz,15,11,0|d60ns0,16,6,1|dfdmbz,16,6,1|dfdmc0,15,11,0|dp3p3z,15,11,0|dp3p40,16,6,1|dygnnz,16,6,1|dygno0,15,11,0|e7trrz,15,11,0|e7trs0,16,6,1|eh6qbz,16,6,1|eh6qc0,15,11,0|eqjufz,15,11,0|eqjug0,16,6,1|f1cyrz,16,6,1|f1cys0,15,11,0|f9a5fz,15,11,0|f9a5g0,16,6,1|fkg03z,16,6,1|fkg040,15,11,0|fs083z,15,11,0|fs0840,16,6,1|g362rz,16,6,1|g362s0,15,11,0|gaqarz,15,11,0|gaqas0,16,6,1|glw5fz,16,6,1|glw5g0,15,11,0|gttc3z,15,11,0|gttc40,16,6,1|h4m83z,16,6,1|h4m840,15,11,0|hcjerz,15,11,0|hcjes0,16,6,1|hncarz,16,6,1|hncas0,15,11,0|hv9hfz,15,11,0|hv9hg0,16,6,1|i6fc3z,16,6,1|i6fc40,15,11,0|idzk3z,15,11,0|idzk40,16,6,1|ip5erz,16,6,1|ip5es0,15,11,0|iwpmrz,15,11,0|iwpms0,16,6,1|j7vhfz,16,6,1|j7vhg0,15,11,0|jffpfz,15,11,0|jffpg0,16,6,1|jqlk3z,16,6,1|jqlk40,15,11,0|jyiqrz,15,11,0|jyiqs0,16,6,1|k9bmrz,16,6,1|k9bms0,15,11,0|kh8tfz,15,11,0|kh8tg0,16,6,1|ks1pfz,16,6,1|ks1pg0,15,11,0|kzyw3z,15,11,0|kzyw40,16,6,1|lb4qrz,16,6,1|lb4qs0,15,11,0|lioyrz,15,11,0|lioys0,16,6,1|ltutfz,16,6,1|ltutg0,15,11,0|m1f1fz,15,11,0|m1f1g0,16,6,1|mckw3z,16,6,1|mckw40,15,11,0|mki2rz,15,11,0|mki2s0,16,6,1|mvayrz,16,6,1|mvays0,15,11,0|n385fz,15,11,0|n385g0,16,6,1|ne11fz,16,6,1|ne11g0,15,11,0|nly83z,15,11,0|nly840,16,6,1|nwr43z,16,6,1|nwr440,15,11,0|o4oarz,15,11,0|o4oas0,16,6,1|od5jnz,16,6,1|od5jo0,100,6,0|oyk83z,100,6,0|oyk840,15,11,0|p64g3z,15,11,0|p64g40,16,6,1|phaarz,16,6,1|phaas0,15,11,0|pp7hfz,15,11,0|pp7hg0,16,6,1|q00dfz,16,6,1|q00dg0,15,11,0|q7xk3z,15,11,0|q7xk40,16,6,1|qiqg3z,16,6,1|qiqg40,15,11,0|qqnmrz,15,11,0|qqnms0,16,6,1|r1thfz,16,6,1|r1thg0,15,11,0|r9dpfz,15,11,0|r9dpg0,16,6,1|rkjk3z,16,6,1|rkjk40,15,11,0|rs3s3z,15,11,0|rs3s40,16,6,1|s39mrz,16,6,1|s39ms0,15,11,0|sb6tfz,15,11,0|sb6tg0,16,6,1|slzpfz,16,6,1|slzpg0,15,11,0|stww3z,15,11,0|stww40,16,6,1|t4ps3z,16,6,1|t4ps40,15,11,0|tcmyrz,15,11,0|tcmys0,16,6,1|tnfurz,16,6,1|tnfus0,15,11,0|tvd1fz,15,11,0|tvd1g0,16,6,1|u6iw3z,16,6,1|u6iw40,15,11,0|ue343z,15,11,0|ue3440,16,6,1|up8yrz,16,6,1|up8ys0,15,11,0|uwt6rz,15,11,0|uwt6s0,16,6,1|v7z1fz,16,6,1|v7z1g0,15,11,0|vfw83z,15,11,0|vfw840,16,6,1|vqp43z,16,6,1|vqp440,15,11,0|vymarz,15,11,0|vymas0,16,6,1|w9f6rz,16,6,1|w9f6s0,15,11,0|whcdfz,15,11,0|whcdg0,16,6,1|wsi83z,16,6,1|wsi840,15,11,0|x02g3z,15,11,0|x02g40,16,6,1|xb8arz,16,6,1|xb8as0,15,11,0|xisirz,15,11,0|xisis0,16,6,1|xtydfz,16,6,1|xtydg0,15,11,0|y1ilfz,15,11,0|y1ilg0,16,6,1|ycog3z,16,6,1|ycog40,15,11,0|yklmrz,15,11,0|yklms0,16,6,1|yveirz,16,6,1|yveis0,15,11,0|z3bpfz,15,11,0|z3bpg0,16,6,1|ze4lfz,16,6,1|ze4lg0,15,11,0","Asia/Gaza|,0,237,0|-1054x1s,15,11,0|-ffv401,15,11,0|-ffv400,16,6,1|-f9l6o1,16,6,1|-f9l6o0,15,11,0|-f765c1,15,11,0|-f765c0,16,6,1|-e6fxc1,16,6,1|-e6fxc0,15,11,0|-dyoao1,15,11,0|-dyoao0,16,6,1|-dno001,16,6,1|-dno000,15,11,0|-dfuio1,15,11,0|-dfuio0,16,6,1|-d4u801,16,6,1|-d4u800,15,11,0|-cwatc1,15,11,0|-cwatc0,16,6,1|-cm2ao1,16,6,1|-cm2ao0,15,11,0|-cdiw01,15,11,0|-cdiw00,16,6,1|-c3adc1,16,6,1|-c3adc0,15,11,0|-6lluw1,15,11,0|-6lluw0,16,6,1|-6e79o1,16,6,1|-6e79o0,15,11,0|-63alk1,15,11,0|-63alk0,16,6,1|-5vfcc1,16,6,1|-5vfcc0,15,11,0|-5kilg1,15,11,0|-5kilg0,16,6,1|-5cp1c1,16,6,1|-5cp1c0,15,11,0|-51otg1,15,11,0|-51otg0,16,6,1|-4tv9c1,16,6,1|-4tv9c0,15,11,0|-4iww41,15,11,0|-4iww40,16,6,1|-4b3c01,16,6,1|-4b3c00,15,11,0|-404ys1,15,11,0|-404ys0,16,6,1|-3sbeo1,16,6,1|-3sbeo0,15,11,0|-3hd1g1,15,11,0|-3hd1g0,16,6,1|-39jhc1,16,6,1|-39jhc0,15,11,0|-2yj9g1,15,11,0|-2yj9g0,16,6,1|-2qppc1,16,6,1|-2qppc0,15,11,0|-2frc41,15,11,0|-2frc40,16,6,1|-27xs01,16,6,1|-27xs00,15,11,0|-1wzes1,15,11,0|-1wzes0,16,6,1|-1p4001,16,6,1|-1p4000,15,11,0|-1e7hg1,15,11,0|-1e7hg0,16,6,1|-1ceto1,16,6,1|-1ceto0,110,11,0|2crp3z,110,11,0|2crp40,111,6,1|2ht3nz,111,6,1|2ht3o0,110,11,0|2rj6fz,110,11,0|2rj6g0,111,6,1|2ydebz,111,6,1|2ydec0,110,11,0|5iwyfz,110,11,0|5iwyg0,111,6,1|5l2qfz,111,6,1|5l2qg0,110,11,0|7hhp3z,110,11,0|7hhp40,111,6,1|7n93rz,111,6,1|7n93s0,110,11,0|7z4vrz,110,11,0|7z4vs0,111,6,1|86c2bz,111,6,1|86c2c0,110,11,0|8jnrrz,110,11,0|8jnrs0,111,6,1|8pf3nz,111,6,1|8pf3o0,110,11,0|90ql3z,110,11,0|90ql40,111,6,1|98i4zz,111,6,1|98i500,110,11,0|9jb3rz,110,11,0|9jb3s0,111,6,1|9qv8zz,111,6,1|9qv900,110,11,0|a342fz,110,11,0|a342g0,111,6,1|a9lbnz,111,6,1|a9lbo0,110,11,0|ak1brz,110,11,0|ak1bs0,111,6,1|aryfnz,111,6,1|aryfo0,110,11,0|b2refz,110,11,0|b2reg0,111,6,1|bb1gzz,111,6,1|bb1h00,110,11,0|blufrz,110,11,0|blufs0,111,6,1|bu4ibz,111,6,1|bu4ic0,110,11,0|c4trrz,110,11,0|c4trs0,111,6,1|ccukzz,111,6,1|ccul00,110,11,0|cnjufz,110,11,0|cnjug0,111,6,1|cv7ozz,111,6,1|cv7p00,110,11,0|d69x3z,110,11,0|d69x40,111,6,1|deaqbz,111,6,1|deaqc0,110,11,0|dkh13z,110,11,0|dkh140,15,11,0|dpcyfz,15,11,0|dpcyg0,16,6,1|dy02fz,16,6,1|dy02g0,15,11,0|e8313z,15,11,0|e83140,16,6,1|egq53z,16,6,1|egq540,15,11,0|eqt3rz,15,11,0|eqt3s0,16,6,1|ezg7rz,16,6,1|ezg7s0,15,11,0|fa93rz,15,11,0|fa93s0,16,6,1|fjm2bz,16,6,1|fjm2c0,15,11,0|ftc53z,15,11,0|ftc540,16,6,1|g2p3nz,16,6,1|g2p3o0,15,11,0|gc27rz,15,11,0|gc27s0,16,6,1|glf6bz,16,6,1|glf6c0,15,11,0|gusafz,15,11,0|gusag0,16,6,1|h458zz,16,6,1|h45900,15,11,0|hdid3z,15,11,0|hdid40,16,6,1|hmvbnz,16,6,1|hmvbo0,15,11,0|hw8frz,15,11,0|hw8fs0,16,6,1|i4vjrz,16,6,1|i4vjs0,15,11,0|ieyifz,15,11,0|ieyig0,16,6,1|int3vz,16,6,1|int3w0,15,11,0|ix0ifz,15,11,0|ix0ig0,16,6,1|j5ynnz,16,6,1|j5yno0,15,11,0|jfsfrz,15,11,0|jfsfs0,16,6,1|joa2jz,16,6,1|joa2k0,15,11,0|jyet3z,15,11,0|jyet40,16,6,1|k6bwzz,16,6,1|k6bx00,15,11,0|kh4vrz,15,11,0|kh4vs0,16,6,1|kpf13z,16,6,1|kpf140,15,11,0|kzwt5n,15,11,0|kzwt5o,16,6,1|l6yfnz,16,6,1|l6yfo0,15,11,0|lixztn,15,11,0|lixzto,16,6,1|lp7ubz,16,6,1|lp7uc0,15,11,0|m1o2fz,15,11,0|m1o2g0,16,6,1|mao53z,16,6,1|mao540,15,11,0|mke53z,15,11,0|mke540,16,6,1|mtr3nz,16,6,1|mtr3o0,15,11,0|n347rz,15,11,0|n347s0,16,6,1|ndx0zz,16,6,1|ndx100,15,11,0|nlw53z,15,11,0|nlw540,16,6,1|nwn6fz,16,6,1|nwn6g0,15,11,0|o4majz,15,11,0|o4mak0,16,6,1|ofs2fz,16,6,1|ofs2g0,15,11,0|oncd7z,15,11,0|oncd80,16,6,1|oyi53z,16,6,1|oyi540,15,11,0|p62fvz,15,11,0|p62fw0,16,6,1|ph87rz,16,6,1|ph87s0,15,11,0|pp3jrz,15,11,0|pp3js0,16,6,1|pzy7nz,16,6,1|pzy7o0,15,11,0|q7vh3z,15,11,0|q7vh40,16,6,1|qiod3z,16,6,1|qiod40,15,11,0|qqljrz,15,11,0|qqljs0,16,6,1|r1refz,16,6,1|r1reg0,15,11,0|r9bmfz,15,11,0|r9bmg0,16,6,1|rkhh3z,16,6,1|rkhh40,15,11,0|rs1p3z,15,11,0|rs1p40,16,6,1|s37jrz,16,6,1|s37js0,15,11,0|sb4qfz,15,11,0|sb4qg0,16,6,1|slxmfz,16,6,1|slxmg0,15,11,0|stut3z,15,11,0|stut40,16,6,1|t4np3z,16,6,1|t4np40,15,11,0|tckvrz,15,11,0|tckvs0,16,6,1|tndrrz,16,6,1|tndrs0,15,11,0|tvayfz,15,11,0|tvayg0,16,6,1|u6gt3z,16,6,1|u6gt40,15,11,0|ue113z,15,11,0|ue1140,16,6,1|up6vrz,16,6,1|up6vs0,15,11,0|uwr3rz,15,11,0|uwr3s0,16,6,1|v7wyfz,16,6,1|v7wyg0,15,11,0|vfu53z,15,11,0|vfu540,16,6,1|vqn13z,16,6,1|vqn140,15,11,0|vyk7rz,15,11,0|vyk7s0,16,6,1|w9d3rz,16,6,1|w9d3s0,15,11,0|whaafz,15,11,0|whaag0,16,6,1|wsg53z,16,6,1|wsg540,15,11,0|x00d3z,15,11,0|x00d40,16,6,1|xb67rz,16,6,1|xb67s0,15,11,0|xiqfrz,15,11,0|xiqfs0,16,6,1|xtwafz,16,6,1|xtwag0,15,11,0|y1gifz,15,11,0|y1gig0,16,6,1|ycmd3z,16,6,1|ycmd40,15,11,0|ykjjrz,15,11,0|ykjjs0,16,6,1|yvcfrz,16,6,1|yvcfs0,15,11,0|z39mfz,15,11,0|z39mg0,16,6,1|ze2ifz,16,6,1|ze2ig0,15,11,0","Asia/Hebron|,0,238,0|-1054x5z,15,11,0|-ffv401,15,11,0|-ffv400,16,6,1|-f9l6o1,16,6,1|-f9l6o0,15,11,0|-f765c1,15,11,0|-f765c0,16,6,1|-e6fxc1,16,6,1|-e6fxc0,15,11,0|-dyoao1,15,11,0|-dyoao0,16,6,1|-dno001,16,6,1|-dno000,15,11,0|-dfuio1,15,11,0|-dfuio0,16,6,1|-d4u801,16,6,1|-d4u800,15,11,0|-cwatc1,15,11,0|-cwatc0,16,6,1|-cm2ao1,16,6,1|-cm2ao0,15,11,0|-cdiw01,15,11,0|-cdiw00,16,6,1|-c3adc1,16,6,1|-c3adc0,15,11,0|-6lluw1,15,11,0|-6lluw0,16,6,1|-6e79o1,16,6,1|-6e79o0,15,11,0|-63alk1,15,11,0|-63alk0,16,6,1|-5vfcc1,16,6,1|-5vfcc0,15,11,0|-5kilg1,15,11,0|-5kilg0,16,6,1|-5cp1c1,16,6,1|-5cp1c0,15,11,0|-51otg1,15,11,0|-51otg0,16,6,1|-4tv9c1,16,6,1|-4tv9c0,15,11,0|-4iww41,15,11,0|-4iww40,16,6,1|-4b3c01,16,6,1|-4b3c00,15,11,0|-404ys1,15,11,0|-404ys0,16,6,1|-3sbeo1,16,6,1|-3sbeo0,15,11,0|-3hd1g1,15,11,0|-3hd1g0,16,6,1|-39jhc1,16,6,1|-39jhc0,15,11,0|-2yj9g1,15,11,0|-2yj9g0,16,6,1|-2qppc1,16,6,1|-2qppc0,15,11,0|-2frc41,15,11,0|-2frc40,16,6,1|-27xs01,16,6,1|-27xs00,15,11,0|-1wzes1,15,11,0|-1wzes0,16,6,1|-1p4001,16,6,1|-1p4000,15,11,0|-1e7hg1,15,11,0|-1e7hg0,16,6,1|-1ceto1,16,6,1|-1ceto0,110,11,0|2crp3z,110,11,0|2crp40,111,6,1|2ht3nz,111,6,1|2ht3o0,110,11,0|2rj6fz,110,11,0|2rj6g0,111,6,1|2ydebz,111,6,1|2ydec0,110,11,0|5iwyfz,110,11,0|5iwyg0,111,6,1|5l2qfz,111,6,1|5l2qg0,110,11,0|7hhp3z,110,11,0|7hhp40,111,6,1|7n93rz,111,6,1|7n93s0,110,11,0|7z4vrz,110,11,0|7z4vs0,111,6,1|86c2bz,111,6,1|86c2c0,110,11,0|8jnrrz,110,11,0|8jnrs0,111,6,1|8pf3nz,111,6,1|8pf3o0,110,11,0|90ql3z,110,11,0|90ql40,111,6,1|98i4zz,111,6,1|98i500,110,11,0|9jb3rz,110,11,0|9jb3s0,111,6,1|9qv8zz,111,6,1|9qv900,110,11,0|a342fz,110,11,0|a342g0,111,6,1|a9lbnz,111,6,1|a9lbo0,110,11,0|ak1brz,110,11,0|ak1bs0,111,6,1|aryfnz,111,6,1|aryfo0,110,11,0|b2refz,110,11,0|b2reg0,111,6,1|bb1gzz,111,6,1|bb1h00,110,11,0|blufrz,110,11,0|blufs0,111,6,1|bu4ibz,111,6,1|bu4ic0,110,11,0|c4trrz,110,11,0|c4trs0,111,6,1|ccukzz,111,6,1|ccul00,110,11,0|cnjufz,110,11,0|cnjug0,111,6,1|cv7ozz,111,6,1|cv7p00,110,11,0|d69x3z,110,11,0|d69x40,111,6,1|deaqbz,111,6,1|deaqc0,110,11,0|dkh13z,110,11,0|dkh140,15,11,0|dpcyfz,15,11,0|dpcyg0,16,6,1|dy02fz,16,6,1|dy02g0,15,11,0|e8313z,15,11,0|e83140,16,6,1|egq53z,16,6,1|egq540,15,11,0|eqt3rz,15,11,0|eqt3s0,16,6,1|ezg7rz,16,6,1|ezg7s0,15,11,0|fa93rz,15,11,0|fa93s0,16,6,1|fjm2bz,16,6,1|fjm2c0,15,11,0|ftc53z,15,11,0|ftc540,16,6,1|g2p3nz,16,6,1|g2p3o0,15,11,0|gc27rz,15,11,0|gc27s0,16,6,1|glf6bz,16,6,1|glf6c0,15,11,0|gusafz,15,11,0|gusag0,16,6,1|h458zz,16,6,1|h45900,15,11,0|hdid3z,15,11,0|hdid40,16,6,1|hmvbnz,16,6,1|hmvbo0,15,11,0|hw8frz,15,11,0|hw8fs0,16,6,1|i4vjrz,16,6,1|i4vjs0,15,11,0|ieyifz,15,11,0|ieyig0,16,6,1|int3vz,16,6,1|int3w0,15,11,0|ix0ifz,15,11,0|ix0ig0,16,6,1|j5ynnz,16,6,1|j5yno0,15,11,0|jfsfrz,15,11,0|jfsfs0,16,6,1|joa2jz,16,6,1|joa2k0,15,11,0|jyet3z,15,11,0|jyet40,16,6,1|k6hgzz,16,6,1|k6hh00,15,11,0|kh4vrz,15,11,0|kh4vs0,16,6,1|kpf13z,16,6,1|kpf140,15,11,0|kzuyfz,15,11,0|kzuyg0,16,6,1|l6yfnz,16,6,1|l6yfo0,15,11,0|lixztn,15,11,0|lixzto,16,6,1|lp7ubz,16,6,1|lp7uc0,15,11,0|lqpmfz,15,11,0|lqpmg0,16,6,1|lsaybz,16,6,1|lsayc0,15,11,0|m1o2fz,15,11,0|m1o2g0,16,6,1|mao53z,16,6,1|mao540,15,11,0|mke53z,15,11,0|mke540,16,6,1|mtr3nz,16,6,1|mtr3o0,15,11,0|n347rz,15,11,0|n347s0,16,6,1|ndx0zz,16,6,1|ndx100,15,11,0|nlw53z,15,11,0|nlw540,16,6,1|nwn6fz,16,6,1|nwn6g0,15,11,0|o4majz,15,11,0|o4mak0,16,6,1|ofs2fz,16,6,1|ofs2g0,15,11,0|oncd7z,15,11,0|oncd80,16,6,1|oyi53z,16,6,1|oyi540,15,11,0|p62fvz,15,11,0|p62fw0,16,6,1|ph87rz,16,6,1|ph87s0,15,11,0|pp3jrz,15,11,0|pp3js0,16,6,1|pzy7nz,16,6,1|pzy7o0,15,11,0|q7vh3z,15,11,0|q7vh40,16,6,1|qiod3z,16,6,1|qiod40,15,11,0|qqljrz,15,11,0|qqljs0,16,6,1|r1refz,16,6,1|r1reg0,15,11,0|r9bmfz,15,11,0|r9bmg0,16,6,1|rkhh3z,16,6,1|rkhh40,15,11,0|rs1p3z,15,11,0|rs1p40,16,6,1|s37jrz,16,6,1|s37js0,15,11,0|sb4qfz,15,11,0|sb4qg0,16,6,1|slxmfz,16,6,1|slxmg0,15,11,0|stut3z,15,11,0|stut40,16,6,1|t4np3z,16,6,1|t4np40,15,11,0|tckvrz,15,11,0|tckvs0,16,6,1|tndrrz,16,6,1|tndrs0,15,11,0|tvayfz,15,11,0|tvayg0,16,6,1|u6gt3z,16,6,1|u6gt40,15,11,0|ue113z,15,11,0|ue1140,16,6,1|up6vrz,16,6,1|up6vs0,15,11,0|uwr3rz,15,11,0|uwr3s0,16,6,1|v7wyfz,16,6,1|v7wyg0,15,11,0|vfu53z,15,11,0|vfu540,16,6,1|vqn13z,16,6,1|vqn140,15,11,0|vyk7rz,15,11,0|vyk7s0,16,6,1|w9d3rz,16,6,1|w9d3s0,15,11,0|whaafz,15,11,0|whaag0,16,6,1|wsg53z,16,6,1|wsg540,15,11,0|x00d3z,15,11,0|x00d40,16,6,1|xb67rz,16,6,1|xb67s0,15,11,0|xiqfrz,15,11,0|xiqfs0,16,6,1|xtwafz,16,6,1|xtwag0,15,11,0|y1gifz,15,11,0|y1gig0,16,6,1|ycmd3z,16,6,1|ycmd40,15,11,0|ykjjrz,15,11,0|ykjjs0,16,6,1|yvcfrz,16,6,1|yvcfs0,15,11,0|z39mfz,15,11,0|z39mg0,16,6,1|ze2ifz,16,6,1|ze2ig0,15,11,0","Asia/Ho_Chi_Minh|,0,239,0|-x56934,112,240,0|-umdqev,112,240,0|-umdqeu,91,193,0|-e3bkw1,91,193,0|-e3bkw0,89,191,0|-cxyro1,89,191,0|-cxyro0,107,224,0|-cp63o1,107,224,0|-cp63o0,91,193,0|-bvja41,91,193,0|-bvja40,89,191,0|-7kjq81,89,191,0|-7kjq80,91,193,0|-57xfk1,91,193,0|-57xfk0,89,191,0|2uaprz,89,191,0|2uaps0,91,193,0","Asia/Hong_Kong|,0,241,0|-y0i0s0,113,191,0|-ewdn81,113,191,0|-ewdn80,114,224,1|-eqtn81,114,224,1|-eqtn80,115,242,1|-emgia1,115,242,1|-emgia0,116,224,0|-cl7cs1,116,224,0|-cl7cs0,113,191,0|-cda8w1,113,191,0|-cda8w0,114,224,1|-c1r5u1,114,224,1|-c1r5u0,113,191,0|-buwv61,113,191,0|-buwv60,114,224,1|-bj1361,114,224,1|-bj1360,113,191,0|-bb3wi1,113,191,0|-bb3wi0,114,224,1|-b1qv61,114,224,1|-b1qv60,113,191,0|-attoi1,113,191,0|-attoi0,114,224,1|-aj0si1,114,224,1|-aj0si0,113,191,0|-ab3lu1,113,191,0|-ab3lu0,114,224,1|-a0apu1,114,224,1|-a0apu0,113,191,0|-9sdj61,113,191,0|-9sdj60,114,224,1|-9hkn61,114,224,1|-9hkn60,113,191,0|-99ahu1,113,191,0|-99ahu0,114,224,1|-8yhlu1,114,224,1|-8yhlu0,113,191,0|-8qkf61,113,191,0|-8qkf60,114,224,1|-8frly1,114,224,1|-8frly0,113,191,0|-88k9u1,113,191,0|-88k9u0,114,224,1|-7x1ja1,114,224,1|-7x1ja0,113,191,0|-7pu761,113,191,0|-7pu760,114,224,1|-7dyhy1,114,224,1|-7dyhy0,113,191,0|-7744i1,113,191,0|-7744i0,114,224,1|-6v8fa1,114,224,1|-6v8fa0,113,191,0|-6o1361,113,191,0|-6o1360,114,224,1|-6cicm1,114,224,1|-6cicm0,113,191,0|-65b0i1,113,191,0|-65b0i0,114,224,1|-5ts9y1,114,224,1|-5ts9y0,113,191,0|-5mkxu1,113,191,0|-5mkxu0,114,224,1|-5b27a1,114,224,1|-5b27a0,113,191,0|-53uv61,113,191,0|-53uv60,114,224,1|-4rz5y1,114,224,1|-4rz5y0,113,191,0|-4l4si1,113,191,0|-4l4si0,114,224,1|-4993a1,114,224,1|-4993a0,113,191,0|-42epu1,113,191,0|-42epu0,114,224,1|-3qj0m1,114,224,1|-3qj0m0,113,191,0|-3jboi1,113,191,0|-3jboi0,114,224,1|-37sxy1,114,224,1|-37sxy0,113,191,0|-30llu1,113,191,0|-30llu0,114,224,1|-2p2va1,114,224,1|-2p2va0,113,191,0|-2gfoi1,113,191,0|-2gfoi0,114,224,1|-272py1,114,224,1|-272py0,113,191,0|-1xplu1,113,191,0|-1xplu0,114,224,1|-1ocna1,114,224,1|-1ocna0,113,191,0|-1ezj61,113,191,0|-1ezj60,114,224,1|-159ly1,114,224,1|-159ly0,113,191,0|-vwhu1,113,191,0|-vwhu0,114,224,1|-mjja1,114,224,1|-mjja0,113,191,0|-d6f61,113,191,0|-d6f60,114,224,1|-3tgm1,114,224,1|-3tgm0,113,191,0|5jnhz,113,191,0|5jni0,114,224,1|ewm1z,114,224,1|ewm20,113,191,0|o9q5z,113,191,0|o9q60,114,224,1|xmopz,114,224,1|xmoq0,113,191,0|16zstz,113,191,0|16zsu0,114,224,1|1gpq1z,114,224,1|1gpq20,113,191,0|1q2u5z,113,191,0|1q2u60,114,224,1|1zfspz,114,224,1|1zfsq0,113,191,0|231i5z,113,191,0|231i60,114,224,1|2i5vdz,114,224,1|2i5ve0,113,191,0|2rizhz,113,191,0|2rizi0,114,224,1|30vy1z,114,224,1|30vy20,113,191,0|3a925z,113,191,0|3a9260,114,224,1|3jm0pz,114,224,1|3jm0q0,113,191,0|4vv4tz,113,191,0|4vv4u0,114,224,1|5457dz,114,224,1|5457e0,113,191,0","Asia/Hovd|,0,243,0|-xmcoz0,96,196,0|46anbz,96,196,0|46anc0,91,193,0|6wupvz,91,193,0|6wupw0,89,191,1|769j3z,89,191,1|769j40,91,193,0|7fohvz,91,193,0|7fohw0,89,191,1|7p1gfz,89,191,1|7p1gg0,91,193,0|7yekjz,91,193,0|7yekk0,89,191,1|87rj3z,89,191,1|87rj40,91,193,0|8h4n7z,91,193,0|8h4n80,89,191,1|8qhlrz,89,191,1|8qhls0,91,193,0|8zupvz,91,193,0|8zupw0,89,191,1|997ofz,89,191,1|997og0,91,193,0|9iksjz,91,193,0|9iksk0,89,191,1|9rxr3z,89,191,1|9rxr40,91,193,0|a1av7z,91,193,0|a1av80,89,191,1|aantrz,89,191,1|aants0,91,193,0|ak0xvz,91,193,0|ak0xw0,89,191,1|atqv3z,89,191,1|atqv40,91,193,0|b33z7z,91,193,0|b33z80,89,191,1|bcgxrz,89,191,1|bcgxs0,91,193,0|blu1vz,91,193,0|blu1w0,89,191,1|bv70fz,89,191,1|bv70g0,91,193,0|c4k4jz,91,193,0|c4k4k0,89,191,1|cdx33z,89,191,1|cdx340,91,193,0|cna77z,91,193,0|cna780,89,191,1|cwn5rz,89,191,1|cwn5s0,91,193,0|d609vz,91,193,0|d609w0,89,191,1|dfd8fz,89,191,1|dfd8g0,91,193,0|dp3b7z,91,193,0|dp3b80,89,191,1|dyg9rz,89,191,1|dyg9s0,91,193,0|e7tdvz,91,193,0|e7tdw0,89,191,1|eh6cfz,89,191,1|eh6cg0,91,193,0|eqjgjz,91,193,0|eqjgk0,89,191,1|ezwf3z,89,191,1|ezwf40,91,193,0|gcgsrz,91,193,0|gcgss0,89,191,1|gkdwnz,89,191,1|gkdwo0,91,193,0|gtr0rz,91,193,0|gtr0s0,89,191,1|h33zbz,89,191,1|h33zc0,91,193,0|hch3fz,91,193,0|hch3g0,89,191,1|hlu1zz,89,191,1|hlu200,91,193,0|hv763z,91,193,0|hv7640,89,191,1|i4k4nz,89,191,1|i4k4o0,91,193,0|idx8rz,91,193,0|idx8s0,89,191,1|ina7bz,89,191,1|ina7c0,91,193,0|iwnbfz,91,193,0|iwnbg0,89,191,1|j6d8nz,89,191,1|j6d8o0,91,193,0|nlvwrz,91,193,0|nlvws0,89,191,1|nv8prz,89,191,1|nv8ps0,91,193,0|o4lzfz,91,193,0|o4lzg0,89,191,1|odysfz,89,191,1|odysg0,91,193,0","Asia/Irkutsk|,0,244,0|-1ayylz5,117,244,0|-q28gn6,117,244,0|-q28gn5,91,193,0|-kmrfg1,91,193,0|-kmrfg0,89,191,0|5vasfz,89,191,0|5vasg0,107,224,1|64plnz,107,224,1|64plo0,89,191,0|6e2prz,89,191,0|6e2ps0,107,224,1|6nhizz,107,224,1|6nhj00,89,191,0|6wun3z,89,191,0|6wun40,107,224,1|769gbz,107,224,1|769gc0,89,191,0|7fof3z,89,191,0|7fof40,107,224,1|7p1lzz,107,224,1|7p1m00,89,191,0|7yenbz,89,191,0|7yenc0,107,224,1|87ronz,107,224,1|87roo0,89,191,0|8h4pzz,89,191,0|8h4q00,107,224,1|8qhrbz,107,224,1|8qhrc0,89,191,0|8zusnz,89,191,0|8zuso0,107,224,1|997tzz,107,224,1|997u00,89,191,0|9ikvbz,89,191,0|9ikvc0,107,224,1|9rxwnz,107,224,1|9rxwo0,89,191,0|a1axzz,89,191,0|a1ay00,107,224,1|aanzbz,107,224,1|aanzc0,89,191,0|ak10nz,89,191,0|ak10o0,107,224,1|atr0nz,107,224,1|atr0o0,89,191,0|b341zz,89,191,0|b34200,89,191,1|bch63z,89,191,1|bch640,91,193,0|bi8krz,91,193,0|bi8ks0,89,191,0|blu4nz,89,191,0|blu4o0,107,224,1|bv75zz,107,224,1|bv7600,89,191,0|c4k7bz,89,191,0|c4k7c0,107,224,1|cdx8nz,107,224,1|cdx8o0,89,191,0|cna9zz,89,191,0|cnaa00,107,224,1|cwnbbz,107,224,1|cwnbc0,89,191,0|d60cnz,89,191,0|d60co0,107,224,1|dfddzz,107,224,1|dfde00,89,191,0|dp3dzz,89,191,0|dp3e00,107,224,1|dzw9zz,107,224,1|dzwa00,89,191,0|e7tgnz,89,191,0|e7tgo0,107,224,1|eimcnz,107,224,1|eimco0,89,191,0|eqjjbz,89,191,0|eqjjc0,107,224,1|f1cfbz,107,224,1|f1cfc0,89,191,0|f99lzz,89,191,0|f99m00,107,224,1|fkfgnz,107,224,1|fkfgo0,89,191,0|frzonz,89,191,0|frzoo0,107,224,1|g35jbz,107,224,1|g35jc0,89,191,0|gaprbz,89,191,0|gaprc0,107,224,1|glvlzz,107,224,1|glvm00,89,191,0|gtssnz,89,191,0|gtsso0,107,224,1|h4lonz,107,224,1|h4loo0,89,191,0|hcivbz,89,191,0|hcivc0,107,224,1|hnbrbz,107,224,1|hnbrc0,89,191,0|hv8xzz,89,191,0|hv8y00,107,224,1|i6esnz,107,224,1|i6eso0,89,191,0|idz0nz,89,191,0|idz0o0,107,224,1|ip4vbz,107,224,1|ip4vc0,89,191,0|iwp3bz,89,191,0|iwp3c0,107,224,1|j7uxzz,107,224,1|j7uy00,89,191,0|jff5zz,89,191,0|jff600,107,224,1|jql0nz,107,224,1|jql0o0,89,191,0|jyi7bz,89,191,0|jyi7c0,107,224,1|k9b3bz,107,224,1|k9b3c0,89,191,0|kh89zz,89,191,0|kh8a00,107,224,1|ks15zz,107,224,1|ks1600,89,191,0|kzycnz,89,191,0|kzyco0,107,224,1|lb47bz,107,224,1|lb47c0,89,191,0|liofbz,89,191,0|liofc0,107,224,0|ne0f7z,107,224,0|ne0f80,89,191,0","Asia/Jakarta|,0,245,0|-1hftyg0,53,245,0|-o0bdpd,53,245,0|-o0bdpc,118,246,0|-jebgdd,118,246,0|-jebgdc,106,222,0|-ehxgu1,106,222,0|-ehxgu0,107,224,0|-co37o1,107,224,0|-co37o0,106,222,0|-bb5zi1,106,222,0|-bb5zi0,89,191,0|-a9m681,89,191,0|-a9m680,106,222,0|-34ru61,106,222,0|-34ru60,119,193,0","Asia/Jayapura|,0,247,0|-jebm20,107,224,0|-d7zvo1,107,224,0|-d7zvo0,120,248,0|-34rzq1,120,248,0|-34rzq0,121,224,0","Asia/Jerusalem|,0,249,0|-1ayy96u,122,250,0|-r50eih,122,250,0|-r50eig,110,11,0|-ffv401,110,11,0|-ffv400,111,6,1|-f9l6o1,111,6,1|-f9l6o0,110,11,0|-f765c1,110,11,0|-f765c0,111,6,1|-e6fxc1,111,6,1|-e6fxc0,110,11,0|-dyoao1,110,11,0|-dyoao0,111,6,1|-dno001,111,6,1|-dno000,110,11,0|-dfuio1,110,11,0|-dfuio0,111,6,1|-d4u801,111,6,1|-d4u800,110,11,0|-cwatc1,110,11,0|-cwatc0,111,6,1|-cm2ao1,111,6,1|-cm2ao0,110,11,0|-cdiw01,110,11,0|-cdiw00,111,6,1|-c3adc1,111,6,1|-c3adc0,110,11,0|-ba0o01,110,11,0|-ba0o00,123,209,1|-b4tmo1,123,209,1|-b4tmo0,111,6,1|-b1oo01,111,6,1|-b1oo00,110,11,0|-asdhc1,110,11,0|-asdhc0,111,6,1|-aiwqo1,111,6,1|-aiwqo0,110,11,0|-aadc01,110,11,0|-aadc00,111,6,1|-a2juo1,111,6,1|-a2juo0,110,11,0|-9sd6o1,110,11,0|-9sd6o0,111,6,1|-9gudc1,111,6,1|-9gudc0,110,11,0|-98k801,110,11,0|-98k800,111,6,1|-8z76o1,111,6,1|-8z76o0,110,11,0|-8q7401,110,11,0|-8q7400,111,6,1|-8i9xc1,111,6,1|-8i9xc0,110,11,0|-848dc1,110,11,0|-848dc0,111,6,1|-7zjuo1,111,6,1|-7zjuo0,110,11,0|-7liao1,110,11,0|-7liao0,111,6,1|-7gts01,111,6,1|-7gts00,110,11,0|-7356o1,110,11,0|-7356o0,111,6,1|-6x0tc1,111,6,1|-6x0tc0,110,11,0|-6m7xc1,110,11,0|-6m7xc0,111,6,1|-6enpc1,111,6,1|-6enpc0,110,11,0|2crp3z,110,11,0|2crp40,111,6,1|2ht3nz,111,6,1|2ht3o0,110,11,0|2rj6fz,110,11,0|2rj6g0,111,6,1|2ydebz,111,6,1|2ydec0,110,11,0|5iwyfz,110,11,0|5iwyg0,111,6,1|5l2qfz,111,6,1|5l2qg0,110,11,0|7hhp3z,110,11,0|7hhp40,111,6,1|7n93rz,111,6,1|7n93s0,110,11,0|7z4vrz,110,11,0|7z4vs0,111,6,1|86c2bz,111,6,1|86c2c0,110,11,0|8jnrrz,110,11,0|8jnrs0,111,6,1|8pf3nz,111,6,1|8pf3o0,110,11,0|90ql3z,110,11,0|90ql40,111,6,1|98i4zz,111,6,1|98i500,110,11,0|9jb3rz,110,11,0|9jb3s0,111,6,1|9qv8zz,111,6,1|9qv900,110,11,0|a342fz,110,11,0|a342g0,111,6,1|a9lbnz,111,6,1|a9lbo0,110,11,0|ak1brz,110,11,0|ak1bs0,111,6,1|aryfnz,111,6,1|aryfo0,110,11,0|b2refz,110,11,0|b2reg0,111,6,1|bb1gzz,111,6,1|bb1h00,110,11,0|blufrz,110,11,0|blufs0,111,6,1|bu4ibz,111,6,1|bu4ic0,110,11,0|c4trrz,110,11,0|c4trs0,111,6,1|ccukzz,111,6,1|ccul00,110,11,0|cnjufz,110,11,0|cnjug0,111,6,1|cv7ozz,111,6,1|cv7p00,110,11,0|d69x3z,110,11,0|d69x40,111,6,1|deaqbz,111,6,1|deaqc0,110,11,0|doa2fz,110,11,0|doa2g0,111,6,1|dxskzz,111,6,1|dxsl00,110,11,0|e7d3rz,110,11,0|e7d3s0,111,6,1|eggszz,111,6,1|eggt00,110,11,0|eq36fz,110,11,0|eq36g0,111,6,1|eytwzz,111,6,1|eytx00,110,11,0|f9jbzz,110,11,0|f9jc00,111,6,1|fhgfvz,111,6,1|fhgfw0,110,11,0|fszbzz,110,11,0|fszc00,111,6,1|g1z93z,111,6,1|g1z940,110,11,0|gbhx7z,110,11,0|gbhx80,111,6,1|gk4yfz,111,6,1|gk4yg0,110,11,0|gtph7z,110,11,0|gtph80,111,6,1|h3kyfz,111,6,1|h3kyg0,110,11,0|hcfjvz,110,11,0|hcfjw0,111,6,1|hm5h3z,111,6,1|hm5h40,110,11,0|hvrujz,110,11,0|hvruk0,111,6,1|i4evrz,111,6,1|i4evs0,110,11,0|ie8qnz,110,11,0|ie8qo0,111,6,1|io2d7z,111,6,1|io2d80,110,11,0|iwytbz,110,11,0|iwytc0,111,6,1|j6fh7z,111,6,1|j6fh80,110,11,0|jfovzz,110,11,0|jfow00,111,6,1|jofmjz,111,6,1|jofmk0,110,11,0|jyeynz,110,11,0|jyeyo0,111,6,1|k88l7z,111,6,1|k88l80,110,11,0|kh51bz,110,11,0|kh51c0,111,6,1|kqlp7z,111,6,1|kqlp80,110,11,0|kzv3zz,110,11,0|kzv400,111,6,1|l8lujz,111,6,1|l8luk0,110,11,0|liy5bz,110,11,0|liy5c0,111,6,1|lset7z,111,6,1|lset80,110,11,0|m1o7zz,110,11,0|m1o800,111,6,1|marx7z,111,6,1|marx80,110,11,0|mkeanz,110,11,0|mkeao0,111,6,1|mvat7z,111,6,1|mvat80,110,11,0|n34dbz,110,11,0|n34dc0,111,6,1|ne0vvz,111,6,1|ne0vw0,110,11,0|nlufzz,110,11,0|nlug00,111,6,1|nwqyjz,111,6,1|nwqyk0,110,11,0|o4kinz,110,11,0|o4kio0,111,6,1|oftzvz,111,6,1|oftzw0,110,11,0|onalbz,110,11,0|onalc0,111,6,1|oyk2jz,111,6,1|oyk2k0,110,11,0|p60nzz,110,11,0|p60o00,111,6,1|pha57z,111,6,1|pha580,110,11,0|pp3pbz,110,11,0|pp3pc0,111,6,1|q007vz,111,6,1|q007w0,110,11,0|q7trzz,110,11,0|q7ts00,111,6,1|qiqajz,111,6,1|qiqak0,110,11,0|qqjunz,110,11,0|qqjuo0,111,6,1|r1tbvz,111,6,1|r1tbw0,110,11,0|r99xbz,110,11,0|r99xc0,111,6,1|rkjejz,111,6,1|rkjek0,110,11,0|rrzzzz,110,11,0|rs0000,111,6,1|s39h7z,111,6,1|s39h80,110,11,0|sb31bz,110,11,0|sb31c0,111,6,1|slzjvz,111,6,1|slzjw0,110,11,0|stt3zz,110,11,0|stt400,111,6,1|t4pmjz,111,6,1|t4pmk0,110,11,0|tcj6nz,110,11,0|tcj6o0,111,6,1|tnfp7z,111,6,1|tnfp80,110,11,0|tv99bz,110,11,0|tv99c0,111,6,1|u6iqjz,111,6,1|u6iqk0,110,11,0|udzbzz,110,11,0|udzc00,111,6,1|up8t7z,111,6,1|up8t80,110,11,0|uwpenz,110,11,0|uwpeo0,111,6,1|v7yvvz,111,6,1|v7yvw0,110,11,0|vfsfzz,110,11,0|vfsg00,111,6,1|vqoyjz,111,6,1|vqoyk0,110,11,0|vyiinz,110,11,0|vyiio0,111,6,1|w9f17z,111,6,1|w9f180,110,11,0|wh8lbz,110,11,0|wh8lc0,111,6,1|wsi2jz,111,6,1|wsi2k0,110,11,0|wzynzz,110,11,0|wzyo00,111,6,1|xb857z,111,6,1|xb8580,110,11,0|xioqnz,110,11,0|xioqo0,111,6,1|xty7vz,111,6,1|xty7w0,110,11,0|y1etbz,110,11,0|y1etc0,111,6,1|ycoajz,111,6,1|ycoak0,110,11,0|ykhunz,110,11,0|ykhuo0,111,6,1|yved7z,111,6,1|yved80,110,11,0|z37xbz,110,11,0|z37xc0,111,6,1|ze4fvz,111,6,1|ze4fw0,110,11,0","Asia/Kabul|,0,251,0|-15r1m5c,105,209,0|-d1pkg1,105,209,0|-d1pkg0,124,252,0","Asia/Kamchatka|,0,253,0|-olrupo,90,192,0|-kmrqk1,90,192,0|-kmrqk0,102,200,0|5vahbz,102,200,0|5vahc0,103,201,1|64pajz,103,201,1|64pak0,102,200,0|6e2enz,102,200,0|6e2eo0,103,201,1|6nh7vz,103,201,1|6nh7w0,102,200,0|6wubzz,102,200,0|6wuc00,103,201,1|76957z,103,201,1|769580,102,200,0|7fo3zz,102,200,0|7fo400,103,201,1|7p1avz,103,201,1|7p1aw0,102,200,0|7yec7z,102,200,0|7yec80,103,201,1|87rdjz,103,201,1|87rdk0,102,200,0|8h4evz,102,200,0|8h4ew0,103,201,1|8qhg7z,103,201,1|8qhg80,102,200,0|8zuhjz,102,200,0|8zuhk0,103,201,1|997ivz,103,201,1|997iw0,102,200,0|9ikk7z,102,200,0|9ikk80,103,201,1|9rxljz,103,201,1|9rxlk0,102,200,0|a1amvz,102,200,0|a1amw0,103,201,1|aano7z,103,201,1|aano80,102,200,0|ak0pjz,102,200,0|ak0pk0,103,201,1|atqpjz,103,201,1|atqpk0,102,200,0|b33qvz,102,200,0|b33qw0,102,200,1|bcguzz,102,200,1|bcgv00,90,192,0|bi89nz,90,192,0|bi89o0,102,200,0|blttjz,102,200,0|blttk0,103,201,1|bv6uvz,103,201,1|bv6uw0,102,200,0|c4jw7z,102,200,0|c4jw80,103,201,1|cdwxjz,103,201,1|cdwxk0,102,200,0|cn9yvz,102,200,0|cn9yw0,103,201,1|cwn07z,103,201,1|cwn080,102,200,0|d601jz,102,200,0|d601k0,103,201,1|dfd2vz,103,201,1|dfd2w0,102,200,0|dp32vz,102,200,0|dp32w0,103,201,1|dzvyvz,103,201,1|dzvyw0,102,200,0|e7t5jz,102,200,0|e7t5k0,103,201,1|eim1jz,103,201,1|eim1k0,102,200,0|eqj87z,102,200,0|eqj880,103,201,1|f1c47z,103,201,1|f1c480,102,200,0|f99avz,102,200,0|f99aw0,103,201,1|fkf5jz,103,201,1|fkf5k0,102,200,0|frzdjz,102,200,0|frzdk0,103,201,1|g3587z,103,201,1|g35880,102,200,0|gapg7z,102,200,0|gapg80,103,201,1|glvavz,103,201,1|glvaw0,102,200,0|gtshjz,102,200,0|gtshk0,103,201,1|h4ldjz,103,201,1|h4ldk0,102,200,0|hcik7z,102,200,0|hcik80,103,201,1|hnbg7z,103,201,1|hnbg80,102,200,0|hv8mvz,102,200,0|hv8mw0,103,201,1|i6ehjz,103,201,1|i6ehk0,102,200,0|idypjz,102,200,0|idypk0,103,201,1|ip4k7z,103,201,1|ip4k80,102,200,0|iwos7z,102,200,0|iwos80,103,201,1|j7umvz,103,201,1|j7umw0,102,200,0|jfeuvz,102,200,0|jfeuw0,103,201,1|jqkpjz,103,201,1|jqkpk0,102,200,0|jyhw7z,102,200,0|jyhw80,103,201,1|k9as7z,103,201,1|k9as80,102,200,0|kh7yvz,102,200,0|kh7yw0,103,201,1|ks0uvz,103,201,1|ks0uw0,102,200,0|kzy1jz,102,200,0|kzy1k0,102,200,1|lb3yzz,102,200,1|lb3z00,90,192,0|lio6zz,90,192,0|lio700,102,200,0","Asia/Karachi|,0,254,0|-wvpb30,108,228,0|-e9lba1,108,228,0|-e9lba0,109,229,1|-cmya21,109,229,1|-cmya20,108,228,0|-9j0km1,108,228,0|-9j0km0,92,194,0|n33fz,92,194,0|n33g0,125,194,0|gu5u3z,125,194,0|gu5u40,126,196,1|h3isnz,126,196,1|h3iso0,125,194,0|k1qy3z,125,194,0|k1qy40,126,196,1|k9m7bz,126,196,1|k9m7c0,125,194,0|ki3u3z,125,194,0|ki3u40,126,196,1|kse4nz,126,196,1|kse4o0,125,194,0","Asia/Kathmandu|,0,255,0|-q3gt4s,108,228,0|8clspz,108,228,0|8clsq0,127,256,0","Asia/Khandyga|,0,257,0|-q4cjrp,89,191,0|-kmri81,89,191,0|-kmri80,107,224,0|5vapnz,107,224,0|5vapo0,93,195,1|64pivz,93,195,1|64piw0,107,224,0|6e2mzz,107,224,0|6e2n00,93,195,1|6nhg7z,93,195,1|6nhg80,107,224,0|6wukbz,107,224,0|6wukc0,93,195,1|769djz,93,195,1|769dk0,107,224,0|7focbz,107,224,0|7focc0,93,195,1|7p1j7z,93,195,1|7p1j80,107,224,0|7yekjz,107,224,0|7yekk0,93,195,1|87rlvz,93,195,1|87rlw0,107,224,0|8h4n7z,107,224,0|8h4n80,93,195,1|8qhojz,93,195,1|8qhok0,107,224,0|8zupvz,107,224,0|8zupw0,93,195,1|997r7z,93,195,1|997r80,107,224,0|9iksjz,107,224,0|9iksk0,93,195,1|9rxtvz,93,195,1|9rxtw0,107,224,0|a1av7z,107,224,0|a1av80,93,195,1|aanwjz,93,195,1|aanwk0,107,224,0|ak0xvz,107,224,0|ak0xw0,93,195,1|atqxvz,93,195,1|atqxw0,107,224,0|b33z7z,107,224,0|b33z80,107,224,1|bch3bz,107,224,1|bch3c0,89,191,0|bi8hzz,89,191,0|bi8i00,107,224,0|blu1vz,107,224,0|blu1w0,93,195,1|bv737z,93,195,1|bv7380,107,224,0|c4k4jz,107,224,0|c4k4k0,93,195,1|cdx5vz,93,195,1|cdx5w0,107,224,0|cna77z,107,224,0|cna780,93,195,1|cwn8jz,93,195,1|cwn8k0,107,224,0|d609vz,107,224,0|d609w0,93,195,1|dfdb7z,93,195,1|dfdb80,107,224,0|dp3b7z,107,224,0|dp3b80,93,195,1|dzw77z,93,195,1|dzw780,107,224,0|e7tdvz,107,224,0|e7tdw0,93,195,1|eim9vz,93,195,1|eim9w0,107,224,0|eqjgjz,107,224,0|eqjgk0,93,195,1|f1ccjz,93,195,1|f1cck0,107,224,0|f99j7z,107,224,0|f99j80,93,195,1|fkfdvz,93,195,1|fkfdw0,107,224,0|frzlvz,107,224,0|frzlw0,93,195,1|g35gjz,93,195,1|g35gk0,107,224,0|gapojz,107,224,0|gapok0,93,195,1|glvj7z,93,195,1|glvj80,107,224,0|gtspvz,107,224,0|gtspw0,93,195,1|h4llvz,93,195,1|h4llw0,107,224,0|hcisjz,107,224,0|hcisk0,93,195,1|hnbojz,93,195,1|hnbok0,107,224,0|hqrlnz,107,224,0|hqrlo0,93,195,0|hv8sfz,93,195,0|hv8sg0,90,192,1|i6en3z,90,192,1|i6en40,93,195,0|idyv3z,93,195,0|idyv40,90,192,1|ip4prz,90,192,1|ip4ps0,93,195,0|iwoxrz,93,195,0|iwoxs0,90,192,1|j7usfz,90,192,1|j7usg0,93,195,0|jff0fz,93,195,0|jff0g0,90,192,1|jqkv3z,90,192,1|jqkv40,93,195,0|jyi1rz,93,195,0|jyi1s0,90,192,1|k9axrz,90,192,1|k9axs0,93,195,0|kh84fz,93,195,0|kh84g0,90,192,1|ks10fz,90,192,1|ks10g0,93,195,0|kzy73z,93,195,0|kzy740,90,192,1|lb41rz,90,192,1|lb41s0,93,195,0|lio9rz,93,195,0|lio9s0,90,192,0|lreurz,90,192,0|lreus0,93,195,0|ne0cfz,93,195,0|ne0cg0,107,224,0","Asia/Kolkata|,0,258,0|-1oaa314,77,232,0|-1g6thox,77,232,0|-1g6thow,21,259,0|-xehavb,21,259,0|-xehava,110,228,0|-eqtom1,110,228,0|-eqtom0,109,229,1|-ef78q1,109,229,1|-ef78q0,110,228,0|-e9lba1,110,228,0|-e9lba0,109,229,1|-cmya21,109,229,1|-cmya20,110,228,0","Asia/Krasnoyarsk|,0,260,0|-q37l72,96,196,0|-kmrco1,96,196,0|-kmrco0,91,193,0|5vav7z,91,193,0|5vav80,89,191,1|64pofz,89,191,1|64pog0,91,193,0|6e2sjz,91,193,0|6e2sk0,89,191,1|6nhlrz,89,191,1|6nhls0,91,193,0|6wupvz,91,193,0|6wupw0,89,191,1|769j3z,89,191,1|769j40,91,193,0|7fohvz,91,193,0|7fohw0,89,191,1|7p1orz,89,191,1|7p1os0,91,193,0|7yeq3z,91,193,0|7yeq40,89,191,1|87rrfz,89,191,1|87rrg0,91,193,0|8h4srz,91,193,0|8h4ss0,89,191,1|8qhu3z,89,191,1|8qhu40,91,193,0|8zuvfz,91,193,0|8zuvg0,89,191,1|997wrz,89,191,1|997ws0,91,193,0|9iky3z,91,193,0|9iky40,89,191,1|9rxzfz,89,191,1|9rxzg0,91,193,0|a1b0rz,91,193,0|a1b0s0,89,191,1|aao23z,89,191,1|aao240,91,193,0|ak13fz,91,193,0|ak13g0,89,191,1|atr3fz,89,191,1|atr3g0,91,193,0|b344rz,91,193,0|b344s0,91,193,1|bch8vz,91,193,1|bch8w0,96,196,0|bi8njz,96,196,0|bi8nk0,91,193,0|blu7fz,91,193,0|blu7g0,89,191,1|bv78rz,89,191,1|bv78s0,91,193,0|c4ka3z,91,193,0|c4ka40,89,191,1|cdxbfz,89,191,1|cdxbg0,91,193,0|cnacrz,91,193,0|cnacs0,89,191,1|cwne3z,89,191,1|cwne40,91,193,0|d60ffz,91,193,0|d60fg0,89,191,1|dfdgrz,89,191,1|dfdgs0,91,193,0|dp3grz,91,193,0|dp3gs0,89,191,1|dzwcrz,89,191,1|dzwcs0,91,193,0|e7tjfz,91,193,0|e7tjg0,89,191,1|eimffz,89,191,1|eimfg0,91,193,0|eqjm3z,91,193,0|eqjm40,89,191,1|f1ci3z,89,191,1|f1ci40,91,193,0|f99orz,91,193,0|f99os0,89,191,1|fkfjfz,89,191,1|fkfjg0,91,193,0|frzrfz,91,193,0|frzrg0,89,191,1|g35m3z,89,191,1|g35m40,91,193,0|gapu3z,91,193,0|gapu40,89,191,1|glvorz,89,191,1|glvos0,91,193,0|gtsvfz,91,193,0|gtsvg0,89,191,1|h4lrfz,89,191,1|h4lrg0,91,193,0|hciy3z,91,193,0|hciy40,89,191,1|hnbu3z,89,191,1|hnbu40,91,193,0|hv90rz,91,193,0|hv90s0,89,191,1|i6evfz,89,191,1|i6evg0,91,193,0|idz3fz,91,193,0|idz3g0,89,191,1|ip4y3z,89,191,1|ip4y40,91,193,0|iwp63z,91,193,0|iwp640,89,191,1|j7v0rz,89,191,1|j7v0s0,91,193,0|jff8rz,91,193,0|jff8s0,89,191,1|jql3fz,89,191,1|jql3g0,91,193,0|jyia3z,91,193,0|jyia40,89,191,1|k9b63z,89,191,1|k9b640,91,193,0|kh8crz,91,193,0|kh8cs0,89,191,1|ks18rz,89,191,1|ks18s0,91,193,0|kzyffz,91,193,0|kzyfg0,89,191,1|lb4a3z,89,191,1|lb4a40,91,193,0|lioi3z,91,193,0|lioi40,89,191,0|ne0hzz,89,191,0|ne0i00,91,193,0","Asia/Kuala_Lumpur|,0,261,0|-100ew5y,85,262,0|-xphpwe,85,262,0|-xphpwd,91,193,0|-jb6gs1,91,193,0|-jb6gs0,118,246,1|-hquppd,118,246,1|-hquppc,118,246,0|-esddpd,118,246,0|-esddpc,106,222,0|-ejqa61,106,222,0|-ejqa60,107,224,0|-conl01,107,224,0|-conl00,106,222,0|69g35z,106,222,0|69g360,89,191,0","Asia/Kuching|,0,263,0|-mvof3k,106,222,0|-jb6i61,106,222,0|-jb6i60,89,191,0|-hwgm81,89,191,0|-hwgm80,128,264,1|-hrs4hd,128,264,1|-hrs4hc,89,191,0|-hdmu81,89,191,0|-hdmu80,128,264,1|-h8ychd,128,264,1|-h8ychc,89,191,0|-guuww1,89,191,0|-guuww0,128,264,1|-gq6f5d,128,264,1|-gq6f5c,89,191,0|-gc2zk1,89,191,0|-gc2zk0,128,264,1|-g7ehtd,128,264,1|-g7ehtc,89,191,0|-ftb281,89,191,0|-ftb280,128,264,1|-fomkhd,128,264,1|-fomkhc,89,191,0|-faha81,89,191,0|-faha80,128,264,1|-f5sshd,128,264,1|-f5sshc,89,191,0|-erpcw1,89,191,0|-erpcw0,128,264,1|-en0v5d,128,264,1|-en0v5c,89,191,0|-ejqbk1,89,191,0|-ejqbk0,107,224,0|-conl01,107,224,0|-conl00,89,191,0","Asia/Kuwait|,0,203,0|-bwgbbg,100,6,0","Asia/Macau|,0,265,0|-y0i2cy,45,191,0|-emm3o1,45,191,0|-emm3o0,107,224,0|-efxfs1,107,224,0|-efxfs0,93,195,1|-e5lak1,93,195,1|-e5lak0,107,224,0|-dx5ig1,107,224,0|-dx5ig0,93,195,1|-dpa981,93,195,1|-dpa980,107,224,0|-cnoec1,107,224,0|-cnoec0,45,191,0|-ccrt01,45,191,0|-ccrt00,46,224,1|-c4wh01,46,224,1|-c4wh00,45,191,0|-buk901,45,191,0|-buk900,46,224,1|-bizl01,46,224,1|-bizl00,45,191,0|-bb2ec1,45,191,0|-bb2ec0,46,224,1|-b1pd01,46,224,1|-b1pd00,45,191,0|-atu101,45,191,0|-atu100,46,224,1|-aj1501,46,224,1|-aj1500,45,191,0|-ab3yc1,45,191,0|-ab3yc0,46,224,1|-a0b2c1,46,224,1|-a0b2c0,45,191,0|-9sdvo1,45,191,0|-9sdvo0,46,224,1|-9hj501,46,224,1|-9hj500,45,191,0|-99auc1,45,191,0|-99auc0,46,224,1|-8yhyc1,46,224,1|-8yhyc0,45,191,0|-8qkro1,45,191,0|-8qkro0,46,224,1|-8frvo1,46,224,1|-8frvo0,45,191,0|-88kmc1,45,191,0|-88kmc0,46,224,1|-7x1t01,46,224,1|-7x1t00,45,191,0|-7pujo1,45,191,0|-7pujo0,46,224,1|-7dyro1,46,224,1|-7dyro0,45,191,0|-774h01,45,191,0|-774h00,46,224,1|-6v8fa1,46,224,1|-6v8fa0,45,191,0|-6o1361,45,191,0|-6o1360,46,224,1|-6cicm1,46,224,1|-6cicm0,45,191,0|-65b0i1,45,191,0|-65b0i0,46,224,1|-5ts9y1,46,224,1|-5ts9y0,45,191,0|-5mkxu1,45,191,0|-5mkxu0,46,224,1|-5b27a1,46,224,1|-5b27a0,45,191,0|-53uv61,45,191,0|-53uv60,46,224,1|-4rz5y1,46,224,1|-4rz5y0,45,191,0|-4l4si1,45,191,0|-4l4si0,46,224,1|-4993a1,46,224,1|-4993a0,45,191,0|-42epu1,45,191,0|-42epu0,46,224,1|-3qj0m1,46,224,1|-3qj0m0,45,191,0|-3jboi1,45,191,0|-3jboi0,46,224,1|-37sxy1,46,224,1|-37sxy0,45,191,0|-30llu1,45,191,0|-30llu0,46,224,1|-2p2va1,46,224,1|-2p2va0,45,191,0|-2gfoi1,45,191,0|-2gfoi0,46,224,1|-272sq1,46,224,1|-272sq0,45,191,0|-1xplu1,45,191,0|-1xplu0,46,224,1|-1ocq21,46,224,1|-1ocq20,45,191,0|-1ezj61,45,191,0|-1ezj60,46,224,1|-159ly1,46,224,1|-159ly0,45,191,0|-vwhu1,45,191,0|-vwhu0,46,224,1|-mjja1,46,224,1|-mjja0,45,191,0|-d6f61,45,191,0|-d6f60,46,224,1|-3tgm1,46,224,1|-3tgm0,45,191,0|5jnhz,45,191,0|5jni0,46,224,1|ewm1z,46,224,1|ewm20,45,191,0|o9q5z,45,191,0|o9q60,46,224,1|xmopz,46,224,1|xmoq0,45,191,0|16zstz,45,191,0|16zsu0,46,224,1|1gpq1z,46,224,1|1gpq20,45,191,0|1q2u5z,45,191,0|1q2u60,46,224,1|1zfspz,46,224,1|1zfsq0,45,191,0|231i5z,45,191,0|231i60,46,224,1|2i5vdz,46,224,1|2i5ve0,45,191,0|2rizhz,45,191,0|2rizi0,46,224,1|30vy1z,46,224,1|30vy20,45,191,0|3a925z,45,191,0|3a9260,46,224,1|3jm0pz,46,224,1|3jm0q0,45,191,0|4vv4tz,45,191,0|4vv4u0,46,224,1|5457dz,46,224,1|5457e0,45,191,0","Asia/Magadan|,0,266,0|-nu1nxc,93,195,0|-kmrns1,93,195,0|-kmrns0,90,192,0|5vak3z,90,192,0|5vak40,102,200,1|64pdbz,102,200,1|64pdc0,90,192,0|6e2hfz,90,192,0|6e2hg0,102,200,1|6nhanz,102,200,1|6nhao0,90,192,0|6wuerz,90,192,0|6wues0,102,200,1|7697zz,102,200,1|769800,90,192,0|7fo6rz,90,192,0|7fo6s0,102,200,1|7p1dnz,102,200,1|7p1do0,90,192,0|7yeezz,90,192,0|7yef00,102,200,1|87rgbz,102,200,1|87rgc0,90,192,0|8h4hnz,90,192,0|8h4ho0,102,200,1|8qhizz,102,200,1|8qhj00,90,192,0|8zukbz,90,192,0|8zukc0,102,200,1|997lnz,102,200,1|997lo0,90,192,0|9ikmzz,90,192,0|9ikn00,102,200,1|9rxobz,102,200,1|9rxoc0,90,192,0|a1apnz,90,192,0|a1apo0,102,200,1|aanqzz,102,200,1|aanr00,90,192,0|ak0sbz,90,192,0|ak0sc0,102,200,1|atqsbz,102,200,1|atqsc0,90,192,0|b33tnz,90,192,0|b33to0,90,192,1|bcgxrz,90,192,1|bcgxs0,93,195,0|bi8cfz,93,195,0|bi8cg0,90,192,0|bltwbz,90,192,0|bltwc0,102,200,1|bv6xnz,102,200,1|bv6xo0,90,192,0|c4jyzz,90,192,0|c4jz00,102,200,1|cdx0bz,102,200,1|cdx0c0,90,192,0|cna1nz,90,192,0|cna1o0,102,200,1|cwn2zz,102,200,1|cwn300,90,192,0|d604bz,90,192,0|d604c0,102,200,1|dfd5nz,102,200,1|dfd5o0,90,192,0|dp35nz,90,192,0|dp35o0,102,200,1|dzw1nz,102,200,1|dzw1o0,90,192,0|e7t8bz,90,192,0|e7t8c0,102,200,1|eim4bz,102,200,1|eim4c0,90,192,0|eqjazz,90,192,0|eqjb00,102,200,1|f1c6zz,102,200,1|f1c700,90,192,0|f99dnz,90,192,0|f99do0,102,200,1|fkf8bz,102,200,1|fkf8c0,90,192,0|frzgbz,90,192,0|frzgc0,102,200,1|g35azz,102,200,1|g35b00,90,192,0|gapizz,90,192,0|gapj00,102,200,1|glvdnz,102,200,1|glvdo0,90,192,0|gtskbz,90,192,0|gtskc0,102,200,1|h4lgbz,102,200,1|h4lgc0,90,192,0|hcimzz,90,192,0|hcin00,102,200,1|hnbizz,102,200,1|hnbj00,90,192,0|hv8pnz,90,192,0|hv8po0,102,200,1|i6ekbz,102,200,1|i6ekc0,90,192,0|idysbz,90,192,0|idysc0,102,200,1|ip4mzz,102,200,1|ip4n00,90,192,0|iwouzz,90,192,0|iwov00,102,200,1|j7upnz,102,200,1|j7upo0,90,192,0|jfexnz,90,192,0|jfexo0,102,200,1|jqksbz,102,200,1|jqksc0,90,192,0|jyhyzz,90,192,0|jyhz00,102,200,1|k9auzz,102,200,1|k9av00,90,192,0|kh81nz,90,192,0|kh81o0,102,200,1|ks0xnz,102,200,1|ks0xo0,90,192,0|kzy4bz,90,192,0|kzy4c0,102,200,1|lb3yzz,102,200,1|lb3z00,90,192,0|lio6zz,90,192,0|lio700,102,200,0|ne06vz,102,200,0|ne06w0,93,195,0|o63gfz,93,195,0|o63gg0,90,192,0","Asia/Makassar|,0,267,0|-q3gzg0,21,267,0|-jebi41,21,267,0|-jebi40,89,191,0|-ek3a81,89,191,0|-ek3a80,107,224,0|-co37o1,107,224,0|-co37o0,129,191,0","Asia/Manila|,0,268,0|-1t8ix2o,0,269,0|-10va3qp,0,269,0|-10va3qo,51,191,0|-hb5y81,51,191,0|-hb5y80,57,224,1|-h6fno1,57,224,1|-h6fno0,51,191,0|-efxa81,51,191,0|-efxa80,116,224,0|-d4ux01,116,224,0|-d4ux00,51,191,0|-87fsw1,51,191,0|-87fsw0,57,224,1|-83bqc1,57,224,1|-83bqc0,51,191,0|4aen3z,51,191,0|4aen40,57,224,1|4jtgbz,57,224,1|4jtgc0,51,191,0","Asia/Muscat|,0,234,0|-q3gnko,105,209,0","Asia/Nicosia|,0,270,0|-p4bq6g,15,11,0|2r67rz,15,11,0|2r67s0,16,6,1|30j6bz,16,6,1|30j6c0,15,11,0|3bn93z,15,11,0|3bn940,16,6,1|3jb3nz,16,6,1|3jb3o0,15,11,0|3s9efz,15,11,0|3s9eg0,16,6,1|419ebz,16,6,1|419ec0,15,11,0|4azh3z,15,11,0|4azh40,16,6,1|4keabz,16,6,1|4keac0,15,11,0|4tpjrz,15,11,0|4tpjs0,16,6,1|532ibz,16,6,1|532ic0,15,11,0|5csl3z,15,11,0|5csl40,16,6,1|5lskzz,16,6,1|5lsl00,15,11,0|5v5p3z,15,11,0|5v5p40,16,6,1|64innz,16,6,1|64ino0,15,11,0|6dvrrz,15,11,0|6dvrs0,16,6,1|6n8qbz,16,6,1|6n8qc0,15,11,0|6wlufz,15,11,0|6wlug0,16,6,1|75yszz,16,6,1|75yt00,15,11,0|7fbx3z,15,11,0|7fbx40,16,6,1|7p1ubz,16,6,1|7p1uc0,15,11,0|7yeyfz,15,11,0|7yeyg0,16,6,1|87rwzz,16,6,1|87rx00,15,11,0|8h513z,15,11,0|8h5140,16,6,1|8qhznz,16,6,1|8qhzo0,15,11,0|8zv3rz,15,11,0|8zv3s0,16,6,1|9982bz,16,6,1|9982c0,15,11,0|9il6fz,15,11,0|9il6g0,16,6,1|9ry4zz,16,6,1|9ry500,15,11,0|a1b93z,15,11,0|a1b940,16,6,1|aao7nz,16,6,1|aao7o0,15,11,0|ak1brz,15,11,0|ak1bs0,16,6,1|atr8zz,16,6,1|atr900,15,11,0|b34d3z,15,11,0|b34d40,16,6,1|bchbnz,16,6,1|bchbo0,15,11,0|blufrz,15,11,0|blufs0,16,6,1|bv7ebz,16,6,1|bv7ec0,15,11,0|c4kifz,15,11,0|c4kig0,16,6,1|cdxgzz,16,6,1|cdxh00,15,11,0|cnal3z,15,11,0|cnal40,16,6,1|cwnjnz,16,6,1|cwnjo0,15,11,0|d60nrz,15,11,0|d60ns0,16,6,1|dfdmbz,16,6,1|dfdmc0,15,11,0|dp3p3z,15,11,0|dp3p40,16,6,1|dygnnz,16,6,1|dygno0,15,11,0|e7trrz,15,11,0|e7trs0,16,6,1|eh6qbz,16,6,1|eh6qc0,15,11,0|eqjufz,15,11,0|eqjug0,16,6,1|f1cyrz,16,6,1|f1cys0,15,11,0|f9a5fz,15,11,0|f9a5g0,16,6,1|fkg03z,16,6,1|fkg040,15,11,0|fs083z,15,11,0|fs0840,16,6,1|g362rz,16,6,1|g362s0,15,11,0|gaqarz,15,11,0|gaqas0,16,6,1|glw5fz,16,6,1|glw5g0,15,11,0|gttc3z,15,11,0|gttc40,16,6,1|h4m83z,16,6,1|h4m840,15,11,0|hcjerz,15,11,0|hcjes0,16,6,1|hncarz,16,6,1|hncas0,15,11,0|hv9hfz,15,11,0|hv9hg0,16,6,1|i6fc3z,16,6,1|i6fc40,15,11,0|idzk3z,15,11,0|idzk40,16,6,1|ip5erz,16,6,1|ip5es0,15,11,0|iwpmrz,15,11,0|iwpms0,16,6,1|j7vhfz,16,6,1|j7vhg0,15,11,0|jffpfz,15,11,0|jffpg0,16,6,1|jqlk3z,16,6,1|jqlk40,15,11,0|jyiqrz,15,11,0|jyiqs0,16,6,1|k9bmrz,16,6,1|k9bms0,15,11,0|kh8tfz,15,11,0|kh8tg0,16,6,1|ks1pfz,16,6,1|ks1pg0,15,11,0|kzyw3z,15,11,0|kzyw40,16,6,1|lb4qrz,16,6,1|lb4qs0,15,11,0|lioyrz,15,11,0|lioys0,16,6,1|ltutfz,16,6,1|ltutg0,15,11,0|m1f1fz,15,11,0|m1f1g0,16,6,1|mckw3z,16,6,1|mckw40,15,11,0|mki2rz,15,11,0|mki2s0,16,6,1|mvayrz,16,6,1|mvays0,15,11,0|n385fz,15,11,0|n385g0,16,6,1|ne11fz,16,6,1|ne11g0,15,11,0|nly83z,15,11,0|nly840,16,6,1|nwr43z,16,6,1|nwr440,15,11,0|o4oarz,15,11,0|o4oas0,16,6,1|ofu5fz,16,6,1|ofu5g0,15,11,0|onedfz,15,11,0|onedg0,16,6,1|oyk83z,16,6,1|oyk840,15,11,0|p64g3z,15,11,0|p64g40,16,6,1|phaarz,16,6,1|phaas0,15,11,0|pp7hfz,15,11,0|pp7hg0,16,6,1|q00dfz,16,6,1|q00dg0,15,11,0|q7xk3z,15,11,0|q7xk40,16,6,1|qiqg3z,16,6,1|qiqg40,15,11,0|qqnmrz,15,11,0|qqnms0,16,6,1|r1thfz,16,6,1|r1thg0,15,11,0|r9dpfz,15,11,0|r9dpg0,16,6,1|rkjk3z,16,6,1|rkjk40,15,11,0|rs3s3z,15,11,0|rs3s40,16,6,1|s39mrz,16,6,1|s39ms0,15,11,0|sb6tfz,15,11,0|sb6tg0,16,6,1|slzpfz,16,6,1|slzpg0,15,11,0|stww3z,15,11,0|stww40,16,6,1|t4ps3z,16,6,1|t4ps40,15,11,0|tcmyrz,15,11,0|tcmys0,16,6,1|tnfurz,16,6,1|tnfus0,15,11,0|tvd1fz,15,11,0|tvd1g0,16,6,1|u6iw3z,16,6,1|u6iw40,15,11,0|ue343z,15,11,0|ue3440,16,6,1|up8yrz,16,6,1|up8ys0,15,11,0|uwt6rz,15,11,0|uwt6s0,16,6,1|v7z1fz,16,6,1|v7z1g0,15,11,0|vfw83z,15,11,0|vfw840,16,6,1|vqp43z,16,6,1|vqp440,15,11,0|vymarz,15,11,0|vymas0,16,6,1|w9f6rz,16,6,1|w9f6s0,15,11,0|whcdfz,15,11,0|whcdg0,16,6,1|wsi83z,16,6,1|wsi840,15,11,0|x02g3z,15,11,0|x02g40,16,6,1|xb8arz,16,6,1|xb8as0,15,11,0|xisirz,15,11,0|xisis0,16,6,1|xtydfz,16,6,1|xtydg0,15,11,0|y1ilfz,15,11,0|y1ilg0,16,6,1|ycog3z,16,6,1|ycog40,15,11,0|yklmrz,15,11,0|yklms0,16,6,1|yveirz,16,6,1|yveis0,15,11,0|z3bpfz,15,11,0|z3bpg0,16,6,1|ze4lfz,16,6,1|ze4lg0,15,11,0","Asia/Novokuznetsk|,0,271,0|-nu36tc,96,196,0|-kmrco1,96,196,0|-kmrco0,91,193,0|5vav7z,91,193,0|5vav80,89,191,1|64pofz,89,191,1|64pog0,91,193,0|6e2sjz,91,193,0|6e2sk0,89,191,1|6nhlrz,89,191,1|6nhls0,91,193,0|6wupvz,91,193,0|6wupw0,89,191,1|769j3z,89,191,1|769j40,91,193,0|7fohvz,91,193,0|7fohw0,89,191,1|7p1orz,89,191,1|7p1os0,91,193,0|7yeq3z,91,193,0|7yeq40,89,191,1|87rrfz,89,191,1|87rrg0,91,193,0|8h4srz,91,193,0|8h4ss0,89,191,1|8qhu3z,89,191,1|8qhu40,91,193,0|8zuvfz,91,193,0|8zuvg0,89,191,1|997wrz,89,191,1|997ws0,91,193,0|9iky3z,91,193,0|9iky40,89,191,1|9rxzfz,89,191,1|9rxzg0,91,193,0|a1b0rz,91,193,0|a1b0s0,89,191,1|aao23z,89,191,1|aao240,91,193,0|ak13fz,91,193,0|ak13g0,89,191,1|atr3fz,89,191,1|atr3g0,91,193,0|b344rz,91,193,0|b344s0,91,193,1|bch8vz,91,193,1|bch8w0,96,196,0|bi8njz,96,196,0|bi8nk0,91,193,0|blu7fz,91,193,0|blu7g0,89,191,1|bv78rz,89,191,1|bv78s0,91,193,0|c4ka3z,91,193,0|c4ka40,89,191,1|cdxbfz,89,191,1|cdxbg0,91,193,0|cnacrz,91,193,0|cnacs0,89,191,1|cwne3z,89,191,1|cwne40,91,193,0|d60ffz,91,193,0|d60fg0,89,191,1|dfdgrz,89,191,1|dfdgs0,91,193,0|dp3grz,91,193,0|dp3gs0,89,191,1|dzwcrz,89,191,1|dzwcs0,91,193,0|e7tjfz,91,193,0|e7tjg0,89,191,1|eimffz,89,191,1|eimfg0,91,193,0|eqjm3z,91,193,0|eqjm40,89,191,1|f1ci3z,89,191,1|f1ci40,91,193,0|f99orz,91,193,0|f99os0,89,191,1|fkfjfz,89,191,1|fkfjg0,91,193,0|frzrfz,91,193,0|frzrg0,89,191,1|g35m3z,89,191,1|g35m40,91,193,0|gapu3z,91,193,0|gapu40,89,191,1|glvorz,89,191,1|glvos0,91,193,0|gtsvfz,91,193,0|gtsvg0,89,191,1|h4lrfz,89,191,1|h4lrg0,91,193,0|hciy3z,91,193,0|hciy40,89,191,1|hnbu3z,89,191,1|hnbu40,91,193,0|hv90rz,91,193,0|hv90s0,89,191,1|i6evfz,89,191,1|i6evg0,91,193,0|idz3fz,91,193,0|idz3g0,89,191,1|ip4y3z,89,191,1|ip4y40,91,193,0|iwp63z,91,193,0|iwp640,89,191,1|j7v0rz,89,191,1|j7v0s0,91,193,0|jff8rz,91,193,0|jff8s0,89,191,1|jql3fz,89,191,1|jql3g0,91,193,0|jyia3z,91,193,0|jyia40,89,191,1|k9b63z,89,191,1|k9b640,91,193,0|kh8crz,91,193,0|kh8cs0,89,191,1|ks18rz,89,191,1|ks18s0,91,193,0|kzyffz,91,193,0|kzyfg0,91,193,1|lb4cvz,91,193,1|lb4cw0,96,196,0|liokvz,96,196,0|liokw0,91,193,0","Asia/Novosibirsk|,0,272,0|-q4do0s,96,196,0|-kmrco1,96,196,0|-kmrco0,91,193,0|5vav7z,91,193,0|5vav80,89,191,1|64pofz,89,191,1|64pog0,91,193,0|6e2sjz,91,193,0|6e2sk0,89,191,1|6nhlrz,89,191,1|6nhls0,91,193,0|6wupvz,91,193,0|6wupw0,89,191,1|769j3z,89,191,1|769j40,91,193,0|7fohvz,91,193,0|7fohw0,89,191,1|7p1orz,89,191,1|7p1os0,91,193,0|7yeq3z,91,193,0|7yeq40,89,191,1|87rrfz,89,191,1|87rrg0,91,193,0|8h4srz,91,193,0|8h4ss0,89,191,1|8qhu3z,89,191,1|8qhu40,91,193,0|8zuvfz,91,193,0|8zuvg0,89,191,1|997wrz,89,191,1|997ws0,91,193,0|9iky3z,91,193,0|9iky40,89,191,1|9rxzfz,89,191,1|9rxzg0,91,193,0|a1b0rz,91,193,0|a1b0s0,89,191,1|aao23z,89,191,1|aao240,91,193,0|ak13fz,91,193,0|ak13g0,89,191,1|atr3fz,89,191,1|atr3g0,91,193,0|b344rz,91,193,0|b344s0,91,193,1|bch8vz,91,193,1|bch8w0,96,196,0|bi8njz,96,196,0|bi8nk0,91,193,0|blu7fz,91,193,0|blu7g0,89,191,1|bv78rz,89,191,1|bv78s0,91,193,0|c4ka3z,91,193,0|c4ka40,89,191,1|c7fr3z,89,191,1|c7fr40,91,193,1|cdxe7z,91,193,1|cdxe80,96,196,0|cnafjz,96,196,0|cnafk0,91,193,1|cwngvz,91,193,1|cwngw0,96,196,0|d60i7z,96,196,0|d60i80,91,193,1|dfdjjz,91,193,1|dfdjk0,96,196,0|dp3jjz,96,196,0|dp3jk0,91,193,1|dzwfjz,91,193,1|dzwfk0,96,196,0|e7tm7z,96,196,0|e7tm80,91,193,1|eimi7z,91,193,1|eimi80,96,196,0|eqjovz,96,196,0|eqjow0,91,193,1|f1ckvz,91,193,1|f1ckw0,96,196,0|f99rjz,96,196,0|f99rk0,91,193,1|fkfm7z,91,193,1|fkfm80,96,196,0|frzu7z,96,196,0|frzu80,91,193,1|g35ovz,91,193,1|g35ow0,96,196,0|gapwvz,96,196,0|gapww0,91,193,1|glvrjz,91,193,1|glvrk0,96,196,0|gtsy7z,96,196,0|gtsy80,91,193,1|h4lu7z,91,193,1|h4lu80,96,196,0|hcj0vz,96,196,0|hcj0w0,91,193,1|hnbwvz,91,193,1|hnbww0,96,196,0|hv93jz,96,196,0|hv93k0,91,193,1|i6ey7z,91,193,1|i6ey80,96,196,0|idz67z,96,196,0|idz680,91,193,1|ip50vz,91,193,1|ip50w0,96,196,0|iwp8vz,96,196,0|iwp8w0,91,193,1|j7v3jz,91,193,1|j7v3k0,96,196,0|jffbjz,96,196,0|jffbk0,91,193,1|jql67z,91,193,1|jql680,96,196,0|jyicvz,96,196,0|jyicw0,91,193,1|k9b8vz,91,193,1|k9b8w0,96,196,0|kh8fjz,96,196,0|kh8fk0,91,193,1|ks1bjz,91,193,1|ks1bk0,96,196,0|kzyi7z,96,196,0|kzyi80,91,193,1|lb4cvz,91,193,1|lb4cw0,96,196,0|liokvz,96,196,0|liokw0,91,193,0|ne0krz,91,193,0|ne0ks0,96,196,0|oasa7z,96,196,0|oasa80,91,193,0","Asia/Omsk|,0,273,0|-q5xmx6,92,194,0|-kmr9w1,92,194,0|-kmr9w0,96,196,0|5vaxzz,96,196,0|5vay00,91,193,1|64pr7z,91,193,1|64pr80,96,196,0|6e2vbz,96,196,0|6e2vc0,91,193,1|6nhojz,91,193,1|6nhok0,96,196,0|6wusnz,96,196,0|6wuso0,91,193,1|769lvz,91,193,1|769lw0,96,196,0|7foknz,96,196,0|7foko0,91,193,1|7p1rjz,91,193,1|7p1rk0,96,196,0|7yesvz,96,196,0|7yesw0,91,193,1|87ru7z,91,193,1|87ru80,96,196,0|8h4vjz,96,196,0|8h4vk0,91,193,1|8qhwvz,91,193,1|8qhww0,96,196,0|8zuy7z,96,196,0|8zuy80,91,193,1|997zjz,91,193,1|997zk0,96,196,0|9il0vz,96,196,0|9il0w0,91,193,1|9ry27z,91,193,1|9ry280,96,196,0|a1b3jz,96,196,0|a1b3k0,91,193,1|aao4vz,91,193,1|aao4w0,96,196,0|ak167z,96,196,0|ak1680,91,193,1|atr67z,91,193,1|atr680,96,196,0|b347jz,96,196,0|b347k0,96,196,1|bchbnz,96,196,1|bchbo0,92,194,0|bi8qbz,92,194,0|bi8qc0,96,196,0|blua7z,96,196,0|blua80,91,193,1|bv7bjz,91,193,1|bv7bk0,96,196,0|c4kcvz,96,196,0|c4kcw0,91,193,1|cdxe7z,91,193,1|cdxe80,96,196,0|cnafjz,96,196,0|cnafk0,91,193,1|cwngvz,91,193,1|cwngw0,96,196,0|d60i7z,96,196,0|d60i80,91,193,1|dfdjjz,91,193,1|dfdjk0,96,196,0|dp3jjz,96,196,0|dp3jk0,91,193,1|dzwfjz,91,193,1|dzwfk0,96,196,0|e7tm7z,96,196,0|e7tm80,91,193,1|eimi7z,91,193,1|eimi80,96,196,0|eqjovz,96,196,0|eqjow0,91,193,1|f1ckvz,91,193,1|f1ckw0,96,196,0|f99rjz,96,196,0|f99rk0,91,193,1|fkfm7z,91,193,1|fkfm80,96,196,0|frzu7z,96,196,0|frzu80,91,193,1|g35ovz,91,193,1|g35ow0,96,196,0|gapwvz,96,196,0|gapww0,91,193,1|glvrjz,91,193,1|glvrk0,96,196,0|gtsy7z,96,196,0|gtsy80,91,193,1|h4lu7z,91,193,1|h4lu80,96,196,0|hcj0vz,96,196,0|hcj0w0,91,193,1|hnbwvz,91,193,1|hnbww0,96,196,0|hv93jz,96,196,0|hv93k0,91,193,1|i6ey7z,91,193,1|i6ey80,96,196,0|idz67z,96,196,0|idz680,91,193,1|ip50vz,91,193,1|ip50w0,96,196,0|iwp8vz,96,196,0|iwp8w0,91,193,1|j7v3jz,91,193,1|j7v3k0,96,196,0|jffbjz,96,196,0|jffbk0,91,193,1|jql67z,91,193,1|jql680,96,196,0|jyicvz,96,196,0|jyicw0,91,193,1|k9b8vz,91,193,1|k9b8w0,96,196,0|kh8fjz,96,196,0|kh8fk0,91,193,1|ks1bjz,91,193,1|ks1bk0,96,196,0|kzyi7z,96,196,0|kzyi80,91,193,1|lb4cvz,91,193,1|lb4cw0,96,196,0|liokvz,96,196,0|liokw0,91,193,0|ne0krz,91,193,0|ne0ks0,96,196,0","Asia/Oral|,0,274,0|-nu15ic,100,6,0|-kmr4c1,100,6,0|-kmr4c0,92,194,0|5vb0rz,92,194,0|5vb0s0,96,196,1|64ptzz,96,196,1|64pu00,96,196,0|6e2vbz,96,196,0|6e2vc0,96,196,1|6nhrbz,96,196,1|6nhrc0,92,194,0|6wuvfz,92,194,0|6wuvg0,96,196,1|769onz,96,196,1|769oo0,92,194,0|7fonfz,92,194,0|7fong0,96,196,1|7p1ubz,96,196,1|7p1uc0,92,194,0|7yevnz,92,194,0|7yevo0,96,196,1|87rwzz,96,196,1|87rx00,92,194,0|8h4ybz,92,194,0|8h4yc0,96,196,1|8qhznz,96,196,1|8qhzo0,92,194,0|8zv0zz,92,194,0|8zv100,96,196,1|9982bz,96,196,1|9982c0,92,194,0|9il3nz,92,194,0|9il3o0,96,196,1|9ry4zz,96,196,1|9ry500,92,194,0|a1b6bz,92,194,0|a1b6c0,92,194,1|aaoafz,92,194,1|aaoag0,105,209,0|ak1brz,105,209,0|ak1bs0,92,194,1|atrbrz,92,194,1|atrbs0,105,209,0|b34d3z,105,209,0|b34d40,92,194,1|bchefz,92,194,1|bcheg0,105,209,0|bi8t3z,105,209,0|bi8t40,92,194,0|bluczz,92,194,0|blud00,92,194,1|bv7h3z,92,194,1|bv7h40,105,209,0|c4kifz,105,209,0|c4kig0,92,194,1|cdxjrz,92,194,1|cdxjs0,105,209,0|cnal3z,105,209,0|cnal40,92,194,1|cwnmfz,92,194,1|cwnmg0,105,209,0|d60nrz,105,209,0|d60ns0,92,194,1|dfdp3z,92,194,1|dfdp40,105,209,0|dp3p3z,105,209,0|dp3p40,92,194,1|dzwl3z,92,194,1|dzwl40,105,209,0|e7trrz,105,209,0|e7trs0,92,194,1|eimnrz,92,194,1|eimns0,105,209,0|eqjufz,105,209,0|eqjug0,92,194,1|f1cqfz,92,194,1|f1cqg0,105,209,0|f99x3z,105,209,0|f99x40,92,194,1|fkfrrz,92,194,1|fkfrs0,105,209,0|frzzrz,105,209,0|frzzs0,92,194,1|g35ufz,92,194,1|g35ug0,105,209,0|gaq2fz,105,209,0|gaq2g0,92,194,1|glvx3z,92,194,1|glvx40,105,209,0|gtt3rz,105,209,0|gtt3s0,92,194,1|h4lzrz,92,194,1|h4lzs0,105,209,0|hcj6fz,105,209,0|hcj6g0,92,194,1|hnc2fz,92,194,1|hnc2g0,105,209,0|hv993z,105,209,0|hv9940,92,194,1|i6f3rz,92,194,1|i6f3s0,92,194,0","Asia/Phnom_Penh|,0,217,0|-1ayyla4,53,217,0|-pysda5,53,217,0|-pysda4,91,193,0","Asia/Pontianak|,0,275,0|-w6piww,7,275,0|-jebg8x,7,275,0|-jebg8w,106,222,0|-eknm61,106,222,0|-eknm60,107,224,0|-co37o1,107,224,0|-co37o0,106,222,0|-bb5zi1,106,222,0|-bb5zi0,89,191,0|-a9m681,89,191,0|-a9m680,106,222,0|-34ru61,106,222,0|-34ru60,129,191,0|9e5gfz,129,191,0|9e5gg0,119,193,0","Asia/Pyongyang|,0,276,0|-w895yc,130,242,0|-u9s4y1,130,242,0|-u9s4y0,116,224,0|-cpmro1,116,224,0|-cpmro0,130,224,0|nt2uzz,130,224,0|nt2v00,130,242,0|p87lnz,130,242,0|p87lo0,130,224,0","Asia/Qatar|,0,215,0|-q3gmvk,105,209,0|19d0vz,105,209,0|19d0w0,100,6,0","Asia/Qostanay|,0,277,0|-nu17s4,105,209,0|-kmr741,105,209,0|-kmr740,92,194,0|5vb0rz,92,194,0|5vb0s0,96,196,1|64ptzz,96,196,1|64pu00,96,196,0|6e2vbz,96,196,0|6e2vc0,96,196,1|6nhrbz,96,196,1|6nhrc0,92,194,0|6wuvfz,92,194,0|6wuvg0,96,196,1|769onz,96,196,1|769oo0,92,194,0|7fonfz,92,194,0|7fong0,96,196,1|7p1ubz,96,196,1|7p1uc0,92,194,0|7yevnz,92,194,0|7yevo0,96,196,1|87rwzz,96,196,1|87rx00,92,194,0|8h4ybz,92,194,0|8h4yc0,96,196,1|8qhznz,96,196,1|8qhzo0,92,194,0|8zv0zz,92,194,0|8zv100,96,196,1|9982bz,96,196,1|9982c0,92,194,0|9il3nz,92,194,0|9il3o0,96,196,1|9ry4zz,96,196,1|9ry500,92,194,0|a1b6bz,92,194,0|a1b6c0,96,196,1|aao7nz,96,196,1|aao7o0,92,194,0|ak18zz,92,194,0|ak1900,96,196,1|atr8zz,96,196,1|atr900,92,194,0|b34abz,92,194,0|b34ac0,92,194,1|bchefz,92,194,1|bcheg0,105,209,0|bi8t3z,105,209,0|bi8t40,92,194,0|bluczz,92,194,0|blud00,96,196,1|bv7ebz,96,196,1|bv7ec0,92,194,0|c4kfnz,92,194,0|c4kfo0,96,196,1|cdxgzz,96,196,1|cdxh00,92,194,0|cnaibz,92,194,0|cnaic0,96,196,1|cwnjnz,96,196,1|cwnjo0,92,194,0|d60kzz,92,194,0|d60l00,96,196,1|dfdmbz,96,196,1|dfdmc0,92,194,0|dp3mbz,92,194,0|dp3mc0,96,196,1|dzwibz,96,196,1|dzwic0,92,194,0|e7tozz,92,194,0|e7tp00,96,196,1|eimkzz,96,196,1|eiml00,92,194,0|eqjrnz,92,194,0|eqjro0,96,196,1|f1cnnz,96,196,1|f1cno0,92,194,0|f99ubz,92,194,0|f99uc0,96,196,1|fkfozz,96,196,1|fkfp00,92,194,0|frzwzz,92,194,0|frzx00,96,196,1|g35rnz,96,196,1|g35ro0,92,194,0|gapznz,92,194,0|gapzo0,96,196,1|glvubz,96,196,1|glvuc0,92,194,0|gtt0zz,92,194,0|gtt100,96,196,1|h4lwzz,96,196,1|h4lx00,92,194,0|hcj3nz,92,194,0|hcj3o0,96,196,1|hnbznz,96,196,1|hnbzo0,92,194,0|hv96bz,92,194,0|hv96c0,96,196,1|i6f0zz,96,196,1|i6f100,96,196,0","Asia/Qyzylorda|,0,278,0|-nu184g,105,209,0|-kmr741,105,209,0|-kmr740,92,194,0|5vb0rz,92,194,0|5vb0s0,96,196,1|64ptzz,96,196,1|64pu00,96,196,0|6e2vbz,96,196,0|6e2vc0,96,196,1|6nhrbz,96,196,1|6nhrc0,92,194,0|6wuvfz,92,194,0|6wuvg0,96,196,1|769onz,96,196,1|769oo0,92,194,0|7fonfz,92,194,0|7fong0,96,196,1|7p1ubz,96,196,1|7p1uc0,92,194,0|7yevnz,92,194,0|7yevo0,96,196,1|87rwzz,96,196,1|87rx00,92,194,0|8h4ybz,92,194,0|8h4yc0,96,196,1|8qhznz,96,196,1|8qhzo0,92,194,0|8zv0zz,92,194,0|8zv100,96,196,1|9982bz,96,196,1|9982c0,92,194,0|9il3nz,92,194,0|9il3o0,96,196,1|9ry4zz,96,196,1|9ry500,92,194,0|a1b6bz,92,194,0|a1b6c0,96,196,1|aao7nz,96,196,1|aao7o0,92,194,0|ak18zz,92,194,0|ak1900,96,196,1|atr8zz,96,196,1|atr900,92,194,0|b34abz,92,194,0|b34ac0,92,194,1|bchefz,92,194,1|bcheg0,92,194,0|bi8qbz,92,194,0|bi8qc0,96,196,0|blua7z,96,196,0|blua80,96,196,1|bv7ebz,96,196,1|bv7ec0,92,194,0|c4kfnz,92,194,0|c4kfo0,96,196,1|cdxgzz,96,196,1|cdxh00,92,194,0|cnaibz,92,194,0|cnaic0,96,196,1|cwnjnz,96,196,1|cwnjo0,92,194,0|d60kzz,92,194,0|d60l00,96,196,1|dfdmbz,96,196,1|dfdmc0,92,194,0|dp3mbz,92,194,0|dp3mc0,96,196,1|dzwibz,96,196,1|dzwic0,92,194,0|e7tozz,92,194,0|e7tp00,96,196,1|eimkzz,96,196,1|eiml00,92,194,0|eqjrnz,92,194,0|eqjro0,96,196,1|f1cnnz,96,196,1|f1cno0,92,194,0|f99ubz,92,194,0|f99uc0,96,196,1|fkfozz,96,196,1|fkfp00,92,194,0|frzwzz,92,194,0|frzx00,96,196,1|g35rnz,96,196,1|g35ro0,92,194,0|gapznz,92,194,0|gapzo0,96,196,1|glvubz,96,196,1|glvuc0,92,194,0|gtt0zz,92,194,0|gtt100,96,196,1|h4lwzz,96,196,1|h4lx00,92,194,0|hcj3nz,92,194,0|hcj3o0,96,196,1|hnbznz,96,196,1|hnbzo0,92,194,0|hv96bz,92,194,0|hv96c0,96,196,1|i6f0zz,96,196,1|i6f100,96,196,0|pk1rbz,96,196,0|pk1rc0,92,194,0","Asia/Riyadh|,0,203,0|-bwgbbg,100,6,0","Asia/Sakhalin|,0,279,0|-xl87rc,107,224,0|-cpkx01,107,224,0|-cpkx00,90,192,0|5vak3z,90,192,0|5vak40,102,200,1|64pdbz,102,200,1|64pdc0,90,192,0|6e2hfz,90,192,0|6e2hg0,102,200,1|6nhanz,102,200,1|6nhao0,90,192,0|6wuerz,90,192,0|6wues0,102,200,1|7697zz,102,200,1|769800,90,192,0|7fo6rz,90,192,0|7fo6s0,102,200,1|7p1dnz,102,200,1|7p1do0,90,192,0|7yeezz,90,192,0|7yef00,102,200,1|87rgbz,102,200,1|87rgc0,90,192,0|8h4hnz,90,192,0|8h4ho0,102,200,1|8qhizz,102,200,1|8qhj00,90,192,0|8zukbz,90,192,0|8zukc0,102,200,1|997lnz,102,200,1|997lo0,90,192,0|9ikmzz,90,192,0|9ikn00,102,200,1|9rxobz,102,200,1|9rxoc0,90,192,0|a1apnz,90,192,0|a1apo0,102,200,1|aanqzz,102,200,1|aanr00,90,192,0|ak0sbz,90,192,0|ak0sc0,102,200,1|atqsbz,102,200,1|atqsc0,90,192,0|b33tnz,90,192,0|b33to0,90,192,1|bcgxrz,90,192,1|bcgxs0,93,195,0|bi8cfz,93,195,0|bi8cg0,90,192,0|bltwbz,90,192,0|bltwc0,102,200,1|bv6xnz,102,200,1|bv6xo0,90,192,0|c4jyzz,90,192,0|c4jz00,102,200,1|cdx0bz,102,200,1|cdx0c0,90,192,0|cna1nz,90,192,0|cna1o0,102,200,1|cwn2zz,102,200,1|cwn300,90,192,0|d604bz,90,192,0|d604c0,102,200,1|dfd5nz,102,200,1|dfd5o0,90,192,0|dp35nz,90,192,0|dp35o0,102,200,1|dzw1nz,102,200,1|dzw1o0,90,192,0|e7t8bz,90,192,0|e7t8c0,90,192,1|eim73z,90,192,1|eim740,93,195,0|eqjdrz,93,195,0|eqjds0,90,192,1|f1c9rz,90,192,1|f1c9s0,93,195,0|f99gfz,93,195,0|f99gg0,90,192,1|fkfb3z,90,192,1|fkfb40,93,195,0|frzj3z,93,195,0|frzj40,90,192,1|g35drz,90,192,1|g35ds0,93,195,0|gaplrz,93,195,0|gapls0,90,192,1|glvgfz,90,192,1|glvgg0,93,195,0|gtsn3z,93,195,0|gtsn40,90,192,1|h4lj3z,90,192,1|h4lj40,93,195,0|hciprz,93,195,0|hcips0,90,192,1|hnblrz,90,192,1|hnbls0,93,195,0|hv8sfz,93,195,0|hv8sg0,90,192,1|i6en3z,90,192,1|i6en40,93,195,0|idyv3z,93,195,0|idyv40,90,192,1|ip4prz,90,192,1|ip4ps0,93,195,0|iwoxrz,93,195,0|iwoxs0,90,192,1|j7usfz,90,192,1|j7usg0,93,195,0|jff0fz,93,195,0|jff0g0,90,192,1|jqkv3z,90,192,1|jqkv40,93,195,0|jyi1rz,93,195,0|jyi1s0,90,192,1|k9axrz,90,192,1|k9axs0,93,195,0|kh84fz,93,195,0|kh84g0,90,192,1|ks10fz,90,192,1|ks10g0,93,195,0|kzy73z,93,195,0|kzy740,90,192,1|lb41rz,90,192,1|lb41s0,93,195,0|lio9rz,93,195,0|lio9s0,90,192,0|ne09nz,90,192,0|ne09o0,93,195,0|o4nlrz,93,195,0|o4nls0,90,192,0","Asia/Samarkand|,0,280,0|-nu18eh,105,209,0|-kmr741,105,209,0|-kmr740,92,194,0|5vb0rz,92,194,0|5vb0s0,96,196,1|64ptzz,96,196,1|64pu00,96,196,0|6e2vbz,96,196,0|6e2vc0,96,196,1|6nhrbz,96,196,1|6nhrc0,92,194,0|6wuvfz,92,194,0|6wuvg0,96,196,1|769onz,96,196,1|769oo0,92,194,0|7fonfz,92,194,0|7fong0,96,196,1|7p1ubz,96,196,1|7p1uc0,92,194,0|7yevnz,92,194,0|7yevo0,96,196,1|87rwzz,96,196,1|87rx00,92,194,0|8h4ybz,92,194,0|8h4yc0,96,196,1|8qhznz,96,196,1|8qhzo0,92,194,0|8zv0zz,92,194,0|8zv100,96,196,1|9982bz,96,196,1|9982c0,92,194,0|9il3nz,92,194,0|9il3o0,96,196,1|9ry4zz,96,196,1|9ry500,92,194,0|a1b6bz,92,194,0|a1b6c0,96,196,1|aao7nz,96,196,1|aao7o0,92,194,0|ak18zz,92,194,0|ak1900,96,196,1|atr8zz,96,196,1|atr900,92,194,0|b34abz,92,194,0|b34ac0,96,196,1|bchbnz,96,196,1|bchbo0,92,194,0","Asia/Seoul|,0,281,0|-w8966g,130,242,0|-u9s4y1,130,242,0|-u9s4y0,116,224,0|-couzo1,116,224,0|-couzo0,130,224,0|-b9kp01,130,224,0|-b9kp00,131,195,1|-b486g1,131,195,1|-b486g0,130,224,0|-atu101,130,224,0|-atu100,131,195,1|-aljyg1,131,195,1|-aljyg0,130,224,0|-ab5t01,130,224,0|-ab5t00,131,195,1|-a2tvs1,131,195,1|-a2tvs0,130,224,0|-9ql2c1,130,224,0|-9ql2c0,131,195,1|-9k3t41,131,195,1|-9k3t40,130,224,0|-88kmc1,130,224,0|-88kmc0,130,242,0|-7nhbm1,130,242,0|-7nhbm0,131,248,1|-7gy7q1,131,248,1|-7gy7q0,130,242,0|-73vrm1,130,242,0|-73vrm0,131,248,1|-6x1jq1,131,248,1|-6x1jq0,130,242,0|-6lvma1,130,242,0|-6lvma0,131,248,1|-6eofq1,131,248,1|-6eofq0,130,242,0|-635jm1,130,242,0|-635jm0,131,248,1|-5vyd21,131,248,1|-5vyd20,130,242,0|-5kfgy1,130,242,0|-5kfgy0,131,248,1|-5d8ae1,131,248,1|-5d8ae0,130,242,0|-51pea1,130,242,0|-51pea0,131,248,1|-4ui7q1,131,248,1|-4ui7q0,130,242,0|-4dqfm1,130,242,0|-4dqfm0,130,224,0|920hvz,130,224,0|920hw0,131,195,1|99xojz,131,195,1|99xok0,130,224,0|9kqkjz,130,224,0|9kqkk0,131,195,1|9snr7z,131,195,1|9snr80,130,224,0","Asia/Shanghai|,0,282,0|-100eztj,45,191,0|-qh00w1,45,191,0|-qh00w0,46,224,1|-q87fo1,46,224,1|-q87fo0,45,191,0|-ffvq81,45,191,0|-ffvq80,46,224,1|-f8zno1,46,224,1|-f8zno0,45,191,0|-f148w1,45,191,0|-f148w0,46,224,1|-ep6p01,46,224,1|-ep6p00,45,191,0|-ekjy81,45,191,0|-ekjy80,46,224,1|-cp63o1,46,224,1|-cp63o0,45,191,0|-cc1sw1,45,191,0|-cc1sw0,46,224,1|-c4wh01,46,224,1|-c4wh00,45,191,0|-butfk1,45,191,0|-butfk0,46,224,1|-bkj501,46,224,1|-bkj500,45,191,0|-bb60w1,45,191,0|-bb60w0,46,224,1|-b3aro1,46,224,1|-b3aro0,45,191,0|-ase3k1,45,191,0|-ase3k0,46,224,1|-ar06c1,46,224,1|-ar06c0,45,191,0|8ixjbz,45,191,0|8ixjc0,46,224,1|8prr7z,46,224,1|8prr80,45,191,0|90kpzz,45,191,0|90kq00,46,224,1|98htvz,46,224,1|98htw0,45,191,0|9jnrbz,45,191,0|9jnrc0,46,224,1|9r7wjz,46,224,1|9r7wk0,45,191,0|a2dtzz,45,191,0|a2du00,46,224,1|aaaxvz,46,224,1|aaaxw0,45,191,0|al3wnz,45,191,0|al3wo0,46,224,1|at10jz,46,224,1|at10k0,45,191,0|b3tzbz,45,191,0|b3tzc0,46,224,1|bbr37z,46,224,1|bbr380,45,191,0","Asia/Singapore|,0,262,0|-100ewkd,85,262,0|-xphpwe,85,262,0|-xphpwd,91,193,0|-jb6gs1,91,193,0|-jb6gs0,118,246,1|-hquppd,118,246,1|-hquppc,118,246,0|-esddpd,118,246,0|-esddpc,106,222,0|-ejqa61,106,222,0|-ejqa60,107,224,0|-conl01,107,224,0|-conl00,106,222,0|69g35z,106,222,0|69g360,89,191,0","Asia/Srednekolymsk|,0,283,0|-nu1ogs,93,195,0|-kmrns1,93,195,0|-kmrns0,90,192,0|5vak3z,90,192,0|5vak40,102,200,1|64pdbz,102,200,1|64pdc0,90,192,0|6e2hfz,90,192,0|6e2hg0,102,200,1|6nhanz,102,200,1|6nhao0,90,192,0|6wuerz,90,192,0|6wues0,102,200,1|7697zz,102,200,1|769800,90,192,0|7fo6rz,90,192,0|7fo6s0,102,200,1|7p1dnz,102,200,1|7p1do0,90,192,0|7yeezz,90,192,0|7yef00,102,200,1|87rgbz,102,200,1|87rgc0,90,192,0|8h4hnz,90,192,0|8h4ho0,102,200,1|8qhizz,102,200,1|8qhj00,90,192,0|8zukbz,90,192,0|8zukc0,102,200,1|997lnz,102,200,1|997lo0,90,192,0|9ikmzz,90,192,0|9ikn00,102,200,1|9rxobz,102,200,1|9rxoc0,90,192,0|a1apnz,90,192,0|a1apo0,102,200,1|aanqzz,102,200,1|aanr00,90,192,0|ak0sbz,90,192,0|ak0sc0,102,200,1|atqsbz,102,200,1|atqsc0,90,192,0|b33tnz,90,192,0|b33to0,90,192,1|bcgxrz,90,192,1|bcgxs0,93,195,0|bi8cfz,93,195,0|bi8cg0,90,192,0|bltwbz,90,192,0|bltwc0,102,200,1|bv6xnz,102,200,1|bv6xo0,90,192,0|c4jyzz,90,192,0|c4jz00,102,200,1|cdx0bz,102,200,1|cdx0c0,90,192,0|cna1nz,90,192,0|cna1o0,102,200,1|cwn2zz,102,200,1|cwn300,90,192,0|d604bz,90,192,0|d604c0,102,200,1|dfd5nz,102,200,1|dfd5o0,90,192,0|dp35nz,90,192,0|dp35o0,102,200,1|dzw1nz,102,200,1|dzw1o0,90,192,0|e7t8bz,90,192,0|e7t8c0,102,200,1|eim4bz,102,200,1|eim4c0,90,192,0|eqjazz,90,192,0|eqjb00,102,200,1|f1c6zz,102,200,1|f1c700,90,192,0|f99dnz,90,192,0|f99do0,102,200,1|fkf8bz,102,200,1|fkf8c0,90,192,0|frzgbz,90,192,0|frzgc0,102,200,1|g35azz,102,200,1|g35b00,90,192,0|gapizz,90,192,0|gapj00,102,200,1|glvdnz,102,200,1|glvdo0,90,192,0|gtskbz,90,192,0|gtskc0,102,200,1|h4lgbz,102,200,1|h4lgc0,90,192,0|hcimzz,90,192,0|hcin00,102,200,1|hnbizz,102,200,1|hnbj00,90,192,0|hv8pnz,90,192,0|hv8po0,102,200,1|i6ekbz,102,200,1|i6ekc0,90,192,0|idysbz,90,192,0|idysc0,102,200,1|ip4mzz,102,200,1|ip4n00,90,192,0|iwouzz,90,192,0|iwov00,102,200,1|j7upnz,102,200,1|j7upo0,90,192,0|jfexnz,90,192,0|jfexo0,102,200,1|jqksbz,102,200,1|jqksc0,90,192,0|jyhyzz,90,192,0|jyhz00,102,200,1|k9auzz,102,200,1|k9av00,90,192,0|kh81nz,90,192,0|kh81o0,102,200,1|ks0xnz,102,200,1|ks0xo0,90,192,0|kzy4bz,90,192,0|kzy4c0,102,200,1|lb3yzz,102,200,1|lb3z00,90,192,0|lio6zz,90,192,0|lio700,102,200,0|ne06vz,102,200,0|ne06w0,90,192,0","Asia/Taipei|,0,284,0|-12mch60,45,191,0|-gtzfk1,45,191,0|-gtzfk0,116,224,0|-co6u81,116,224,0|-co6u80,45,191,0|-cc1sw1,45,191,0|-cc1sw0,46,224,1|-c4wh01,46,224,1|-c4wh00,45,191,0|-butfk1,45,191,0|-butfk0,46,224,1|-bkj501,46,224,1|-bkj500,45,191,0|-bb60w1,45,191,0|-bb60w0,46,224,1|-b3aro1,46,224,1|-b3aro0,45,191,0|-ase3k1,45,191,0|-ase3k0,46,224,1|-akiuc1,46,224,1|-akiuc0,45,191,0|-a9m681,45,191,0|-a9m680,46,224,1|-a1qx01,46,224,1|-a1qx00,45,191,0|-9qu8w1,45,191,0|-9qu8w0,46,224,1|-9iyzo1,46,224,1|-9iyzo0,45,191,0|-9b5fk1,45,191,0|-9b5fk0,46,224,1|-8yjt01,46,224,1|-8yjt00,45,191,0|-8qs3k1,45,191,0|-8qs3k0,46,224,1|-8frvo1,46,224,1|-8frvo0,45,191,0|-880681,45,191,0|-880680,46,224,1|-7wzyc1,46,224,1|-7wzyc0,45,191,0|-7p88w1,45,191,0|-7p88w0,46,224,1|-7ftfo1,46,224,1|-7ftfo0,45,191,0|-76egw1,45,191,0|-76egw0,46,224,1|-6wzno1,46,224,1|-6wzno0,45,191,0|-6nmjk1,45,191,0|-6nmjk0,46,224,1|-6e7qc1,46,224,1|-6e7qc0,45,191,0|-64um81,45,191,0|-64um80,46,224,1|-5vft01,46,224,1|-5vft00,45,191,0|-5m2ow1,45,191,0|-5m2ow0,46,224,1|-5cnvo1,46,224,1|-5cnvo0,45,191,0|-503y81,45,191,0|-503y80,46,224,1|-4tu3o1,46,224,1|-4tu3o0,45,191,0|-4hc0w1,45,191,0|-4hc0w0,46,224,1|-4b26c1,46,224,1|-4b26c0,45,191,0|27rlrz,45,191,0|27rls0,46,224,1|2h6ezz,46,224,1|2h6f00,45,191,0|2qjj3z,45,191,0|2qjj40,46,224,1|2zycbz,46,224,1|2zycc0,45,191,0|4ydlrz,45,191,0|4ydls0,46,224,1|533wbz,46,224,1|533wc0,45,191,0","Asia/Tashkent|,0,285,0|-nu18tz,92,194,0|-kmr9w1,92,194,0|-kmr9w0,96,196,0|5vaxzz,96,196,0|5vay00,91,193,1|64pr7z,91,193,1|64pr80,96,196,0|6e2vbz,96,196,0|6e2vc0,91,193,1|6nhojz,91,193,1|6nhok0,96,196,0|6wusnz,96,196,0|6wuso0,91,193,1|769lvz,91,193,1|769lw0,96,196,0|7foknz,96,196,0|7foko0,91,193,1|7p1rjz,91,193,1|7p1rk0,96,196,0|7yesvz,96,196,0|7yesw0,91,193,1|87ru7z,91,193,1|87ru80,96,196,0|8h4vjz,96,196,0|8h4vk0,91,193,1|8qhwvz,91,193,1|8qhww0,96,196,0|8zuy7z,96,196,0|8zuy80,91,193,1|997zjz,91,193,1|997zk0,96,196,0|9il0vz,96,196,0|9il0w0,91,193,1|9ry27z,91,193,1|9ry280,96,196,0|a1b3jz,96,196,0|a1b3k0,91,193,1|aao4vz,91,193,1|aao4w0,96,196,0|ak167z,96,196,0|ak1680,91,193,1|atr67z,91,193,1|atr680,96,196,0|b347jz,96,196,0|b347k0,96,196,1|bchbnz,96,196,1|bchbo0,92,194,0","Asia/Tbilisi|,0,286,0|-1ayyayn,132,286,0|-nu14ao,132,286,0|-nu14an,100,6,0|-6p7kc1,100,6,0|-6p7kc0,105,209,0|5vb3jz,105,209,0|5vb3k0,92,194,1|64pwrz,92,194,1|64pws0,105,209,0|6e30vz,105,209,0|6e30w0,92,194,1|6nhu3z,92,194,1|6nhu40,105,209,0|6wuy7z,105,209,0|6wuy80,92,194,1|769rfz,92,194,1|769rg0,105,209,0|7foq7z,105,209,0|7foq80,92,194,1|7p1x3z,92,194,1|7p1x40,105,209,0|7yeyfz,105,209,0|7yeyg0,92,194,1|87rzrz,92,194,1|87rzs0,105,209,0|8h513z,105,209,0|8h5140,92,194,1|8qi2fz,92,194,1|8qi2g0,105,209,0|8zv3rz,105,209,0|8zv3s0,92,194,1|99853z,92,194,1|998540,105,209,0|9il6fz,105,209,0|9il6g0,92,194,1|9ry7rz,92,194,1|9ry7s0,105,209,0|a1b93z,105,209,0|a1b940,92,194,1|aaoafz,92,194,1|aaoag0,105,209,0|ak1brz,105,209,0|ak1bs0,92,194,1|atrbrz,92,194,1|atrbs0,105,209,0|b34d3z,105,209,0|b34d40,105,209,1|bchh7z,105,209,1|bchh80,100,6,0|bluczz,100,6,0|blud00,105,209,1|bv7bjz,105,209,1|bv7bk0,100,6,0|c4kfnz,100,6,0|c4kfo0,105,209,1|cdxe7z,105,209,1|cdxe80,100,6,0|cnaibz,100,6,0|cnaic0,105,209,1|cwngvz,105,209,1|cwngw0,105,209,0|d60i7z,105,209,0|d60i80,92,194,1|dfdgrz,92,194,1|dfdgs0,105,209,0|dp3jjz,105,209,0|dp3jk0,92,194,1|eimffz,92,194,1|eimfg0,105,209,0|eqjovz,105,209,0|eqjow0,92,194,1|f1ci3z,92,194,1|f1ci40,105,209,0|f99rjz,105,209,0|f99rk0,92,194,1|fkfjfz,92,194,1|fkfjg0,105,209,0|frzu7z,105,209,0|frzu80,92,194,1|g35m3z,92,194,1|g35m40,105,209,0|gapwvz,105,209,0|gapww0,92,194,1|glvorz,92,194,1|glvos0,105,209,0|gtsy7z,105,209,0|gtsy80,92,194,1|h4lrfz,92,194,1|h4lrg0,105,209,0|hcj0vz,105,209,0|hcj0w0,92,194,1|hnbu3z,92,194,1|hnbu40,105,209,0|hv93jz,105,209,0|hv93k0,92,194,1|hzxjfz,92,194,1|hzxjg0,105,209,1|i6f6jz,105,209,1|i6f6k0,100,6,0|idzejz,100,6,0|idzek0,105,209,0","Asia/Tehran|,0,287,0|-s6m6uw,133,287,0|-cixlix,133,287,0|-cixliw,134,288,0|435vlz,134,288,0|435vm0,105,209,0|4ad3jz,105,209,0|4ad3k0,92,194,1|4ldbfz,92,194,1|4ldbg0,105,209,0|4p2q7z,105,209,0|4p2q80,134,288,0|4t529z,134,288,0|4t52a0,124,252,1|52i0tz,124,252,1|52i0u0,134,288,0|5byu9z,134,288,0|5byua0,124,252,1|5lj7hz,124,252,1|5lj7i0,134,288,0|b4tcxz,134,288,0|b4tcy0,124,252,1|bc48tz,124,252,1|bc48u0,134,288,0|blhcxz,134,288,0|blhcy0,124,252,1|buy0tz,124,252,1|buy0u0,134,288,0|c49a9z,134,288,0|c49aa0,124,252,1|cdpy5z,124,252,1|cdpy60,134,288,0|cn17lz,134,288,0|cn17m0,124,252,1|cwhvhz,124,252,1|cwhvi0,134,288,0|d5t4xz,134,288,0|d5t4y0,124,252,1|df9stz,124,252,1|df9su0,134,288,0|dol29z,134,288,0|dol2a0,124,252,1|dy1q5z,124,252,1|dy1q60,134,288,0|e7eu9z,134,288,0|e7eua0,124,252,1|egvi5z,124,252,1|egvi60,134,288,0|eq6rlz,134,288,0|eq6rm0,124,252,1|eznfhz,124,252,1|eznfi0,134,288,0|f8yoxz,134,288,0|f8yoy0,124,252,1|fifctz,124,252,1|fifcu0,134,288,0|frqm9z,134,288,0|frqma0,124,252,1|g17a5z,124,252,1|g17a60,134,288,0|gake9z,134,288,0|gakea0,124,252,1|gk125z,124,252,1|gk1260,134,288,0|gtcblz,134,288,0|gtcbm0,124,252,1|h2szhz,124,252,1|h2szi0,134,288,0|hc48xz,134,288,0|hc48y0,124,252,1|hlkwtz,124,252,1|hlkwu0,134,288,0|huw69z,134,288,0|huw6a0,124,252,1|i4cu5z,124,252,1|i4cu60,134,288,0|idpy9z,134,288,0|idpya0,124,252,1|in6m5z,124,252,1|in6m60,134,288,0|jy1q9z,134,288,0|jy1qa0,124,252,1|k7ie5z,124,252,1|k7ie60,134,288,0|kgvi9z,134,288,0|kgvia0,124,252,1|kqc65z,124,252,1|kqc660,134,288,0|kznflz,134,288,0|kznfm0,124,252,1|l943hz,124,252,1|l943i0,134,288,0|lifcxz,134,288,0|lifcy0,124,252,1|lrw0tz,124,252,1|lrw0u0,134,288,0|m17a9z,134,288,0|m17aa0,124,252,1|many5z,124,252,1|many60,134,288,0|mk129z,134,288,0|mk12a0,124,252,1|mthq5z,124,252,1|mthq60,134,288,0|n2szlz,134,288,0|n2szm0,124,252,1|nc9nhz,124,252,1|nc9ni0,134,288,0|nlkwxz,134,288,0|nlkwy0,124,252,1|nv1ktz,124,252,1|nv1ku0,134,288,0|o4cu9z,134,288,0|o4cua0,124,252,1|odti5z,124,252,1|odti60,134,288,0|on6m9z,134,288,0|on6ma0,124,252,1|owna5z,124,252,1|owna60,134,288,0|p5yjlz,134,288,0|p5yjm0,124,252,1|pff7hz,124,252,1|pff7i0,134,288,0|poqgxz,134,288,0|poqgy0,124,252,1|py74tz,124,252,1|py74u0,134,288,0|q7ie9z,134,288,0|q7iea0,124,252,1|qgz25z,124,252,1|qgz260,134,288,0|qqc69z,134,288,0|qqc6a0,124,252,1|qzsu5z,124,252,1|qzsu60,134,288,0|r943lz,134,288,0|r943m0,124,252,1|rikrhz,124,252,1|rikri0,134,288,0|rrw0xz,134,288,0|rrw0y0,124,252,1|s1cotz,124,252,1|s1cou0,134,288,0|sany9z,134,288,0|sanya0,124,252,1|sk4m5z,124,252,1|sk4m60,134,288,0|sthq9z,134,288,0|sthqa0,124,252,1|t2ye5z,124,252,1|t2ye60,134,288,0|tc9nlz,134,288,0|tc9nm0,124,252,1|tlqbhz,124,252,1|tlqbi0,134,288,0|tv1kxz,134,288,0|tv1ky0,124,252,1|u4i8tz,124,252,1|u4i8u0,134,288,0|udti9z,134,288,0|udtia0,124,252,1|una65z,124,252,1|una660,134,288,0|uwlflz,134,288,0|uwlfm0,124,252,1|v623hz,124,252,1|v623i0,134,288,0|vff7lz,134,288,0|vff7m0,124,252,1|vovvhz,124,252,1|vovvi0,134,288,0|vy74xz,134,288,0|vy74y0,124,252,1|w7nstz,124,252,1|w7nsu0,134,288,0|wgz29z,134,288,0|wgz2a0,124,252,1|wqfq5z,124,252,1|wqfq60,134,288,0|wzqzlz,134,288,0|wzqzm0,124,252,1|x97nhz,124,252,1|x97ni0,134,288,0|xikrlz,134,288,0|xikrm0,124,252,1|xs1fhz,124,252,1|xs1fi0,134,288,0|y1coxz,134,288,0|y1coy0,124,252,1|yatctz,124,252,1|yatcu0,134,288,0|yk4m9z,134,288,0|yk4ma0,124,252,1|ytla5z,124,252,1|ytla60,134,288,0|z2wjlz,134,288,0|z2wjm0,124,252,1|zcd7hz,124,252,1|zcd7i0,134,288,0","Asia/Thimphu|,0,289,0|-bojclo,108,228,0|99fa1z,108,228,0|99fa20,96,196,0","Asia/Tokyo|,0,290,0|-16snno0,116,224,0|-bb4901,116,224,0|-bb4900,135,195,1|-b49yc1,135,195,1|-b49yc0,116,224,0|-atu101,116,224,0|-atu100,135,195,1|-aljvo1,135,195,1|-aljvo0,116,224,0|-a9b501,116,224,0|-a9b500,135,195,1|-a2tt01,135,195,1|-a2tt00,116,224,0|-9ql2c1,116,224,0|-9ql2c0,135,195,1|-9k3qc1,135,195,1|-9k3qc0,116,224,0","Asia/Tomsk|,0,291,0|-q3zbqf,96,196,0|-kmrco1,96,196,0|-kmrco0,91,193,0|5vav7z,91,193,0|5vav80,89,191,1|64pofz,89,191,1|64pog0,91,193,0|6e2sjz,91,193,0|6e2sk0,89,191,1|6nhlrz,89,191,1|6nhls0,91,193,0|6wupvz,91,193,0|6wupw0,89,191,1|769j3z,89,191,1|769j40,91,193,0|7fohvz,91,193,0|7fohw0,89,191,1|7p1orz,89,191,1|7p1os0,91,193,0|7yeq3z,91,193,0|7yeq40,89,191,1|87rrfz,89,191,1|87rrg0,91,193,0|8h4srz,91,193,0|8h4ss0,89,191,1|8qhu3z,89,191,1|8qhu40,91,193,0|8zuvfz,91,193,0|8zuvg0,89,191,1|997wrz,89,191,1|997ws0,91,193,0|9iky3z,91,193,0|9iky40,89,191,1|9rxzfz,89,191,1|9rxzg0,91,193,0|a1b0rz,91,193,0|a1b0s0,89,191,1|aao23z,89,191,1|aao240,91,193,0|ak13fz,91,193,0|ak13g0,89,191,1|atr3fz,89,191,1|atr3g0,91,193,0|b344rz,91,193,0|b344s0,91,193,1|bch8vz,91,193,1|bch8w0,96,196,0|bi8njz,96,196,0|bi8nk0,91,193,0|blu7fz,91,193,0|blu7g0,89,191,1|bv78rz,89,191,1|bv78s0,91,193,0|c4ka3z,91,193,0|c4ka40,89,191,1|cdxbfz,89,191,1|cdxbg0,91,193,0|cnacrz,91,193,0|cnacs0,89,191,1|cwne3z,89,191,1|cwne40,91,193,0|d60ffz,91,193,0|d60fg0,89,191,1|dfdgrz,89,191,1|dfdgs0,91,193,0|dp3grz,91,193,0|dp3gs0,89,191,1|dzwcrz,89,191,1|dzwcs0,91,193,0|e7tjfz,91,193,0|e7tjg0,89,191,1|eimffz,89,191,1|eimfg0,91,193,0|eqjm3z,91,193,0|eqjm40,89,191,1|f1ci3z,89,191,1|f1ci40,91,193,0|f99orz,91,193,0|f99os0,89,191,1|fkfjfz,89,191,1|fkfjg0,91,193,0|frzrfz,91,193,0|frzrg0,89,191,1|g35m3z,89,191,1|g35m40,91,193,0|gapu3z,91,193,0|gapu40,89,191,1|glvorz,89,191,1|glvos0,91,193,0|gtsvfz,91,193,0|gtsvg0,89,191,1|gvea3z,89,191,1|gvea40,91,193,1|h4lu7z,91,193,1|h4lu80,96,196,0|hcj0vz,96,196,0|hcj0w0,91,193,1|hnbwvz,91,193,1|hnbww0,96,196,0|hv93jz,96,196,0|hv93k0,91,193,1|i6ey7z,91,193,1|i6ey80,96,196,0|idz67z,96,196,0|idz680,91,193,1|ip50vz,91,193,1|ip50w0,96,196,0|iwp8vz,96,196,0|iwp8w0,91,193,1|j7v3jz,91,193,1|j7v3k0,96,196,0|jffbjz,96,196,0|jffbk0,91,193,1|jql67z,91,193,1|jql680,96,196,0|jyicvz,96,196,0|jyicw0,91,193,1|k9b8vz,91,193,1|k9b8w0,96,196,0|kh8fjz,96,196,0|kh8fk0,91,193,1|ks1bjz,91,193,1|ks1bk0,96,196,0|kzyi7z,96,196,0|kzyi80,91,193,1|lb4cvz,91,193,1|lb4cw0,96,196,0|liokvz,96,196,0|liokw0,91,193,0|ne0krz,91,193,0|ne0ks0,96,196,0|o7wkvz,96,196,0|o7wkw0,91,193,0","Asia/Ulaanbaatar|,0,292,0|-xmcrsk,91,193,0|46akjz,91,193,0|46akk0,89,191,0|6wun3z,89,191,0|6wun40,107,224,1|769gbz,107,224,1|769gc0,89,191,0|7fof3z,89,191,0|7fof40,107,224,1|7p1dnz,107,224,1|7p1do0,89,191,0|7yehrz,89,191,0|7yehs0,107,224,1|87rgbz,107,224,1|87rgc0,89,191,0|8h4kfz,89,191,0|8h4kg0,107,224,1|8qhizz,107,224,1|8qhj00,89,191,0|8zun3z,89,191,0|8zun40,107,224,1|997lnz,107,224,1|997lo0,89,191,0|9ikprz,89,191,0|9ikps0,107,224,1|9rxobz,107,224,1|9rxoc0,89,191,0|a1asfz,89,191,0|a1asg0,107,224,1|aanqzz,107,224,1|aanr00,89,191,0|ak0v3z,89,191,0|ak0v40,107,224,1|atqsbz,107,224,1|atqsc0,89,191,0|b33wfz,89,191,0|b33wg0,107,224,1|bcguzz,107,224,1|bcgv00,89,191,0|bltz3z,89,191,0|bltz40,107,224,1|bv6xnz,107,224,1|bv6xo0,89,191,0|c4k1rz,89,191,0|c4k1s0,107,224,1|cdx0bz,107,224,1|cdx0c0,89,191,0|cna4fz,89,191,0|cna4g0,107,224,1|cwn2zz,107,224,1|cwn300,89,191,0|d6073z,89,191,0|d60740,107,224,1|dfd5nz,107,224,1|dfd5o0,89,191,0|dp38fz,89,191,0|dp38g0,107,224,1|dyg6zz,107,224,1|dyg700,89,191,0|e7tb3z,89,191,0|e7tb40,107,224,1|eh69nz,107,224,1|eh69o0,89,191,0|eqjdrz,89,191,0|eqjds0,107,224,1|ezwcbz,107,224,1|ezwcc0,89,191,0|gcgpzz,89,191,0|gcgq00,107,224,1|gkdtvz,107,224,1|gkdtw0,89,191,0|gtqxzz,89,191,0|gtqy00,107,224,1|h33wjz,107,224,1|h33wk0,89,191,0|hch0nz,89,191,0|hch0o0,107,224,1|hltz7z,107,224,1|hltz80,89,191,0|hv73bz,89,191,0|hv73c0,107,224,1|i4k1vz,107,224,1|i4k1w0,89,191,0|idx5zz,89,191,0|idx600,107,224,1|ina4jz,107,224,1|ina4k0,89,191,0|iwn8nz,89,191,0|iwn8o0,107,224,1|j6d5vz,107,224,1|j6d5w0,89,191,0|nlvtzz,89,191,0|nlvu00,107,224,1|nv8mzz,107,224,1|nv8n00,89,191,0|o4lwnz,89,191,0|o4lwo0,107,224,1|odypnz,107,224,1|odypo0,89,191,0","Asia/Urumqi|,0,293,0|-lx5pjw,96,196,0","Asia/Ust-Nera|,0,294,0|-q4cl6u,89,191,0|-kmri81,89,191,0|-kmri80,107,224,0|5vapnz,107,224,0|5vapo0,102,200,1|64pdbz,102,200,1|64pdc0,90,192,0|6e2hfz,90,192,0|6e2hg0,102,200,1|6nhanz,102,200,1|6nhao0,90,192,0|6wuerz,90,192,0|6wues0,102,200,1|7697zz,102,200,1|769800,90,192,0|7fo6rz,90,192,0|7fo6s0,102,200,1|7p1dnz,102,200,1|7p1do0,90,192,0|7yeezz,90,192,0|7yef00,102,200,1|87rgbz,102,200,1|87rgc0,90,192,0|8h4hnz,90,192,0|8h4ho0,102,200,1|8qhizz,102,200,1|8qhj00,90,192,0|8zukbz,90,192,0|8zukc0,102,200,1|997lnz,102,200,1|997lo0,90,192,0|9ikmzz,90,192,0|9ikn00,102,200,1|9rxobz,102,200,1|9rxoc0,90,192,0|a1apnz,90,192,0|a1apo0,102,200,1|aanqzz,102,200,1|aanr00,90,192,0|ak0sbz,90,192,0|ak0sc0,102,200,1|atqsbz,102,200,1|atqsc0,90,192,0|b33tnz,90,192,0|b33to0,90,192,1|bcgxrz,90,192,1|bcgxs0,93,195,0|bi8cfz,93,195,0|bi8cg0,90,192,0|bltwbz,90,192,0|bltwc0,102,200,1|bv6xnz,102,200,1|bv6xo0,90,192,0|c4jyzz,90,192,0|c4jz00,102,200,1|cdx0bz,102,200,1|cdx0c0,90,192,0|cna1nz,90,192,0|cna1o0,102,200,1|cwn2zz,102,200,1|cwn300,90,192,0|d604bz,90,192,0|d604c0,102,200,1|dfd5nz,102,200,1|dfd5o0,90,192,0|dp35nz,90,192,0|dp35o0,102,200,1|dzw1nz,102,200,1|dzw1o0,90,192,0|e7t8bz,90,192,0|e7t8c0,102,200,1|eim4bz,102,200,1|eim4c0,90,192,0|eqjazz,90,192,0|eqjb00,102,200,1|f1c6zz,102,200,1|f1c700,90,192,0|f99dnz,90,192,0|f99do0,102,200,1|fkf8bz,102,200,1|fkf8c0,90,192,0|frzgbz,90,192,0|frzgc0,102,200,1|g35azz,102,200,1|g35b00,90,192,0|gapizz,90,192,0|gapj00,102,200,1|glvdnz,102,200,1|glvdo0,90,192,0|gtskbz,90,192,0|gtskc0,102,200,1|h4lgbz,102,200,1|h4lgc0,90,192,0|hcimzz,90,192,0|hcin00,102,200,1|hnbizz,102,200,1|hnbj00,90,192,0|hv8pnz,90,192,0|hv8po0,102,200,1|i6ekbz,102,200,1|i6ekc0,90,192,0|idysbz,90,192,0|idysc0,102,200,1|ip4mzz,102,200,1|ip4n00,90,192,0|iwouzz,90,192,0|iwov00,102,200,1|j7upnz,102,200,1|j7upo0,90,192,0|jfexnz,90,192,0|jfexo0,102,200,1|jqksbz,102,200,1|jqksc0,90,192,0|jyhyzz,90,192,0|jyhz00,102,200,1|k9auzz,102,200,1|k9av00,90,192,0|kh81nz,90,192,0|kh81o0,102,200,1|ks0xnz,102,200,1|ks0xo0,90,192,0|kzy4bz,90,192,0|kzy4c0,102,200,1|lb3yzz,102,200,1|lb3z00,90,192,0|lio6zz,90,192,0|lio700,102,200,0|lrerzz,102,200,0|lres00,90,192,0|ne09nz,90,192,0|ne09o0,93,195,0","Asia/Vientiane|,0,217,0|-1ayyla4,53,217,0|-pysda5,53,217,0|-pysda4,91,193,0","Asia/Vladivostok|,0,295,0|-oligf7,107,224,0|-kmrl01,107,224,0|-kmrl00,93,195,0|5vamvz,93,195,0|5vamw0,90,192,1|64pg3z,90,192,1|64pg40,93,195,0|6e2k7z,93,195,0|6e2k80,90,192,1|6nhdfz,90,192,1|6nhdg0,93,195,0|6wuhjz,93,195,0|6wuhk0,90,192,1|769arz,90,192,1|769as0,93,195,0|7fo9jz,93,195,0|7fo9k0,90,192,1|7p1gfz,90,192,1|7p1gg0,93,195,0|7yehrz,93,195,0|7yehs0,90,192,1|87rj3z,90,192,1|87rj40,93,195,0|8h4kfz,93,195,0|8h4kg0,90,192,1|8qhlrz,90,192,1|8qhls0,93,195,0|8zun3z,93,195,0|8zun40,90,192,1|997ofz,90,192,1|997og0,93,195,0|9ikprz,93,195,0|9ikps0,90,192,1|9rxr3z,90,192,1|9rxr40,93,195,0|a1asfz,93,195,0|a1asg0,90,192,1|aantrz,90,192,1|aants0,93,195,0|ak0v3z,93,195,0|ak0v40,90,192,1|atqv3z,90,192,1|atqv40,93,195,0|b33wfz,93,195,0|b33wg0,93,195,1|bch0jz,93,195,1|bch0k0,107,224,0|bi8f7z,107,224,0|bi8f80,93,195,0|bltz3z,93,195,0|bltz40,90,192,1|bv70fz,90,192,1|bv70g0,93,195,0|c4k1rz,93,195,0|c4k1s0,90,192,1|cdx33z,90,192,1|cdx340,93,195,0|cna4fz,93,195,0|cna4g0,90,192,1|cwn5rz,90,192,1|cwn5s0,93,195,0|d6073z,93,195,0|d60740,90,192,1|dfd8fz,90,192,1|dfd8g0,93,195,0|dp38fz,93,195,0|dp38g0,90,192,1|dzw4fz,90,192,1|dzw4g0,93,195,0|e7tb3z,93,195,0|e7tb40,90,192,1|eim73z,90,192,1|eim740,93,195,0|eqjdrz,93,195,0|eqjds0,90,192,1|f1c9rz,90,192,1|f1c9s0,93,195,0|f99gfz,93,195,0|f99gg0,90,192,1|fkfb3z,90,192,1|fkfb40,93,195,0|frzj3z,93,195,0|frzj40,90,192,1|g35drz,90,192,1|g35ds0,93,195,0|gaplrz,93,195,0|gapls0,90,192,1|glvgfz,90,192,1|glvgg0,93,195,0|gtsn3z,93,195,0|gtsn40,90,192,1|h4lj3z,90,192,1|h4lj40,93,195,0|hciprz,93,195,0|hcips0,90,192,1|hnblrz,90,192,1|hnbls0,93,195,0|hv8sfz,93,195,0|hv8sg0,90,192,1|i6en3z,90,192,1|i6en40,93,195,0|idyv3z,93,195,0|idyv40,90,192,1|ip4prz,90,192,1|ip4ps0,93,195,0|iwoxrz,93,195,0|iwoxs0,90,192,1|j7usfz,90,192,1|j7usg0,93,195,0|jff0fz,93,195,0|jff0g0,90,192,1|jqkv3z,90,192,1|jqkv40,93,195,0|jyi1rz,93,195,0|jyi1s0,90,192,1|k9axrz,90,192,1|k9axs0,93,195,0|kh84fz,93,195,0|kh84g0,90,192,1|ks10fz,90,192,1|ks10g0,93,195,0|kzy73z,93,195,0|kzy740,90,192,1|lb41rz,90,192,1|lb41s0,93,195,0|lio9rz,93,195,0|lio9s0,90,192,0|ne09nz,90,192,0|ne09o0,93,195,0","Asia/Yakutsk|,0,296,0|-q4cioy,89,191,0|-kmri81,89,191,0|-kmri80,107,224,0|5vapnz,107,224,0|5vapo0,93,195,1|64pivz,93,195,1|64piw0,107,224,0|6e2mzz,107,224,0|6e2n00,93,195,1|6nhg7z,93,195,1|6nhg80,107,224,0|6wukbz,107,224,0|6wukc0,93,195,1|769djz,93,195,1|769dk0,107,224,0|7focbz,107,224,0|7focc0,93,195,1|7p1j7z,93,195,1|7p1j80,107,224,0|7yekjz,107,224,0|7yekk0,93,195,1|87rlvz,93,195,1|87rlw0,107,224,0|8h4n7z,107,224,0|8h4n80,93,195,1|8qhojz,93,195,1|8qhok0,107,224,0|8zupvz,107,224,0|8zupw0,93,195,1|997r7z,93,195,1|997r80,107,224,0|9iksjz,107,224,0|9iksk0,93,195,1|9rxtvz,93,195,1|9rxtw0,107,224,0|a1av7z,107,224,0|a1av80,93,195,1|aanwjz,93,195,1|aanwk0,107,224,0|ak0xvz,107,224,0|ak0xw0,93,195,1|atqxvz,93,195,1|atqxw0,107,224,0|b33z7z,107,224,0|b33z80,107,224,1|bch3bz,107,224,1|bch3c0,89,191,0|bi8hzz,89,191,0|bi8i00,107,224,0|blu1vz,107,224,0|blu1w0,93,195,1|bv737z,93,195,1|bv7380,107,224,0|c4k4jz,107,224,0|c4k4k0,93,195,1|cdx5vz,93,195,1|cdx5w0,107,224,0|cna77z,107,224,0|cna780,93,195,1|cwn8jz,93,195,1|cwn8k0,107,224,0|d609vz,107,224,0|d609w0,93,195,1|dfdb7z,93,195,1|dfdb80,107,224,0|dp3b7z,107,224,0|dp3b80,93,195,1|dzw77z,93,195,1|dzw780,107,224,0|e7tdvz,107,224,0|e7tdw0,93,195,1|eim9vz,93,195,1|eim9w0,107,224,0|eqjgjz,107,224,0|eqjgk0,93,195,1|f1ccjz,93,195,1|f1cck0,107,224,0|f99j7z,107,224,0|f99j80,93,195,1|fkfdvz,93,195,1|fkfdw0,107,224,0|frzlvz,107,224,0|frzlw0,93,195,1|g35gjz,93,195,1|g35gk0,107,224,0|gapojz,107,224,0|gapok0,93,195,1|glvj7z,93,195,1|glvj80,107,224,0|gtspvz,107,224,0|gtspw0,93,195,1|h4llvz,93,195,1|h4llw0,107,224,0|hcisjz,107,224,0|hcisk0,93,195,1|hnbojz,93,195,1|hnbok0,107,224,0|hv8v7z,107,224,0|hv8v80,93,195,1|i6epvz,93,195,1|i6epw0,107,224,0|idyxvz,107,224,0|idyxw0,93,195,1|ip4sjz,93,195,1|ip4sk0,107,224,0|iwp0jz,107,224,0|iwp0k0,93,195,1|j7uv7z,93,195,1|j7uv80,107,224,0|jff37z,107,224,0|jff380,93,195,1|jqkxvz,93,195,1|jqkxw0,107,224,0|jyi4jz,107,224,0|jyi4k0,93,195,1|k9b0jz,93,195,1|k9b0k0,107,224,0|kh877z,107,224,0|kh8780,93,195,1|ks137z,93,195,1|ks1380,107,224,0|kzy9vz,107,224,0|kzy9w0,93,195,1|lb44jz,93,195,1|lb44k0,107,224,0|liocjz,107,224,0|liock0,93,195,0|ne0cfz,93,195,0|ne0cg0,107,224,0","Asia/Yangon|,0,297,0|-1ayykhb,136,297,0|-q3gv5c,136,297,0|-q3gv5b,109,229,0|-efx621,109,229,0|-efx620,107,224,0|-cvg101,107,224,0|-cvg100,109,229,0","Asia/Yekaterinburg|,0,298,0|-rx5hw9,7,299,0|-qc75z6,7,299,0|-qc75z5,105,209,0|-kmr741,105,209,0|-kmr740,92,194,0|5vb0rz,92,194,0|5vb0s0,96,196,1|64ptzz,96,196,1|64pu00,92,194,0|6e2y3z,92,194,0|6e2y40,96,196,1|6nhrbz,96,196,1|6nhrc0,92,194,0|6wuvfz,92,194,0|6wuvg0,96,196,1|769onz,96,196,1|769oo0,92,194,0|7fonfz,92,194,0|7fong0,96,196,1|7p1ubz,96,196,1|7p1uc0,92,194,0|7yevnz,92,194,0|7yevo0,96,196,1|87rwzz,96,196,1|87rx00,92,194,0|8h4ybz,92,194,0|8h4yc0,96,196,1|8qhznz,96,196,1|8qhzo0,92,194,0|8zv0zz,92,194,0|8zv100,96,196,1|9982bz,96,196,1|9982c0,92,194,0|9il3nz,92,194,0|9il3o0,96,196,1|9ry4zz,96,196,1|9ry500,92,194,0|a1b6bz,92,194,0|a1b6c0,96,196,1|aao7nz,96,196,1|aao7o0,92,194,0|ak18zz,92,194,0|ak1900,96,196,1|atr8zz,96,196,1|atr900,92,194,0|b34abz,92,194,0|b34ac0,92,194,1|bchefz,92,194,1|bcheg0,105,209,0|bi8t3z,105,209,0|bi8t40,92,194,0|bluczz,92,194,0|blud00,96,196,1|bv7ebz,96,196,1|bv7ec0,92,194,0|c4kfnz,92,194,0|c4kfo0,96,196,1|cdxgzz,96,196,1|cdxh00,92,194,0|cnaibz,92,194,0|cnaic0,96,196,1|cwnjnz,96,196,1|cwnjo0,92,194,0|d60kzz,92,194,0|d60l00,96,196,1|dfdmbz,96,196,1|dfdmc0,92,194,0|dp3mbz,92,194,0|dp3mc0,96,196,1|dzwibz,96,196,1|dzwic0,92,194,0|e7tozz,92,194,0|e7tp00,96,196,1|eimkzz,96,196,1|eiml00,92,194,0|eqjrnz,92,194,0|eqjro0,96,196,1|f1cnnz,96,196,1|f1cno0,92,194,0|f99ubz,92,194,0|f99uc0,96,196,1|fkfozz,96,196,1|fkfp00,92,194,0|frzwzz,92,194,0|frzx00,96,196,1|g35rnz,96,196,1|g35ro0,92,194,0|gapznz,92,194,0|gapzo0,96,196,1|glvubz,96,196,1|glvuc0,92,194,0|gtt0zz,92,194,0|gtt100,96,196,1|h4lwzz,96,196,1|h4lx00,92,194,0|hcj3nz,92,194,0|hcj3o0,96,196,1|hnbznz,96,196,1|hnbzo0,92,194,0|hv96bz,92,194,0|hv96c0,96,196,1|i6f0zz,96,196,1|i6f100,92,194,0|idz8zz,92,194,0|idz900,96,196,1|ip53nz,96,196,1|ip53o0,92,194,0|iwpbnz,92,194,0|iwpbo0,96,196,1|j7v6bz,96,196,1|j7v6c0,92,194,0|jffebz,92,194,0|jffec0,96,196,1|jql8zz,96,196,1|jql900,92,194,0|jyifnz,92,194,0|jyifo0,96,196,1|k9bbnz,96,196,1|k9bbo0,92,194,0|kh8ibz,92,194,0|kh8ic0,96,196,1|ks1ebz,96,196,1|ks1ec0,92,194,0|kzykzz,92,194,0|kzyl00,96,196,1|lb4fnz,96,196,1|lb4fo0,92,194,0|lionnz,92,194,0|liono0,96,196,0|ne0njz,96,196,0|ne0nk0,92,194,0","Asia/Yerevan|,0,300,0|-nu148o,100,6,0|-6p7kc1,100,6,0|-6p7kc0,105,209,0|5vb3jz,105,209,0|5vb3k0,92,194,1|64pwrz,92,194,1|64pws0,105,209,0|6e30vz,105,209,0|6e30w0,92,194,1|6nhu3z,92,194,1|6nhu40,105,209,0|6wuy7z,105,209,0|6wuy80,92,194,1|769rfz,92,194,1|769rg0,105,209,0|7foq7z,105,209,0|7foq80,92,194,1|7p1x3z,92,194,1|7p1x40,105,209,0|7yeyfz,105,209,0|7yeyg0,92,194,1|87rzrz,92,194,1|87rzs0,105,209,0|8h513z,105,209,0|8h5140,92,194,1|8qi2fz,92,194,1|8qi2g0,105,209,0|8zv3rz,105,209,0|8zv3s0,92,194,1|99853z,92,194,1|998540,105,209,0|9il6fz,105,209,0|9il6g0,92,194,1|9ry7rz,92,194,1|9ry7s0,105,209,0|a1b93z,105,209,0|a1b940,92,194,1|aaoafz,92,194,1|aaoag0,105,209,0|ak1brz,105,209,0|ak1bs0,92,194,1|atrbrz,92,194,1|atrbs0,105,209,0|b34d3z,105,209,0|b34d40,105,209,1|bchh7z,105,209,1|bchh80,100,6,0|bluijz,100,6,0|bluik0,105,209,1|bv7jvz,105,209,1|bv7jw0,100,6,0|c4kl7z,100,6,0|c4kl80,105,209,1|cdxmjz,105,209,1|cdxmk0,100,6,0|cnanvz,100,6,0|cnanw0,105,209,1|cwnp7z,105,209,1|cwnp80,100,6,0|d60qjz,100,6,0|d60qk0,105,209,1|dfdrvz,105,209,1|dfdrw0,105,209,0|e7trrz,105,209,0|e7trs0,92,194,1|eimnrz,92,194,1|eimns0,105,209,0|eqjufz,105,209,0|eqjug0,92,194,1|f1cqfz,92,194,1|f1cqg0,105,209,0|f99x3z,105,209,0|f99x40,92,194,1|fkfrrz,92,194,1|fkfrs0,105,209,0|frzzrz,105,209,0|frzzs0,92,194,1|g35ufz,92,194,1|g35ug0,105,209,0|gaq2fz,105,209,0|gaq2g0,92,194,1|glvx3z,92,194,1|glvx40,105,209,0|gtt3rz,105,209,0|gtt3s0,92,194,1|h4lzrz,92,194,1|h4lzs0,105,209,0|hcj6fz,105,209,0|hcj6g0,92,194,1|hnc2fz,92,194,1|hnc2g0,105,209,0|hv993z,105,209,0|hv9940,92,194,1|i6f3rz,92,194,1|i6f3s0,105,209,0|idzbrz,105,209,0|idzbs0,92,194,1|ip56fz,92,194,1|ip56g0,105,209,0|iwpefz,105,209,0|iwpeg0,92,194,1|j7v93z,92,194,1|j7v940,105,209,0|jffh3z,105,209,0|jffh40,92,194,1|jqlbrz,92,194,1|jqlbs0,105,209,0|jyiifz,105,209,0|jyiig0,92,194,1|k9befz,92,194,1|k9beg0,105,209,0|kh8l3z,105,209,0|kh8l40,92,194,1|ks1h3z,92,194,1|ks1h40,105,209,0|kzynrz,105,209,0|kzyns0,92,194,1|lb4ifz,92,194,1|lb4ig0,105,209,0|lioqfz,105,209,0|lioqg0,92,194,1|ltul3z,92,194,1|ltul40,105,209,0","Atlantic/Azores|,0,301,0|-18vsdww,77,302,0|-u9rbs1,77,302,0|-u9rbs0,40,45,0|-rxwvw1,40,45,0|-rxwvw0,13,15,1|-rqwyg1,13,15,1|-rqwyg0,40,45,0|-rkqt81,40,45,0|-rkqt80,13,15,1|-r90l81,13,15,1|-r90l80,40,45,0|-r1x181,40,45,0|-r1x180,13,15,1|-qq8nw1,13,15,1|-qq8nw0,40,45,0|-qj6yk1,40,45,0|-qj6yk0,13,15,1|-q7gqk1,13,15,1|-q7gqk0,40,45,0|-q0d6k1,40,45,0|-q0d6k0,13,15,1|-pomyk1,13,15,1|-pomyk0,40,45,0|-phl981,40,45,0|-phl980,13,15,1|-p5v181,13,15,1|-p5v180,40,45,0|-nusl81,40,45,0|-nusl80,13,15,1|-nlhek1,13,15,1|-nlhek0,40,45,0|-mt6vw1,40,45,0|-mt6vw0,13,15,1|-mkjrw1,13,15,1|-mkjrw0,40,45,0|-matrw1,40,45,0|-matrw0,13,15,1|-m1tp81,13,15,1|-m1tp80,40,45,0|-lrqqk1,40,45,0|-lrqqk0,13,15,1|-liqnw1,13,15,1|-liqnw0,40,45,0|-l8np81,40,45,0|-l8np80,13,15,1|-l00l81,13,15,1|-l00l80,40,45,0|-k77jw1,40,45,0|-k77jw0,13,15,1|-jykfw1,13,15,1|-jykfw0,40,45,0|-jp7ek1,40,45,0|-jp7ek0,13,15,1|-jfud81,13,15,1|-jfud80,40,45,0|-ineak1,40,45,0|-ineak0,13,15,1|-ie1981,13,15,1|-ie1980,40,45,0|-i516k1,40,45,0|-i516k0,13,15,1|-hvb6k1,13,15,1|-hvb6k0,40,45,0|-hl87w1,40,45,0|-hl87w0,13,15,1|-hcl3w1,13,15,1|-hcl3w0,40,45,0|-h382k1,40,45,0|-h382k0,13,15,1|-gtv181,13,15,1|-gtv180,40,45,0|-gkuyk1,40,45,0|-gkuyk0,13,15,1|-gb4yk1,13,15,1|-gb4yk0,40,45,0|-g11zw1,40,45,0|-g11zw0,13,15,1|-fpw581,13,15,1|-fpw580,40,45,0|-fkunw1,40,45,0|-fkunw0,13,15,1|-f9buk1,13,15,1|-f9buk0,40,45,0|-ezyt81,40,45,0|-ezyt80,13,15,1|-eqjx81,13,15,1|-eqjx80,40,45,0|-eibmk1,40,45,0|-eibmk0,13,15,1|-eg5xc1,13,15,1|-eg5xc0,17,1,1|-eaeio1,17,1,1|-eaeio0,13,15,1|-e6st81,13,15,1|-e6st80,40,45,0|-dzljw1,40,45,0|-dzljw0,13,15,1|-dxstc1,13,15,1|-dxstc0,17,1,1|-dqyio1,17,1,1|-dqyio0,13,15,1|-dnprw1,13,15,1|-dnprw0,40,45,0|-dgvh81,40,45,0|-dgvh80,13,15,1|-deps01,13,15,1|-deps00,17,1,1|-d88g01,17,1,1|-d88g00,13,15,1|-d4zp81,13,15,1|-d4zp80,40,45,0|-cy5ek1,40,45,0|-cy5ek0,13,15,1|-cvzpc1,13,15,1|-cvzpc0,17,1,1|-cpidc1,17,1,1|-cpidc0,13,15,1|-cm9mk1,13,15,1|-cm9mk0,40,45,0|-cdzh81,40,45,0|-cdzh80,13,15,1|-c4mfw1,13,15,1|-c4mfw0,40,45,0|-bv9681,40,45,0|-bv9680,13,15,1|-blw4w1,13,15,1|-blw4w0,40,45,0|-bcj3k1,40,45,0|-bcj3k0,13,15,1|-b36281,13,15,1|-b36280,40,45,0|-att0w1,40,45,0|-att0w0,13,15,1|-akfzk1,13,15,1|-akfzk0,40,45,0|-9scvk1,40,45,0|-9scvk0,13,15,1|-9imvk1,13,15,1|-9imvk0,40,45,0|-999u81,40,45,0|-999u80,13,15,1|-8zwsw1,13,15,1|-8zwsw0,40,45,0|-8qjrk1,40,45,0|-8qjrk0,13,15,1|-8h6q81,13,15,1|-8h6q80,40,45,0|-87tow1,40,45,0|-87tow0,13,15,1|-7ygnk1,13,15,1|-7ygnk0,40,45,0|-7p3m81,40,45,0|-7p3m80,13,15,1|-7fqkw1,13,15,1|-7fqkw0,40,45,0|-76djk1,40,45,0|-76djk0,13,15,1|-6wnjk1,13,15,1|-6wnjk0,40,45,0|-6nai81,40,45,0|-6nai80,13,15,1|-6dxgw1,13,15,1|-6dxgw0,40,45,0|-64kfk1,40,45,0|-64kfk0,13,15,1|-5v7e81,13,15,1|-5v7e80,40,45,0|-5lucw1,40,45,0|-5lucw0,13,15,1|-5chbk1,13,15,1|-5chbk0,40,45,0|-534a81,40,45,0|-534a80,13,15,1|-4tr8w1,13,15,1|-4tr8w0,40,45,0|-4ke7k1,40,45,0|-4ke7k0,13,15,1|-4b1681,13,15,1|-4b1680,40,45,0|-41o4w1,40,45,0|-41o4w0,13,15,1|-3ry4w1,13,15,1|-3ry4w0,40,45,0|-3il3k1,40,45,0|-3il3k0,13,15,1|-398281,13,15,1|-398280,40,45,0|-2zv0w1,40,45,0|-2zv0w0,13,15,1|-2qhzk1,13,15,1|-2qhzk0,40,45,0|-2h4y81,40,45,0|-2h4y80,13,15,1|-27rww1,13,15,1|-27rww0,40,45,0|-1yevk1,40,45,0|-1yevk0,13,15,0|3rwo3z,13,15,0|3rwo40,17,1,1|419pfz,17,1,1|419pg0,13,15,0|4azpfz,13,15,0|4azpg0,17,1,1|4kcqrz,17,1,1|4kcqs0,13,15,0|4tps3z,13,15,0|4tps40,17,1,1|532w7z,17,1,1|532w80,13,15,0|5cfurz,13,15,0|5cfus0,17,1,1|5lsyvz,17,1,1|5lsyw0,13,15,0|5v607z,13,15,0|5v6080,17,1,1|64j1jz,17,1,1|64j1k0,13,15,0|6dw2vz,13,15,0|6dw2w0,17,1,1|6n947z,17,1,1|6n9480,13,15,0|6wm8bz,13,15,0|6wm8c0,17,1,1|75z6vz,17,1,1|75z6w0,13,15,0|7fc87z,13,15,0|7fc880,17,1,1|7p287z,17,1,1|7p2880,13,15,0|7yf9jz,13,15,0|7yf9k0,17,1,1|87savz,17,1,1|87saw0,13,15,0|8h5c7z,13,15,0|8h5c80,17,1,1|8qidjz,17,1,1|8qidk0,13,15,0|8zvevz,13,15,0|8zvew0,17,1,1|998g7z,17,1,1|998g80,13,15,0|9ilhjz,13,15,0|9ilhk0,17,1,1|9ryivz,17,1,1|9ryiw0,13,15,0|a1bk7z,13,15,0|a1bk80,17,1,1|aaoljz,17,1,1|aaolk0,13,15,0|ak1mvz,13,15,0|ak1mw0,17,1,1|atrmvz,17,1,1|atrmw0,13,15,0|b34o7z,13,15,0|b34o80,17,1,1|bchpjz,17,1,1|bchpk0,13,15,0|bluqvz,13,15,0|bluqw0,17,1,1|bv7s7z,17,1,1|bv7s80,8,1,0|c4kqrz,8,1,0|c4kqs0,17,1,1|cdxs3z,17,1,1|cdxs40,13,15,0|cnatfz,13,15,0|cnatg0,17,1,1|cwnurz,17,1,1|cwnus0,13,15,0|d60w3z,13,15,0|d60w40,17,1,1|dfdxfz,17,1,1|dfdxg0,13,15,0|dp3xfz,13,15,0|dp3xg0,17,1,1|dzwtfz,17,1,1|dzwtg0,13,15,0|e7u03z,13,15,0|e7u040,17,1,1|eimw3z,17,1,1|eimw40,13,15,0|eqk2rz,13,15,0|eqk2s0,17,1,1|f1cyrz,17,1,1|f1cys0,13,15,0|f9a5fz,13,15,0|f9a5g0,17,1,1|fkg03z,17,1,1|fkg040,13,15,0|fs083z,13,15,0|fs0840,17,1,1|g362rz,17,1,1|g362s0,13,15,0|gaqarz,13,15,0|gaqas0,17,1,1|glw5fz,17,1,1|glw5g0,13,15,0|gttc3z,13,15,0|gttc40,17,1,1|h4m83z,17,1,1|h4m840,13,15,0|hcjerz,13,15,0|hcjes0,17,1,1|hncarz,17,1,1|hncas0,13,15,0|hv9hfz,13,15,0|hv9hg0,17,1,1|i6fc3z,17,1,1|i6fc40,13,15,0|idzk3z,13,15,0|idzk40,17,1,1|ip5erz,17,1,1|ip5es0,13,15,0|iwpmrz,13,15,0|iwpms0,17,1,1|j7vhfz,17,1,1|j7vhg0,13,15,0|jffpfz,13,15,0|jffpg0,17,1,1|jqlk3z,17,1,1|jqlk40,13,15,0|jyiqrz,13,15,0|jyiqs0,17,1,1|k9bmrz,17,1,1|k9bms0,13,15,0|kh8tfz,13,15,0|kh8tg0,17,1,1|ks1pfz,17,1,1|ks1pg0,13,15,0|kzyw3z,13,15,0|kzyw40,17,1,1|lb4qrz,17,1,1|lb4qs0,13,15,0|lioyrz,13,15,0|lioys0,17,1,1|ltutfz,17,1,1|ltutg0,13,15,0|m1f1fz,13,15,0|m1f1g0,17,1,1|mckw3z,17,1,1|mckw40,13,15,0|mki2rz,13,15,0|mki2s0,17,1,1|mvayrz,17,1,1|mvays0,13,15,0|n385fz,13,15,0|n385g0,17,1,1|ne11fz,17,1,1|ne11g0,13,15,0|nly83z,13,15,0|nly840,17,1,1|nwr43z,17,1,1|nwr440,13,15,0|o4oarz,13,15,0|o4oas0,17,1,1|ofu5fz,17,1,1|ofu5g0,13,15,0|onedfz,13,15,0|onedg0,17,1,1|oyk83z,17,1,1|oyk840,13,15,0|p64g3z,13,15,0|p64g40,17,1,1|phaarz,17,1,1|phaas0,13,15,0|pp7hfz,13,15,0|pp7hg0,17,1,1|q00dfz,17,1,1|q00dg0,13,15,0|q7xk3z,13,15,0|q7xk40,17,1,1|qiqg3z,17,1,1|qiqg40,13,15,0|qqnmrz,13,15,0|qqnms0,17,1,1|r1thfz,17,1,1|r1thg0,13,15,0|r9dpfz,13,15,0|r9dpg0,17,1,1|rkjk3z,17,1,1|rkjk40,13,15,0|rs3s3z,13,15,0|rs3s40,17,1,1|s39mrz,17,1,1|s39ms0,13,15,0|sb6tfz,13,15,0|sb6tg0,17,1,1|slzpfz,17,1,1|slzpg0,13,15,0|stww3z,13,15,0|stww40,17,1,1|t4ps3z,17,1,1|t4ps40,13,15,0|tcmyrz,13,15,0|tcmys0,17,1,1|tnfurz,17,1,1|tnfus0,13,15,0|tvd1fz,13,15,0|tvd1g0,17,1,1|u6iw3z,17,1,1|u6iw40,13,15,0|ue343z,13,15,0|ue3440,17,1,1|up8yrz,17,1,1|up8ys0,13,15,0|uwt6rz,13,15,0|uwt6s0,17,1,1|v7z1fz,17,1,1|v7z1g0,13,15,0|vfw83z,13,15,0|vfw840,17,1,1|vqp43z,17,1,1|vqp440,13,15,0|vymarz,13,15,0|vymas0,17,1,1|w9f6rz,17,1,1|w9f6s0,13,15,0|whcdfz,13,15,0|whcdg0,17,1,1|wsi83z,17,1,1|wsi840,13,15,0|x02g3z,13,15,0|x02g40,17,1,1|xb8arz,17,1,1|xb8as0,13,15,0|xisirz,13,15,0|xisis0,17,1,1|xtydfz,17,1,1|xtydg0,13,15,0|y1ilfz,13,15,0|y1ilg0,17,1,1|ycog3z,17,1,1|ycog40,13,15,0|yklmrz,13,15,0|yklms0,17,1,1|yveirz,17,1,1|yveis0,13,15,0|z3bpfz,13,15,0|z3bpg0,17,1,1|ze4lfz,17,1,1|ze4lg0,13,15,0","Atlantic/Bermuda|,0,303,0|-15r0xbu,53,303,0|-rivvzv,53,303,0|-rivvzu,27,304,1|-r9qc3v,27,304,1|-r9qc3u,53,303,0|-qzp5bv,53,303,0|-qzp5bu,27,304,1|-qrq6rv,27,304,1|-qrq6ru,53,303,0|-kvj2fv,53,303,0|-kvj2fu,32,42,0|-eljwo1,32,42,0|-eljwo0,54,44,1|-e75gs1,54,44,1|-e75gs0,32,42,0|-dz87c1,32,42,0|-dz87c0,54,44,1|-dnpgs1,54,44,1|-dnpgs0,32,42,0|-dgv3c1,32,42,0|-dgv3c0,54,44,1|-d4mfg1,54,44,1|-d4mfg0,32,42,0|-cy50o1,32,42,0|-cy50o0,54,44,1|-clwcs1,54,44,1|-clwcs0,32,42,0|-bt38o1,32,42,0|-bt38o0,54,44,1|-bmyy41,54,44,1|-bmyy40,32,42,0|-ba07c1,32,42,0|-ba07c0,54,44,1|-b4lu41,54,44,1|-b4lu40,32,42,0|-ara4o1,32,42,0|-ara4o0,54,44,1|-alvrg1,54,44,1|-alvrg0,32,42,0|-a873c1,32,42,0|-a873c0,54,44,1|-a35os1,54,44,1|-a35os0,32,42,0|-9ph0o1,32,42,0|-9ph0o0,54,44,1|-9kfm41,54,44,1|-9kfm40,32,42,0|-96qy01,32,42,0|-96qy00,54,44,1|-91cks1,54,44,1|-91cks0,32,42,0|-73hoo1,32,42,0|-73hoo0,54,44,1|-6vkks1,54,44,1|-6vkks0,32,42,0|296onz,32,42,0|296oo0,54,44,1|2ijn7z,54,44,1|2ijn80,32,42,0|2rwrbz,32,42,0|2rwrc0,54,44,1|319pvz,54,44,1|319pw0,32,42,0|3amtzz,32,42,0|3amu00,54,44,1|3kcr7z,54,44,1|3kcr80,32,42,0|3tcwnz,32,42,0|3tcwo0,54,44,1|432tvz,54,44,1|432tw0,32,42,0|4cfxzz,32,42,0|4cfy00,54,44,1|4lswjz,54,44,1|4lswk0,32,42,0|4v60nz,32,42,0|4v60o0,54,44,1|54iz7z,54,44,1|54iz80,32,42,0|5dw3bz,32,42,0|5dw3c0,54,44,1|5n91vz,54,44,1|5n91w0,32,42,0|5wm5zz,32,42,0|5wm600,54,44,1|65z4jz,54,44,1|65z4k0,32,42,0|6fc8nz,32,42,0|6fc8o0,54,44,1|6p25vz,54,44,1|6p25w0,32,42,0|6y2bbz,32,42,0|6y2bc0,54,44,1|77s8jz,54,44,1|77s8k0,32,42,0|7h5cnz,32,42,0|7h5co0,54,44,1|7qib7z,54,44,1|7qib80,32,42,0|7zvfbz,32,42,0|7zvfc0,54,44,1|898dvz,54,44,1|898dw0,32,42,0|8ilhzz,32,42,0|8ili00,54,44,1|8rygjz,54,44,1|8rygk0,32,42,0|908onz,32,42,0|908oo0,54,44,1|9aoj7z,54,44,1|9aoj80,32,42,0|9iyrbz,32,42,0|9iyrc0,54,44,1|9trkjz,54,44,1|9trkk0,32,42,0|a1otzz,32,42,0|a1ou00,54,44,1|achn7z,54,44,1|achn80,32,42,0|akewnz,32,42,0|akewo0,54,44,1|av7pvz,54,44,1|av7pw0,32,42,0|b3hxzz,32,42,0|b3hy00,54,44,1|bdxsjz,54,44,1|bdxsk0,32,42,0|bm80nz,32,42,0|bm80o0,54,44,1|bwnv7z,54,44,1|bwnv80,32,42,0|c4y3bz,32,42,0|c4y3c0,54,44,1|cfqwjz,54,44,1|cfqwk0,32,42,0|cno5zz,32,42,0|cno600,54,44,1|cygz7z,54,44,1|cygz80,32,42,0|d6e8nz,32,42,0|d6e8o0,54,44,1|dh71vz,54,44,1|dh71w0,32,42,0|dph9zz,32,42,0|dpha00,54,44,1|dzx4jz,54,44,1|dzx4k0,32,42,0|e87cnz,32,42,0|e87co0,54,44,1|ein77z,54,44,1|ein780,32,42,0|eqxfbz,32,42,0|eqxfc0,54,44,1|f1d9vz,54,44,1|f1d9w0,32,42,0|f9nhzz,32,42,0|f9ni00,54,44,1|fkgb7z,54,44,1|fkgb80,32,42,0|fsdknz,32,42,0|fsdko0,54,44,1|g36dvz,54,44,1|g36dw0,32,42,0|gb3nbz,32,42,0|gb3nc0,54,44,1|glwgjz,54,44,1|glwgk0,32,42,0|gu6onz,32,42,0|gu6oo0,54,44,1|h4mj7z,54,44,1|h4mj80,32,42,0|hcwrbz,32,42,0|hcwrc0,54,44,1|hnclvz,54,44,1|hnclw0,32,42,0|hvmtzz,32,42,0|hvmu00,54,44,1|i6fn7z,54,44,1|i6fn80,32,42,0|iecwnz,32,42,0|iecwo0,54,44,1|ip5pvz,54,44,1|ip5pw0,32,42,0|ix2zbz,32,42,0|ix2zc0,54,44,1|j7vsjz,54,44,1|j7vsk0,32,42,0|jeq5zz,32,42,0|jeq600,54,44,1|jqytvz,54,44,1|jqytw0,32,42,0|jxg8nz,32,42,0|jxg8o0,54,44,1|k9owjz,54,44,1|k9owk0,32,42,0|kg6bbz,32,42,0|kg6bc0,54,44,1|ksez7z,54,44,1|ksez80,32,42,0|kz9cnz,32,42,0|kz9co0,54,44,1|lbi0jz,54,44,1|lbi0k0,32,42,0|lhzfbz,32,42,0|lhzfc0,54,44,1|lu837z,54,44,1|lu8380,32,42,0|m0phzz,32,42,0|m0pi00,54,44,1|mcy5vz,54,44,1|mcy5w0,32,42,0|mjfknz,32,42,0|mjfko0,54,44,1|mvo8jz,54,44,1|mvo8k0,32,42,0|n25nbz,32,42,0|n25nc0,54,44,1|neeb7z,54,44,1|neeb80,32,42,0|nkvpzz,32,42,0|nkvq00,54,44,1|nx4dvz,54,44,1|nx4dw0,32,42,0|o3yrbz,32,42,0|o3yrc0,54,44,1|og7f7z,54,44,1|og7f80,32,42,0|omotzz,32,42,0|omou00,54,44,1|oyxhvz,54,44,1|oyxhw0,32,42,0|p5ewnz,32,42,0|p5ewo0,54,44,1|phnkjz,54,44,1|phnkk0,32,42,0|po4zbz,32,42,0|po4zc0,54,44,1|q0dn7z,54,44,1|q0dn80,32,42,0|q6v1zz,32,42,0|q6v200,54,44,1|qj3pvz,54,44,1|qj3pw0,32,42,0|qpy3bz,32,42,0|qpy3c0,54,44,1|r26r7z,54,44,1|r26r80,32,42,0|r8o5zz,32,42,0|r8o600,54,44,1|rkwtvz,54,44,1|rkwtw0,32,42,0|rre8nz,32,42,0|rre8o0,54,44,1|s3mwjz,54,44,1|s3mwk0,32,42,0|sa4bbz,32,42,0|sa4bc0,54,44,1|smcz7z,54,44,1|smcz80,32,42,0|ssudzz,32,42,0|ssue00,54,44,1|t531vz,54,44,1|t531w0,32,42,0|tbkgnz,32,42,0|tbkgo0,54,44,1|tnt4jz,54,44,1|tnt4k0,32,42,0|tunhzz,32,42,0|tuni00,54,44,1|u6w5vz,54,44,1|u6w5w0,32,42,0|uddknz,32,42,0|uddko0,54,44,1|upm8jz,54,44,1|upm8k0,32,42,0|uw3nbz,32,42,0|uw3nc0,54,44,1|v8cb7z,54,44,1|v8cb80,32,42,0|vetpzz,32,42,0|vetq00,54,44,1|vr2dvz,54,44,1|vr2dw0,32,42,0|vxjsnz,32,42,0|vxjso0,54,44,1|w9sgjz,54,44,1|w9sgk0,32,42,0|wgmtzz,32,42,0|wgmu00,54,44,1|wsvhvz,54,44,1|wsvhw0,32,42,0|wzcwnz,32,42,0|wzcwo0,54,44,1|xblkjz,54,44,1|xblkk0,32,42,0|xi2zbz,32,42,0|xi2zc0,54,44,1|xubn7z,54,44,1|xubn80,32,42,0|y0t1zz,32,42,0|y0t200,54,44,1|yd1pvz,54,44,1|yd1pw0,32,42,0|yjj4nz,32,42,0|yjj4o0,54,44,1|yvrsjz,54,44,1|yvrsk0,32,42,0|z297bz,32,42,0|z297c0,54,44,1|zehv7z,54,44,1|zehv80,32,42,0","Atlantic/Canary|,0,305,0|-oytbtc,13,15,0|-c4xh41,13,15,0|-c4xh40,8,1,0|5csqnz,8,1,0|5csqo0,9,10,1|5lsw3z,9,10,1|5lsw40,8,1,0|5v5xfz,8,1,0|5v5xg0,9,10,1|64iyrz,9,10,1|64iys0,8,1,0|6dw03z,8,1,0|6dw040,9,10,1|6n91fz,9,10,1|6n91g0,8,1,0|6wm2rz,8,1,0|6wm2s0,9,10,1|75z43z,9,10,1|75z440,8,1,0|7fc5fz,8,1,0|7fc5g0,9,10,1|7p25fz,9,10,1|7p25g0,8,1,0|7yf6rz,8,1,0|7yf6s0,9,10,1|87s83z,9,10,1|87s840,8,1,0|8h59fz,8,1,0|8h59g0,9,10,1|8qiarz,9,10,1|8qias0,8,1,0|8zvc3z,8,1,0|8zvc40,9,10,1|998dfz,9,10,1|998dg0,8,1,0|9ilerz,8,1,0|9iles0,9,10,1|9ryg3z,9,10,1|9ryg40,8,1,0|a1bhfz,8,1,0|a1bhg0,9,10,1|aaoirz,9,10,1|aaois0,8,1,0|ak1k3z,8,1,0|ak1k40,9,10,1|atrk3z,9,10,1|atrk40,8,1,0|b34lfz,8,1,0|b34lg0,9,10,1|bchmrz,9,10,1|bchms0,8,1,0|bluo3z,8,1,0|bluo40,9,10,1|bv7pfz,9,10,1|bv7pg0,8,1,0|c4kqrz,8,1,0|c4kqs0,9,10,1|cdxs3z,9,10,1|cdxs40,8,1,0|cnatfz,8,1,0|cnatg0,9,10,1|cwnurz,9,10,1|cwnus0,8,1,0|d60w3z,8,1,0|d60w40,9,10,1|dfdxfz,9,10,1|dfdxg0,8,1,0|dp3xfz,8,1,0|dp3xg0,9,10,1|dzwtfz,9,10,1|dzwtg0,8,1,0|e7u03z,8,1,0|e7u040,9,10,1|eimw3z,9,10,1|eimw40,8,1,0|eqk2rz,8,1,0|eqk2s0,9,10,1|f1cyrz,9,10,1|f1cys0,8,1,0|f9a5fz,8,1,0|f9a5g0,9,10,1|fkg03z,9,10,1|fkg040,8,1,0|fs083z,8,1,0|fs0840,9,10,1|g362rz,9,10,1|g362s0,8,1,0|gaqarz,8,1,0|gaqas0,9,10,1|glw5fz,9,10,1|glw5g0,8,1,0|gttc3z,8,1,0|gttc40,9,10,1|h4m83z,9,10,1|h4m840,8,1,0|hcjerz,8,1,0|hcjes0,9,10,1|hncarz,9,10,1|hncas0,8,1,0|hv9hfz,8,1,0|hv9hg0,9,10,1|i6fc3z,9,10,1|i6fc40,8,1,0|idzk3z,8,1,0|idzk40,9,10,1|ip5erz,9,10,1|ip5es0,8,1,0|iwpmrz,8,1,0|iwpms0,9,10,1|j7vhfz,9,10,1|j7vhg0,8,1,0|jffpfz,8,1,0|jffpg0,9,10,1|jqlk3z,9,10,1|jqlk40,8,1,0|jyiqrz,8,1,0|jyiqs0,9,10,1|k9bmrz,9,10,1|k9bms0,8,1,0|kh8tfz,8,1,0|kh8tg0,9,10,1|ks1pfz,9,10,1|ks1pg0,8,1,0|kzyw3z,8,1,0|kzyw40,9,10,1|lb4qrz,9,10,1|lb4qs0,8,1,0|lioyrz,8,1,0|lioys0,9,10,1|ltutfz,9,10,1|ltutg0,8,1,0|m1f1fz,8,1,0|m1f1g0,9,10,1|mckw3z,9,10,1|mckw40,8,1,0|mki2rz,8,1,0|mki2s0,9,10,1|mvayrz,9,10,1|mvays0,8,1,0|n385fz,8,1,0|n385g0,9,10,1|ne11fz,9,10,1|ne11g0,8,1,0|nly83z,8,1,0|nly840,9,10,1|nwr43z,9,10,1|nwr440,8,1,0|o4oarz,8,1,0|o4oas0,9,10,1|ofu5fz,9,10,1|ofu5g0,8,1,0|onedfz,8,1,0|onedg0,9,10,1|oyk83z,9,10,1|oyk840,8,1,0|p64g3z,8,1,0|p64g40,9,10,1|phaarz,9,10,1|phaas0,8,1,0|pp7hfz,8,1,0|pp7hg0,9,10,1|q00dfz,9,10,1|q00dg0,8,1,0|q7xk3z,8,1,0|q7xk40,9,10,1|qiqg3z,9,10,1|qiqg40,8,1,0|qqnmrz,8,1,0|qqnms0,9,10,1|r1thfz,9,10,1|r1thg0,8,1,0|r9dpfz,8,1,0|r9dpg0,9,10,1|rkjk3z,9,10,1|rkjk40,8,1,0|rs3s3z,8,1,0|rs3s40,9,10,1|s39mrz,9,10,1|s39ms0,8,1,0|sb6tfz,8,1,0|sb6tg0,9,10,1|slzpfz,9,10,1|slzpg0,8,1,0|stww3z,8,1,0|stww40,9,10,1|t4ps3z,9,10,1|t4ps40,8,1,0|tcmyrz,8,1,0|tcmys0,9,10,1|tnfurz,9,10,1|tnfus0,8,1,0|tvd1fz,8,1,0|tvd1g0,9,10,1|u6iw3z,9,10,1|u6iw40,8,1,0|ue343z,8,1,0|ue3440,9,10,1|up8yrz,9,10,1|up8ys0,8,1,0|uwt6rz,8,1,0|uwt6s0,9,10,1|v7z1fz,9,10,1|v7z1g0,8,1,0|vfw83z,8,1,0|vfw840,9,10,1|vqp43z,9,10,1|vqp440,8,1,0|vymarz,8,1,0|vymas0,9,10,1|w9f6rz,9,10,1|w9f6s0,8,1,0|whcdfz,8,1,0|whcdg0,9,10,1|wsi83z,9,10,1|wsi840,8,1,0|x02g3z,8,1,0|x02g40,9,10,1|xb8arz,9,10,1|xb8as0,8,1,0|xisirz,8,1,0|xisis0,9,10,1|xtydfz,9,10,1|xtydg0,8,1,0|y1ilfz,8,1,0|y1ilg0,9,10,1|ycog3z,9,10,1|ycog40,8,1,0|yklmrz,8,1,0|yklms0,9,10,1|yveirz,9,10,1|yveis0,8,1,0|z3bpfz,8,1,0|z3bpg0,9,10,1|ze4lfz,9,10,1|ze4lg0,8,1,0","Atlantic/Cape_Verde|,0,306,0|-u9rbs0,40,45,0|-e9kqg1,40,45,0|-e9kqg0,13,15,1|-cmxp81,13,15,1|-cmxp80,40,45,0|32t73z,40,45,0|32t740,13,15,0","Atlantic/Faroe|,0,307,0|-wcehew,8,1,0|5v5xfz,8,1,0|5v5xg0,9,10,1|64iyrz,9,10,1|64iys0,8,1,0|6dw03z,8,1,0|6dw040,9,10,1|6n91fz,9,10,1|6n91g0,8,1,0|6wm2rz,8,1,0|6wm2s0,9,10,1|75z43z,9,10,1|75z440,8,1,0|7fc5fz,8,1,0|7fc5g0,9,10,1|7p25fz,9,10,1|7p25g0,8,1,0|7yf6rz,8,1,0|7yf6s0,9,10,1|87s83z,9,10,1|87s840,8,1,0|8h59fz,8,1,0|8h59g0,9,10,1|8qiarz,9,10,1|8qias0,8,1,0|8zvc3z,8,1,0|8zvc40,9,10,1|998dfz,9,10,1|998dg0,8,1,0|9ilerz,8,1,0|9iles0,9,10,1|9ryg3z,9,10,1|9ryg40,8,1,0|a1bhfz,8,1,0|a1bhg0,9,10,1|aaoirz,9,10,1|aaois0,8,1,0|ak1k3z,8,1,0|ak1k40,9,10,1|atrk3z,9,10,1|atrk40,8,1,0|b34lfz,8,1,0|b34lg0,9,10,1|bchmrz,9,10,1|bchms0,8,1,0|bluo3z,8,1,0|bluo40,9,10,1|bv7pfz,9,10,1|bv7pg0,8,1,0|c4kqrz,8,1,0|c4kqs0,9,10,1|cdxs3z,9,10,1|cdxs40,8,1,0|cnatfz,8,1,0|cnatg0,9,10,1|cwnurz,9,10,1|cwnus0,8,1,0|d60w3z,8,1,0|d60w40,9,10,1|dfdxfz,9,10,1|dfdxg0,8,1,0|dp3xfz,8,1,0|dp3xg0,9,10,1|dzwtfz,9,10,1|dzwtg0,8,1,0|e7u03z,8,1,0|e7u040,9,10,1|eimw3z,9,10,1|eimw40,8,1,0|eqk2rz,8,1,0|eqk2s0,9,10,1|f1cyrz,9,10,1|f1cys0,8,1,0|f9a5fz,8,1,0|f9a5g0,9,10,1|fkg03z,9,10,1|fkg040,8,1,0|fs083z,8,1,0|fs0840,9,10,1|g362rz,9,10,1|g362s0,8,1,0|gaqarz,8,1,0|gaqas0,9,10,1|glw5fz,9,10,1|glw5g0,8,1,0|gttc3z,8,1,0|gttc40,9,10,1|h4m83z,9,10,1|h4m840,8,1,0|hcjerz,8,1,0|hcjes0,9,10,1|hncarz,9,10,1|hncas0,8,1,0|hv9hfz,8,1,0|hv9hg0,9,10,1|i6fc3z,9,10,1|i6fc40,8,1,0|idzk3z,8,1,0|idzk40,9,10,1|ip5erz,9,10,1|ip5es0,8,1,0|iwpmrz,8,1,0|iwpms0,9,10,1|j7vhfz,9,10,1|j7vhg0,8,1,0|jffpfz,8,1,0|jffpg0,9,10,1|jqlk3z,9,10,1|jqlk40,8,1,0|jyiqrz,8,1,0|jyiqs0,9,10,1|k9bmrz,9,10,1|k9bms0,8,1,0|kh8tfz,8,1,0|kh8tg0,9,10,1|ks1pfz,9,10,1|ks1pg0,8,1,0|kzyw3z,8,1,0|kzyw40,9,10,1|lb4qrz,9,10,1|lb4qs0,8,1,0|lioyrz,8,1,0|lioys0,9,10,1|ltutfz,9,10,1|ltutg0,8,1,0|m1f1fz,8,1,0|m1f1g0,9,10,1|mckw3z,9,10,1|mckw40,8,1,0|mki2rz,8,1,0|mki2s0,9,10,1|mvayrz,9,10,1|mvays0,8,1,0|n385fz,8,1,0|n385g0,9,10,1|ne11fz,9,10,1|ne11g0,8,1,0|nly83z,8,1,0|nly840,9,10,1|nwr43z,9,10,1|nwr440,8,1,0|o4oarz,8,1,0|o4oas0,9,10,1|ofu5fz,9,10,1|ofu5g0,8,1,0|onedfz,8,1,0|onedg0,9,10,1|oyk83z,9,10,1|oyk840,8,1,0|p64g3z,8,1,0|p64g40,9,10,1|phaarz,9,10,1|phaas0,8,1,0|pp7hfz,8,1,0|pp7hg0,9,10,1|q00dfz,9,10,1|q00dg0,8,1,0|q7xk3z,8,1,0|q7xk40,9,10,1|qiqg3z,9,10,1|qiqg40,8,1,0|qqnmrz,8,1,0|qqnms0,9,10,1|r1thfz,9,10,1|r1thg0,8,1,0|r9dpfz,8,1,0|r9dpg0,9,10,1|rkjk3z,9,10,1|rkjk40,8,1,0|rs3s3z,8,1,0|rs3s40,9,10,1|s39mrz,9,10,1|s39ms0,8,1,0|sb6tfz,8,1,0|sb6tg0,9,10,1|slzpfz,9,10,1|slzpg0,8,1,0|stww3z,8,1,0|stww40,9,10,1|t4ps3z,9,10,1|t4ps40,8,1,0|tcmyrz,8,1,0|tcmys0,9,10,1|tnfurz,9,10,1|tnfus0,8,1,0|tvd1fz,8,1,0|tvd1g0,9,10,1|u6iw3z,9,10,1|u6iw40,8,1,0|ue343z,8,1,0|ue3440,9,10,1|up8yrz,9,10,1|up8ys0,8,1,0|uwt6rz,8,1,0|uwt6s0,9,10,1|v7z1fz,9,10,1|v7z1g0,8,1,0|vfw83z,8,1,0|vfw840,9,10,1|vqp43z,9,10,1|vqp440,8,1,0|vymarz,8,1,0|vymas0,9,10,1|w9f6rz,9,10,1|w9f6s0,8,1,0|whcdfz,8,1,0|whcdg0,9,10,1|wsi83z,9,10,1|wsi840,8,1,0|x02g3z,8,1,0|x02g40,9,10,1|xb8arz,9,10,1|xb8as0,8,1,0|xisirz,8,1,0|xisis0,9,10,1|xtydfz,9,10,1|xtydg0,8,1,0|y1ilfz,8,1,0|y1ilg0,9,10,1|ycog3z,9,10,1|ycog40,8,1,0|yklmrz,8,1,0|yklms0,9,10,1|yveirz,9,10,1|yveis0,8,1,0|z3bpfz,8,1,0|z3bpg0,9,10,1|ze4lfz,9,10,1|ze4lg0,8,1,0","Atlantic/Madeira|,0,308,0|-18vsfjc,137,308,0|-u9rek1,137,308,0|-u9rek0,13,15,0|-rxwyo1,13,15,0|-rxwyo0,17,1,1|-rqx181,17,1,1|-rqx180,13,15,0|-rkqw01,13,15,0|-rkqw00,17,1,1|-r90o01,17,1,1|-r90o00,13,15,0|-r1x401,13,15,0|-r1x400,17,1,1|-qq8qo1,17,1,1|-qq8qo0,13,15,0|-qj71c1,13,15,0|-qj71c0,17,1,1|-q7gtc1,17,1,1|-q7gtc0,13,15,0|-q0d9c1,13,15,0|-q0d9c0,17,1,1|-pon1c1,17,1,1|-pon1c0,13,15,0|-phlc01,13,15,0|-phlc00,17,1,1|-p5v401,17,1,1|-p5v400,13,15,0|-nuso01,13,15,0|-nuso00,17,1,1|-nlhhc1,17,1,1|-nlhhc0,13,15,0|-mt6yo1,13,15,0|-mt6yo0,17,1,1|-mkjuo1,17,1,1|-mkjuo0,13,15,0|-matuo1,13,15,0|-matuo0,17,1,1|-m1ts01,17,1,1|-m1ts00,13,15,0|-lrqtc1,13,15,0|-lrqtc0,17,1,1|-liqqo1,17,1,1|-liqqo0,13,15,0|-l8ns01,13,15,0|-l8ns00,17,1,1|-l00o01,17,1,1|-l00o00,13,15,0|-k77mo1,13,15,0|-k77mo0,17,1,1|-jykio1,17,1,1|-jykio0,13,15,0|-jp7hc1,13,15,0|-jp7hc0,17,1,1|-jfug01,17,1,1|-jfug00,13,15,0|-inedc1,13,15,0|-inedc0,17,1,1|-ie1c01,17,1,1|-ie1c00,13,15,0|-i519c1,13,15,0|-i519c0,17,1,1|-hvb9c1,17,1,1|-hvb9c0,13,15,0|-hl8ao1,13,15,0|-hl8ao0,17,1,1|-hcl6o1,17,1,1|-hcl6o0,13,15,0|-h385c1,13,15,0|-h385c0,17,1,1|-gtv401,17,1,1|-gtv400,13,15,0|-gkv1c1,13,15,0|-gkv1c0,17,1,1|-gb51c1,17,1,1|-gb51c0,13,15,0|-g122o1,13,15,0|-g122o0,17,1,1|-fpw801,17,1,1|-fpw800,13,15,0|-fkuqo1,13,15,0|-fkuqo0,17,1,1|-f9bxc1,17,1,1|-f9bxc0,13,15,0|-ezyw01,13,15,0|-ezyw00,17,1,1|-eqk001,17,1,1|-eqk000,13,15,0|-eibpc1,13,15,0|-eibpc0,17,1,1|-eg6041,17,1,1|-eg6040,18,10,1|-eaelg1,18,10,1|-eaelg0,17,1,1|-e6sw01,17,1,1|-e6sw00,13,15,0|-dzlmo1,13,15,0|-dzlmo0,17,1,1|-dxsw41,17,1,1|-dxsw40,18,10,1|-dqylg1,18,10,1|-dqylg0,17,1,1|-dnpuo1,17,1,1|-dnpuo0,13,15,0|-dgvk01,13,15,0|-dgvk00,17,1,1|-depus1,17,1,1|-depus0,18,10,1|-d88is1,18,10,1|-d88is0,17,1,1|-d4zs01,17,1,1|-d4zs00,13,15,0|-cy5hc1,13,15,0|-cy5hc0,17,1,1|-cvzs41,17,1,1|-cvzs40,18,10,1|-cpig41,18,10,1|-cpig40,17,1,1|-cm9pc1,17,1,1|-cm9pc0,13,15,0|-cdzk01,13,15,0|-cdzk00,17,1,1|-c4mio1,17,1,1|-c4mio0,13,15,0|-bv9901,13,15,0|-bv9900,17,1,1|-blw7o1,17,1,1|-blw7o0,13,15,0|-bcj6c1,13,15,0|-bcj6c0,17,1,1|-b36501,17,1,1|-b36500,13,15,0|-att3o1,13,15,0|-att3o0,17,1,1|-akg2c1,17,1,1|-akg2c0,13,15,0|-9scyc1,13,15,0|-9scyc0,17,1,1|-9imyc1,17,1,1|-9imyc0,13,15,0|-999x01,13,15,0|-999x00,17,1,1|-8zwvo1,17,1,1|-8zwvo0,13,15,0|-8qjuc1,13,15,0|-8qjuc0,17,1,1|-8h6t01,17,1,1|-8h6t00,13,15,0|-87tro1,13,15,0|-87tro0,17,1,1|-7ygqc1,17,1,1|-7ygqc0,13,15,0|-7p3p01,13,15,0|-7p3p00,17,1,1|-7fqno1,17,1,1|-7fqno0,13,15,0|-76dmc1,13,15,0|-76dmc0,17,1,1|-6wnmc1,17,1,1|-6wnmc0,13,15,0|-6nal01,13,15,0|-6nal00,17,1,1|-6dxjo1,17,1,1|-6dxjo0,13,15,0|-64kic1,13,15,0|-64kic0,17,1,1|-5v7h01,17,1,1|-5v7h00,13,15,0|-5lufo1,13,15,0|-5lufo0,17,1,1|-5chec1,17,1,1|-5chec0,13,15,0|-534d01,13,15,0|-534d00,17,1,1|-4trbo1,17,1,1|-4trbo0,13,15,0|-4keac1,13,15,0|-4keac0,17,1,1|-4b1901,17,1,1|-4b1900,13,15,0|-41o7o1,13,15,0|-41o7o0,17,1,1|-3ry7o1,17,1,1|-3ry7o0,13,15,0|-3il6c1,13,15,0|-3il6c0,17,1,1|-398501,17,1,1|-398500,13,15,0|-2zv3o1,13,15,0|-2zv3o0,17,1,1|-2qi2c1,17,1,1|-2qi2c0,13,15,0|-2h5101,13,15,0|-2h5100,17,1,1|-27rzo1,17,1,1|-27rzo0,13,15,0|-1yeyc1,13,15,0|-1yeyc0,8,1,0|3rwlbz,8,1,0|3rwlc0,9,10,1|419mnz,9,10,1|419mo0,8,1,0|4azmnz,8,1,0|4azmo0,9,10,1|4kcnzz,9,10,1|4kco00,8,1,0|4tppbz,8,1,0|4tppc0,9,10,1|532tfz,9,10,1|532tg0,8,1,0|5cfrzz,8,1,0|5cfs00,9,10,1|5lsw3z,9,10,1|5lsw40,8,1,0|5v5xfz,8,1,0|5v5xg0,9,10,1|64iyrz,9,10,1|64iys0,8,1,0|6dw03z,8,1,0|6dw040,9,10,1|6n91fz,9,10,1|6n91g0,8,1,0|6wm5jz,8,1,0|6wm5k0,9,10,1|75z43z,9,10,1|75z440,8,1,0|7fc5fz,8,1,0|7fc5g0,9,10,1|7p25fz,9,10,1|7p25g0,8,1,0|7yf6rz,8,1,0|7yf6s0,9,10,1|87s83z,9,10,1|87s840,8,1,0|8h59fz,8,1,0|8h59g0,9,10,1|8qiarz,9,10,1|8qias0,8,1,0|8zvc3z,8,1,0|8zvc40,9,10,1|998dfz,9,10,1|998dg0,8,1,0|9ilerz,8,1,0|9iles0,9,10,1|9ryg3z,9,10,1|9ryg40,8,1,0|a1bhfz,8,1,0|a1bhg0,9,10,1|aaoirz,9,10,1|aaois0,8,1,0|ak1k3z,8,1,0|ak1k40,9,10,1|atrk3z,9,10,1|atrk40,8,1,0|b34lfz,8,1,0|b34lg0,9,10,1|bchmrz,9,10,1|bchms0,8,1,0|bluo3z,8,1,0|bluo40,9,10,1|bv7pfz,9,10,1|bv7pg0,8,1,0|c4kqrz,8,1,0|c4kqs0,9,10,1|cdxs3z,9,10,1|cdxs40,8,1,0|cnatfz,8,1,0|cnatg0,9,10,1|cwnurz,9,10,1|cwnus0,8,1,0|d60w3z,8,1,0|d60w40,9,10,1|dfdxfz,9,10,1|dfdxg0,8,1,0|dp3xfz,8,1,0|dp3xg0,9,10,1|dzwtfz,9,10,1|dzwtg0,8,1,0|e7u03z,8,1,0|e7u040,9,10,1|eimw3z,9,10,1|eimw40,8,1,0|eqk2rz,8,1,0|eqk2s0,9,10,1|f1cyrz,9,10,1|f1cys0,8,1,0|f9a5fz,8,1,0|f9a5g0,9,10,1|fkg03z,9,10,1|fkg040,8,1,0|fs083z,8,1,0|fs0840,9,10,1|g362rz,9,10,1|g362s0,8,1,0|gaqarz,8,1,0|gaqas0,9,10,1|glw5fz,9,10,1|glw5g0,8,1,0|gttc3z,8,1,0|gttc40,9,10,1|h4m83z,9,10,1|h4m840,8,1,0|hcjerz,8,1,0|hcjes0,9,10,1|hncarz,9,10,1|hncas0,8,1,0|hv9hfz,8,1,0|hv9hg0,9,10,1|i6fc3z,9,10,1|i6fc40,8,1,0|idzk3z,8,1,0|idzk40,9,10,1|ip5erz,9,10,1|ip5es0,8,1,0|iwpmrz,8,1,0|iwpms0,9,10,1|j7vhfz,9,10,1|j7vhg0,8,1,0|jffpfz,8,1,0|jffpg0,9,10,1|jqlk3z,9,10,1|jqlk40,8,1,0|jyiqrz,8,1,0|jyiqs0,9,10,1|k9bmrz,9,10,1|k9bms0,8,1,0|kh8tfz,8,1,0|kh8tg0,9,10,1|ks1pfz,9,10,1|ks1pg0,8,1,0|kzyw3z,8,1,0|kzyw40,9,10,1|lb4qrz,9,10,1|lb4qs0,8,1,0|lioyrz,8,1,0|lioys0,9,10,1|ltutfz,9,10,1|ltutg0,8,1,0|m1f1fz,8,1,0|m1f1g0,9,10,1|mckw3z,9,10,1|mckw40,8,1,0|mki2rz,8,1,0|mki2s0,9,10,1|mvayrz,9,10,1|mvays0,8,1,0|n385fz,8,1,0|n385g0,9,10,1|ne11fz,9,10,1|ne11g0,8,1,0|nly83z,8,1,0|nly840,9,10,1|nwr43z,9,10,1|nwr440,8,1,0|o4oarz,8,1,0|o4oas0,9,10,1|ofu5fz,9,10,1|ofu5g0,8,1,0|onedfz,8,1,0|onedg0,9,10,1|oyk83z,9,10,1|oyk840,8,1,0|p64g3z,8,1,0|p64g40,9,10,1|phaarz,9,10,1|phaas0,8,1,0|pp7hfz,8,1,0|pp7hg0,9,10,1|q00dfz,9,10,1|q00dg0,8,1,0|q7xk3z,8,1,0|q7xk40,9,10,1|qiqg3z,9,10,1|qiqg40,8,1,0|qqnmrz,8,1,0|qqnms0,9,10,1|r1thfz,9,10,1|r1thg0,8,1,0|r9dpfz,8,1,0|r9dpg0,9,10,1|rkjk3z,9,10,1|rkjk40,8,1,0|rs3s3z,8,1,0|rs3s40,9,10,1|s39mrz,9,10,1|s39ms0,8,1,0|sb6tfz,8,1,0|sb6tg0,9,10,1|slzpfz,9,10,1|slzpg0,8,1,0|stww3z,8,1,0|stww40,9,10,1|t4ps3z,9,10,1|t4ps40,8,1,0|tcmyrz,8,1,0|tcmys0,9,10,1|tnfurz,9,10,1|tnfus0,8,1,0|tvd1fz,8,1,0|tvd1g0,9,10,1|u6iw3z,9,10,1|u6iw40,8,1,0|ue343z,8,1,0|ue3440,9,10,1|up8yrz,9,10,1|up8ys0,8,1,0|uwt6rz,8,1,0|uwt6s0,9,10,1|v7z1fz,9,10,1|v7z1g0,8,1,0|vfw83z,8,1,0|vfw840,9,10,1|vqp43z,9,10,1|vqp440,8,1,0|vymarz,8,1,0|vymas0,9,10,1|w9f6rz,9,10,1|w9f6s0,8,1,0|whcdfz,8,1,0|whcdg0,9,10,1|wsi83z,9,10,1|wsi840,8,1,0|x02g3z,8,1,0|x02g40,9,10,1|xb8arz,9,10,1|xb8as0,8,1,0|xisirz,8,1,0|xisis0,9,10,1|xtydfz,9,10,1|xtydg0,8,1,0|y1ilfz,8,1,0|y1ilg0,9,10,1|ycog3z,9,10,1|ycog40,8,1,0|yklmrz,8,1,0|yklms0,9,10,1|yveirz,9,10,1|yveis0,8,1,0|z3bpfz,8,1,0|z3bpg0,9,10,1|ze4lfz,9,10,1|ze4lg0,8,1,0","Atlantic/Reykjavik|,0,309,0|-wcwx9c,13,15,0|-rl7k01,13,15,0|-rl7k00,17,1,1|-r8ph81,17,1,1|-r8ph80,13,15,0|-r2fmo1,13,15,0|-r2fmo0,17,1,1|-qolek1,17,1,1|-qolek0,13,15,0|-qjnpc1,13,15,0|-qjnpc0,17,1,1|-q5th81,17,1,1|-q5th80,13,15,0|-pgm5c1,13,15,0|-pgm5c0,17,1,1|-pbq581,17,1,1|-pbq580,13,15,0|-g0c5c1,13,15,0|-g0c5c0,17,1,1|-fqyyg1,17,1,1|-fqyyg0,13,15,0|-fkuic1,13,15,0|-fkuic0,17,1,1|-f7vx41,17,1,1|-f7vx40,13,15,0|-f1rjs1,13,15,0|-f1rjs0,17,1,1|-ep5ug1,17,1,1|-ep5ug0,13,15,0|-eioig1,13,15,0|-eioig0,17,1,1|-e6sqg1,17,1,1|-e6sqg0,13,15,0|-dzyfs1,13,15,0|-dzyfs0,17,1,1|-do2ns1,17,1,1|-do2ns0,13,15,0|-dh8d41,13,15,0|-dh8d40,17,1,1|-d5cl41,17,1,1|-d5cl40,13,15,0|-cyiag1,13,15,0|-cyiag0,17,1,1|-cm9js1,17,1,1|-cm9js0,13,15,0|-cfs7s1,13,15,0|-cfs7s0,17,1,1|-c3jh41,17,1,1|-c3jh40,13,15,0|-bv9bs1,13,15,0|-bv9bs0,17,1,1|-bkteg1,17,1,1|-bkteg0,13,15,0|-bcj941,13,15,0|-bcj940,17,1,1|-b23bs1,17,1,1|-b23bs0,13,15,0|-att6g1,13,15,0|-att6g0,17,1,1|-aj0ag1,17,1,1|-aj0ag0,13,15,0|-ab33s1,13,15,0|-ab33s0,17,1,1|-a0n6g1,17,1,1|-a0n6g0,13,15,0|-9sd141,13,15,0|-9sd140,17,1,1|-9hk541,17,1,1|-9hk540,13,15,0|-999zs1,13,15,0|-999zs0,17,1,1|-8yu2g1,17,1,1|-8yu2g0,13,15,0|-8qjx41,13,15,0|-8qjx40,17,1,1|-8g3zs1,17,1,1|-8g3zs0,13,15,0|-87tug1,13,15,0|-87tug0,17,1,1|-7xdx41,17,1,1|-7xdx40,13,15,0|-7p3rs1,13,15,0|-7p3rs0,17,1,1|-7enug1,17,1,1|-7enug0,13,15,0|-76dp41,13,15,0|-76dp40,17,1,1|-6vkt41,17,1,1|-6vkt40,13,15,0|-6nans1,13,15,0|-6nans0,17,1,1|-6cuqg1,17,1,1|-6cuqg0,13,15,0|-64kl41,13,15,0|-64kl40,17,1,1|-5u4ns1,17,1,1|-5u4ns0,13,15,0|-5luig1,13,15,0|-5luig0,17,1,1|-5bel41,17,1,1|-5bel40,13,15,0|-534fs1,13,15,0|-534fs0,17,1,1|-4soig1,17,1,1|-4soig0,13,15,0|-4ked41,13,15,0|-4ked40,17,1,1|-49yfs1,17,1,1|-49yfs0,13,15,0|-41oag1,13,15,0|-41oag0,17,1,1|-3qveg1,17,1,1|-3qveg0,13,15,0|-3il941,13,15,0|-3il940,17,1,1|-385bs1,17,1,1|-385bs0,13,15,0|-2zv6g1,13,15,0|-2zv6g0,17,1,1|-2pf941,17,1,1|-2pf940,13,15,0|-2h53s1,13,15,0|-2h53s0,17,1,1|-26p6g1,17,1,1|-26p6g0,13,15,0|-1yf141,13,15,0|-1yf140,17,1,1|-1nz3s1,17,1,1|-1nz3s0,13,15,0|-1foyg1,13,15,0|-1foyg0,17,1,1|-14w2g1,17,1,1|-14w2g0,13,15,0|-wlx41,13,15,0|-wlx40,1,1,0","Atlantic/South_Georgia|,0,310,0|-15r12kg,40,45,0","Atlantic/St_Helena|,0,12,0|-u9rgl4,1,1,0","Atlantic/Stanley|,0,311,0|-15r0ymc,85,311,0|-u63pad,85,311,0|-u63pac,42,42,0|-gu7rk1,42,42,0|-gu7rk0,39,44,1|-gl7ro1,39,44,1|-gl7ro0,42,42,0|-gbhow1,42,42,0|-gbhow0,39,44,1|-g2hp01,39,44,1|-g2hp00,42,42,0|-fsenk1,42,42,0|-fsenk0,39,44,1|-fjeno1,39,44,1|-fjeno0,42,42,0|-f9okw1,42,42,0|-f9okw0,39,44,1|-f0ol01,39,44,1|-f0ol00,42,42,0|-eqyi81,42,42,0|-eqyi80,39,44,1|-ehyic1,39,44,1|-ehyic0,42,42,0|-e88fk1,42,42,0|-e88fk0,39,44,1|-e3aqc1,39,44,1|-e3aqc0,42,42,0|6yf4fz,42,42,0|6yf4g0,39,44,0|75z9nz,39,44,0|75z9o0,40,45,1|7h51jz,40,45,1|7h51k0,39,44,0|7ocdnz,39,44,0|7ocdo0,40,45,1|7zv47z,40,45,1|7zv480,39,44,0|872gbz,39,44,0|872gc0,39,44,1|8i8azz,39,44,1|8i8b00,42,42,0|8pslrz,42,42,0|8psls0,39,44,1|90ydnz,39,44,1|90ydo0,42,42,0|98iofz,42,42,0|98iog0,39,44,1|9jogbz,39,44,1|9jogc0,42,42,0|9r8r3z,42,42,0|9r8r40,39,44,1|a2eizz,39,44,1|a2ej00,42,42,0|a9ytrz,42,42,0|a9yts0,39,44,1|alhkbz,39,44,1|alhkc0,42,42,0|asowfz,42,42,0|asowg0,39,44,1|b47mzz,39,44,1|b47n00,42,42,0|bbrxrz,42,42,0|bbrxs0,39,44,1|bmxpnz,39,44,1|bmxpo0,42,42,0|bui0fz,42,42,0|bui0g0,39,44,1|c5nsbz,39,44,1|c5nsc0,42,42,0|cd833z,42,42,0|cd8340,39,44,1|coduzz,39,44,1|codv00,42,42,0|cvy5rz,42,42,0|cvy5s0,39,44,1|d73xnz,39,44,1|d73xo0,42,42,0|deo8fz,42,42,0|deo8g0,39,44,1|dq6yzz,39,44,1|dq6z00,42,42,0|dxr9rz,42,42,0|dxr9s0,39,44,1|e8x1nz,39,44,1|e8x1o0,42,42,0|eghcfz,42,42,0|eghcg0,39,44,1|ern4bz,39,44,1|ern4c0,42,42,0|ez7f3z,42,42,0|ez7f40,39,44,1|fad6zz,39,44,1|fad700,42,42,0|fhxhrz,42,42,0|fhxhs0,39,44,1|ft39nz,39,44,1|ft39o0,42,42,0|g0nkfz,42,42,0|g0nkg0,39,44,1|gbthvz,39,44,1|gbthw0,42,42,0|gj0tzz,42,42,0|gj0u00,39,44,1|guwj7z,39,44,1|guwj80,42,42,0|h1qwnz,42,42,0|h1qwo0,39,44,1|hdmlvz,39,44,1|hdmlw0,42,42,0|hktxzz,42,42,0|hkty00,39,44,1|hwcojz,39,44,1|hwcok0,42,42,0|i3k0nz,42,42,0|i3k0o0,39,44,1|if2r7z,39,44,1|if2r80,42,42,0|ima3bz,42,42,0|ima3c0,39,44,1|ixstvz,39,44,1|ixstw0,42,42,0|j505zz,42,42,0|j50600,39,44,1|jgiwjz,39,44,1|jgiwk0,42,42,0|jnq8nz,42,42,0|jnq8o0,39,44,1|jzlxvz,39,44,1|jzlxw0,42,42,0|k6t9zz,42,42,0|k6ta00,39,44,1|kic0jz,39,44,1|kic0k0,42,42,0|kpjcnz,42,42,0|kpjco0,39,44,1|l1237z,39,44,1|l12380,42,42,0|l89fbz,42,42,0|l89fc0,39,44,0","Australia/Adelaide|,0,312,0|-133j2zw,138,224,0|-10vsp01,138,224,0|-10vsp00,138,248,0|-rnsq61,138,248,0|-rnsq60,139,313,1|-rjj0u1,139,313,1|-rjj0u0,138,248,0|-em3gu1,138,248,0|-em3gu0,139,313,1|-ehmcu1,139,313,1|-ehmcu0,138,248,0|-e89bi1,138,248,0|-e89bi0,139,313,1|-dywa61,139,313,1|-dywa60,138,248,0|-dp6a61,138,248,0|-dp6a60,139,313,1|-dg67i1,139,313,1|-dg67i0,138,248,0|ycghz,138,248,0|ycgi0,139,313,1|14gttz,139,313,1|14gtu0,138,248,0|1h2j5z,138,248,0|1h2j60,139,313,1|1njv5z,139,313,1|1njv60,138,248,0|1zsltz,138,248,0|1zslu0,139,313,1|269xtz,139,313,1|269xu0,138,248,0|2iiohz,138,248,0|2iioi0,139,313,1|2p00hz,139,313,1|2p00i0,138,248,0|318r5z,138,248,0|318r60,139,313,1|3831tz,139,313,1|3831u0,138,248,0|3kbshz,138,248,0|3kbsi0,139,313,1|3qt4hz,139,313,1|3qt4i0,138,248,0|431v5z,138,248,0|431v60,139,313,1|49j75z,139,313,1|49j760,138,248,0|4lrxtz,138,248,0|4lrxu0,139,313,1|4s99tz,139,313,1|4s99u0,138,248,0|54i0hz,138,248,0|54i0i0,139,313,1|5azchz,139,313,1|5azci0,138,248,0|5n835z,138,248,0|5n8360,139,313,1|5tpf5z,139,313,1|5tpf60,138,248,0|65y5tz,138,248,0|65y5u0,139,313,1|6csghz,139,313,1|6csgi0,138,248,0|6p175z,138,248,0|6p1760,139,313,1|6vij5z,139,313,1|6vij60,138,248,0|77r9tz,138,248,0|77r9u0,139,313,1|7e8ltz,139,313,1|7e8lu0,138,248,0|7qhchz,138,248,0|7qhci0,139,313,1|7wyohz,139,313,1|7wyoi0,138,248,0|897f5z,138,248,0|897f60,139,313,1|8geohz,139,313,1|8geoi0,138,248,0|8rkj5z,138,248,0|8rkj60,139,313,1|8z4r5z,139,313,1|8z4r60,138,248,0|9ankhz,138,248,0|9anki0,139,313,1|9i7shz,139,313,1|9i7si0,138,248,0|9tqltz,138,248,0|9tqlu0,139,313,1|a0xv5z,139,313,1|a0xv60,138,248,0|acgohz,138,248,0|acgoi0,139,313,1|ajnxtz,139,313,1|ajnxu0,138,248,0|av6r5z,138,248,0|av6r60,139,313,1|b1o35z,139,313,1|b1o360,138,248,0|bdwttz,138,248,0|bdwtu0,139,313,1|blh1tz,139,313,1|blh1u0,138,248,0|bwmwhz,138,248,0|bwmwi0,139,313,1|c3h75z,139,313,1|c3h760,138,248,0|cfpxtz,138,248,0|cfpxu0,139,313,1|cmx75z,139,313,1|cmx760,138,248,0|cyg0hz,138,248,0|cyg0i0,139,313,1|d608hz,139,313,1|d608i0,138,248,0|dh635z,138,248,0|dh6360,139,313,1|dp39tz,139,313,1|dp39u0,138,248,0|dzw5tz,138,248,0|dzw5u0,139,313,1|e7tchz,139,313,1|e7tci0,138,248,0|eim8hz,138,248,0|eim8i0,139,313,1|eqjf5z,139,313,1|eqjf60,138,248,0|f1cb5z,138,248,0|f1cb60,139,313,1|f99htz,139,313,1|f99hu0,138,248,0|fkfchz,138,248,0|fkfci0,139,313,1|frzkhz,139,313,1|frzki0,138,248,0|g35f5z,138,248,0|g35f60,139,313,1|gapn5z,139,313,1|gapn60,138,248,0|glvhtz,138,248,0|glvhu0,139,313,1|gtsohz,139,313,1|gtsoi0,138,248,0|h4lkhz,138,248,0|h4lki0,139,313,1|hcir5z,139,313,1|hcir60,138,248,0|hnbn5z,138,248,0|hnbn60,139,313,1|hv8ttz,139,313,1|hv8tu0,138,248,0|i6eohz,138,248,0|i6eoi0,139,313,1|idywhz,139,313,1|idywi0,138,248,0|ip4r5z,138,248,0|ip4r60,139,313,1|ix1xtz,139,313,1|ix1xu0,138,248,0|j7uttz,138,248,0|j7utu0,139,313,1|jff1tz,139,313,1|jff1u0,138,248,0|jqkwhz,138,248,0|jqkwi0,139,313,1|jyv1tz,139,313,1|jyv1u0,138,248,0|k8835z,138,248,0|k88360,139,313,1|khl4hz,139,313,1|khl4i0,138,248,0|kqy5tz,138,248,0|kqy5u0,139,313,1|l0b75z,139,313,1|l0b760,138,248,0|l9o8hz,138,248,0|l9o8i0,139,313,1|lj19tz,139,313,1|lj19u0,138,248,0|lseb5z,138,248,0|lseb60,139,313,1|m1rchz,139,313,1|m1rci0,138,248,0|mbhchz,138,248,0|mbhci0,139,313,1|mkudtz,139,313,1|mkudu0,138,248,0|mu7f5z,138,248,0|mu7f60,139,313,1|n3kghz,139,313,1|n3kgi0,138,248,0|ncxhtz,138,248,0|ncxhu0,139,313,1|nmaj5z,139,313,1|nmaj60,138,248,0|nvnkhz,138,248,0|nvnki0,139,313,1|o50ltz,139,313,1|o50lu0,138,248,0|oedn5z,138,248,0|oedn60,139,313,1|onqohz,139,313,1|onqoi0,138,248,0|ox3ptz,138,248,0|ox3pu0,139,313,1|p6gr5z,139,313,1|p6gr60,138,248,0|pg6r5z,138,248,0|pg6r60,139,313,1|ppjshz,139,313,1|ppjsi0,138,248,0|pywttz,138,248,0|pywtu0,139,313,1|q89v5z,139,313,1|q89v60,138,248,0|qhmwhz,138,248,0|qhmwi0,139,313,1|qqzxtz,139,313,1|qqzxu0,138,248,0|r0cz5z,138,248,0|r0cz60,139,313,1|r9q0hz,139,313,1|r9q0i0,138,248,0|rj31tz,138,248,0|rj31u0,139,313,1|rsg35z,139,313,1|rsg360,138,248,0|s1t4hz,138,248,0|s1t4i0,139,313,1|sbj4hz,139,313,1|sbj4i0,138,248,0|skw5tz,138,248,0|skw5u0,139,313,1|su975z,139,313,1|su9760,138,248,0|t3m8hz,138,248,0|t3m8i0,139,313,1|tcz9tz,139,313,1|tcz9u0,138,248,0|tmcb5z,138,248,0|tmcb60,139,313,1|tvpchz,139,313,1|tvpci0,138,248,0|u52dtz,138,248,0|u52du0,139,313,1|ueff5z,139,313,1|ueff60,138,248,0|unsghz,138,248,0|unsgi0,139,313,1|ux5htz,139,313,1|ux5hu0,138,248,0|v6vhtz,138,248,0|v6vhu0,139,313,1|vg8j5z,139,313,1|vg8j60,138,248,0|vplkhz,138,248,0|vplki0,139,313,1|vyyltz,139,313,1|vyylu0,138,248,0|w8bn5z,138,248,0|w8bn60,139,313,1|whoohz,139,313,1|whooi0,138,248,0|wr1ptz,138,248,0|wr1pu0,139,313,1|x0er5z,139,313,1|x0er60,138,248,0|x9rshz,138,248,0|x9rsi0,139,313,1|xj4ttz,139,313,1|xj4tu0,138,248,0|xshv5z,138,248,0|xshv60,139,313,1|y1uwhz,139,313,1|y1uwi0,138,248,0|ybkwhz,138,248,0|ybkwi0,139,313,1|ykxxtz,139,313,1|ykxxu0,138,248,0|yuaz5z,138,248,0|yuaz60,139,313,1|z3o0hz,139,313,1|z3o0i0,138,248,0|zd11tz,138,248,0|zd11u0,139,313,1","Australia/Brisbane|,0,314,0|-1354kc8,94,195,0|-rnsrk1,94,195,0|-rnsrk0,95,192,1|-rjj281,95,192,1|-rjj280,94,195,0|-em3i81,94,195,0|-em3i80,95,192,1|-ehme81,95,192,1|-ehme80,94,195,0|-e89cw1,94,195,0|-e89cw0,95,192,1|-dywbk1,95,192,1|-dywbk0,94,195,0|-dp6bk1,94,195,0|-dp6bk0,95,192,1|-dg68w1,95,192,1|-dg68w0,94,195,0|ycf3z,94,195,0|ycf40,95,192,1|14gsfz,95,192,1|14gsg0,94,195,0|acgn3z,94,195,0|acgn40,95,192,1|aixz3z,95,192,1|aixz40,94,195,0|av6prz,94,195,0|av6ps0,95,192,1|b1o1rz,95,192,1|b1o1s0,94,195,0|bdwsfz,94,195,0|bdwsg0,95,192,1|bke4fz,95,192,1|bke4g0,94,195,0","Australia/Broken_Hill|,0,315,0|-133j3j0,94,195,0|-12a9fs1,94,195,0|-12a9fs0,138,224,0|-10vsp01,138,224,0|-10vsp00,138,248,0|-rnsq61,138,248,0|-rnsq60,139,313,1|-rjj0u1,139,313,1|-rjj0u0,138,248,0|-em3gu1,138,248,0|-em3gu0,139,313,1|-ehmcu1,139,313,1|-ehmcu0,138,248,0|-e89bi1,138,248,0|-e89bi0,139,313,1|-dywa61,139,313,1|-dywa60,138,248,0|-dp6a61,138,248,0|-dp6a60,139,313,1|-dg67i1,139,313,1|-dg67i0,138,248,0|ycghz,138,248,0|ycgi0,139,313,1|14gttz,139,313,1|14gtu0,138,248,0|1h2j5z,138,248,0|1h2j60,139,313,1|1njv5z,139,313,1|1njv60,138,248,0|1zsltz,138,248,0|1zslu0,139,313,1|269xtz,139,313,1|269xu0,138,248,0|2iiohz,138,248,0|2iioi0,139,313,1|2p00hz,139,313,1|2p00i0,138,248,0|318r5z,138,248,0|318r60,139,313,1|3831tz,139,313,1|3831u0,138,248,0|3kbshz,138,248,0|3kbsi0,139,313,1|3qt4hz,139,313,1|3qt4i0,138,248,0|431v5z,138,248,0|431v60,139,313,1|49j75z,139,313,1|49j760,138,248,0|4lrxtz,138,248,0|4lrxu0,139,313,1|4s99tz,139,313,1|4s99u0,138,248,0|54i0hz,138,248,0|54i0i0,139,313,1|5azchz,139,313,1|5azci0,138,248,0|5n835z,138,248,0|5n8360,139,313,1|5tpf5z,139,313,1|5tpf60,138,248,0|65y5tz,138,248,0|65y5u0,139,313,1|6e8b5z,139,313,1|6e8b60,138,248,0|6p175z,138,248,0|6p1760,139,313,1|6vij5z,139,313,1|6vij60,138,248,0|77r9tz,138,248,0|77r9u0,139,313,1|7e8ltz,139,313,1|7e8lu0,138,248,0|7qhchz,138,248,0|7qhci0,139,313,1|7wyohz,139,313,1|7wyoi0,138,248,0|897f5z,138,248,0|897f60,139,313,1|8geohz,139,313,1|8geoi0,138,248,0|8rkj5z,138,248,0|8rkj60,139,313,1|8z4r5z,139,313,1|8z4r60,138,248,0|9ankhz,138,248,0|9anki0,139,313,1|9i7shz,139,313,1|9i7si0,138,248,0|9tqltz,138,248,0|9tqlu0,139,313,1|a0xv5z,139,313,1|a0xv60,138,248,0|acgohz,138,248,0|acgoi0,139,313,1|aiy0hz,139,313,1|aiy0i0,138,248,0|av6r5z,138,248,0|av6r60,139,313,1|b1o35z,139,313,1|b1o360,138,248,0|bdwttz,138,248,0|bdwtu0,139,313,1|bke5tz,139,313,1|bke5u0,138,248,0|bwmwhz,138,248,0|bwmwi0,139,313,1|c3h75z,139,313,1|c3h760,138,248,0|cfpxtz,138,248,0|cfpxu0,139,313,1|cm79tz,139,313,1|cm79u0,138,248,0|cyg0hz,138,248,0|cyg0i0,139,313,1|d4xchz,139,313,1|d4xci0,138,248,0|dh635z,138,248,0|dh6360,139,313,1|dp39tz,139,313,1|dp39u0,138,248,0|dzw5tz,138,248,0|dzw5u0,139,313,1|e7tchz,139,313,1|e7tci0,138,248,0|eim8hz,138,248,0|eim8i0,139,313,1|eqjf5z,139,313,1|eqjf60,138,248,0|f1cb5z,138,248,0|f1cb60,139,313,1|f99htz,139,313,1|f99hu0,138,248,0|fkfchz,138,248,0|fkfci0,139,313,1|frzkhz,139,313,1|frzki0,138,248,0|g35f5z,138,248,0|g35f60,139,313,1|gapn5z,139,313,1|gapn60,138,248,0|glvhtz,138,248,0|glvhu0,139,313,1|gtsohz,139,313,1|gtsoi0,138,248,0|h4lkhz,138,248,0|h4lki0,139,313,1|hcir5z,139,313,1|hcir60,138,248,0|hnbn5z,138,248,0|hnbn60,139,313,1|hv8ttz,139,313,1|hv8tu0,138,248,0|i6eohz,138,248,0|i6eoi0,139,313,1|idywhz,139,313,1|idywi0,138,248,0|ip4r5z,138,248,0|ip4r60,139,313,1|ix1xtz,139,313,1|ix1xu0,138,248,0|j7uttz,138,248,0|j7utu0,139,313,1|jff1tz,139,313,1|jff1u0,138,248,0|jqkwhz,138,248,0|jqkwi0,139,313,1|jyv1tz,139,313,1|jyv1u0,138,248,0|k8835z,138,248,0|k88360,139,313,1|khl4hz,139,313,1|khl4i0,138,248,0|kqy5tz,138,248,0|kqy5u0,139,313,1|l0b75z,139,313,1|l0b760,138,248,0|l9o8hz,138,248,0|l9o8i0,139,313,1|lj19tz,139,313,1|lj19u0,138,248,0|lseb5z,138,248,0|lseb60,139,313,1|m1rchz,139,313,1|m1rci0,138,248,0|mbhchz,138,248,0|mbhci0,139,313,1|mkudtz,139,313,1|mkudu0,138,248,0|mu7f5z,138,248,0|mu7f60,139,313,1|n3kghz,139,313,1|n3kgi0,138,248,0|ncxhtz,138,248,0|ncxhu0,139,313,1|nmaj5z,139,313,1|nmaj60,138,248,0|nvnkhz,138,248,0|nvnki0,139,313,1|o50ltz,139,313,1|o50lu0,138,248,0|oedn5z,138,248,0|oedn60,139,313,1|onqohz,139,313,1|onqoi0,138,248,0|ox3ptz,138,248,0|ox3pu0,139,313,1|p6gr5z,139,313,1|p6gr60,138,248,0|pg6r5z,138,248,0|pg6r60,139,313,1|ppjshz,139,313,1|ppjsi0,138,248,0|pywttz,138,248,0|pywtu0,139,313,1|q89v5z,139,313,1|q89v60,138,248,0|qhmwhz,138,248,0|qhmwi0,139,313,1|qqzxtz,139,313,1|qqzxu0,138,248,0|r0cz5z,138,248,0|r0cz60,139,313,1|r9q0hz,139,313,1|r9q0i0,138,248,0|rj31tz,138,248,0|rj31u0,139,313,1|rsg35z,139,313,1|rsg360,138,248,0|s1t4hz,138,248,0|s1t4i0,139,313,1|sbj4hz,139,313,1|sbj4i0,138,248,0|skw5tz,138,248,0|skw5u0,139,313,1|su975z,139,313,1|su9760,138,248,0|t3m8hz,138,248,0|t3m8i0,139,313,1|tcz9tz,139,313,1|tcz9u0,138,248,0|tmcb5z,138,248,0|tmcb60,139,313,1|tvpchz,139,313,1|tvpci0,138,248,0|u52dtz,138,248,0|u52du0,139,313,1|ueff5z,139,313,1|ueff60,138,248,0|unsghz,138,248,0|unsgi0,139,313,1|ux5htz,139,313,1|ux5hu0,138,248,0|v6vhtz,138,248,0|v6vhu0,139,313,1|vg8j5z,139,313,1|vg8j60,138,248,0|vplkhz,138,248,0|vplki0,139,313,1|vyyltz,139,313,1|vyylu0,138,248,0|w8bn5z,138,248,0|w8bn60,139,313,1|whoohz,139,313,1|whooi0,138,248,0|wr1ptz,138,248,0|wr1pu0,139,313,1|x0er5z,139,313,1|x0er60,138,248,0|x9rshz,138,248,0|x9rsi0,139,313,1|xj4ttz,139,313,1|xj4tu0,138,248,0|xshv5z,138,248,0|xshv60,139,313,1|y1uwhz,139,313,1|y1uwi0,138,248,0|ybkwhz,138,248,0|ybkwi0,139,313,1|ykxxtz,139,313,1|ykxxu0,138,248,0|yuaz5z,138,248,0|yuaz60,139,313,1|z3o0hz,139,313,1|z3o0i0,138,248,0|zd11tz,138,248,0|zd11u0,139,313,1","Australia/Currie|,0,316,0|-12smja4,94,195,0|-rsj4w1,94,195,0|-rsj4w0,95,192,1|-rjj281,95,192,1|-rjj280,94,195,0|-r8d7k1,94,195,0|-r8d7k0,95,192,1|-r1vvk1,95,192,1|-r1vvk0,94,195,0|-qpn4w1,94,195,0|-qpn4w0,95,192,1|-qj5sw1,95,192,1|-qj5sw0,94,195,0|-em3i81,94,195,0|-em3i80,95,192,1|-ehme81,95,192,1|-ehme80,94,195,0|-e89cw1,94,195,0|-e89cw0,95,192,1|-dywbk1,95,192,1|-dywbk0,94,195,0|-dp6bk1,94,195,0|-dp6bk0,95,192,1|-dg68w1,95,192,1|-dg68w0,94,195,0|-16cow1,94,195,0|-16cow0,95,192,1|-wznk1,95,192,1|-wznk0,94,195,0|-m6rk1,94,195,0|-m6rk0,95,192,1|-fcgw1,95,192,1|-fcgw0,94,195,0|-3gow1,94,195,0|-3gow0,95,192,1|3dlrz,95,192,1|3dls0,94,195,0|f9drz,94,195,0|f9ds0,95,192,1|mgn3z,95,192,1|mgn40,94,195,0|ycf3z,94,195,0|ycf40,95,192,1|14gsfz,95,192,1|14gsg0,94,195,0|1h2hrz,94,195,0|1h2hs0,95,192,1|1njtrz,95,192,1|1njts0,94,195,0|1zskfz,94,195,0|1zskg0,95,192,1|269wfz,95,192,1|269wg0,94,195,0|2iin3z,94,195,0|2iin40,95,192,1|2ozz3z,95,192,1|2ozz40,94,195,0|318prz,94,195,0|318ps0,95,192,1|3830fz,95,192,1|3830g0,94,195,0|3kbr3z,94,195,0|3kbr40,95,192,1|3qt33z,95,192,1|3qt340,94,195,0|431trz,94,195,0|431ts0,95,192,1|49j5rz,95,192,1|49j5s0,94,195,0|4lrwfz,94,195,0|4lrwg0,95,192,1|4s98fz,95,192,1|4s98g0,94,195,0|54hz3z,94,195,0|54hz40,95,192,1|5azb3z,95,192,1|5azb40,94,195,0|5n81rz,94,195,0|5n81s0,95,192,1|5tpdrz,95,192,1|5tpds0,94,195,0|65y4fz,94,195,0|65y4g0,95,192,1|6dvb3z,95,192,1|6dvb40,94,195,0|6p15rz,94,195,0|6p15s0,95,192,1|6wldrz,95,192,1|6wlds0,94,195,0|77r8fz,94,195,0|77r8g0,95,192,1|7e8kfz,95,192,1|7e8kg0,94,195,0|7qhb3z,94,195,0|7qhb40,95,192,1|7wyn3z,95,192,1|7wyn40,94,195,0|897drz,94,195,0|897ds0,95,192,1|8foprz,95,192,1|8fops0,94,195,0|8rkhrz,94,195,0|8rkhs0,95,192,1|8z4prz,95,192,1|8z4ps0,94,195,0|9anj3z,94,195,0|9anj40,95,192,1|9i7r3z,95,192,1|9i7r40,94,195,0|9tqkfz,94,195,0|9tqkg0,95,192,1|a0xtrz,95,192,1|a0xts0,94,195,0|acgn3z,94,195,0|acgn40,95,192,1|ajnwfz,95,192,1|ajnwg0,94,195,0|av6prz,94,195,0|av6ps0,95,192,1|b33wfz,95,192,1|b33wg0,94,195,0|bctwfz,94,195,0|bctwg0,95,192,1|bltz3z,95,192,1|bltz40,94,195,0|bvjz3z,94,195,0|bvjz40,95,192,1|c4k1rz,95,192,1|c4k1s0,94,195,0|cea1rz,94,195,0|cea1s0,95,192,1|cna4fz,95,192,1|cna4g0,94,195,0|cx04fz,94,195,0|cx04g0,95,192,1|d6073z,95,192,1|d60740,94,195,0|dfq73z,94,195,0|dfq740,95,192,1|dp38fz,95,192,1|dp38g0,94,195,0|dyt8fz,94,195,0|dyt8g0,95,192,1|e7tb3z,95,192,1|e7tb40,94,195,0|ehjb3z,94,195,0|ehjb40,95,192,1|eqjdrz,95,192,1|eqjds0,94,195,0|f09drz,94,195,0|f09ds0,95,192,1|f99gfz,95,192,1|f99gg0,94,195,0|fizgfz,94,195,0|fizgg0,95,192,1|frzj3z,95,192,1|frzj40,94,195,0|fzwprz,94,195,0|fzwps0,95,192,1|gaplrz,95,192,1|gapls0,94,195,0|gkskfz,94,195,0|gkskg0,95,192,1|gtsn3z,95,192,1|gtsn40,94,195,0|h3in3z,94,195,0|h3in40,95,192,1|hciprz,95,192,1|hcips0,94,195,0|hm8prz,94,195,0|hm8ps0,95,192,1|hv8sfz,95,192,1|hv8sg0,94,195,0|i4ysfz,94,195,0|i4ysg0,95,192,1|idyv3z,95,192,1|idyv40,94,195,0|inov3z,94,195,0|inov40,95,192,1|ix1wfz,95,192,1|ix1wg0,94,195,0|j6exrz,94,195,0|j6exs0,95,192,1|jff0fz,95,192,1|jff0g0,94,195,0|jphz3z,94,195,0|jphz40,95,192,1|jyv0fz,95,192,1|jyv0g0,94,195,0|k881rz,94,195,0|k881s0,95,192,1|khl33z,95,192,1|khl340,94,195,0|kqy4fz,94,195,0|kqy4g0,95,192,1|l0b5rz,95,192,1|l0b5s0,94,195,0|l9o73z,94,195,0|l9o740,95,192,1|lj18fz,95,192,1|lj18g0,94,195,0|lse9rz,94,195,0|lse9s0,95,192,1|m1rb3z,95,192,1|m1rb40,94,195,0|mbhb3z,94,195,0|mbhb40,95,192,1|mkucfz,95,192,1|mkucg0,94,195,0|mu7drz,94,195,0|mu7ds0,95,192,1|n3kf3z,95,192,1|n3kf40,94,195,0|ncxgfz,94,195,0|ncxgg0,95,192,1|nmahrz,95,192,1|nmahs0,94,195,0|nvnj3z,94,195,0|nvnj40,95,192,1|o50kfz,95,192,1|o50kg0,94,195,0|oedlrz,94,195,0|oedls0,95,192,1|onqn3z,95,192,1|onqn40,94,195,0|ox3ofz,94,195,0|ox3og0,95,192,1|p6gprz,95,192,1|p6gps0,94,195,0|pg6prz,94,195,0|pg6ps0,95,192,1|ppjr3z,95,192,1|ppjr40,94,195,0|pywsfz,94,195,0|pywsg0,95,192,1|q89trz,95,192,1|q89ts0,94,195,0|qhmv3z,94,195,0|qhmv40,95,192,1|qqzwfz,95,192,1|qqzwg0,94,195,0|r0cxrz,94,195,0|r0cxs0,95,192,1|r9pz3z,95,192,1|r9pz40,94,195,0|rj30fz,94,195,0|rj30g0,95,192,1|rsg1rz,95,192,1|rsg1s0,94,195,0|s1t33z,94,195,0|s1t340,95,192,1|sbj33z,95,192,1|sbj340,94,195,0|skw4fz,94,195,0|skw4g0,95,192,1|su95rz,95,192,1|su95s0,94,195,0|t3m73z,94,195,0|t3m740,95,192,1|tcz8fz,95,192,1|tcz8g0,94,195,0|tmc9rz,94,195,0|tmc9s0,95,192,1|tvpb3z,95,192,1|tvpb40,94,195,0|u52cfz,94,195,0|u52cg0,95,192,1|uefdrz,95,192,1|uefds0,94,195,0|unsf3z,94,195,0|unsf40,95,192,1|ux5gfz,95,192,1|ux5gg0,94,195,0|v6vgfz,94,195,0|v6vgg0,95,192,1|vg8hrz,95,192,1|vg8hs0,94,195,0|vplj3z,94,195,0|vplj40,95,192,1|vyykfz,95,192,1|vyykg0,94,195,0|w8blrz,94,195,0|w8bls0,95,192,1|whon3z,95,192,1|whon40,94,195,0|wr1ofz,94,195,0|wr1og0,95,192,1|x0eprz,95,192,1|x0eps0,94,195,0|x9rr3z,94,195,0|x9rr40,95,192,1|xj4sfz,95,192,1|xj4sg0,94,195,0|xshtrz,94,195,0|xshts0,95,192,1|y1uv3z,95,192,1|y1uv40,94,195,0|ybkv3z,94,195,0|ybkv40,95,192,1|ykxwfz,95,192,1|ykxwg0,94,195,0|yuaxrz,94,195,0|yuaxs0,95,192,1|z3nz3z,95,192,1|z3nz40,94,195,0|zd10fz,94,195,0|zd10g0,95,192,1","Australia/Darwin|,0,317,0|-133j1k8,138,224,0|-10vsp01,138,224,0|-10vsp00,138,248,0|-rnsq61,138,248,0|-rnsq60,139,313,1|-rjj0u1,139,313,1|-rjj0u0,138,248,0|-em3gu1,138,248,0|-em3gu0,139,313,1|-ehmcu1,139,313,1|-ehmcu0,138,248,0|-e89bi1,138,248,0|-e89bi0,139,313,1|-dywa61,139,313,1|-dywa60,138,248,0|-dp6a61,138,248,0|-dp6a60,139,313,1|-dg67i1,139,313,1|-dg67i0,138,248,0","Australia/Eucla|,0,318,0|-12nxx74,140,319,0|-rnso31,140,319,0|-rnso30,141,320,1|-rjiyr1,141,320,1|-rjiyr0,140,319,0|-em3er1,140,319,0|-em3er0,141,320,1|-ehmar1,141,320,1|-ehmar0,140,319,0|-e899f1,140,319,0|-e899f0,141,320,1|-dyw831,141,320,1|-dyw830,140,319,0|2iiqkz,140,319,0|2iiql0,141,320,1|2p02kz,141,320,1|2p02l0,140,319,0|77rbwz,140,319,0|77rbx0,141,320,1|7e8nwz,141,320,1|7e8nx0,140,319,0|bezrwz,140,319,0|bezrx0,141,320,1|bke7wz,141,320,1|bke7x0,140,319,0|j9np8z,140,319,0|j9np90,141,320,1|jff3wz,141,320,1|jff3x0,140,319,0|jqkykz,140,319,0|jqkyl0,141,320,1|jyi58z,141,320,1|jyi590,140,319,0|k9b18z,140,319,0|k9b190,141,320,1|kh87wz,141,320,1|kh87x0,140,319,0","Australia/Hobart|,0,316,0|-12smja4,94,195,0|-rsj4w1,94,195,0|-rsj4w0,95,192,1|-rjj281,95,192,1|-rjj280,94,195,0|-r8d7k1,94,195,0|-r8d7k0,95,192,1|-r1vvk1,95,192,1|-r1vvk0,94,195,0|-qpn4w1,94,195,0|-qpn4w0,95,192,1|-qj5sw1,95,192,1|-qj5sw0,94,195,0|-em3i81,94,195,0|-em3i80,95,192,1|-ehme81,95,192,1|-ehme80,94,195,0|-e89cw1,94,195,0|-e89cw0,95,192,1|-dywbk1,95,192,1|-dywbk0,94,195,0|-dp6bk1,94,195,0|-dp6bk0,95,192,1|-dg68w1,95,192,1|-dg68w0,94,195,0|-16cow1,94,195,0|-16cow0,95,192,1|-wznk1,95,192,1|-wznk0,94,195,0|-m6rk1,94,195,0|-m6rk0,95,192,1|-fcgw1,95,192,1|-fcgw0,94,195,0|-3gow1,94,195,0|-3gow0,95,192,1|3dlrz,95,192,1|3dls0,94,195,0|f9drz,94,195,0|f9ds0,95,192,1|mgn3z,95,192,1|mgn40,94,195,0|ycf3z,94,195,0|ycf40,95,192,1|14gsfz,95,192,1|14gsg0,94,195,0|1h2hrz,94,195,0|1h2hs0,95,192,1|1njtrz,95,192,1|1njts0,94,195,0|1zskfz,94,195,0|1zskg0,95,192,1|269wfz,95,192,1|269wg0,94,195,0|2iin3z,94,195,0|2iin40,95,192,1|2ozz3z,95,192,1|2ozz40,94,195,0|318prz,94,195,0|318ps0,95,192,1|3830fz,95,192,1|3830g0,94,195,0|3kbr3z,94,195,0|3kbr40,95,192,1|3qt33z,95,192,1|3qt340,94,195,0|431trz,94,195,0|431ts0,95,192,1|49j5rz,95,192,1|49j5s0,94,195,0|4lrwfz,94,195,0|4lrwg0,95,192,1|4s98fz,95,192,1|4s98g0,94,195,0|54hz3z,94,195,0|54hz40,95,192,1|5azb3z,95,192,1|5azb40,94,195,0|5n81rz,94,195,0|5n81s0,95,192,1|5tpdrz,95,192,1|5tpds0,94,195,0|65y4fz,94,195,0|65y4g0,95,192,1|6dvb3z,95,192,1|6dvb40,94,195,0|6p15rz,94,195,0|6p15s0,95,192,1|6wldrz,95,192,1|6wlds0,94,195,0|77r8fz,94,195,0|77r8g0,95,192,1|7e8kfz,95,192,1|7e8kg0,94,195,0|7qhb3z,94,195,0|7qhb40,95,192,1|7wyn3z,95,192,1|7wyn40,94,195,0|897drz,94,195,0|897ds0,95,192,1|8foprz,95,192,1|8fops0,94,195,0|8rkhrz,94,195,0|8rkhs0,95,192,1|8z4prz,95,192,1|8z4ps0,94,195,0|9anj3z,94,195,0|9anj40,95,192,1|9i7r3z,95,192,1|9i7r40,94,195,0|9tqkfz,94,195,0|9tqkg0,95,192,1|a0xtrz,95,192,1|a0xts0,94,195,0|acgn3z,94,195,0|acgn40,95,192,1|ajnwfz,95,192,1|ajnwg0,94,195,0|av6prz,94,195,0|av6ps0,95,192,1|b33wfz,95,192,1|b33wg0,94,195,0|bctwfz,94,195,0|bctwg0,95,192,1|bltz3z,95,192,1|bltz40,94,195,0|bvjz3z,94,195,0|bvjz40,95,192,1|c4k1rz,95,192,1|c4k1s0,94,195,0|cea1rz,94,195,0|cea1s0,95,192,1|cna4fz,95,192,1|cna4g0,94,195,0|cx04fz,94,195,0|cx04g0,95,192,1|d6073z,95,192,1|d60740,94,195,0|dfq73z,94,195,0|dfq740,95,192,1|dp38fz,95,192,1|dp38g0,94,195,0|dyt8fz,94,195,0|dyt8g0,95,192,1|e7tb3z,95,192,1|e7tb40,94,195,0|ehjb3z,94,195,0|ehjb40,95,192,1|eqjdrz,95,192,1|eqjds0,94,195,0|f09drz,94,195,0|f09ds0,95,192,1|f99gfz,95,192,1|f99gg0,94,195,0|fizgfz,94,195,0|fizgg0,95,192,1|frzj3z,95,192,1|frzj40,94,195,0|fzwprz,94,195,0|fzwps0,95,192,1|gaplrz,95,192,1|gapls0,94,195,0|gkskfz,94,195,0|gkskg0,95,192,1|gtsn3z,95,192,1|gtsn40,94,195,0|h3in3z,94,195,0|h3in40,95,192,1|hciprz,95,192,1|hcips0,94,195,0|hm8prz,94,195,0|hm8ps0,95,192,1|hv8sfz,95,192,1|hv8sg0,94,195,0|i4ysfz,94,195,0|i4ysg0,95,192,1|idyv3z,95,192,1|idyv40,94,195,0|inov3z,94,195,0|inov40,95,192,1|ix1wfz,95,192,1|ix1wg0,94,195,0|j6exrz,94,195,0|j6exs0,95,192,1|jff0fz,95,192,1|jff0g0,94,195,0|jphz3z,94,195,0|jphz40,95,192,1|jyv0fz,95,192,1|jyv0g0,94,195,0|k881rz,94,195,0|k881s0,95,192,1|khl33z,95,192,1|khl340,94,195,0|kqy4fz,94,195,0|kqy4g0,95,192,1|l0b5rz,95,192,1|l0b5s0,94,195,0|l9o73z,94,195,0|l9o740,95,192,1|lj18fz,95,192,1|lj18g0,94,195,0|lse9rz,94,195,0|lse9s0,95,192,1|m1rb3z,95,192,1|m1rb40,94,195,0|mbhb3z,94,195,0|mbhb40,95,192,1|mkucfz,95,192,1|mkucg0,94,195,0|mu7drz,94,195,0|mu7ds0,95,192,1|n3kf3z,95,192,1|n3kf40,94,195,0|ncxgfz,94,195,0|ncxgg0,95,192,1|nmahrz,95,192,1|nmahs0,94,195,0|nvnj3z,94,195,0|nvnj40,95,192,1|o50kfz,95,192,1|o50kg0,94,195,0|oedlrz,94,195,0|oedls0,95,192,1|onqn3z,95,192,1|onqn40,94,195,0|ox3ofz,94,195,0|ox3og0,95,192,1|p6gprz,95,192,1|p6gps0,94,195,0|pg6prz,94,195,0|pg6ps0,95,192,1|ppjr3z,95,192,1|ppjr40,94,195,0|pywsfz,94,195,0|pywsg0,95,192,1|q89trz,95,192,1|q89ts0,94,195,0|qhmv3z,94,195,0|qhmv40,95,192,1|qqzwfz,95,192,1|qqzwg0,94,195,0|r0cxrz,94,195,0|r0cxs0,95,192,1|r9pz3z,95,192,1|r9pz40,94,195,0|rj30fz,94,195,0|rj30g0,95,192,1|rsg1rz,95,192,1|rsg1s0,94,195,0|s1t33z,94,195,0|s1t340,95,192,1|sbj33z,95,192,1|sbj340,94,195,0|skw4fz,94,195,0|skw4g0,95,192,1|su95rz,95,192,1|su95s0,94,195,0|t3m73z,94,195,0|t3m740,95,192,1|tcz8fz,95,192,1|tcz8g0,94,195,0|tmc9rz,94,195,0|tmc9s0,95,192,1|tvpb3z,95,192,1|tvpb40,94,195,0|u52cfz,94,195,0|u52cg0,95,192,1|uefdrz,95,192,1|uefds0,94,195,0|unsf3z,94,195,0|unsf40,95,192,1|ux5gfz,95,192,1|ux5gg0,94,195,0|v6vgfz,94,195,0|v6vgg0,95,192,1|vg8hrz,95,192,1|vg8hs0,94,195,0|vplj3z,94,195,0|vplj40,95,192,1|vyykfz,95,192,1|vyykg0,94,195,0|w8blrz,94,195,0|w8bls0,95,192,1|whon3z,95,192,1|whon40,94,195,0|wr1ofz,94,195,0|wr1og0,95,192,1|x0eprz,95,192,1|x0eps0,94,195,0|x9rr3z,94,195,0|x9rr40,95,192,1|xj4sfz,95,192,1|xj4sg0,94,195,0|xshtrz,94,195,0|xshts0,95,192,1|y1uv3z,95,192,1|y1uv40,94,195,0|ybkv3z,94,195,0|ybkv40,95,192,1|ykxwfz,95,192,1|ykxwg0,94,195,0|yuaxrz,94,195,0|yuaxs0,95,192,1|z3nz3z,95,192,1|z3nz40,94,195,0|zd10fz,94,195,0|zd10g0,95,192,1","Australia/Lindeman|,0,321,0|-1354jl8,94,195,0|-rnsrk1,94,195,0|-rnsrk0,95,192,1|-rjj281,95,192,1|-rjj280,94,195,0|-em3i81,94,195,0|-em3i80,95,192,1|-ehme81,95,192,1|-ehme80,94,195,0|-e89cw1,94,195,0|-e89cw0,95,192,1|-dywbk1,95,192,1|-dywbk0,94,195,0|-dp6bk1,94,195,0|-dp6bk0,95,192,1|-dg68w1,95,192,1|-dg68w0,94,195,0|ycf3z,94,195,0|ycf40,95,192,1|14gsfz,95,192,1|14gsg0,94,195,0|acgn3z,94,195,0|acgn40,95,192,1|aixz3z,95,192,1|aixz40,94,195,0|av6prz,94,195,0|av6ps0,95,192,1|b1o1rz,95,192,1|b1o1s0,94,195,0|bdwsfz,94,195,0|bdwsg0,95,192,1|bke4fz,95,192,1|bke4g0,94,195,0|bwmv3z,94,195,0|bwmv40,95,192,1|c3h5rz,95,192,1|c3h5s0,94,195,0|cfpwfz,94,195,0|cfpwg0,95,192,1|cm78fz,95,192,1|cm78g0,94,195,0","Australia/Lord_Howe|,0,322,0|-133j6sk,94,195,0|5tp87z,94,195,0|5tp880,142,313,0|65y31z,142,313,0|65y320,143,198,1|6csaxz,143,198,1|6csay0,142,313,0|6p14dz,142,313,0|6p14e0,143,198,1|6vidlz,143,198,1|6vidm0,142,313,0|77r71z,142,313,0|77r720,143,198,1|7e8g9z,143,198,1|7e8ga0,142,313,0|7qh9pz,142,313,0|7qh9q0,143,198,1|7wyixz,143,198,1|7wyiy0,142,313,0|897cdz,142,313,0|897ce0,90,192,1|8gekbz,90,192,1|8gekc0,142,313,0|8rkgdz,142,313,0|8rkge0,90,192,1|8z4mzz,90,192,1|8z4n00,142,313,0|9anhpz,142,313,0|9anhq0,90,192,1|9i7obz,90,192,1|9i7oc0,142,313,0|9tqj1z,142,313,0|9tqj20,90,192,1|a0xqzz,90,192,1|a0xr00,142,313,0|acglpz,142,313,0|acglq0,90,192,1|aixwbz,90,192,1|aixwc0,142,313,0|av6odz,142,313,0|av6oe0,90,192,1|b1nyzz,90,192,1|b1nz00,142,313,0|bdwr1z,142,313,0|bdwr20,90,192,1|bke1nz,90,192,1|bke1o0,142,313,0|bwmtpz,142,313,0|bwmtq0,90,192,1|c3h2zz,90,192,1|c3h300,142,313,0|cfpv1z,142,313,0|cfpv20,90,192,1|cm75nz,90,192,1|cm75o0,142,313,0|cyfxpz,142,313,0|cyfxq0,90,192,1|d4x8bz,90,192,1|d4x8c0,142,313,0|dh60dz,142,313,0|dh60e0,90,192,1|dp35nz,90,192,1|dp35o0,142,313,0|dzw31z,142,313,0|dzw320,90,192,1|e7t8bz,90,192,1|e7t8c0,142,313,0|eim5pz,142,313,0|eim5q0,90,192,1|eqjazz,90,192,1|eqjb00,142,313,0|f1c8dz,142,313,0|f1c8e0,90,192,1|f99dnz,90,192,1|f99do0,142,313,0|fkf9pz,142,313,0|fkf9q0,90,192,1|frzgbz,90,192,1|frzgc0,142,313,0|fzwodz,142,313,0|fzwoe0,90,192,1|gapizz,90,192,1|gapj00,142,313,0|glvf1z,142,313,0|glvf20,90,192,1|gtskbz,90,192,1|gtskc0,142,313,0|h4lhpz,142,313,0|h4lhq0,90,192,1|hcimzz,90,192,1|hcin00,142,313,0|hnbkdz,142,313,0|hnbke0,90,192,1|hv8pnz,90,192,1|hv8po0,142,313,0|i6elpz,142,313,0|i6elq0,90,192,1|idysbz,90,192,1|idysc0,142,313,0|ip4odz,142,313,0|ip4oe0,90,192,1|ix1tnz,90,192,1|ix1to0,142,313,0|j7ur1z,142,313,0|j7ur20,90,192,1|jfexnz,90,192,1|jfexo0,142,313,0|jqktpz,142,313,0|jqktq0,90,192,1|jyuxnz,90,192,1|jyuxo0,142,313,0|k880dz,142,313,0|k880e0,90,192,1|khl0bz,90,192,1|khl0c0,142,313,0|kqy31z,142,313,0|kqy320,90,192,1|l0b2zz,90,192,1|l0b300,142,313,0|l9o5pz,142,313,0|l9o5q0,90,192,1|lj15nz,90,192,1|lj15o0,142,313,0|lse8dz,142,313,0|lse8e0,90,192,1|m1r8bz,90,192,1|m1r8c0,142,313,0|mbh9pz,142,313,0|mbh9q0,90,192,1|mku9nz,90,192,1|mku9o0,142,313,0|mu7cdz,142,313,0|mu7ce0,90,192,1|n3kcbz,90,192,1|n3kcc0,142,313,0|ncxf1z,142,313,0|ncxf20,90,192,1|nmaezz,90,192,1|nmaf00,142,313,0|nvnhpz,142,313,0|nvnhq0,90,192,1|o50hnz,90,192,1|o50ho0,142,313,0|oedkdz,142,313,0|oedke0,90,192,1|onqkbz,90,192,1|onqkc0,142,313,0|ox3n1z,142,313,0|ox3n20,90,192,1|p6gmzz,90,192,1|p6gn00,142,313,0|pg6odz,142,313,0|pg6oe0,90,192,1|ppjobz,90,192,1|ppjoc0,142,313,0|pywr1z,142,313,0|pywr20,90,192,1|q89qzz,90,192,1|q89r00,142,313,0|qhmtpz,142,313,0|qhmtq0,90,192,1|qqztnz,90,192,1|qqzto0,142,313,0|r0cwdz,142,313,0|r0cwe0,90,192,1|r9pwbz,90,192,1|r9pwc0,142,313,0|rj2z1z,142,313,0|rj2z20,90,192,1|rsfyzz,90,192,1|rsfz00,142,313,0|s1t1pz,142,313,0|s1t1q0,90,192,1|sbj0bz,90,192,1|sbj0c0,142,313,0|skw31z,142,313,0|skw320,90,192,1|su92zz,90,192,1|su9300,142,313,0|t3m5pz,142,313,0|t3m5q0,90,192,1|tcz5nz,90,192,1|tcz5o0,142,313,0|tmc8dz,142,313,0|tmc8e0,90,192,1|tvp8bz,90,192,1|tvp8c0,142,313,0|u52b1z,142,313,0|u52b20,90,192,1|uefazz,90,192,1|uefb00,142,313,0|unsdpz,142,313,0|unsdq0,90,192,1|ux5dnz,90,192,1|ux5do0,142,313,0|v6vf1z,142,313,0|v6vf20,90,192,1|vg8ezz,90,192,1|vg8f00,142,313,0|vplhpz,142,313,0|vplhq0,90,192,1|vyyhnz,90,192,1|vyyho0,142,313,0|w8bkdz,142,313,0|w8bke0,90,192,1|whokbz,90,192,1|whokc0,142,313,0|wr1n1z,142,313,0|wr1n20,90,192,1|x0emzz,90,192,1|x0en00,142,313,0|x9rppz,142,313,0|x9rpq0,90,192,1|xj4pnz,90,192,1|xj4po0,142,313,0|xshsdz,142,313,0|xshse0,90,192,1|y1usbz,90,192,1|y1usc0,142,313,0|ybktpz,142,313,0|ybktq0,90,192,1|ykxtnz,90,192,1|ykxto0,142,313,0|yuawdz,142,313,0|yuawe0,90,192,1|z3nwbz,90,192,1|z3nwc0,142,313,0|zd0z1z,142,313,0|zd0z20,90,192,1","Australia/Melbourne|,0,323,0|-133j46g,94,195,0|-rnsrk1,94,195,0|-rnsrk0,95,192,1|-rjj281,95,192,1|-rjj280,94,195,0|-em3i81,94,195,0|-em3i80,95,192,1|-ehme81,95,192,1|-ehme80,94,195,0|-e89cw1,94,195,0|-e89cw0,95,192,1|-dywbk1,95,192,1|-dywbk0,94,195,0|-dp6bk1,94,195,0|-dp6bk0,95,192,1|-dg68w1,95,192,1|-dg68w0,94,195,0|ycf3z,94,195,0|ycf40,95,192,1|14gsfz,95,192,1|14gsg0,94,195,0|1h2hrz,94,195,0|1h2hs0,95,192,1|1njtrz,95,192,1|1njts0,94,195,0|1zskfz,94,195,0|1zskg0,95,192,1|269wfz,95,192,1|269wg0,94,195,0|2iin3z,94,195,0|2iin40,95,192,1|2ozz3z,95,192,1|2ozz40,94,195,0|318prz,94,195,0|318ps0,95,192,1|3830fz,95,192,1|3830g0,94,195,0|3kbr3z,94,195,0|3kbr40,95,192,1|3qt33z,95,192,1|3qt340,94,195,0|431trz,94,195,0|431ts0,95,192,1|49j5rz,95,192,1|49j5s0,94,195,0|4lrwfz,94,195,0|4lrwg0,95,192,1|4s98fz,95,192,1|4s98g0,94,195,0|54hz3z,94,195,0|54hz40,95,192,1|5azb3z,95,192,1|5azb40,94,195,0|5n81rz,94,195,0|5n81s0,95,192,1|5tpdrz,95,192,1|5tpds0,94,195,0|65y4fz,94,195,0|65y4g0,95,192,1|6csf3z,95,192,1|6csf40,94,195,0|6p15rz,94,195,0|6p15s0,95,192,1|6vihrz,95,192,1|6vihs0,94,195,0|77r8fz,94,195,0|77r8g0,95,192,1|7e8kfz,95,192,1|7e8kg0,94,195,0|7qhb3z,94,195,0|7qhb40,95,192,1|7wyn3z,95,192,1|7wyn40,94,195,0|897drz,94,195,0|897ds0,95,192,1|8gen3z,95,192,1|8gen40,94,195,0|8rkhrz,94,195,0|8rkhs0,95,192,1|8z4prz,95,192,1|8z4ps0,94,195,0|9aakfz,94,195,0|9aakg0,95,192,1|9i7r3z,95,192,1|9i7r40,94,195,0|9tqkfz,94,195,0|9tqkg0,95,192,1|a0xtrz,95,192,1|a0xts0,94,195,0|acgn3z,94,195,0|acgn40,95,192,1|ajnwfz,95,192,1|ajnwg0,94,195,0|av6prz,94,195,0|av6ps0,95,192,1|b1o1rz,95,192,1|b1o1s0,94,195,0|bdwsfz,94,195,0|bdwsg0,95,192,1|bke4fz,95,192,1|bke4g0,94,195,0|bwmv3z,94,195,0|bwmv40,95,192,1|c3h5rz,95,192,1|c3h5s0,94,195,0|cfpwfz,94,195,0|cfpwg0,95,192,1|cm78fz,95,192,1|cm78g0,94,195,0|cyfz3z,94,195,0|cyfz40,95,192,1|d6073z,95,192,1|d60740,94,195,0|dh61rz,94,195,0|dh61s0,95,192,1|dp38fz,95,192,1|dp38g0,94,195,0|dzw4fz,94,195,0|dzw4g0,95,192,1|e7tb3z,95,192,1|e7tb40,94,195,0|eim73z,94,195,0|eim740,95,192,1|eqjdrz,95,192,1|eqjds0,94,195,0|f1c9rz,94,195,0|f1c9s0,95,192,1|f99gfz,95,192,1|f99gg0,94,195,0|fkfb3z,94,195,0|fkfb40,95,192,1|frzj3z,95,192,1|frzj40,94,195,0|fzwprz,94,195,0|fzwps0,95,192,1|gaplrz,95,192,1|gapls0,94,195,0|glvgfz,94,195,0|glvgg0,95,192,1|gtsn3z,95,192,1|gtsn40,94,195,0|h4lj3z,94,195,0|h4lj40,95,192,1|hciprz,95,192,1|hcips0,94,195,0|hnblrz,94,195,0|hnbls0,95,192,1|hv8sfz,95,192,1|hv8sg0,94,195,0|i6en3z,94,195,0|i6en40,95,192,1|idyv3z,95,192,1|idyv40,94,195,0|ip4prz,94,195,0|ip4ps0,95,192,1|ix1wfz,95,192,1|ix1wg0,94,195,0|j7usfz,94,195,0|j7usg0,95,192,1|jff0fz,95,192,1|jff0g0,94,195,0|jqkv3z,94,195,0|jqkv40,95,192,1|jyv0fz,95,192,1|jyv0g0,94,195,0|k881rz,94,195,0|k881s0,95,192,1|khl33z,95,192,1|khl340,94,195,0|kqy4fz,94,195,0|kqy4g0,95,192,1|l0b5rz,95,192,1|l0b5s0,94,195,0|l9o73z,94,195,0|l9o740,95,192,1|lj18fz,95,192,1|lj18g0,94,195,0|lse9rz,94,195,0|lse9s0,95,192,1|m1rb3z,95,192,1|m1rb40,94,195,0|mbhb3z,94,195,0|mbhb40,95,192,1|mkucfz,95,192,1|mkucg0,94,195,0|mu7drz,94,195,0|mu7ds0,95,192,1|n3kf3z,95,192,1|n3kf40,94,195,0|ncxgfz,94,195,0|ncxgg0,95,192,1|nmahrz,95,192,1|nmahs0,94,195,0|nvnj3z,94,195,0|nvnj40,95,192,1|o50kfz,95,192,1|o50kg0,94,195,0|oedlrz,94,195,0|oedls0,95,192,1|onqn3z,95,192,1|onqn40,94,195,0|ox3ofz,94,195,0|ox3og0,95,192,1|p6gprz,95,192,1|p6gps0,94,195,0|pg6prz,94,195,0|pg6ps0,95,192,1|ppjr3z,95,192,1|ppjr40,94,195,0|pywsfz,94,195,0|pywsg0,95,192,1|q89trz,95,192,1|q89ts0,94,195,0|qhmv3z,94,195,0|qhmv40,95,192,1|qqzwfz,95,192,1|qqzwg0,94,195,0|r0cxrz,94,195,0|r0cxs0,95,192,1|r9pz3z,95,192,1|r9pz40,94,195,0|rj30fz,94,195,0|rj30g0,95,192,1|rsg1rz,95,192,1|rsg1s0,94,195,0|s1t33z,94,195,0|s1t340,95,192,1|sbj33z,95,192,1|sbj340,94,195,0|skw4fz,94,195,0|skw4g0,95,192,1|su95rz,95,192,1|su95s0,94,195,0|t3m73z,94,195,0|t3m740,95,192,1|tcz8fz,95,192,1|tcz8g0,94,195,0|tmc9rz,94,195,0|tmc9s0,95,192,1|tvpb3z,95,192,1|tvpb40,94,195,0|u52cfz,94,195,0|u52cg0,95,192,1|uefdrz,95,192,1|uefds0,94,195,0|unsf3z,94,195,0|unsf40,95,192,1|ux5gfz,95,192,1|ux5gg0,94,195,0|v6vgfz,94,195,0|v6vgg0,95,192,1|vg8hrz,95,192,1|vg8hs0,94,195,0|vplj3z,94,195,0|vplj40,95,192,1|vyykfz,95,192,1|vyykg0,94,195,0|w8blrz,94,195,0|w8bls0,95,192,1|whon3z,95,192,1|whon40,94,195,0|wr1ofz,94,195,0|wr1og0,95,192,1|x0eprz,95,192,1|x0eps0,94,195,0|x9rr3z,94,195,0|x9rr40,95,192,1|xj4sfz,95,192,1|xj4sg0,94,195,0|xshtrz,94,195,0|xshts0,95,192,1|y1uv3z,95,192,1|y1uv40,94,195,0|ybkv3z,94,195,0|ybkv40,95,192,1|ykxwfz,95,192,1|ykxwg0,94,195,0|yuaxrz,94,195,0|yuaxs0,95,192,1|z3nz3z,95,192,1|z3nz40,94,195,0|zd10fz,94,195,0|zd10g0,95,192,1","Australia/Perth|,0,324,0|-12nxusc,144,191,0|-rnsm01,144,191,0|-rnsm00,145,224,1|-rjiwo1,145,224,1|-rjiwo0,144,191,0|-em3co1,144,191,0|-em3co0,145,224,1|-ehm8o1,145,224,1|-ehm8o0,144,191,0|-e897c1,144,191,0|-e897c0,145,224,1|-dyw601,145,224,1|-dyw600,144,191,0|2iisnz,144,191,0|2iiso0,145,224,1|2p04nz,145,224,1|2p04o0,144,191,0|77rdzz,144,191,0|77re00,145,224,1|7e8pzz,145,224,1|7e8q00,144,191,0|beztzz,144,191,0|bezu00,145,224,1|bke9zz,145,224,1|bkea00,144,191,0|j9nrbz,144,191,0|j9nrc0,145,224,1|jff5zz,145,224,1|jff600,144,191,0|jql0nz,144,191,0|jql0o0,145,224,1|jyi7bz,145,224,1|jyi7c0,144,191,0|k9b3bz,144,191,0|k9b3c0,145,224,1|kh89zz,145,224,1|kh8a00,144,191,0","Australia/Sydney|,0,325,0|-133j5c4,94,195,0|-rnsrk1,94,195,0|-rnsrk0,95,192,1|-rjj281,95,192,1|-rjj280,94,195,0|-em3i81,94,195,0|-em3i80,95,192,1|-ehme81,95,192,1|-ehme80,94,195,0|-e89cw1,94,195,0|-e89cw0,95,192,1|-dywbk1,95,192,1|-dywbk0,94,195,0|-dp6bk1,94,195,0|-dp6bk0,95,192,1|-dg68w1,95,192,1|-dg68w0,94,195,0|ycf3z,94,195,0|ycf40,95,192,1|14gsfz,95,192,1|14gsg0,94,195,0|1h2hrz,94,195,0|1h2hs0,95,192,1|1njtrz,95,192,1|1njts0,94,195,0|1zskfz,94,195,0|1zskg0,95,192,1|269wfz,95,192,1|269wg0,94,195,0|2iin3z,94,195,0|2iin40,95,192,1|2ozz3z,95,192,1|2ozz40,94,195,0|318prz,94,195,0|318ps0,95,192,1|3830fz,95,192,1|3830g0,94,195,0|3kbr3z,94,195,0|3kbr40,95,192,1|3qt33z,95,192,1|3qt340,94,195,0|431trz,94,195,0|431ts0,95,192,1|49j5rz,95,192,1|49j5s0,94,195,0|4lrwfz,94,195,0|4lrwg0,95,192,1|4s98fz,95,192,1|4s98g0,94,195,0|54hz3z,94,195,0|54hz40,95,192,1|5azb3z,95,192,1|5azb40,94,195,0|5n81rz,94,195,0|5n81s0,95,192,1|5tpdrz,95,192,1|5tpds0,94,195,0|65y4fz,94,195,0|65y4g0,95,192,1|6e89rz,95,192,1|6e89s0,94,195,0|6p15rz,94,195,0|6p15s0,95,192,1|6vihrz,95,192,1|6vihs0,94,195,0|77r8fz,94,195,0|77r8g0,95,192,1|7e8kfz,95,192,1|7e8kg0,94,195,0|7qhb3z,94,195,0|7qhb40,95,192,1|7wyn3z,95,192,1|7wyn40,94,195,0|897drz,94,195,0|897ds0,95,192,1|8gen3z,95,192,1|8gen40,94,195,0|8rkhrz,94,195,0|8rkhs0,95,192,1|8z4prz,95,192,1|8z4ps0,94,195,0|9anj3z,94,195,0|9anj40,95,192,1|9i7r3z,95,192,1|9i7r40,94,195,0|9tqkfz,94,195,0|9tqkg0,95,192,1|a0xtrz,95,192,1|a0xts0,94,195,0|acgn3z,94,195,0|acgn40,95,192,1|aixz3z,95,192,1|aixz40,94,195,0|av6prz,94,195,0|av6ps0,95,192,1|b1o1rz,95,192,1|b1o1s0,94,195,0|bdwsfz,94,195,0|bdwsg0,95,192,1|bke4fz,95,192,1|bke4g0,94,195,0|bwmv3z,94,195,0|bwmv40,95,192,1|c3h5rz,95,192,1|c3h5s0,94,195,0|cfpwfz,94,195,0|cfpwg0,95,192,1|cm78fz,95,192,1|cm78g0,94,195,0|cyfz3z,94,195,0|cyfz40,95,192,1|d4xb3z,95,192,1|d4xb40,94,195,0|dh61rz,94,195,0|dh61s0,95,192,1|dp38fz,95,192,1|dp38g0,94,195,0|dzw4fz,94,195,0|dzw4g0,95,192,1|e7tb3z,95,192,1|e7tb40,94,195,0|eim73z,94,195,0|eim740,95,192,1|eqjdrz,95,192,1|eqjds0,94,195,0|f1c9rz,94,195,0|f1c9s0,95,192,1|f99gfz,95,192,1|f99gg0,94,195,0|fkfb3z,94,195,0|fkfb40,95,192,1|frzj3z,95,192,1|frzj40,94,195,0|fzwprz,94,195,0|fzwps0,95,192,1|gaplrz,95,192,1|gapls0,94,195,0|glvgfz,94,195,0|glvgg0,95,192,1|gtsn3z,95,192,1|gtsn40,94,195,0|h4lj3z,94,195,0|h4lj40,95,192,1|hciprz,95,192,1|hcips0,94,195,0|hnblrz,94,195,0|hnbls0,95,192,1|hv8sfz,95,192,1|hv8sg0,94,195,0|i6en3z,94,195,0|i6en40,95,192,1|idyv3z,95,192,1|idyv40,94,195,0|ip4prz,94,195,0|ip4ps0,95,192,1|ix1wfz,95,192,1|ix1wg0,94,195,0|j7usfz,94,195,0|j7usg0,95,192,1|jff0fz,95,192,1|jff0g0,94,195,0|jqkv3z,94,195,0|jqkv40,95,192,1|jyv0fz,95,192,1|jyv0g0,94,195,0|k881rz,94,195,0|k881s0,95,192,1|khl33z,95,192,1|khl340,94,195,0|kqy4fz,94,195,0|kqy4g0,95,192,1|l0b5rz,95,192,1|l0b5s0,94,195,0|l9o73z,94,195,0|l9o740,95,192,1|lj18fz,95,192,1|lj18g0,94,195,0|lse9rz,94,195,0|lse9s0,95,192,1|m1rb3z,95,192,1|m1rb40,94,195,0|mbhb3z,94,195,0|mbhb40,95,192,1|mkucfz,95,192,1|mkucg0,94,195,0|mu7drz,94,195,0|mu7ds0,95,192,1|n3kf3z,95,192,1|n3kf40,94,195,0|ncxgfz,94,195,0|ncxgg0,95,192,1|nmahrz,95,192,1|nmahs0,94,195,0|nvnj3z,94,195,0|nvnj40,95,192,1|o50kfz,95,192,1|o50kg0,94,195,0|oedlrz,94,195,0|oedls0,95,192,1|onqn3z,95,192,1|onqn40,94,195,0|ox3ofz,94,195,0|ox3og0,95,192,1|p6gprz,95,192,1|p6gps0,94,195,0|pg6prz,94,195,0|pg6ps0,95,192,1|ppjr3z,95,192,1|ppjr40,94,195,0|pywsfz,94,195,0|pywsg0,95,192,1|q89trz,95,192,1|q89ts0,94,195,0|qhmv3z,94,195,0|qhmv40,95,192,1|qqzwfz,95,192,1|qqzwg0,94,195,0|r0cxrz,94,195,0|r0cxs0,95,192,1|r9pz3z,95,192,1|r9pz40,94,195,0|rj30fz,94,195,0|rj30g0,95,192,1|rsg1rz,95,192,1|rsg1s0,94,195,0|s1t33z,94,195,0|s1t340,95,192,1|sbj33z,95,192,1|sbj340,94,195,0|skw4fz,94,195,0|skw4g0,95,192,1|su95rz,95,192,1|su95s0,94,195,0|t3m73z,94,195,0|t3m740,95,192,1|tcz8fz,95,192,1|tcz8g0,94,195,0|tmc9rz,94,195,0|tmc9s0,95,192,1|tvpb3z,95,192,1|tvpb40,94,195,0|u52cfz,94,195,0|u52cg0,95,192,1|uefdrz,95,192,1|uefds0,94,195,0|unsf3z,94,195,0|unsf40,95,192,1|ux5gfz,95,192,1|ux5gg0,94,195,0|v6vgfz,94,195,0|v6vgg0,95,192,1|vg8hrz,95,192,1|vg8hs0,94,195,0|vplj3z,94,195,0|vplj40,95,192,1|vyykfz,95,192,1|vyykg0,94,195,0|w8blrz,94,195,0|w8bls0,95,192,1|whon3z,95,192,1|whon40,94,195,0|wr1ofz,94,195,0|wr1og0,95,192,1|x0eprz,95,192,1|x0eps0,94,195,0|x9rr3z,94,195,0|x9rr40,95,192,1|xj4sfz,95,192,1|xj4sg0,94,195,0|xshtrz,94,195,0|xshts0,95,192,1|y1uv3z,95,192,1|y1uv40,94,195,0|ybkv3z,94,195,0|ybkv40,95,192,1|ykxwfz,95,192,1|ykxwg0,94,195,0|yuaxrz,94,195,0|yuaxs0,95,192,1|z3nz3z,95,192,1|z3nz40,94,195,0|zd10fz,94,195,0|zd10g0,95,192,1","Etc/GMT+1|,199,15,0","Etc/GMT+10|,208,36,0","Etc/GMT+11|,209,35,0","Etc/GMT+12|,210,403,0","Etc/GMT+2|,200,45,0","Etc/GMT+3|,201,44,0","Etc/GMT+4|,202,42,0","Etc/GMT+5|,203,63,0","Etc/GMT+6|,204,62,0","Etc/GMT+7|,205,66,0","Etc/GMT+8|,206,40,0","Etc/GMT+9|,207,37,0","Etc/GMT-1|,198,10,0","Etc/GMT-10|,189,195,0","Etc/GMT-11|,188,192,0","Etc/GMT-12|,187,200,0","Etc/GMT-13|,186,201,0","Etc/GMT-14|,185,207,0","Etc/GMT-2|,197,11,0","Etc/GMT-3|,196,6,0","Etc/GMT-4|,195,209,0","Etc/GMT-5|,194,194,0","Etc/GMT-6|,193,196,0","Etc/GMT-7|,192,193,0","Etc/GMT-8|,191,191,0","Etc/GMT-9|,190,224,0","Europe/Amsterdam|,0,326,0|-1ygf4wk,44,326,0|-s0dvkl,44,326,0|-s0dvkk,24,327,1|-rsimcl,24,327,1|-rsimck,44,326,0|-ridkol,44,326,0|-ridkok,24,327,1|-rage0l,24,327,1|-rage0k,44,326,0|-r0dfcl,44,326,0|-r0dfck,24,327,1|-qr0e0l,24,327,1|-qr0e0k,44,326,0|-qhae0l,44,326,0|-qhae0k,24,327,1|-q8abcl,24,327,1|-q8abck,44,326,0|-pykbcl,44,326,0|-pykbck,24,327,1|-ppk8ol,24,327,1|-ppk8ok,44,326,0|-pfu8ol,44,326,0|-pfu8ok,24,327,1|-p6u60l,24,327,1|-p6u60k,44,326,0|-oxizcl,44,326,0|-oxizck,24,327,1|-ong0ol,24,327,1|-ong0ok,44,326,0|-obazcl,44,326,0|-obazck,24,327,1|-o4py0l,24,327,1|-o4py0k,44,326,0|-nvpvcl,44,326,0|-nvpvck,24,327,1|-nlzvcl,24,327,1|-nlzvck,44,326,0|-n9hvcl,44,326,0|-n9hvck,24,327,1|-n39sol,24,327,1|-n39sok,44,326,0|-mrsu0l,44,326,0|-mrsu0k,24,327,1|-mkjq0l,24,327,1|-mkjq0k,44,326,0|-m90wol,44,326,0|-m90wok,24,327,1|-m1tncl,24,327,1|-m1tnck,44,326,0|-lq74ol,44,326,0|-lq74ok,24,327,1|-liqm0l,24,327,1|-liqm0k,44,326,0|-l7f7cl,44,326,0|-l7f7ck,24,327,1|-l00jcl,24,327,1|-l00jck,44,326,0|-kona0l,44,326,0|-kona0k,24,327,1|-khagol,24,327,1|-khagok,44,326,0|-k5vcol,44,326,0|-k5vcok,24,327,1|-jyke0l,24,327,1|-jyke0k,44,326,0|-jmom0l,44,326,0|-jmom0k,24,327,1|-jfubcl,24,327,1|-jfubck,44,326,0|-j49ncl,44,326,0|-j49nck,24,327,1|-iwra0l,24,327,1|-iwra0k,44,326,0|-ilhq0l,44,326,0|-ilhq0k,24,327,1|-ie17cl,24,327,1|-ie17ck,44,326,0|-i2psol,44,326,0|-i2psok,24,327,1|-hvb4ol,24,327,1|-hvb4ok,44,326,0|-hjw0ol,44,326,0|-hjw0ok,24,327,1|-hcl20l,24,327,1|-hcl20k,44,326,0|-h0r4ol,44,326,0|-h0r4ok,24,327,1|-gypacl,24,327,1|-gypack,146,328,1|-gtuzdd,146,328,1|-gtuzdc,2,2,0|-gic61d,2,2,0|-gic61c,146,328,1|-gb4wpd,146,328,1|-gb4wpc,2,2,0|-fzk8pd,2,2,0|-fzk8pc,146,328,1|-fs1vdd,146,328,1|-fs1vdc,2,2,0|-fgorld,2,2,0|-fgorlc,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d6dp81,11,11,1|-d6dp80,10,10,0|-cx0nw1,10,10,0|-cx0nw0,11,11,1|-cofek1,11,11,1|-cofek0,10,10,0|3s9mrz,10,10,0|3s9ms0,11,11,1|419pfz,11,11,1|419pg0,10,10,0|4azpfz,10,10,0|4azpg0,11,11,1|4kcqrz,11,11,1|4kcqs0,10,10,0|4tps3z,10,10,0|4tps40,11,11,1|532tfz,11,11,1|532tg0,10,10,0|5cstfz,10,10,0|5cstg0,11,11,1|5lsw3z,11,11,1|5lsw40,10,10,0|5v5xfz,10,10,0|5v5xg0,11,11,1|64iyrz,11,11,1|64iys0,10,10,0|6dw03z,10,10,0|6dw040,11,11,1|6n91fz,11,11,1|6n91g0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Andorra|,0,329,0|-100edm4,8,1,0|-c4xmo1,8,1,0|-c4xmo0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Astrakhan|,0,330,0|-nu2zkc,100,6,0|-kmr4c1,100,6,0|-kmr4c0,105,209,0|5vb3jz,105,209,0|5vb3k0,92,194,1|64pwrz,92,194,1|64pws0,105,209,0|6e30vz,105,209,0|6e30w0,92,194,1|6nhu3z,92,194,1|6nhu40,105,209,0|6wuy7z,105,209,0|6wuy80,92,194,1|769rfz,92,194,1|769rg0,105,209,0|7foq7z,105,209,0|7foq80,92,194,1|7p1x3z,92,194,1|7p1x40,105,209,0|7yeyfz,105,209,0|7yeyg0,92,194,1|87rzrz,92,194,1|87rzs0,105,209,0|8h513z,105,209,0|8h5140,92,194,1|8qi2fz,92,194,1|8qi2g0,105,209,0|8zv3rz,105,209,0|8zv3s0,92,194,1|99853z,92,194,1|998540,105,209,0|9il6fz,105,209,0|9il6g0,92,194,1|9ry7rz,92,194,1|9ry7s0,105,209,0|a1b93z,105,209,0|a1b940,105,209,1|aaod7z,105,209,1|aaod80,100,6,0|ak1ejz,100,6,0|ak1ek0,105,209,1|atrejz,105,209,1|atrek0,100,6,0|b34fvz,100,6,0|b34fw0,105,209,0|blufrz,105,209,0|blufs0,105,209,1|bv7jvz,105,209,1|bv7jw0,100,6,0|c4kl7z,100,6,0|c4kl80,105,209,1|cdxmjz,105,209,1|cdxmk0,100,6,0|cnanvz,100,6,0|cnanw0,105,209,1|cwnp7z,105,209,1|cwnp80,100,6,0|d60qjz,100,6,0|d60qk0,105,209,1|dfdrvz,105,209,1|dfdrw0,100,6,0|dp3rvz,100,6,0|dp3rw0,105,209,1|dzwnvz,105,209,1|dzwnw0,100,6,0|e7tujz,100,6,0|e7tuk0,105,209,1|eimqjz,105,209,1|eimqk0,100,6,0|eqjx7z,100,6,0|eqjx80,105,209,1|f1ct7z,105,209,1|f1ct80,100,6,0|f99zvz,100,6,0|f99zw0,105,209,1|fkfujz,105,209,1|fkfuk0,100,6,0|fs02jz,100,6,0|fs02k0,105,209,1|g35x7z,105,209,1|g35x80,100,6,0|gaq57z,100,6,0|gaq580,105,209,1|glvzvz,105,209,1|glvzw0,100,6,0|gtt6jz,100,6,0|gtt6k0,105,209,1|h4m2jz,105,209,1|h4m2k0,100,6,0|hcj97z,100,6,0|hcj980,105,209,1|hnc57z,105,209,1|hnc580,100,6,0|hv9bvz,100,6,0|hv9bw0,105,209,1|i6f6jz,105,209,1|i6f6k0,100,6,0|idzejz,100,6,0|idzek0,105,209,1|ip597z,105,209,1|ip5980,100,6,0|iwph7z,100,6,0|iwph80,105,209,1|j7vbvz,105,209,1|j7vbw0,100,6,0|jffjvz,100,6,0|jffjw0,105,209,1|jqlejz,105,209,1|jqlek0,100,6,0|jyil7z,100,6,0|jyil80,105,209,1|k9bh7z,105,209,1|k9bh80,100,6,0|kh8nvz,100,6,0|kh8nw0,105,209,1|ks1jvz,105,209,1|ks1jw0,100,6,0|kzyqjz,100,6,0|kzyqk0,105,209,1|lb4l7z,105,209,1|lb4l80,100,6,0|liot7z,100,6,0|liot80,105,209,0|ne0t3z,105,209,0|ne0t40,100,6,0|o4o57z,100,6,0|o4o580,105,209,0","Europe/Athens|,0,331,0|-12rxtq4,44,331,0|-rvv0ch,44,331,0|-rvv0cg,15,11,0|-jkbpk1,15,11,0|-jkbpk0,16,6,1|-jhg301,16,6,1|-jhg300,15,11,0|-ezx6w1,15,11,0|-ezx6w0,16,6,1|-eyqoc1,16,6,1|-eyqoc0,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dys2s1,10,10,0|-dys2s0,11,11,1|-dp4081,11,11,1|-dp4080,10,10,0|-dfp1g1,10,10,0|-dfp1g0,15,11,0|-94v1k1,15,11,0|-94v1k0,16,6,1|-8yhho1,16,6,1|-8yhho0,15,11,0|2r4d3z,15,11,0|2r4d40,16,6,1|32ul3z,16,6,1|32ul40,15,11,0|39wfzz,15,11,0|39wg00,16,6,1|3j9hbz,16,6,1|3j9hc0,15,11,0|3s9jzz,15,11,0|3s9k00,16,6,1|41bhbz,16,6,1|41bhc0,15,11,0|4azmnz,15,11,0|4azmo0,16,6,1|4jzs3z,16,6,1|4jzs40,15,11,0|4tq8rz,15,11,0|4tq8s0,16,6,1|530t7z,16,6,1|530t80,15,11,0|5cjbrz,15,11,0|5cjbs0,16,6,1|5lskzz,16,6,1|5lsl00,15,11,0|5v5xfz,15,11,0|5v5xg0,16,6,1|64iyrz,16,6,1|64iys0,15,11,0|6dw03z,15,11,0|6dw040,16,6,1|6n91fz,16,6,1|6n91g0,15,11,0|6wm2rz,15,11,0|6wm2s0,16,6,1|75z43z,16,6,1|75z440,15,11,0|7fc5fz,15,11,0|7fc5g0,16,6,1|7p25fz,16,6,1|7p25g0,15,11,0|7yf6rz,15,11,0|7yf6s0,16,6,1|87s83z,16,6,1|87s840,15,11,0|8h59fz,15,11,0|8h59g0,16,6,1|8qiarz,16,6,1|8qias0,15,11,0|8zvc3z,15,11,0|8zvc40,16,6,1|998dfz,16,6,1|998dg0,15,11,0|9ilerz,15,11,0|9iles0,16,6,1|9ryg3z,16,6,1|9ryg40,15,11,0|a1bhfz,15,11,0|a1bhg0,16,6,1|aaoirz,16,6,1|aaois0,15,11,0|ak1k3z,15,11,0|ak1k40,16,6,1|atrk3z,16,6,1|atrk40,15,11,0|b34lfz,15,11,0|b34lg0,16,6,1|bchmrz,16,6,1|bchms0,15,11,0|bluo3z,15,11,0|bluo40,16,6,1|bv7pfz,16,6,1|bv7pg0,15,11,0|c4kqrz,15,11,0|c4kqs0,16,6,1|cdxs3z,16,6,1|cdxs40,15,11,0|cnatfz,15,11,0|cnatg0,16,6,1|cwnurz,16,6,1|cwnus0,15,11,0|d60w3z,15,11,0|d60w40,16,6,1|dfdxfz,16,6,1|dfdxg0,15,11,0|dp3xfz,15,11,0|dp3xg0,16,6,1|dzwtfz,16,6,1|dzwtg0,15,11,0|e7u03z,15,11,0|e7u040,16,6,1|eimw3z,16,6,1|eimw40,15,11,0|eqk2rz,15,11,0|eqk2s0,16,6,1|f1cyrz,16,6,1|f1cys0,15,11,0|f9a5fz,15,11,0|f9a5g0,16,6,1|fkg03z,16,6,1|fkg040,15,11,0|fs083z,15,11,0|fs0840,16,6,1|g362rz,16,6,1|g362s0,15,11,0|gaqarz,15,11,0|gaqas0,16,6,1|glw5fz,16,6,1|glw5g0,15,11,0|gttc3z,15,11,0|gttc40,16,6,1|h4m83z,16,6,1|h4m840,15,11,0|hcjerz,15,11,0|hcjes0,16,6,1|hncarz,16,6,1|hncas0,15,11,0|hv9hfz,15,11,0|hv9hg0,16,6,1|i6fc3z,16,6,1|i6fc40,15,11,0|idzk3z,15,11,0|idzk40,16,6,1|ip5erz,16,6,1|ip5es0,15,11,0|iwpmrz,15,11,0|iwpms0,16,6,1|j7vhfz,16,6,1|j7vhg0,15,11,0|jffpfz,15,11,0|jffpg0,16,6,1|jqlk3z,16,6,1|jqlk40,15,11,0|jyiqrz,15,11,0|jyiqs0,16,6,1|k9bmrz,16,6,1|k9bms0,15,11,0|kh8tfz,15,11,0|kh8tg0,16,6,1|ks1pfz,16,6,1|ks1pg0,15,11,0|kzyw3z,15,11,0|kzyw40,16,6,1|lb4qrz,16,6,1|lb4qs0,15,11,0|lioyrz,15,11,0|lioys0,16,6,1|ltutfz,16,6,1|ltutg0,15,11,0|m1f1fz,15,11,0|m1f1g0,16,6,1|mckw3z,16,6,1|mckw40,15,11,0|mki2rz,15,11,0|mki2s0,16,6,1|mvayrz,16,6,1|mvays0,15,11,0|n385fz,15,11,0|n385g0,16,6,1|ne11fz,16,6,1|ne11g0,15,11,0|nly83z,15,11,0|nly840,16,6,1|nwr43z,16,6,1|nwr440,15,11,0|o4oarz,15,11,0|o4oas0,16,6,1|ofu5fz,16,6,1|ofu5g0,15,11,0|onedfz,15,11,0|onedg0,16,6,1|oyk83z,16,6,1|oyk840,15,11,0|p64g3z,15,11,0|p64g40,16,6,1|phaarz,16,6,1|phaas0,15,11,0|pp7hfz,15,11,0|pp7hg0,16,6,1|q00dfz,16,6,1|q00dg0,15,11,0|q7xk3z,15,11,0|q7xk40,16,6,1|qiqg3z,16,6,1|qiqg40,15,11,0|qqnmrz,15,11,0|qqnms0,16,6,1|r1thfz,16,6,1|r1thg0,15,11,0|r9dpfz,15,11,0|r9dpg0,16,6,1|rkjk3z,16,6,1|rkjk40,15,11,0|rs3s3z,15,11,0|rs3s40,16,6,1|s39mrz,16,6,1|s39ms0,15,11,0|sb6tfz,15,11,0|sb6tg0,16,6,1|slzpfz,16,6,1|slzpg0,15,11,0|stww3z,15,11,0|stww40,16,6,1|t4ps3z,16,6,1|t4ps40,15,11,0|tcmyrz,15,11,0|tcmys0,16,6,1|tnfurz,16,6,1|tnfus0,15,11,0|tvd1fz,15,11,0|tvd1g0,16,6,1|u6iw3z,16,6,1|u6iw40,15,11,0|ue343z,15,11,0|ue3440,16,6,1|up8yrz,16,6,1|up8ys0,15,11,0|uwt6rz,15,11,0|uwt6s0,16,6,1|v7z1fz,16,6,1|v7z1g0,15,11,0|vfw83z,15,11,0|vfw840,16,6,1|vqp43z,16,6,1|vqp440,15,11,0|vymarz,15,11,0|vymas0,16,6,1|w9f6rz,16,6,1|w9f6s0,15,11,0|whcdfz,15,11,0|whcdg0,16,6,1|wsi83z,16,6,1|wsi840,15,11,0|x02g3z,15,11,0|x02g40,16,6,1|xb8arz,16,6,1|xb8as0,15,11,0|xisirz,15,11,0|xisis0,16,6,1|xtydfz,16,6,1|xtydg0,15,11,0|y1ilfz,15,11,0|y1ilg0,16,6,1|ycog3z,16,6,1|ycog40,15,11,0|yklmrz,15,11,0|yklms0,16,6,1|yveirz,16,6,1|yveis0,15,11,0|z3bpfz,15,11,0|z3bpg0,16,6,1|ze4lfz,16,6,1|ze4lg0,15,11,0","Europe/Belgrade|,0,332,0|-18vsmgo,10,10,0|-ezayw1,10,10,0|-ezayw0,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d6dp81,11,11,1|-d6dp80,10,10,0|-cv5zw1,10,10,0|-cv5zw0,11,11,1|-cofek1,11,11,1|-cofek0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Berlin|,0,333,0|-1421154,10,10,0|-s0e081,10,10,0|-s0e080,11,11,1|-rsilg1,11,11,1|-rsilg0,10,10,0|-ridmk1,10,10,0|-ridmk0,11,11,1|-ragfw1,11,11,1|-ragfw0,10,10,0|-qznjw1,10,10,0|-qznjw0,11,11,1|-qrqd81,11,11,1|-qrqd80,10,10,0|-fizzw1,10,10,0|-fizzw0,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d6dp81,11,11,1|-d6dp80,10,10,0|-cx0nw1,10,10,0|-cx0nw0,11,11,1|-cucg01,11,11,1|-cucg00,147,6,1|-co0o01,147,6,1|-co0o00,11,11,1|-cl6qk1,11,11,1|-cl6qk0,10,10,0|-cdmik1,10,10,0|-cdmik0,11,11,1|-c4kl81,11,11,1|-c4kl80,10,10,0|-bv9bs1,10,10,0|-bv9bs0,11,11,1|-btgl81,11,11,1|-btgl80,147,6,1|-bqxxc1,147,6,1|-bqxxc0,11,11,1|-blwd81,11,11,1|-blwd80,10,10,0|-bbtek1,10,10,0|-bbtek0,11,11,1|-b36ak1,11,11,1|-b36ak0,10,10,0|-atgak1,10,10,0|-atgak0,11,11,1|-akg7w1,11,11,1|-akg7w0,10,10,0|5cstfz,10,10,0|5cstg0,11,11,1|5lsw3z,11,11,1|5lsw40,10,10,0|5v5xfz,10,10,0|5v5xg0,11,11,1|64iyrz,11,11,1|64iys0,10,10,0|6dw03z,10,10,0|6dw040,11,11,1|6n91fz,11,11,1|6n91g0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Bratislava|,0,334,0|-1qmkw08,7,334,0|-14u7uo9,7,334,0|-14u7uo8,10,10,0|-s0e081,10,10,0|-s0e080,11,11,1|-rsilg1,11,11,1|-rsilg0,10,10,0|-ridmk1,10,10,0|-ridmk0,11,11,1|-ragfw1,11,11,1|-ragfw0,10,10,0|-qznjw1,10,10,0|-qznjw0,11,11,1|-qrqd81,11,11,1|-qrqd80,10,10,0|-fizzw1,10,10,0|-fizzw0,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d6dp81,11,11,1|-d6dp80,10,10,0|-cx0nw1,10,10,0|-cx0nw0,11,11,1|-cnnmk1,11,11,1|-cnnmk0,10,10,0|-cchrw1,10,10,0|-cchrw0,11,11,1|-c4mfw1,11,11,1|-c4mfw0,10,10,0|-c1qns1,10,10,0|-c1qns0,1,1,1|-bxf3s1,1,1,1|-bxf3s0,10,10,0|-bujh81,10,10,0|-bujh80,11,11,1|-blwd81,11,11,1|-blwd80,10,10,0|-bbtek1,10,10,0|-bbtek0,11,11,1|-b36ak1,11,11,1|-b36ak0,10,10,0|-ati581,10,10,0|-ati580,11,11,1|-akg7w1,11,11,1|-akg7w0,10,10,0|4tps3z,10,10,0|4tps40,11,11,1|532tfz,11,11,1|532tg0,10,10,0|5cstfz,10,10,0|5cstg0,11,11,1|5lsw3z,11,11,1|5lsw40,10,10,0|5v5xfz,10,10,0|5v5xg0,11,11,1|64iyrz,11,11,1|64iys0,10,10,0|6dw03z,10,10,0|6dw040,11,11,1|6n91fz,11,11,1|6n91g0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Brussels|,0,335,0|-1ayy3h6,53,335,0|-14j9c01,53,335,0|-14j9c00,8,1,0|-ss5uo1,8,1,0|-ss5uo0,10,10,0|-s0dxg1,10,10,0|-s0dxg0,11,11,1|-rsilg1,11,11,1|-rsilg0,10,10,0|-ridmk1,10,10,0|-ridmk0,11,11,1|-ragfw1,11,11,1|-ragfw0,10,10,0|-qznjw1,10,10,0|-qznjw0,11,11,1|-qrqd81,11,11,1|-qrqd80,10,10,0|-qotw41,10,10,0|-qotw40,8,1,0|-qj59g1,8,1,0|-qj59g0,9,10,1|-q7zes1,9,10,1|-q7zes0,8,1,0|-q15441,8,1,0|-q15440,9,10,1|-po6g41,9,10,1|-po6g40,8,1,0|-pgvhg1,8,1,0|-pgvhg0,9,10,1|-p5atg1,9,10,1|-p5atg0,8,1,0|-oxj6s1,8,1,0|-oxj6s0,9,10,1|-ong841,9,10,1|-ong840,8,1,0|-odd9g1,8,1,0|-odd9g0,9,10,1|-o4q5g1,9,10,1|-o4q5g0,8,1,0|-nvq2s1,8,1,0|-nvq2s0,9,10,1|-nm02s1,9,10,1|-nm02s0,8,1,0|-ncn1g1,8,1,0|-ncn1g0,9,10,1|-n3a041,9,10,1|-n3a040,8,1,0|-mt71g1,8,1,0|-mt71g0,9,10,1|-mkjxg1,9,10,1|-mkjxg0,8,1,0|-matxg1,8,1,0|-matxg0,9,10,1|-m1tus1,9,10,1|-m1tus0,8,1,0|-lrqw41,8,1,0|-lrqw40,9,10,1|-liql41,9,10,1|-liql40,8,1,0|-l8nmg1,8,1,0|-l8nmg0,9,10,1|-l00ig1,9,10,1|-l00ig0,8,1,0|-kqaig1,8,1,0|-kqaig0,9,10,1|-khafs1,9,10,1|-khafs0,8,1,0|-k77h41,8,1,0|-k77h40,9,10,1|-jykd41,9,10,1|-jykd40,8,1,0|-jp7bs1,8,1,0|-jp7bs0,9,10,1|-jfuag1,9,10,1|-jfuag0,8,1,0|-j6u7s1,8,1,0|-j6u7s0,9,10,1|-iwr941,9,10,1|-iwr940,8,1,0|-ine7s1,8,1,0|-ine7s0,9,10,1|-ie16g1,9,10,1|-ie16g0,8,1,0|-i513s1,8,1,0|-i513s0,9,10,1|-hvb3s1,9,10,1|-hvb3s0,8,1,0|-hl8541,8,1,0|-hl8540,9,10,1|-hcl141,9,10,1|-hcl140,8,1,0|-h37zs1,8,1,0|-h37zs0,9,10,1|-gtuyg1,9,10,1|-gtuyg0,8,1,0|-gkuvs1,8,1,0|-gkuvs0,9,10,1|-gb4vs1,9,10,1|-gb4vs0,8,1,0|-g11x41,8,1,0|-g11x40,9,10,1|-fpw2g1,9,10,1|-fpw2g0,8,1,0|-fkul41,8,1,0|-fkul40,9,10,1|-fgh6g1,9,10,1|-fgh6g0,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d75h81,11,11,1|-d75h80,10,10,0|-cx0nw1,10,10,0|-cx0nw0,11,11,1|-cofek1,11,11,1|-cofek0,10,10,0|-cbtp81,10,10,0|-cbtp80,11,11,1|-c4kl81,11,11,1|-c4kl80,10,10,0|3s9mrz,10,10,0|3s9ms0,11,11,1|419pfz,11,11,1|419pg0,10,10,0|4azpfz,10,10,0|4azpg0,11,11,1|4kcqrz,11,11,1|4kcqs0,10,10,0|4tps3z,10,10,0|4tps40,11,11,1|532tfz,11,11,1|532tg0,10,10,0|5cstfz,10,10,0|5cstg0,11,11,1|5lsw3z,11,11,1|5lsw40,10,10,0|5v5xfz,10,10,0|5v5xg0,11,11,1|64iyrz,11,11,1|64iys0,10,10,0|6dw03z,10,10,0|6dw040,11,11,1|6n91fz,11,11,1|6n91g0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Bucharest|,0,336,0|-14u7wu0,53,336,0|-k29zi1,53,336,0|-k29zi0,15,11,0|-jmqqw1,15,11,0|-jmqqw0,16,6,1|-jfulk1,16,6,1|-jfulk0,15,11,0|-j6hk81,15,11,0|-j6hk80,16,6,1|-ix4iw1,16,6,1|-ix4iw0,15,11,0|-ineiw1,15,11,0|-ineiw0,16,6,1|-ie1hk1,16,6,1|-ie1hk0,15,11,0|-i4og81,15,11,0|-i4og80,16,6,1|-hvbew1,16,6,1|-hvbew0,15,11,0|-hlydk1,15,11,0|-hlydk0,16,6,1|-hclc81,16,6,1|-hclc80,15,11,0|-h38aw1,15,11,0|-h38aw0,16,6,1|-gtv9k1,16,6,1|-gtv9k0,15,11,0|-gki881,15,11,0|-gki880,16,6,1|-gb56w1,16,6,1|-gb56w0,15,11,0|-g1s5k1,15,11,0|-g1s5k0,16,6,1|-fsf481,16,6,1|-fsf480,15,11,0|4wl93z,15,11,0|4wl940,16,6,1|532ibz,16,6,1|532ic0,15,11,0|5csibz,15,11,0|5csic0,16,6,1|5lsnrz,16,6,1|5lsns0,15,11,0|5v5unz,15,11,0|5v5uo0,16,6,1|64ivzz,16,6,1|64iw00,15,11,0|6dvxbz,15,11,0|6dvxc0,16,6,1|6n8ynz,16,6,1|6n8yo0,15,11,0|6wlzzz,15,11,0|6wm000,16,6,1|75z1bz,16,6,1|75z1c0,15,11,0|7fc2nz,15,11,0|7fc2o0,16,6,1|7p22nz,16,6,1|7p22o0,15,11,0|7yf3zz,15,11,0|7yf400,16,6,1|87s5bz,16,6,1|87s5c0,15,11,0|8h56nz,15,11,0|8h56o0,16,6,1|8qi7zz,16,6,1|8qi800,15,11,0|8zv9bz,15,11,0|8zv9c0,16,6,1|998anz,16,6,1|998ao0,15,11,0|9ilbzz,15,11,0|9ilc00,16,6,1|9rydbz,16,6,1|9rydc0,15,11,0|a1benz,15,11,0|a1beo0,16,6,1|aaofzz,16,6,1|aaog00,15,11,0|ak1hbz,15,11,0|ak1hc0,16,6,1|atrhbz,16,6,1|atrhc0,15,11,0|b34d3z,15,11,0|b34d40,16,6,1|bchefz,16,6,1|bcheg0,15,11,0|blufrz,15,11,0|blufs0,16,6,1|bv7h3z,16,6,1|bv7h40,15,11,0|c4kifz,15,11,0|c4kig0,16,6,1|cdxjrz,16,6,1|cdxjs0,15,11,0|cnal3z,15,11,0|cnal40,16,6,1|cwnjnz,16,6,1|cwnjo0,15,11,0|d60nrz,15,11,0|d60ns0,16,6,1|dfdmbz,16,6,1|dfdmc0,15,11,0|dp3p3z,15,11,0|dp3p40,16,6,1|dzwibz,16,6,1|dzwic0,15,11,0|e7u03z,15,11,0|e7u040,16,6,1|eimw3z,16,6,1|eimw40,15,11,0|eqk2rz,15,11,0|eqk2s0,16,6,1|f1cyrz,16,6,1|f1cys0,15,11,0|f9a5fz,15,11,0|f9a5g0,16,6,1|fkg03z,16,6,1|fkg040,15,11,0|fs083z,15,11,0|fs0840,16,6,1|g362rz,16,6,1|g362s0,15,11,0|gaqarz,15,11,0|gaqas0,16,6,1|glw5fz,16,6,1|glw5g0,15,11,0|gttc3z,15,11,0|gttc40,16,6,1|h4m83z,16,6,1|h4m840,15,11,0|hcjerz,15,11,0|hcjes0,16,6,1|hncarz,16,6,1|hncas0,15,11,0|hv9hfz,15,11,0|hv9hg0,16,6,1|i6fc3z,16,6,1|i6fc40,15,11,0|idzk3z,15,11,0|idzk40,16,6,1|ip5erz,16,6,1|ip5es0,15,11,0|iwpmrz,15,11,0|iwpms0,16,6,1|j7vhfz,16,6,1|j7vhg0,15,11,0|jffpfz,15,11,0|jffpg0,16,6,1|jqlk3z,16,6,1|jqlk40,15,11,0|jyiqrz,15,11,0|jyiqs0,16,6,1|k9bmrz,16,6,1|k9bms0,15,11,0|kh8tfz,15,11,0|kh8tg0,16,6,1|ks1pfz,16,6,1|ks1pg0,15,11,0|kzyw3z,15,11,0|kzyw40,16,6,1|lb4qrz,16,6,1|lb4qs0,15,11,0|lioyrz,15,11,0|lioys0,16,6,1|ltutfz,16,6,1|ltutg0,15,11,0|m1f1fz,15,11,0|m1f1g0,16,6,1|mckw3z,16,6,1|mckw40,15,11,0|mki2rz,15,11,0|mki2s0,16,6,1|mvayrz,16,6,1|mvays0,15,11,0|n385fz,15,11,0|n385g0,16,6,1|ne11fz,16,6,1|ne11g0,15,11,0|nly83z,15,11,0|nly840,16,6,1|nwr43z,16,6,1|nwr440,15,11,0|o4oarz,15,11,0|o4oas0,16,6,1|ofu5fz,16,6,1|ofu5g0,15,11,0|onedfz,15,11,0|onedg0,16,6,1|oyk83z,16,6,1|oyk840,15,11,0|p64g3z,15,11,0|p64g40,16,6,1|phaarz,16,6,1|phaas0,15,11,0|pp7hfz,15,11,0|pp7hg0,16,6,1|q00dfz,16,6,1|q00dg0,15,11,0|q7xk3z,15,11,0|q7xk40,16,6,1|qiqg3z,16,6,1|qiqg40,15,11,0|qqnmrz,15,11,0|qqnms0,16,6,1|r1thfz,16,6,1|r1thg0,15,11,0|r9dpfz,15,11,0|r9dpg0,16,6,1|rkjk3z,16,6,1|rkjk40,15,11,0|rs3s3z,15,11,0|rs3s40,16,6,1|s39mrz,16,6,1|s39ms0,15,11,0|sb6tfz,15,11,0|sb6tg0,16,6,1|slzpfz,16,6,1|slzpg0,15,11,0|stww3z,15,11,0|stww40,16,6,1|t4ps3z,16,6,1|t4ps40,15,11,0|tcmyrz,15,11,0|tcmys0,16,6,1|tnfurz,16,6,1|tnfus0,15,11,0|tvd1fz,15,11,0|tvd1g0,16,6,1|u6iw3z,16,6,1|u6iw40,15,11,0|ue343z,15,11,0|ue3440,16,6,1|up8yrz,16,6,1|up8ys0,15,11,0|uwt6rz,15,11,0|uwt6s0,16,6,1|v7z1fz,16,6,1|v7z1g0,15,11,0|vfw83z,15,11,0|vfw840,16,6,1|vqp43z,16,6,1|vqp440,15,11,0|vymarz,15,11,0|vymas0,16,6,1|w9f6rz,16,6,1|w9f6s0,15,11,0|whcdfz,15,11,0|whcdg0,16,6,1|wsi83z,16,6,1|wsi840,15,11,0|x02g3z,15,11,0|x02g40,16,6,1|xb8arz,16,6,1|xb8as0,15,11,0|xisirz,15,11,0|xisis0,16,6,1|xtydfz,16,6,1|xtydg0,15,11,0|y1ilfz,15,11,0|y1ilg0,16,6,1|ycog3z,16,6,1|ycog40,15,11,0|yklmrz,15,11,0|yklms0,16,6,1|yveirz,16,6,1|yveis0,15,11,0|z3bpfz,15,11,0|z3bpg0,16,6,1|ze4lfz,16,6,1|ze4lg0,15,11,0","Europe/Budapest|,0,337,0|-15bee78,10,10,0|-s0e081,10,10,0|-s0e080,11,11,1|-rsilg1,11,11,1|-rsilg0,10,10,0|-ridmk1,10,10,0|-ridmk0,11,11,1|-ragfw1,11,11,1|-ragfw0,10,10,0|-qznjw1,10,10,0|-qznjw0,11,11,1|-qrqd81,11,11,1|-qrqd80,10,10,0|-qgvmk1,10,10,0|-qgvmk0,11,11,1|-q90ak1,11,11,1|-q90ak0,10,10,0|-pykd81,10,10,0|-pykd80,11,11,1|-ppx981,11,11,1|-ppx980,10,10,0|-ezvc81,10,10,0|-ezvc80,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d6dp81,11,11,1|-d6dp80,10,10,0|-cvhc81,10,10,0|-cvhc80,11,11,1|-cm2dg1,11,11,1|-cm2dg0,10,10,0|-cecfw1,10,10,0|-cecfw0,11,11,1|-c4ko01,11,11,1|-c4ko00,10,10,0|-bv9ek1,10,10,0|-bv9ek0,11,11,1|-blwd81,11,11,1|-blwd80,10,10,0|-bcjbw1,10,10,0|-bcjbw0,11,11,1|-b36ak1,11,11,1|-b36ak0,10,10,0|-atgak1,10,10,0|-atgak0,11,11,1|-akg7w1,11,11,1|-akg7w0,10,10,0|-85bc41,10,10,0|-85bc40,11,11,1|-7yh481,11,11,1|-7yh480,10,10,0|-7ml3w1,10,10,0|-7ml3w0,11,11,1|-7fqt81,11,11,1|-7fqt80,10,10,0|-7353w1,10,10,0|-7353w0,11,11,1|-6x0qk1,11,11,1|-6x0qk0,10,10,0|-6kf181,10,10,0|-6kf180,11,11,1|-6eanw1,11,11,1|-6eanw0,10,10,0|5csnvz,10,10,0|5csnw0,11,11,1|5lsqjz,11,11,1|5lsqk0,10,10,0|5v5rvz,10,10,0|5v5rw0,11,11,1|64it7z,11,11,1|64it80,10,10,0|6dvujz,10,10,0|6dvuk0,11,11,1|6n8vvz,11,11,1|6n8vw0,10,10,0|6wlx7z,10,10,0|6wlx80,11,11,1|75yyjz,11,11,1|75yyk0,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Busingen|,0,338,0|-1os49kw,53,339,0|-13g441n,53,339,0|-13g441m,10,10,0|-eyh6o1,10,10,0|-eyh6o0,11,11,1|-eqk001,11,11,1|-eqk000,10,10,0|-efr401,10,10,0|-efr400,11,11,1|-e7txc1,11,11,1|-e7txc0,10,10,0|5v5xfz,10,10,0|5v5xg0,11,11,1|64iyrz,11,11,1|64iys0,10,10,0|6dw03z,10,10,0|6dw040,11,11,1|6n91fz,11,11,1|6n91g0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Chisinau|,0,340,0|-1ayy808,41,341,0|-r2p1bp,41,341,0|-r2p1bo,53,336,0|-k29zi1,53,336,0|-k29zi0,15,11,0|-jmqqw1,15,11,0|-jmqqw0,16,6,1|-jfulk1,16,6,1|-jfulk0,15,11,0|-j6hk81,15,11,0|-j6hk80,16,6,1|-ix4iw1,16,6,1|-ix4iw0,15,11,0|-ineiw1,15,11,0|-ineiw0,16,6,1|-ie1hk1,16,6,1|-ie1hk0,15,11,0|-i4og81,15,11,0|-i4og80,16,6,1|-hvbew1,16,6,1|-hvbew0,15,11,0|-hlydk1,15,11,0|-hlydk0,16,6,1|-hclc81,16,6,1|-hclc80,15,11,0|-h38aw1,15,11,0|-h38aw0,16,6,1|-gtv9k1,16,6,1|-gtv9k0,15,11,0|-gki881,15,11,0|-gki880,16,6,1|-gb56w1,16,6,1|-gb56w0,15,11,0|-g1s5k1,15,11,0|-g1s5k0,16,6,1|-fsf481,16,6,1|-fsf480,15,11,0|-fc0dk1,15,11,0|-fc0dk0,16,6,1|-euq8c1,16,6,1|-euq8c0,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d8e5k1,11,11,1|-d8e5k0,148,6,0|5vb6bz,148,6,0|5vb6c0,149,209,1|64pzjz,149,209,1|64pzk0,148,6,0|6e33nz,148,6,0|6e33o0,149,209,1|6nhwvz,149,209,1|6nhww0,148,6,0|6wv0zz,148,6,0|6wv100,149,209,1|769u7z,149,209,1|769u80,148,6,0|7foszz,148,6,0|7fot00,149,209,1|7p1zvz,149,209,1|7p1zw0,148,6,0|7yf17z,148,6,0|7yf180,149,209,1|87s2jz,149,209,1|87s2k0,148,6,0|8h53vz,148,6,0|8h53w0,149,209,1|8qi57z,149,209,1|8qi580,148,6,0|8zv6jz,148,6,0|8zv6k0,149,209,1|9987vz,149,209,1|9987w0,148,6,0|9il97z,148,6,0|9il980,149,209,1|9ryajz,149,209,1|9ryak0,148,6,0|a1bbvz,148,6,0|a1bbw0,149,209,1|aaod7z,149,209,1|aaod80,148,6,0|ak1ejz,148,6,0|ak1ek0,149,209,1|am73rz,149,209,1|am73s0,16,6,1|atrhbz,16,6,1|atrhc0,15,11,0|b34inz,15,11,0|b34io0,16,6,1|bchjzz,16,6,1|bchk00,15,11,0|blufrz,15,11,0|blufs0,16,6,1|bv7ebz,16,6,1|bv7ec0,15,11,0|c4kifz,15,11,0|c4kig0,16,6,1|cdxgzz,16,6,1|cdxh00,15,11,0|cnal3z,15,11,0|cnal40,16,6,1|cwnjnz,16,6,1|cwnjo0,15,11,0|d60nrz,15,11,0|d60ns0,16,6,1|dfdmbz,16,6,1|dfdmc0,15,11,0|dp3p3z,15,11,0|dp3p40,16,6,1|dzwibz,16,6,1|dzwic0,15,11,0|e7txbz,15,11,0|e7txc0,16,6,1|eimtbz,16,6,1|eimtc0,15,11,0|eqjzzz,15,11,0|eqk000,16,6,1|f1cvzz,16,6,1|f1cw00,15,11,0|f9a2nz,15,11,0|f9a2o0,16,6,1|fkfxbz,16,6,1|fkfxc0,15,11,0|fs05bz,15,11,0|fs05c0,16,6,1|g35zzz,16,6,1|g36000,15,11,0|gaq7zz,15,11,0|gaq800,16,6,1|glw2nz,16,6,1|glw2o0,15,11,0|gtt9bz,15,11,0|gtt9c0,16,6,1|h4m5bz,16,6,1|h4m5c0,15,11,0|hcjbzz,15,11,0|hcjc00,16,6,1|hnc7zz,16,6,1|hnc800,15,11,0|hv9enz,15,11,0|hv9eo0,16,6,1|i6f9bz,16,6,1|i6f9c0,15,11,0|idzhbz,15,11,0|idzhc0,16,6,1|ip5bzz,16,6,1|ip5c00,15,11,0|iwpjzz,15,11,0|iwpk00,16,6,1|j7venz,16,6,1|j7veo0,15,11,0|jffmnz,15,11,0|jffmo0,16,6,1|jqlhbz,16,6,1|jqlhc0,15,11,0|jyinzz,15,11,0|jyio00,16,6,1|k9bjzz,16,6,1|k9bk00,15,11,0|kh8qnz,15,11,0|kh8qo0,16,6,1|ks1mnz,16,6,1|ks1mo0,15,11,0|kzytbz,15,11,0|kzytc0,16,6,1|lb4nzz,16,6,1|lb4o00,15,11,0|liovzz,15,11,0|liow00,16,6,1|ltuqnz,16,6,1|ltuqo0,15,11,0|m1eynz,15,11,0|m1eyo0,16,6,1|mcktbz,16,6,1|mcktc0,15,11,0|mkhzzz,15,11,0|mki000,16,6,1|mvavzz,16,6,1|mvaw00,15,11,0|n382nz,15,11,0|n382o0,16,6,1|ne0ynz,16,6,1|ne0yo0,15,11,0|nly5bz,15,11,0|nly5c0,16,6,1|nwr1bz,16,6,1|nwr1c0,15,11,0|o4o7zz,15,11,0|o4o800,16,6,1|ofu2nz,16,6,1|ofu2o0,15,11,0|oneanz,15,11,0|oneao0,16,6,1|oyk5bz,16,6,1|oyk5c0,15,11,0|p64dbz,15,11,0|p64dc0,16,6,1|pha7zz,16,6,1|pha800,15,11,0|pp7enz,15,11,0|pp7eo0,16,6,1|q00anz,16,6,1|q00ao0,15,11,0|q7xhbz,15,11,0|q7xhc0,16,6,1|qiqdbz,16,6,1|qiqdc0,15,11,0|qqnjzz,15,11,0|qqnk00,16,6,1|r1tenz,16,6,1|r1teo0,15,11,0|r9dmnz,15,11,0|r9dmo0,16,6,1|rkjhbz,16,6,1|rkjhc0,15,11,0|rs3pbz,15,11,0|rs3pc0,16,6,1|s39jzz,16,6,1|s39k00,15,11,0|sb6qnz,15,11,0|sb6qo0,16,6,1|slzmnz,16,6,1|slzmo0,15,11,0|stwtbz,15,11,0|stwtc0,16,6,1|t4ppbz,16,6,1|t4ppc0,15,11,0|tcmvzz,15,11,0|tcmw00,16,6,1|tnfrzz,16,6,1|tnfs00,15,11,0|tvcynz,15,11,0|tvcyo0,16,6,1|u6itbz,16,6,1|u6itc0,15,11,0|ue31bz,15,11,0|ue31c0,16,6,1|up8vzz,16,6,1|up8w00,15,11,0|uwt3zz,15,11,0|uwt400,16,6,1|v7yynz,16,6,1|v7yyo0,15,11,0|vfw5bz,15,11,0|vfw5c0,16,6,1|vqp1bz,16,6,1|vqp1c0,15,11,0|vym7zz,15,11,0|vym800,16,6,1|w9f3zz,16,6,1|w9f400,15,11,0|whcanz,15,11,0|whcao0,16,6,1|wsi5bz,16,6,1|wsi5c0,15,11,0|x02dbz,15,11,0|x02dc0,16,6,1|xb87zz,16,6,1|xb8800,15,11,0|xisfzz,15,11,0|xisg00,16,6,1|xtyanz,16,6,1|xtyao0,15,11,0|y1iinz,15,11,0|y1iio0,16,6,1|ycodbz,16,6,1|ycodc0,15,11,0|ykljzz,15,11,0|yklk00,16,6,1|yvefzz,16,6,1|yveg00,15,11,0|z3bmnz,15,11,0|z3bmo0,16,6,1|ze4inz,16,6,1|ze4io0,15,11,0","Europe/Copenhagen|,0,342,0|-15r1bnw,41,342,0|-13nvrnx,41,342,0|-13nvrnw,10,10,0|-rzo2w1,10,10,0|-rzo2w0,11,11,1|-rsir01,11,11,1|-rsir00,10,10,0|-fgqo41,10,10,0|-fgqo40,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d6dp81,11,11,1|-d6dp80,10,10,0|-cx0nw1,10,10,0|-cx0nw0,11,11,1|-cq2nw1,11,11,1|-cq2nw0,10,10,0|-ccr181,10,10,0|-ccr180,11,11,1|-c6f981,11,11,1|-c6f980,10,10,0|-bttjw1,10,10,0|-bttjw0,11,11,1|-bos2k1,11,11,1|-bos2k0,10,10,0|-baqik1,10,10,0|-baqik0,11,11,1|-b61zw1,11,11,1|-b61zw0,10,10,0|5cstfz,10,10,0|5cstg0,11,11,1|5lsw3z,11,11,1|5lsw40,10,10,0|5v5xfz,10,10,0|5v5xg0,11,11,1|64iyrz,11,11,1|64iys0,10,10,0|6dw03z,10,10,0|6dw040,11,11,1|6n91fz,11,11,1|6n91g0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Dublin|,0,343,0|-1anxquc,150,344,0|-rzcmls,150,344,0|-rzcmlr,110,345,1|-rsibxs,110,345,1|-rsibxr,1,1,0|-risd41,1,1,0|-risd40,27,10,1|-ragd41,27,10,1|-ragd40,1,1,0|-r0s7s1,1,1,0|-r0s7s0,27,10,1|-qr0d41,27,10,1|-qr0d40,1,1,0|-qhp6g1,1,1,0|-qhp6g0,27,10,1|-q8aag1,27,10,1|-q8aag0,1,1,0|-pyz3s1,1,1,0|-pyz3s0,27,10,1|-po4d41,27,10,1|-po4d40,1,1,0|-pfw2g1,1,1,0|-pfw2g0,27,10,1|-p6h6g1,27,10,1|-p6h6g0,1,1,0|-oxiyg1,1,1,0|-oxiyg0,110,10,1|-onfzs1,110,10,1|-onfzs0,1,1,0|-odd141,1,1,0|-odd140,110,10,1|-o5st41,110,10,1|-o5st40,1,1,0|-nuzx41,1,1,0|-nuzx40,110,10,1|-nmprs1,110,10,1|-nmprs0,1,1,0|-nbwvs1,1,1,0|-nbwvs0,110,10,1|-n39rs1,110,10,1|-n39rs0,1,1,0|-mt6t41,1,1,0|-mt6t40,110,10,1|-mkjp41,110,10,1|-mkjp40,1,1,0|-matp41,1,1,0|-matp40,110,10,1|-m1tmg1,110,10,1|-m1tmg0,1,1,0|-lrdp41,1,1,0|-lrdp40,110,10,1|-liql41,110,10,1|-liql40,1,1,0|-l8nmg1,1,1,0|-l8nmg0,110,10,1|-l00ig1,110,10,1|-l00ig0,1,1,0|-kqaig1,1,1,0|-kqaig0,110,10,1|-khafs1,110,10,1|-khafs0,1,1,0|-k77h41,1,1,0|-k77h40,110,10,1|-jykd41,110,10,1|-jykd40,1,1,0|-joheg1,1,1,0|-joheg0,110,10,1|-jfuag1,110,10,1|-jfuag0,1,1,0|-j64ag1,1,1,0|-j64ag0,110,10,1|-iwr941,110,10,1|-iwr940,1,1,0|-imoag1,1,1,0|-imoag0,110,10,1|-ie16g1,110,10,1|-ie16g0,1,1,0|-i4b6g1,1,1,0|-i4b6g0,110,10,1|-hvb3s1,110,10,1|-hvb3s0,1,1,0|-hl8541,1,1,0|-hl8540,110,10,1|-hcl141,110,10,1|-hcl140,1,1,0|-h2i2g1,1,1,0|-h2i2g0,110,10,1|-gtuyg1,110,10,1|-gtuyg0,1,1,0|-gk4yg1,1,1,0|-gk4yg0,110,10,1|-gb4vs1,110,10,1|-gb4vs0,1,1,0|-g11x41,1,1,0|-g11x40,110,10,1|-fpw2g1,110,10,1|-fpw2g0,1,1,0|-fkul41,1,1,0|-fkul40,110,10,1|-c4md41,110,10,1|-c4md40,1,1,0|-bwc7s1,1,1,0|-bwc7s0,110,10,1|-bkgfs1,110,10,1|-bkgfs0,1,1,0|-bbtbs1,1,1,0|-bbtbs0,110,10,1|-b1qd41,110,10,1|-b1qd40,1,1,0|-att6g1,1,1,0|-att6g0,110,10,1|-aj0ag1,110,10,1|-aj0ag0,1,1,0|-aad6g1,1,1,0|-aad6g0,110,10,1|-a0n6g1,110,10,1|-a0n6g0,1,1,0|-9rn3s1,1,1,0|-9rn3s0,110,10,1|-9hx3s1,110,10,1|-9hx3s0,1,1,0|-98k2g1,1,1,0|-98k2g0,110,10,1|-8yu2g1,110,10,1|-8yu2g0,1,1,0|-8ptzs1,1,1,0|-8ptzs0,110,10,1|-8h6vs1,110,10,1|-8h6vs0,1,1,0|-87gvs1,1,1,0|-87gvs0,110,10,1|-7ygt41,110,10,1|-7ygt40,1,1,0|-7odug1,1,1,0|-7odug0,110,10,1|-7fqqg1,110,10,1|-7fqqg0,1,1,0|-75at41,1,1,0|-75at40,110,10,1|-6wnp41,110,10,1|-6wnp40,1,1,0|-6mxp41,1,1,0|-6mxp40,110,10,1|-6dxmg1,110,10,1|-6dxmg0,1,1,0|-63uns1,1,1,0|-63uns0,110,10,1|-5v7js1,110,10,1|-5v7js0,1,1,0|-5l4l41,1,1,0|-5l4l40,110,10,1|-5chh41,110,10,1|-5chh40,1,1,0|-52rh41,1,1,0|-52rh40,110,10,1|-4treg1,110,10,1|-4treg0,1,1,0|-4krbs1,1,1,0|-4krbs0,110,10,1|-49lh41,110,10,1|-49lh40,1,1,0|-421941,1,1,0|-421940,110,10,1|-3qveg1,110,10,1|-3qveg0,1,1,0|-3iy7s1,1,1,0|-3iy7s0,110,10,1|-385bs1,110,10,1|-385bs0,1,1,0|-30l3s1,1,1,0|-30l3s0,110,10,1|-2pf941,110,10,1|-2pf940,1,1,0|-2hv141,1,1,0|-2hv140,110,10,1|-26p6g1,110,10,1|-26p6g0,1,1,0|-1z4yg1,1,1,0|-1z4yg0,110,10,1|-1nz3s1,110,10,1|-1nz3s0,1,1,0|-1gevs1,1,1,0|-1gevs0,110,10,1|-14w2g1,110,10,1|-14w2g0,1,1,0|-z4ns1,1,1,0|-z4ns0,110,10,1|-m6841,110,10,1|-m6840,110,10,0|yd6vz,110,10,0|yd6w0,1,1,1|15kg7z,1,1,1|15kg80,110,10,0|1h39jz,110,10,0|1h39k0,1,1,1|1oaivz,1,1,1|1oaiw0,110,10,0|1ztc7z,110,10,0|1ztc80,1,1,1|270ljz,1,1,1|270lk0,110,10,0|2ijevz,110,10,0|2ijew0,1,1,1|2pqo7z,1,1,1|2pqo80,110,10,0|319hjz,110,10,0|319hk0,1,1,1|38tpjz,1,1,1|38tpk0,110,10,0|3jzk7z,110,10,0|3jzk80,1,1,1|3rjs7z,1,1,1|3rjs80,110,10,0|42pmvz,110,10,0|42pmw0,1,1,1|4a9uvz,1,1,1|4a9uw0,110,10,0|4lso7z,110,10,0|4lso80,1,1,1|4szxjz,1,1,1|4szxk0,110,10,0|54iqvz,110,10,0|54iqw0,1,1,1|5bq07z,1,1,1|5bq080,110,10,0|5n8tjz,110,10,0|5n8tk0,1,1,1|5v5xfz,1,1,1|5v5xg0,110,10,0|65ytfz,110,10,0|65ytg0,1,1,1|6dw03z,1,1,1|6dw040,110,10,0|6oow3z,110,10,0|6oow40,1,1,1|6wm2rz,1,1,1|6wm2s0,110,10,0|77eyrz,110,10,0|77eys0,1,1,1|7fc5fz,1,1,1|7fc5g0,110,10,0|7qi03z,110,10,0|7qi040,1,1,1|7yf6rz,1,1,1|7yf6s0,110,10,0|8982rz,110,10,0|8982s0,1,1,1|8h59fz,1,1,1|8h59g0,110,10,0|8ry5fz,110,10,0|8ry5g0,1,1,1|8zvc3z,1,1,1|8zvc40,110,10,0|9ao83z,110,10,0|9ao840,1,1,1|9ilerz,1,1,1|9iles0,110,10,0|9tearz,110,10,0|9teas0,1,1,1|a1bhfz,1,1,1|a1bhg0,110,10,0|achc3z,110,10,0|achc40,1,1,1|ak1k3z,1,1,1|ak1k40,110,10,0|av7erz,110,10,0|av7es0,1,1,1|b34lfz,1,1,1|b34lg0,110,10,0|bdxhfz,110,10,0|bdxhg0,1,1,1|bluo3z,1,1,1|bluo40,110,10,0|bwnk3z,110,10,0|bwnk40,1,1,1|c4kqrz,1,1,1|c4kqs0,110,10,0|cfdmrz,110,10,0|cfdms0,1,1,1|cnatfz,1,1,1|cnatg0,110,10,0|cy3pfz,110,10,0|cy3pg0,1,1,1|d60w3z,1,1,1|d60w40,110,10,0|dgts3z,110,10,0|dgts40,1,1,1|dp3xfz,1,1,1|dp3xg0,110,10,0|dzwtfz,110,10,0|dzwtg0,1,1,1|e7u03z,1,1,1|e7u040,110,10,0|eimw3z,110,10,0|eimw40,1,1,1|eqk2rz,1,1,1|eqk2s0,110,10,0|f1cyrz,110,10,0|f1cys0,1,1,1|f9a5fz,1,1,1|f9a5g0,110,10,0|fkg03z,110,10,0|fkg040,1,1,1|fs083z,1,1,1|fs0840,110,10,0|g362rz,110,10,0|g362s0,1,1,1|gaqarz,1,1,1|gaqas0,110,10,0|glw5fz,110,10,0|glw5g0,1,1,1|gttc3z,1,1,1|gttc40,110,10,0|h4m83z,110,10,0|h4m840,1,1,1|hcjerz,1,1,1|hcjes0,110,10,0|hncarz,110,10,0|hncas0,1,1,1|hv9hfz,1,1,1|hv9hg0,110,10,0|i6fc3z,110,10,0|i6fc40,1,1,1|idzk3z,1,1,1|idzk40,110,10,0|ip5erz,110,10,0|ip5es0,1,1,1|iwpmrz,1,1,1|iwpms0,110,10,0|j7vhfz,110,10,0|j7vhg0,1,1,1|jffpfz,1,1,1|jffpg0,110,10,0|jqlk3z,110,10,0|jqlk40,1,1,1|jyiqrz,1,1,1|jyiqs0,110,10,0|k9bmrz,110,10,0|k9bms0,1,1,1|kh8tfz,1,1,1|kh8tg0,110,10,0|ks1pfz,110,10,0|ks1pg0,1,1,1|kzyw3z,1,1,1|kzyw40,110,10,0|lb4qrz,110,10,0|lb4qs0,1,1,1|lioyrz,1,1,1|lioys0,110,10,0|ltutfz,110,10,0|ltutg0,1,1,1|m1f1fz,1,1,1|m1f1g0,110,10,0|mckw3z,110,10,0|mckw40,1,1,1|mki2rz,1,1,1|mki2s0,110,10,0|mvayrz,110,10,0|mvays0,1,1,1|n385fz,1,1,1|n385g0,110,10,0|ne11fz,110,10,0|ne11g0,1,1,1|nly83z,1,1,1|nly840,110,10,0|nwr43z,110,10,0|nwr440,1,1,1|o4oarz,1,1,1|o4oas0,110,10,0|ofu5fz,110,10,0|ofu5g0,1,1,1|onedfz,1,1,1|onedg0,110,10,0|oyk83z,110,10,0|oyk840,1,1,1|p64g3z,1,1,1|p64g40,110,10,0|phaarz,110,10,0|phaas0,1,1,1|pp7hfz,1,1,1|pp7hg0,110,10,0|q00dfz,110,10,0|q00dg0,1,1,1|q7xk3z,1,1,1|q7xk40,110,10,0|qiqg3z,110,10,0|qiqg40,1,1,1|qqnmrz,1,1,1|qqnms0,110,10,0|r1thfz,110,10,0|r1thg0,1,1,1|r9dpfz,1,1,1|r9dpg0,110,10,0|rkjk3z,110,10,0|rkjk40,1,1,1|rs3s3z,1,1,1|rs3s40,110,10,0|s39mrz,110,10,0|s39ms0,1,1,1|sb6tfz,1,1,1|sb6tg0,110,10,0|slzpfz,110,10,0|slzpg0,1,1,1|stww3z,1,1,1|stww40,110,10,0|t4ps3z,110,10,0|t4ps40,1,1,1|tcmyrz,1,1,1|tcmys0,110,10,0|tnfurz,110,10,0|tnfus0,1,1,1|tvd1fz,1,1,1|tvd1g0,110,10,0|u6iw3z,110,10,0|u6iw40,1,1,1|ue343z,1,1,1|ue3440,110,10,0|up8yrz,110,10,0|up8ys0,1,1,1|uwt6rz,1,1,1|uwt6s0,110,10,0|v7z1fz,110,10,0|v7z1g0,1,1,1|vfw83z,1,1,1|vfw840,110,10,0|vqp43z,110,10,0|vqp440,1,1,1|vymarz,1,1,1|vymas0,110,10,0|w9f6rz,110,10,0|w9f6s0,1,1,1|whcdfz,1,1,1|whcdg0,110,10,0|wsi83z,110,10,0|wsi840,1,1,1|x02g3z,1,1,1|x02g40,110,10,0|xb8arz,110,10,0|xb8as0,1,1,1|xisirz,1,1,1|xisis0,110,10,0|xtydfz,110,10,0|xtydg0,1,1,1|y1ilfz,1,1,1|y1ilg0,110,10,0|ycog3z,110,10,0|ycog40,1,1,1|yklmrz,1,1,1|yklms0,110,10,0|yveirz,110,10,0|yveis0,1,1,1|z3bpfz,1,1,1|z3bpg0,110,10,0|ze4lfz,110,10,0|ze4lg0,1,1,1","Europe/Gibraltar|,0,346,0|-1anxr0c,1,1,0|-rzcns1,1,1,0|-rzcns0,27,10,1|-rsid41,27,10,1|-rsid40,1,1,0|-risd41,1,1,0|-risd40,27,10,1|-ragd41,27,10,1|-ragd40,1,1,0|-r0s7s1,1,1,0|-r0s7s0,27,10,1|-qr0d41,27,10,1|-qr0d40,1,1,0|-qhp6g1,1,1,0|-qhp6g0,27,10,1|-q8aag1,27,10,1|-q8aag0,1,1,0|-pyz3s1,1,1,0|-pyz3s0,27,10,1|-po4d41,27,10,1|-po4d40,1,1,0|-pfw2g1,1,1,0|-pfw2g0,27,10,1|-p6h6g1,27,10,1|-p6h6g0,1,1,0|-oxiyg1,1,1,0|-oxiyg0,27,10,1|-onfzs1,27,10,1|-onfzs0,1,1,0|-odd141,1,1,0|-odd140,27,10,1|-o5st41,27,10,1|-o5st40,1,1,0|-nuzx41,1,1,0|-nuzx40,27,10,1|-nmprs1,27,10,1|-nmprs0,1,1,0|-nbwvs1,1,1,0|-nbwvs0,27,10,1|-n39rs1,27,10,1|-n39rs0,1,1,0|-mt6t41,1,1,0|-mt6t40,27,10,1|-mkjp41,27,10,1|-mkjp40,1,1,0|-matp41,1,1,0|-matp40,27,10,1|-m1tmg1,27,10,1|-m1tmg0,1,1,0|-lrdp41,1,1,0|-lrdp40,27,10,1|-liql41,27,10,1|-liql40,1,1,0|-l8nmg1,1,1,0|-l8nmg0,27,10,1|-l00ig1,27,10,1|-l00ig0,1,1,0|-kqaig1,1,1,0|-kqaig0,27,10,1|-khafs1,27,10,1|-khafs0,1,1,0|-k77h41,1,1,0|-k77h40,27,10,1|-jykd41,27,10,1|-jykd40,1,1,0|-joheg1,1,1,0|-joheg0,27,10,1|-jfuag1,27,10,1|-jfuag0,1,1,0|-j64ag1,1,1,0|-j64ag0,27,10,1|-iwr941,27,10,1|-iwr940,1,1,0|-imoag1,1,1,0|-imoag0,27,10,1|-ie16g1,27,10,1|-ie16g0,1,1,0|-i4b6g1,1,1,0|-i4b6g0,27,10,1|-hvb3s1,27,10,1|-hvb3s0,1,1,0|-hl8541,1,1,0|-hl8540,27,10,1|-hcl141,27,10,1|-hcl140,1,1,0|-h2i2g1,1,1,0|-h2i2g0,27,10,1|-gtuyg1,27,10,1|-gtuyg0,1,1,0|-gk4yg1,1,1,0|-gk4yg0,27,10,1|-gb4vs1,27,10,1|-gb4vs0,1,1,0|-g11x41,1,1,0|-g11x40,27,10,1|-fpw2g1,27,10,1|-fpw2g0,1,1,0|-fkul41,1,1,0|-fkul40,27,10,1|-eyiyk1,27,10,1|-eyiyk0,151,11,1|-ethh81,151,11,1|-ethh80,27,10,1|-eh8qk1,27,10,1|-eh8qk0,151,11,1|-earek1,151,11,1|-earek0,27,10,1|-dyinw1,27,10,1|-dyinw0,151,11,1|-drod81,151,11,1|-drod80,27,10,1|-dfsl81,27,10,1|-dfsl80,151,11,1|-d75h81,151,11,1|-d75h80,27,10,1|-cx0nw1,27,10,1|-cx0nw0,151,11,1|-cro2k1,151,11,1|-cro2k0,27,10,1|-cncfs1,27,10,1|-cncfs0,1,1,0|-cdmfs1,1,1,0|-cdmfs0,27,10,1|-c4md41,27,10,1|-c4md40,1,1,0|-bwc7s1,1,1,0|-bwc7s0,27,10,1|-buwfw1,27,10,1|-buwfw0,151,11,1|-bos2k1,151,11,1|-bos2k0,27,10,1|-bkgfs1,27,10,1|-bkgfs0,1,1,0|-bdm541,1,1,0|-bdm540,27,10,1|-b1qd41,27,10,1|-b1qd40,1,1,0|-att6g1,1,1,0|-att6g0,27,10,1|-aj0ag1,27,10,1|-aj0ag0,1,1,0|-aad6g1,1,1,0|-aad6g0,27,10,1|-a0n6g1,27,10,1|-a0n6g0,1,1,0|-9rn3s1,1,1,0|-9rn3s0,27,10,1|-9hx3s1,27,10,1|-9hx3s0,1,1,0|-98k2g1,1,1,0|-98k2g0,27,10,1|-8yu2g1,27,10,1|-8yu2g0,1,1,0|-8ptzs1,1,1,0|-8ptzs0,27,10,1|-8h6vs1,27,10,1|-8h6vs0,1,1,0|-87gvs1,1,1,0|-87gvs0,27,10,1|-7ygt41,27,10,1|-7ygt40,1,1,0|-7odug1,1,1,0|-7odug0,27,10,1|-7fqqg1,27,10,1|-7fqqg0,1,1,0|-75at41,1,1,0|-75at40,27,10,1|-6wnp41,27,10,1|-6wnp40,1,1,0|-6mxp41,1,1,0|-6mxp40,10,10,0|6dw03z,10,10,0|6dw040,11,11,1|6n91fz,11,11,1|6n91g0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Guernsey|,0,347,0|-1rprx9x,1,1,0|-rzcns1,1,1,0|-rzcns0,27,10,1|-rsid41,27,10,1|-rsid40,1,1,0|-risd41,1,1,0|-risd40,27,10,1|-ragd41,27,10,1|-ragd40,1,1,0|-r0s7s1,1,1,0|-r0s7s0,27,10,1|-qr0d41,27,10,1|-qr0d40,1,1,0|-qhp6g1,1,1,0|-qhp6g0,27,10,1|-q8aag1,27,10,1|-q8aag0,1,1,0|-pyz3s1,1,1,0|-pyz3s0,27,10,1|-po4d41,27,10,1|-po4d40,1,1,0|-pfw2g1,1,1,0|-pfw2g0,27,10,1|-p6h6g1,27,10,1|-p6h6g0,1,1,0|-oxiyg1,1,1,0|-oxiyg0,27,10,1|-onfzs1,27,10,1|-onfzs0,1,1,0|-odd141,1,1,0|-odd140,27,10,1|-o5st41,27,10,1|-o5st40,1,1,0|-nuzx41,1,1,0|-nuzx40,27,10,1|-nmprs1,27,10,1|-nmprs0,1,1,0|-nbwvs1,1,1,0|-nbwvs0,27,10,1|-n39rs1,27,10,1|-n39rs0,1,1,0|-mt6t41,1,1,0|-mt6t40,27,10,1|-mkjp41,27,10,1|-mkjp40,1,1,0|-matp41,1,1,0|-matp40,27,10,1|-m1tmg1,27,10,1|-m1tmg0,1,1,0|-lrdp41,1,1,0|-lrdp40,27,10,1|-liql41,27,10,1|-liql40,1,1,0|-l8nmg1,1,1,0|-l8nmg0,27,10,1|-l00ig1,27,10,1|-l00ig0,1,1,0|-kqaig1,1,1,0|-kqaig0,27,10,1|-khafs1,27,10,1|-khafs0,1,1,0|-k77h41,1,1,0|-k77h40,27,10,1|-jykd41,27,10,1|-jykd40,1,1,0|-joheg1,1,1,0|-joheg0,27,10,1|-jfuag1,27,10,1|-jfuag0,1,1,0|-j64ag1,1,1,0|-j64ag0,27,10,1|-iwr941,27,10,1|-iwr940,1,1,0|-imoag1,1,1,0|-imoag0,27,10,1|-ie16g1,27,10,1|-ie16g0,1,1,0|-i4b6g1,1,1,0|-i4b6g0,27,10,1|-hvb3s1,27,10,1|-hvb3s0,1,1,0|-hl8541,1,1,0|-hl8540,27,10,1|-hcl141,27,10,1|-hcl140,1,1,0|-h2i2g1,1,1,0|-h2i2g0,27,10,1|-gtuyg1,27,10,1|-gtuyg0,1,1,0|-gk4yg1,1,1,0|-gk4yg0,27,10,1|-gb4vs1,27,10,1|-gb4vs0,1,1,0|-g11x41,1,1,0|-g11x40,27,10,1|-fpw2g1,27,10,1|-fpw2g0,1,1,0|-fkul41,1,1,0|-fkul40,27,10,1|-eyiyk1,27,10,1|-eyiyk0,151,11,1|-ethh81,151,11,1|-ethh80,27,10,1|-eh8qk1,27,10,1|-eh8qk0,151,11,1|-earek1,151,11,1|-earek0,27,10,1|-dyinw1,27,10,1|-dyinw0,151,11,1|-drod81,151,11,1|-drod80,27,10,1|-dfsl81,27,10,1|-dfsl80,151,11,1|-d75h81,151,11,1|-d75h80,27,10,1|-cx0nw1,27,10,1|-cx0nw0,151,11,1|-cro2k1,151,11,1|-cro2k0,27,10,1|-cncfs1,27,10,1|-cncfs0,1,1,0|-cdmfs1,1,1,0|-cdmfs0,27,10,1|-c4md41,27,10,1|-c4md40,1,1,0|-bwc7s1,1,1,0|-bwc7s0,27,10,1|-buwfw1,27,10,1|-buwfw0,151,11,1|-bos2k1,151,11,1|-bos2k0,27,10,1|-bkgfs1,27,10,1|-bkgfs0,1,1,0|-bdm541,1,1,0|-bdm540,27,10,1|-b1qd41,27,10,1|-b1qd40,1,1,0|-att6g1,1,1,0|-att6g0,27,10,1|-aj0ag1,27,10,1|-aj0ag0,1,1,0|-aad6g1,1,1,0|-aad6g0,27,10,1|-a0n6g1,27,10,1|-a0n6g0,1,1,0|-9rn3s1,1,1,0|-9rn3s0,27,10,1|-9hx3s1,27,10,1|-9hx3s0,1,1,0|-98k2g1,1,1,0|-98k2g0,27,10,1|-8yu2g1,27,10,1|-8yu2g0,1,1,0|-8ptzs1,1,1,0|-8ptzs0,27,10,1|-8h6vs1,27,10,1|-8h6vs0,1,1,0|-87gvs1,1,1,0|-87gvs0,27,10,1|-7ygt41,27,10,1|-7ygt40,1,1,0|-7odug1,1,1,0|-7odug0,27,10,1|-7fqqg1,27,10,1|-7fqqg0,1,1,0|-75at41,1,1,0|-75at40,27,10,1|-6wnp41,27,10,1|-6wnp40,1,1,0|-6mxp41,1,1,0|-6mxp40,27,10,1|-6dxmg1,27,10,1|-6dxmg0,1,1,0|-63uns1,1,1,0|-63uns0,27,10,1|-5v7js1,27,10,1|-5v7js0,1,1,0|-5l4l41,1,1,0|-5l4l40,27,10,1|-5chh41,27,10,1|-5chh40,1,1,0|-52rh41,1,1,0|-52rh40,27,10,1|-4treg1,27,10,1|-4treg0,1,1,0|-4krbs1,1,1,0|-4krbs0,27,10,1|-49lh41,27,10,1|-49lh40,1,1,0|-421941,1,1,0|-421940,27,10,1|-3qveg1,27,10,1|-3qveg0,1,1,0|-3iy7s1,1,1,0|-3iy7s0,27,10,1|-385bs1,27,10,1|-385bs0,1,1,0|-30l3s1,1,1,0|-30l3s0,27,10,1|-2pf941,27,10,1|-2pf940,1,1,0|-2hv141,1,1,0|-2hv140,27,10,1|-26p6g1,27,10,1|-26p6g0,1,1,0|-1z4yg1,1,1,0|-1z4yg0,27,10,1|-1nz3s1,27,10,1|-1nz3s0,1,1,0|-1gevs1,1,1,0|-1gevs0,27,10,1|-14w2g1,27,10,1|-14w2g0,1,1,0|-z4ns1,1,1,0|-z4ns0,27,10,1|-m6841,27,10,1|-m6840,27,10,0|yd6vz,27,10,0|yd6w0,1,1,0|15kg7z,1,1,0|15kg80,27,10,1|1h39jz,27,10,1|1h39k0,1,1,0|1oaivz,1,1,0|1oaiw0,27,10,1|1ztc7z,27,10,1|1ztc80,1,1,0|270ljz,1,1,0|270lk0,27,10,1|2ijevz,27,10,1|2ijew0,1,1,0|2pqo7z,1,1,0|2pqo80,27,10,1|319hjz,27,10,1|319hk0,1,1,0|38tpjz,1,1,0|38tpk0,27,10,1|3jzk7z,27,10,1|3jzk80,1,1,0|3rjs7z,1,1,0|3rjs80,27,10,1|42pmvz,27,10,1|42pmw0,1,1,0|4a9uvz,1,1,0|4a9uw0,27,10,1|4lso7z,27,10,1|4lso80,1,1,0|4szxjz,1,1,0|4szxk0,27,10,1|54iqvz,27,10,1|54iqw0,1,1,0|5bq07z,1,1,0|5bq080,27,10,1|5n8tjz,27,10,1|5n8tk0,1,1,0|5v5xfz,1,1,0|5v5xg0,27,10,1|65ytfz,27,10,1|65ytg0,1,1,0|6dw03z,1,1,0|6dw040,27,10,1|6oow3z,27,10,1|6oow40,1,1,0|6wm2rz,1,1,0|6wm2s0,27,10,1|77eyrz,27,10,1|77eys0,1,1,0|7fc5fz,1,1,0|7fc5g0,27,10,1|7qi03z,27,10,1|7qi040,1,1,0|7yf6rz,1,1,0|7yf6s0,27,10,1|8982rz,27,10,1|8982s0,1,1,0|8h59fz,1,1,0|8h59g0,27,10,1|8ry5fz,27,10,1|8ry5g0,1,1,0|8zvc3z,1,1,0|8zvc40,27,10,1|9ao83z,27,10,1|9ao840,1,1,0|9ilerz,1,1,0|9iles0,27,10,1|9tearz,27,10,1|9teas0,1,1,0|a1bhfz,1,1,0|a1bhg0,27,10,1|achc3z,27,10,1|achc40,1,1,0|ak1k3z,1,1,0|ak1k40,27,10,1|av7erz,27,10,1|av7es0,1,1,0|b34lfz,1,1,0|b34lg0,27,10,1|bdxhfz,27,10,1|bdxhg0,1,1,0|bluo3z,1,1,0|bluo40,27,10,1|bwnk3z,27,10,1|bwnk40,1,1,0|c4kqrz,1,1,0|c4kqs0,27,10,1|cfdmrz,27,10,1|cfdms0,1,1,0|cnatfz,1,1,0|cnatg0,27,10,1|cy3pfz,27,10,1|cy3pg0,1,1,0|d60w3z,1,1,0|d60w40,27,10,1|dgts3z,27,10,1|dgts40,1,1,0|dp3xfz,1,1,0|dp3xg0,27,10,1|dzwtfz,27,10,1|dzwtg0,1,1,0|e7u03z,1,1,0|e7u040,27,10,1|eimw3z,27,10,1|eimw40,1,1,0|eqk2rz,1,1,0|eqk2s0,27,10,1|f1cyrz,27,10,1|f1cys0,1,1,0|f9a5fz,1,1,0|f9a5g0,27,10,1|fkg03z,27,10,1|fkg040,1,1,0|fs083z,1,1,0|fs0840,27,10,1|g362rz,27,10,1|g362s0,1,1,0|gaqarz,1,1,0|gaqas0,27,10,1|glw5fz,27,10,1|glw5g0,1,1,0|gttc3z,1,1,0|gttc40,27,10,1|h4m83z,27,10,1|h4m840,1,1,0|hcjerz,1,1,0|hcjes0,27,10,1|hncarz,27,10,1|hncas0,1,1,0|hv9hfz,1,1,0|hv9hg0,27,10,1|i6fc3z,27,10,1|i6fc40,1,1,0|idzk3z,1,1,0|idzk40,27,10,1|ip5erz,27,10,1|ip5es0,1,1,0|iwpmrz,1,1,0|iwpms0,27,10,1|j7vhfz,27,10,1|j7vhg0,1,1,0|jffpfz,1,1,0|jffpg0,27,10,1|jqlk3z,27,10,1|jqlk40,1,1,0|jyiqrz,1,1,0|jyiqs0,27,10,1|k9bmrz,27,10,1|k9bms0,1,1,0|kh8tfz,1,1,0|kh8tg0,27,10,1|ks1pfz,27,10,1|ks1pg0,1,1,0|kzyw3z,1,1,0|kzyw40,27,10,1|lb4qrz,27,10,1|lb4qs0,1,1,0|lioyrz,1,1,0|lioys0,27,10,1|ltutfz,27,10,1|ltutg0,1,1,0|m1f1fz,1,1,0|m1f1g0,27,10,1|mckw3z,27,10,1|mckw40,1,1,0|mki2rz,1,1,0|mki2s0,27,10,1|mvayrz,27,10,1|mvays0,1,1,0|n385fz,1,1,0|n385g0,27,10,1|ne11fz,27,10,1|ne11g0,1,1,0|nly83z,1,1,0|nly840,27,10,1|nwr43z,27,10,1|nwr440,1,1,0|o4oarz,1,1,0|o4oas0,27,10,1|ofu5fz,27,10,1|ofu5g0,1,1,0|onedfz,1,1,0|onedg0,27,10,1|oyk83z,27,10,1|oyk840,1,1,0|p64g3z,1,1,0|p64g40,27,10,1|phaarz,27,10,1|phaas0,1,1,0|pp7hfz,1,1,0|pp7hg0,27,10,1|q00dfz,27,10,1|q00dg0,1,1,0|q7xk3z,1,1,0|q7xk40,27,10,1|qiqg3z,27,10,1|qiqg40,1,1,0|qqnmrz,1,1,0|qqnms0,27,10,1|r1thfz,27,10,1|r1thg0,1,1,0|r9dpfz,1,1,0|r9dpg0,27,10,1|rkjk3z,27,10,1|rkjk40,1,1,0|rs3s3z,1,1,0|rs3s40,27,10,1|s39mrz,27,10,1|s39ms0,1,1,0|sb6tfz,1,1,0|sb6tg0,27,10,1|slzpfz,27,10,1|slzpg0,1,1,0|stww3z,1,1,0|stww40,27,10,1|t4ps3z,27,10,1|t4ps40,1,1,0|tcmyrz,1,1,0|tcmys0,27,10,1|tnfurz,27,10,1|tnfus0,1,1,0|tvd1fz,1,1,0|tvd1g0,27,10,1|u6iw3z,27,10,1|u6iw40,1,1,0|ue343z,1,1,0|ue3440,27,10,1|up8yrz,27,10,1|up8ys0,1,1,0|uwt6rz,1,1,0|uwt6s0,27,10,1|v7z1fz,27,10,1|v7z1g0,1,1,0|vfw83z,1,1,0|vfw840,27,10,1|vqp43z,27,10,1|vqp440,1,1,0|vymarz,1,1,0|vymas0,27,10,1|w9f6rz,27,10,1|w9f6s0,1,1,0|whcdfz,1,1,0|whcdg0,27,10,1|wsi83z,27,10,1|wsi840,1,1,0|x02g3z,1,1,0|x02g40,27,10,1|xb8arz,27,10,1|xb8as0,1,1,0|xisirz,1,1,0|xisis0,27,10,1|xtydfz,27,10,1|xtydg0,1,1,0|y1ilfz,1,1,0|y1ilg0,27,10,1|ycog3z,27,10,1|ycog40,1,1,0|yklmrz,1,1,0|yklms0,27,10,1|yveirz,27,10,1|yveis0,1,1,0|z3bpfz,1,1,0|z3bpg0,27,10,1|ze4lfz,27,10,1|ze4lg0,1,1,0","Europe/Helsinki|,0,348,0|-1bss9yd,77,348,0|-peghye,77,348,0|-peghyd,15,11,0|-ehco81,15,11,0|-ehco80,16,6,1|-e7vxk1,16,6,1|-e7vxk0,15,11,0|5v5unz,15,11,0|5v5uo0,16,6,1|64ivzz,16,6,1|64iw00,15,11,0|6dvxbz,15,11,0|6dvxc0,16,6,1|6n8ynz,16,6,1|6n8yo0,15,11,0|6wm2rz,15,11,0|6wm2s0,16,6,1|75z43z,16,6,1|75z440,15,11,0|7fc5fz,15,11,0|7fc5g0,16,6,1|7p25fz,16,6,1|7p25g0,15,11,0|7yf6rz,15,11,0|7yf6s0,16,6,1|87s83z,16,6,1|87s840,15,11,0|8h59fz,15,11,0|8h59g0,16,6,1|8qiarz,16,6,1|8qias0,15,11,0|8zvc3z,15,11,0|8zvc40,16,6,1|998dfz,16,6,1|998dg0,15,11,0|9ilerz,15,11,0|9iles0,16,6,1|9ryg3z,16,6,1|9ryg40,15,11,0|a1bhfz,15,11,0|a1bhg0,16,6,1|aaoirz,16,6,1|aaois0,15,11,0|ak1k3z,15,11,0|ak1k40,16,6,1|atrk3z,16,6,1|atrk40,15,11,0|b34lfz,15,11,0|b34lg0,16,6,1|bchmrz,16,6,1|bchms0,15,11,0|bluo3z,15,11,0|bluo40,16,6,1|bv7pfz,16,6,1|bv7pg0,15,11,0|c4kqrz,15,11,0|c4kqs0,16,6,1|cdxs3z,16,6,1|cdxs40,15,11,0|cnatfz,15,11,0|cnatg0,16,6,1|cwnurz,16,6,1|cwnus0,15,11,0|d60w3z,15,11,0|d60w40,16,6,1|dfdxfz,16,6,1|dfdxg0,15,11,0|dp3xfz,15,11,0|dp3xg0,16,6,1|dzwtfz,16,6,1|dzwtg0,15,11,0|e7u03z,15,11,0|e7u040,16,6,1|eimw3z,16,6,1|eimw40,15,11,0|eqk2rz,15,11,0|eqk2s0,16,6,1|f1cyrz,16,6,1|f1cys0,15,11,0|f9a5fz,15,11,0|f9a5g0,16,6,1|fkg03z,16,6,1|fkg040,15,11,0|fs083z,15,11,0|fs0840,16,6,1|g362rz,16,6,1|g362s0,15,11,0|gaqarz,15,11,0|gaqas0,16,6,1|glw5fz,16,6,1|glw5g0,15,11,0|gttc3z,15,11,0|gttc40,16,6,1|h4m83z,16,6,1|h4m840,15,11,0|hcjerz,15,11,0|hcjes0,16,6,1|hncarz,16,6,1|hncas0,15,11,0|hv9hfz,15,11,0|hv9hg0,16,6,1|i6fc3z,16,6,1|i6fc40,15,11,0|idzk3z,15,11,0|idzk40,16,6,1|ip5erz,16,6,1|ip5es0,15,11,0|iwpmrz,15,11,0|iwpms0,16,6,1|j7vhfz,16,6,1|j7vhg0,15,11,0|jffpfz,15,11,0|jffpg0,16,6,1|jqlk3z,16,6,1|jqlk40,15,11,0|jyiqrz,15,11,0|jyiqs0,16,6,1|k9bmrz,16,6,1|k9bms0,15,11,0|kh8tfz,15,11,0|kh8tg0,16,6,1|ks1pfz,16,6,1|ks1pg0,15,11,0|kzyw3z,15,11,0|kzyw40,16,6,1|lb4qrz,16,6,1|lb4qs0,15,11,0|lioyrz,15,11,0|lioys0,16,6,1|ltutfz,16,6,1|ltutg0,15,11,0|m1f1fz,15,11,0|m1f1g0,16,6,1|mckw3z,16,6,1|mckw40,15,11,0|mki2rz,15,11,0|mki2s0,16,6,1|mvayrz,16,6,1|mvays0,15,11,0|n385fz,15,11,0|n385g0,16,6,1|ne11fz,16,6,1|ne11g0,15,11,0|nly83z,15,11,0|nly840,16,6,1|nwr43z,16,6,1|nwr440,15,11,0|o4oarz,15,11,0|o4oas0,16,6,1|ofu5fz,16,6,1|ofu5g0,15,11,0|onedfz,15,11,0|onedg0,16,6,1|oyk83z,16,6,1|oyk840,15,11,0|p64g3z,15,11,0|p64g40,16,6,1|phaarz,16,6,1|phaas0,15,11,0|pp7hfz,15,11,0|pp7hg0,16,6,1|q00dfz,16,6,1|q00dg0,15,11,0|q7xk3z,15,11,0|q7xk40,16,6,1|qiqg3z,16,6,1|qiqg40,15,11,0|qqnmrz,15,11,0|qqnms0,16,6,1|r1thfz,16,6,1|r1thg0,15,11,0|r9dpfz,15,11,0|r9dpg0,16,6,1|rkjk3z,16,6,1|rkjk40,15,11,0|rs3s3z,15,11,0|rs3s40,16,6,1|s39mrz,16,6,1|s39ms0,15,11,0|sb6tfz,15,11,0|sb6tg0,16,6,1|slzpfz,16,6,1|slzpg0,15,11,0|stww3z,15,11,0|stww40,16,6,1|t4ps3z,16,6,1|t4ps40,15,11,0|tcmyrz,15,11,0|tcmys0,16,6,1|tnfurz,16,6,1|tnfus0,15,11,0|tvd1fz,15,11,0|tvd1g0,16,6,1|u6iw3z,16,6,1|u6iw40,15,11,0|ue343z,15,11,0|ue3440,16,6,1|up8yrz,16,6,1|up8ys0,15,11,0|uwt6rz,15,11,0|uwt6s0,16,6,1|v7z1fz,16,6,1|v7z1g0,15,11,0|vfw83z,15,11,0|vfw840,16,6,1|vqp43z,16,6,1|vqp440,15,11,0|vymarz,15,11,0|vymas0,16,6,1|w9f6rz,16,6,1|w9f6s0,15,11,0|whcdfz,15,11,0|whcdg0,16,6,1|wsi83z,16,6,1|wsi840,15,11,0|x02g3z,15,11,0|x02g40,16,6,1|xb8arz,16,6,1|xb8as0,15,11,0|xisirz,15,11,0|xisis0,16,6,1|xtydfz,16,6,1|xtydg0,15,11,0|y1ilfz,15,11,0|y1ilg0,16,6,1|ycog3z,16,6,1|ycog40,15,11,0|yklmrz,15,11,0|yklms0,16,6,1|yveirz,16,6,1|yveis0,15,11,0|z3bpfz,15,11,0|z3bpg0,16,6,1|ze4lfz,16,6,1|ze4lg0,15,11,0","Europe/Isle_of_Man|,0,347,0|-1rprx9x,1,1,0|-rzcns1,1,1,0|-rzcns0,27,10,1|-rsid41,27,10,1|-rsid40,1,1,0|-risd41,1,1,0|-risd40,27,10,1|-ragd41,27,10,1|-ragd40,1,1,0|-r0s7s1,1,1,0|-r0s7s0,27,10,1|-qr0d41,27,10,1|-qr0d40,1,1,0|-qhp6g1,1,1,0|-qhp6g0,27,10,1|-q8aag1,27,10,1|-q8aag0,1,1,0|-pyz3s1,1,1,0|-pyz3s0,27,10,1|-po4d41,27,10,1|-po4d40,1,1,0|-pfw2g1,1,1,0|-pfw2g0,27,10,1|-p6h6g1,27,10,1|-p6h6g0,1,1,0|-oxiyg1,1,1,0|-oxiyg0,27,10,1|-onfzs1,27,10,1|-onfzs0,1,1,0|-odd141,1,1,0|-odd140,27,10,1|-o5st41,27,10,1|-o5st40,1,1,0|-nuzx41,1,1,0|-nuzx40,27,10,1|-nmprs1,27,10,1|-nmprs0,1,1,0|-nbwvs1,1,1,0|-nbwvs0,27,10,1|-n39rs1,27,10,1|-n39rs0,1,1,0|-mt6t41,1,1,0|-mt6t40,27,10,1|-mkjp41,27,10,1|-mkjp40,1,1,0|-matp41,1,1,0|-matp40,27,10,1|-m1tmg1,27,10,1|-m1tmg0,1,1,0|-lrdp41,1,1,0|-lrdp40,27,10,1|-liql41,27,10,1|-liql40,1,1,0|-l8nmg1,1,1,0|-l8nmg0,27,10,1|-l00ig1,27,10,1|-l00ig0,1,1,0|-kqaig1,1,1,0|-kqaig0,27,10,1|-khafs1,27,10,1|-khafs0,1,1,0|-k77h41,1,1,0|-k77h40,27,10,1|-jykd41,27,10,1|-jykd40,1,1,0|-joheg1,1,1,0|-joheg0,27,10,1|-jfuag1,27,10,1|-jfuag0,1,1,0|-j64ag1,1,1,0|-j64ag0,27,10,1|-iwr941,27,10,1|-iwr940,1,1,0|-imoag1,1,1,0|-imoag0,27,10,1|-ie16g1,27,10,1|-ie16g0,1,1,0|-i4b6g1,1,1,0|-i4b6g0,27,10,1|-hvb3s1,27,10,1|-hvb3s0,1,1,0|-hl8541,1,1,0|-hl8540,27,10,1|-hcl141,27,10,1|-hcl140,1,1,0|-h2i2g1,1,1,0|-h2i2g0,27,10,1|-gtuyg1,27,10,1|-gtuyg0,1,1,0|-gk4yg1,1,1,0|-gk4yg0,27,10,1|-gb4vs1,27,10,1|-gb4vs0,1,1,0|-g11x41,1,1,0|-g11x40,27,10,1|-fpw2g1,27,10,1|-fpw2g0,1,1,0|-fkul41,1,1,0|-fkul40,27,10,1|-eyiyk1,27,10,1|-eyiyk0,151,11,1|-ethh81,151,11,1|-ethh80,27,10,1|-eh8qk1,27,10,1|-eh8qk0,151,11,1|-earek1,151,11,1|-earek0,27,10,1|-dyinw1,27,10,1|-dyinw0,151,11,1|-drod81,151,11,1|-drod80,27,10,1|-dfsl81,27,10,1|-dfsl80,151,11,1|-d75h81,151,11,1|-d75h80,27,10,1|-cx0nw1,27,10,1|-cx0nw0,151,11,1|-cro2k1,151,11,1|-cro2k0,27,10,1|-cncfs1,27,10,1|-cncfs0,1,1,0|-cdmfs1,1,1,0|-cdmfs0,27,10,1|-c4md41,27,10,1|-c4md40,1,1,0|-bwc7s1,1,1,0|-bwc7s0,27,10,1|-buwfw1,27,10,1|-buwfw0,151,11,1|-bos2k1,151,11,1|-bos2k0,27,10,1|-bkgfs1,27,10,1|-bkgfs0,1,1,0|-bdm541,1,1,0|-bdm540,27,10,1|-b1qd41,27,10,1|-b1qd40,1,1,0|-att6g1,1,1,0|-att6g0,27,10,1|-aj0ag1,27,10,1|-aj0ag0,1,1,0|-aad6g1,1,1,0|-aad6g0,27,10,1|-a0n6g1,27,10,1|-a0n6g0,1,1,0|-9rn3s1,1,1,0|-9rn3s0,27,10,1|-9hx3s1,27,10,1|-9hx3s0,1,1,0|-98k2g1,1,1,0|-98k2g0,27,10,1|-8yu2g1,27,10,1|-8yu2g0,1,1,0|-8ptzs1,1,1,0|-8ptzs0,27,10,1|-8h6vs1,27,10,1|-8h6vs0,1,1,0|-87gvs1,1,1,0|-87gvs0,27,10,1|-7ygt41,27,10,1|-7ygt40,1,1,0|-7odug1,1,1,0|-7odug0,27,10,1|-7fqqg1,27,10,1|-7fqqg0,1,1,0|-75at41,1,1,0|-75at40,27,10,1|-6wnp41,27,10,1|-6wnp40,1,1,0|-6mxp41,1,1,0|-6mxp40,27,10,1|-6dxmg1,27,10,1|-6dxmg0,1,1,0|-63uns1,1,1,0|-63uns0,27,10,1|-5v7js1,27,10,1|-5v7js0,1,1,0|-5l4l41,1,1,0|-5l4l40,27,10,1|-5chh41,27,10,1|-5chh40,1,1,0|-52rh41,1,1,0|-52rh40,27,10,1|-4treg1,27,10,1|-4treg0,1,1,0|-4krbs1,1,1,0|-4krbs0,27,10,1|-49lh41,27,10,1|-49lh40,1,1,0|-421941,1,1,0|-421940,27,10,1|-3qveg1,27,10,1|-3qveg0,1,1,0|-3iy7s1,1,1,0|-3iy7s0,27,10,1|-385bs1,27,10,1|-385bs0,1,1,0|-30l3s1,1,1,0|-30l3s0,27,10,1|-2pf941,27,10,1|-2pf940,1,1,0|-2hv141,1,1,0|-2hv140,27,10,1|-26p6g1,27,10,1|-26p6g0,1,1,0|-1z4yg1,1,1,0|-1z4yg0,27,10,1|-1nz3s1,27,10,1|-1nz3s0,1,1,0|-1gevs1,1,1,0|-1gevs0,27,10,1|-14w2g1,27,10,1|-14w2g0,1,1,0|-z4ns1,1,1,0|-z4ns0,27,10,1|-m6841,27,10,1|-m6840,27,10,0|yd6vz,27,10,0|yd6w0,1,1,0|15kg7z,1,1,0|15kg80,27,10,1|1h39jz,27,10,1|1h39k0,1,1,0|1oaivz,1,1,0|1oaiw0,27,10,1|1ztc7z,27,10,1|1ztc80,1,1,0|270ljz,1,1,0|270lk0,27,10,1|2ijevz,27,10,1|2ijew0,1,1,0|2pqo7z,1,1,0|2pqo80,27,10,1|319hjz,27,10,1|319hk0,1,1,0|38tpjz,1,1,0|38tpk0,27,10,1|3jzk7z,27,10,1|3jzk80,1,1,0|3rjs7z,1,1,0|3rjs80,27,10,1|42pmvz,27,10,1|42pmw0,1,1,0|4a9uvz,1,1,0|4a9uw0,27,10,1|4lso7z,27,10,1|4lso80,1,1,0|4szxjz,1,1,0|4szxk0,27,10,1|54iqvz,27,10,1|54iqw0,1,1,0|5bq07z,1,1,0|5bq080,27,10,1|5n8tjz,27,10,1|5n8tk0,1,1,0|5v5xfz,1,1,0|5v5xg0,27,10,1|65ytfz,27,10,1|65ytg0,1,1,0|6dw03z,1,1,0|6dw040,27,10,1|6oow3z,27,10,1|6oow40,1,1,0|6wm2rz,1,1,0|6wm2s0,27,10,1|77eyrz,27,10,1|77eys0,1,1,0|7fc5fz,1,1,0|7fc5g0,27,10,1|7qi03z,27,10,1|7qi040,1,1,0|7yf6rz,1,1,0|7yf6s0,27,10,1|8982rz,27,10,1|8982s0,1,1,0|8h59fz,1,1,0|8h59g0,27,10,1|8ry5fz,27,10,1|8ry5g0,1,1,0|8zvc3z,1,1,0|8zvc40,27,10,1|9ao83z,27,10,1|9ao840,1,1,0|9ilerz,1,1,0|9iles0,27,10,1|9tearz,27,10,1|9teas0,1,1,0|a1bhfz,1,1,0|a1bhg0,27,10,1|achc3z,27,10,1|achc40,1,1,0|ak1k3z,1,1,0|ak1k40,27,10,1|av7erz,27,10,1|av7es0,1,1,0|b34lfz,1,1,0|b34lg0,27,10,1|bdxhfz,27,10,1|bdxhg0,1,1,0|bluo3z,1,1,0|bluo40,27,10,1|bwnk3z,27,10,1|bwnk40,1,1,0|c4kqrz,1,1,0|c4kqs0,27,10,1|cfdmrz,27,10,1|cfdms0,1,1,0|cnatfz,1,1,0|cnatg0,27,10,1|cy3pfz,27,10,1|cy3pg0,1,1,0|d60w3z,1,1,0|d60w40,27,10,1|dgts3z,27,10,1|dgts40,1,1,0|dp3xfz,1,1,0|dp3xg0,27,10,1|dzwtfz,27,10,1|dzwtg0,1,1,0|e7u03z,1,1,0|e7u040,27,10,1|eimw3z,27,10,1|eimw40,1,1,0|eqk2rz,1,1,0|eqk2s0,27,10,1|f1cyrz,27,10,1|f1cys0,1,1,0|f9a5fz,1,1,0|f9a5g0,27,10,1|fkg03z,27,10,1|fkg040,1,1,0|fs083z,1,1,0|fs0840,27,10,1|g362rz,27,10,1|g362s0,1,1,0|gaqarz,1,1,0|gaqas0,27,10,1|glw5fz,27,10,1|glw5g0,1,1,0|gttc3z,1,1,0|gttc40,27,10,1|h4m83z,27,10,1|h4m840,1,1,0|hcjerz,1,1,0|hcjes0,27,10,1|hncarz,27,10,1|hncas0,1,1,0|hv9hfz,1,1,0|hv9hg0,27,10,1|i6fc3z,27,10,1|i6fc40,1,1,0|idzk3z,1,1,0|idzk40,27,10,1|ip5erz,27,10,1|ip5es0,1,1,0|iwpmrz,1,1,0|iwpms0,27,10,1|j7vhfz,27,10,1|j7vhg0,1,1,0|jffpfz,1,1,0|jffpg0,27,10,1|jqlk3z,27,10,1|jqlk40,1,1,0|jyiqrz,1,1,0|jyiqs0,27,10,1|k9bmrz,27,10,1|k9bms0,1,1,0|kh8tfz,1,1,0|kh8tg0,27,10,1|ks1pfz,27,10,1|ks1pg0,1,1,0|kzyw3z,1,1,0|kzyw40,27,10,1|lb4qrz,27,10,1|lb4qs0,1,1,0|lioyrz,1,1,0|lioys0,27,10,1|ltutfz,27,10,1|ltutg0,1,1,0|m1f1fz,1,1,0|m1f1g0,27,10,1|mckw3z,27,10,1|mckw40,1,1,0|mki2rz,1,1,0|mki2s0,27,10,1|mvayrz,27,10,1|mvays0,1,1,0|n385fz,1,1,0|n385g0,27,10,1|ne11fz,27,10,1|ne11g0,1,1,0|nly83z,1,1,0|nly840,27,10,1|nwr43z,27,10,1|nwr440,1,1,0|o4oarz,1,1,0|o4oas0,27,10,1|ofu5fz,27,10,1|ofu5g0,1,1,0|onedfz,1,1,0|onedg0,27,10,1|oyk83z,27,10,1|oyk840,1,1,0|p64g3z,1,1,0|p64g40,27,10,1|phaarz,27,10,1|phaas0,1,1,0|pp7hfz,1,1,0|pp7hg0,27,10,1|q00dfz,27,10,1|q00dg0,1,1,0|q7xk3z,1,1,0|q7xk40,27,10,1|qiqg3z,27,10,1|qiqg40,1,1,0|qqnmrz,1,1,0|qqnms0,27,10,1|r1thfz,27,10,1|r1thg0,1,1,0|r9dpfz,1,1,0|r9dpg0,27,10,1|rkjk3z,27,10,1|rkjk40,1,1,0|rs3s3z,1,1,0|rs3s40,27,10,1|s39mrz,27,10,1|s39ms0,1,1,0|sb6tfz,1,1,0|sb6tg0,27,10,1|slzpfz,27,10,1|slzpg0,1,1,0|stww3z,1,1,0|stww40,27,10,1|t4ps3z,27,10,1|t4ps40,1,1,0|tcmyrz,1,1,0|tcmys0,27,10,1|tnfurz,27,10,1|tnfus0,1,1,0|tvd1fz,1,1,0|tvd1g0,27,10,1|u6iw3z,27,10,1|u6iw40,1,1,0|ue343z,1,1,0|ue3440,27,10,1|up8yrz,27,10,1|up8ys0,1,1,0|uwt6rz,1,1,0|uwt6s0,27,10,1|v7z1fz,27,10,1|v7z1g0,1,1,0|vfw83z,1,1,0|vfw840,27,10,1|vqp43z,27,10,1|vqp440,1,1,0|vymarz,1,1,0|vymas0,27,10,1|w9f6rz,27,10,1|w9f6s0,1,1,0|whcdfz,1,1,0|whcdg0,27,10,1|wsi83z,27,10,1|wsi840,1,1,0|x02g3z,1,1,0|x02g40,27,10,1|xb8arz,27,10,1|xb8as0,1,1,0|xisirz,1,1,0|xisis0,27,10,1|xtydfz,27,10,1|xtydg0,1,1,0|y1ilfz,1,1,0|y1ilg0,27,10,1|ycog3z,27,10,1|ycog40,1,1,0|yklmrz,1,1,0|yklms0,27,10,1|yveirz,27,10,1|yveis0,1,1,0|z3bpfz,1,1,0|z3bpg0,27,10,1|ze4lfz,27,10,1|ze4lg0,1,1,0","Europe/Istanbul|,0,349,0|-1ayy814,117,350,0|-ux9xex,117,350,0|-ux9xew,15,11,0|-s0e081,15,11,0|-s0e080,16,6,1|-rsir01,16,6,1|-rsir00,15,11,0|-pyzew1,15,11,0|-pyzew0,16,6,1|-po4r01,16,6,1|-po4r00,15,11,0|-pfwdk1,15,11,0|-pfwdk0,16,6,1|-p6hkc1,16,6,1|-p6hkc0,15,11,0|-oxj9k1,15,11,0|-oxj9k0,16,6,1|-ongdo1,16,6,1|-ongdo0,15,11,0|-ntgo81,15,11,0|-ntgo80,16,6,1|-nm7n01,16,6,1|-nm7n00,15,11,0|-nbayw1,15,11,0|-nbayw0,16,6,1|-n3fpo1,16,6,1|-n3fpo0,15,11,0|-febpk1,15,11,0|-febpk0,16,6,1|-f9c5o1,16,6,1|-f9c5o0,15,11,0|-f6gdk1,15,11,0|-f6gdk0,16,6,1|-erc0c1,16,6,1|-erc0c0,15,11,0|-ehgdk1,15,11,0|-ehgdk0,16,6,1|-cnaz01,16,6,1|-cnaz00,15,11,0|-cb5uw1,15,11,0|-cb5uw0,16,6,1|-c4w0c1,16,6,1|-c4w0c0,15,11,0|-bujpk1,15,11,0|-bujpk0,16,6,1|-blwoc1,16,6,1|-blwoc0,15,11,0|-bbtmw1,15,11,0|-bbtmw0,16,6,1|-b36lo1,16,6,1|-b36lo0,15,11,0|-atgiw1,15,11,0|-atgiw0,16,6,1|-akgj01,16,6,1|-akgj00,15,11,0|-aadhk1,15,11,0|-aadhk0,16,6,1|-a1dho1,16,6,1|-a1dho0,15,11,0|-9rag81,15,11,0|-9rag80,16,6,1|-9inf01,16,6,1|-9inf00,15,11,0|-3wa5k1,15,11,0|-3wa5k0,16,6,1|-3805o1,16,6,1|-3805o0,15,11,0|-2xtew1,15,11,0|-2xtew0,16,6,1|-2qo301,16,6,1|-2qo300,15,11,0|1s8vvz,15,11,0|1s8vw0,16,6,1|2062jz,16,6,1|2062k0,15,11,0|27qdbz,15,11,0|27qdc0,16,6,1|2iw57z,16,6,1|2iw580,15,11,0|2q1mnz,15,11,0|2q1mo0,16,6,1|31m7vz,16,6,1|31m7w0,15,11,0|38tjzz,15,11,0|38tk00,16,6,1|3kcajz,16,6,1|3kcak0,15,11,0|3s9jzz,15,11,0|3s9k00,16,6,1|42cfvz,16,6,1|42cfw0,15,11,0|4azmnz,15,11,0|4azmo0,16,6,1|4ficzz,16,6,1|4fid00,100,6,0|73397z,100,6,0|733980,105,209,1|76bufz,105,209,1|76bug0,100,6,0|7qp97z,100,6,0|7qp980,15,11,0|7zg2jz,15,11,0|7zg2k0,16,6,1|87q7vz,16,6,1|87q7w0,15,11,0|8h53vz,15,11,0|8h53w0,16,6,1|8qi57z,16,6,1|8qi580,15,11,0|8zv6jz,15,11,0|8zv6k0,16,6,1|9987vz,16,6,1|9987w0,15,11,0|9il97z,15,11,0|9il980,16,6,1|9ryajz,16,6,1|9ryak0,15,11,0|a1bbvz,15,11,0|a1bbw0,16,6,1|aaod7z,16,6,1|aaod80,15,11,0|ak1ejz,15,11,0|ak1ek0,16,6,1|atrejz,16,6,1|atrek0,15,11,0|b34fvz,15,11,0|b34fw0,16,6,1|bchh7z,16,6,1|bchh80,15,11,0|bluijz,15,11,0|bluik0,16,6,1|bv7jvz,16,6,1|bv7jw0,15,11,0|c4kl7z,15,11,0|c4kl80,16,6,1|cdxmjz,16,6,1|cdxmk0,15,11,0|cmxp7z,15,11,0|cmxp80,16,6,1|cwnp7z,16,6,1|cwnp80,15,11,0|d60qjz,15,11,0|d60qk0,16,6,1|dfdrvz,16,6,1|dfdrw0,15,11,0|dp3rvz,15,11,0|dp3rw0,16,6,1|dzwnvz,16,6,1|dzwnw0,15,11,0|e7tujz,15,11,0|e7tuk0,16,6,1|eimqjz,16,6,1|eimqk0,15,11,0|eqjx7z,15,11,0|eqjx80,16,6,1|f1ct7z,16,6,1|f1ct80,15,11,0|f99zvz,15,11,0|f99zw0,16,6,1|fkfujz,16,6,1|fkfuk0,15,11,0|fs02jz,15,11,0|fs02k0,16,6,1|g35x7z,16,6,1|g35x80,15,11,0|gaq57z,15,11,0|gaq580,16,6,1|glvzvz,16,6,1|glvzw0,15,11,0|gtt6jz,15,11,0|gtt6k0,16,6,1|h4m2jz,16,6,1|h4m2k0,15,11,0|hcj97z,15,11,0|hcj980,16,6,1|hnc57z,16,6,1|hnc580,15,11,0|hv9bvz,15,11,0|hv9bw0,16,6,1|i6f6jz,16,6,1|i6f6k0,15,11,0|idzejz,15,11,0|idzek0,16,6,1|ip597z,16,6,1|ip5980,15,11,0|iwph7z,15,11,0|iwph80,16,6,1|j7vbvz,16,6,1|j7vbw0,15,11,0|jffpfz,15,11,0|jffpg0,16,6,1|jqlk3z,16,6,1|jqlk40,15,11,0|jyiqrz,15,11,0|jyiqs0,16,6,1|k9bmrz,16,6,1|k9bms0,15,11,0|kh8tfz,15,11,0|kh8tg0,16,6,1|ks1pfz,16,6,1|ks1pg0,15,11,0|kzyw3z,15,11,0|kzyw40,16,6,1|lb4qrz,16,6,1|lb4qs0,15,11,0|liqtfz,15,11,0|liqtg0,16,6,1|ltutfz,16,6,1|ltutg0,15,11,0|m1f1fz,15,11,0|m1f1g0,16,6,1|mckw3z,16,6,1|mckw40,15,11,0|mki2rz,15,11,0|mki2s0,16,6,1|mvayrz,16,6,1|mvays0,15,11,0|n3a03z,15,11,0|n3a040,16,6,1|ne11fz,16,6,1|ne11g0,15,11,0|nly83z,15,11,0|nly840,16,6,1|nxh1fz,16,6,1|nxh1g0,15,11,0|o4oarz,15,11,0|o4oas0,16,6,1|od3ozz,16,6,1|od3p00,100,6,0","Europe/Jersey|,0,347,0|-1rprx9x,1,1,0|-rzcns1,1,1,0|-rzcns0,27,10,1|-rsid41,27,10,1|-rsid40,1,1,0|-risd41,1,1,0|-risd40,27,10,1|-ragd41,27,10,1|-ragd40,1,1,0|-r0s7s1,1,1,0|-r0s7s0,27,10,1|-qr0d41,27,10,1|-qr0d40,1,1,0|-qhp6g1,1,1,0|-qhp6g0,27,10,1|-q8aag1,27,10,1|-q8aag0,1,1,0|-pyz3s1,1,1,0|-pyz3s0,27,10,1|-po4d41,27,10,1|-po4d40,1,1,0|-pfw2g1,1,1,0|-pfw2g0,27,10,1|-p6h6g1,27,10,1|-p6h6g0,1,1,0|-oxiyg1,1,1,0|-oxiyg0,27,10,1|-onfzs1,27,10,1|-onfzs0,1,1,0|-odd141,1,1,0|-odd140,27,10,1|-o5st41,27,10,1|-o5st40,1,1,0|-nuzx41,1,1,0|-nuzx40,27,10,1|-nmprs1,27,10,1|-nmprs0,1,1,0|-nbwvs1,1,1,0|-nbwvs0,27,10,1|-n39rs1,27,10,1|-n39rs0,1,1,0|-mt6t41,1,1,0|-mt6t40,27,10,1|-mkjp41,27,10,1|-mkjp40,1,1,0|-matp41,1,1,0|-matp40,27,10,1|-m1tmg1,27,10,1|-m1tmg0,1,1,0|-lrdp41,1,1,0|-lrdp40,27,10,1|-liql41,27,10,1|-liql40,1,1,0|-l8nmg1,1,1,0|-l8nmg0,27,10,1|-l00ig1,27,10,1|-l00ig0,1,1,0|-kqaig1,1,1,0|-kqaig0,27,10,1|-khafs1,27,10,1|-khafs0,1,1,0|-k77h41,1,1,0|-k77h40,27,10,1|-jykd41,27,10,1|-jykd40,1,1,0|-joheg1,1,1,0|-joheg0,27,10,1|-jfuag1,27,10,1|-jfuag0,1,1,0|-j64ag1,1,1,0|-j64ag0,27,10,1|-iwr941,27,10,1|-iwr940,1,1,0|-imoag1,1,1,0|-imoag0,27,10,1|-ie16g1,27,10,1|-ie16g0,1,1,0|-i4b6g1,1,1,0|-i4b6g0,27,10,1|-hvb3s1,27,10,1|-hvb3s0,1,1,0|-hl8541,1,1,0|-hl8540,27,10,1|-hcl141,27,10,1|-hcl140,1,1,0|-h2i2g1,1,1,0|-h2i2g0,27,10,1|-gtuyg1,27,10,1|-gtuyg0,1,1,0|-gk4yg1,1,1,0|-gk4yg0,27,10,1|-gb4vs1,27,10,1|-gb4vs0,1,1,0|-g11x41,1,1,0|-g11x40,27,10,1|-fpw2g1,27,10,1|-fpw2g0,1,1,0|-fkul41,1,1,0|-fkul40,27,10,1|-eyiyk1,27,10,1|-eyiyk0,151,11,1|-ethh81,151,11,1|-ethh80,27,10,1|-eh8qk1,27,10,1|-eh8qk0,151,11,1|-earek1,151,11,1|-earek0,27,10,1|-dyinw1,27,10,1|-dyinw0,151,11,1|-drod81,151,11,1|-drod80,27,10,1|-dfsl81,27,10,1|-dfsl80,151,11,1|-d75h81,151,11,1|-d75h80,27,10,1|-cx0nw1,27,10,1|-cx0nw0,151,11,1|-cro2k1,151,11,1|-cro2k0,27,10,1|-cncfs1,27,10,1|-cncfs0,1,1,0|-cdmfs1,1,1,0|-cdmfs0,27,10,1|-c4md41,27,10,1|-c4md40,1,1,0|-bwc7s1,1,1,0|-bwc7s0,27,10,1|-buwfw1,27,10,1|-buwfw0,151,11,1|-bos2k1,151,11,1|-bos2k0,27,10,1|-bkgfs1,27,10,1|-bkgfs0,1,1,0|-bdm541,1,1,0|-bdm540,27,10,1|-b1qd41,27,10,1|-b1qd40,1,1,0|-att6g1,1,1,0|-att6g0,27,10,1|-aj0ag1,27,10,1|-aj0ag0,1,1,0|-aad6g1,1,1,0|-aad6g0,27,10,1|-a0n6g1,27,10,1|-a0n6g0,1,1,0|-9rn3s1,1,1,0|-9rn3s0,27,10,1|-9hx3s1,27,10,1|-9hx3s0,1,1,0|-98k2g1,1,1,0|-98k2g0,27,10,1|-8yu2g1,27,10,1|-8yu2g0,1,1,0|-8ptzs1,1,1,0|-8ptzs0,27,10,1|-8h6vs1,27,10,1|-8h6vs0,1,1,0|-87gvs1,1,1,0|-87gvs0,27,10,1|-7ygt41,27,10,1|-7ygt40,1,1,0|-7odug1,1,1,0|-7odug0,27,10,1|-7fqqg1,27,10,1|-7fqqg0,1,1,0|-75at41,1,1,0|-75at40,27,10,1|-6wnp41,27,10,1|-6wnp40,1,1,0|-6mxp41,1,1,0|-6mxp40,27,10,1|-6dxmg1,27,10,1|-6dxmg0,1,1,0|-63uns1,1,1,0|-63uns0,27,10,1|-5v7js1,27,10,1|-5v7js0,1,1,0|-5l4l41,1,1,0|-5l4l40,27,10,1|-5chh41,27,10,1|-5chh40,1,1,0|-52rh41,1,1,0|-52rh40,27,10,1|-4treg1,27,10,1|-4treg0,1,1,0|-4krbs1,1,1,0|-4krbs0,27,10,1|-49lh41,27,10,1|-49lh40,1,1,0|-421941,1,1,0|-421940,27,10,1|-3qveg1,27,10,1|-3qveg0,1,1,0|-3iy7s1,1,1,0|-3iy7s0,27,10,1|-385bs1,27,10,1|-385bs0,1,1,0|-30l3s1,1,1,0|-30l3s0,27,10,1|-2pf941,27,10,1|-2pf940,1,1,0|-2hv141,1,1,0|-2hv140,27,10,1|-26p6g1,27,10,1|-26p6g0,1,1,0|-1z4yg1,1,1,0|-1z4yg0,27,10,1|-1nz3s1,27,10,1|-1nz3s0,1,1,0|-1gevs1,1,1,0|-1gevs0,27,10,1|-14w2g1,27,10,1|-14w2g0,1,1,0|-z4ns1,1,1,0|-z4ns0,27,10,1|-m6841,27,10,1|-m6840,27,10,0|yd6vz,27,10,0|yd6w0,1,1,0|15kg7z,1,1,0|15kg80,27,10,1|1h39jz,27,10,1|1h39k0,1,1,0|1oaivz,1,1,0|1oaiw0,27,10,1|1ztc7z,27,10,1|1ztc80,1,1,0|270ljz,1,1,0|270lk0,27,10,1|2ijevz,27,10,1|2ijew0,1,1,0|2pqo7z,1,1,0|2pqo80,27,10,1|319hjz,27,10,1|319hk0,1,1,0|38tpjz,1,1,0|38tpk0,27,10,1|3jzk7z,27,10,1|3jzk80,1,1,0|3rjs7z,1,1,0|3rjs80,27,10,1|42pmvz,27,10,1|42pmw0,1,1,0|4a9uvz,1,1,0|4a9uw0,27,10,1|4lso7z,27,10,1|4lso80,1,1,0|4szxjz,1,1,0|4szxk0,27,10,1|54iqvz,27,10,1|54iqw0,1,1,0|5bq07z,1,1,0|5bq080,27,10,1|5n8tjz,27,10,1|5n8tk0,1,1,0|5v5xfz,1,1,0|5v5xg0,27,10,1|65ytfz,27,10,1|65ytg0,1,1,0|6dw03z,1,1,0|6dw040,27,10,1|6oow3z,27,10,1|6oow40,1,1,0|6wm2rz,1,1,0|6wm2s0,27,10,1|77eyrz,27,10,1|77eys0,1,1,0|7fc5fz,1,1,0|7fc5g0,27,10,1|7qi03z,27,10,1|7qi040,1,1,0|7yf6rz,1,1,0|7yf6s0,27,10,1|8982rz,27,10,1|8982s0,1,1,0|8h59fz,1,1,0|8h59g0,27,10,1|8ry5fz,27,10,1|8ry5g0,1,1,0|8zvc3z,1,1,0|8zvc40,27,10,1|9ao83z,27,10,1|9ao840,1,1,0|9ilerz,1,1,0|9iles0,27,10,1|9tearz,27,10,1|9teas0,1,1,0|a1bhfz,1,1,0|a1bhg0,27,10,1|achc3z,27,10,1|achc40,1,1,0|ak1k3z,1,1,0|ak1k40,27,10,1|av7erz,27,10,1|av7es0,1,1,0|b34lfz,1,1,0|b34lg0,27,10,1|bdxhfz,27,10,1|bdxhg0,1,1,0|bluo3z,1,1,0|bluo40,27,10,1|bwnk3z,27,10,1|bwnk40,1,1,0|c4kqrz,1,1,0|c4kqs0,27,10,1|cfdmrz,27,10,1|cfdms0,1,1,0|cnatfz,1,1,0|cnatg0,27,10,1|cy3pfz,27,10,1|cy3pg0,1,1,0|d60w3z,1,1,0|d60w40,27,10,1|dgts3z,27,10,1|dgts40,1,1,0|dp3xfz,1,1,0|dp3xg0,27,10,1|dzwtfz,27,10,1|dzwtg0,1,1,0|e7u03z,1,1,0|e7u040,27,10,1|eimw3z,27,10,1|eimw40,1,1,0|eqk2rz,1,1,0|eqk2s0,27,10,1|f1cyrz,27,10,1|f1cys0,1,1,0|f9a5fz,1,1,0|f9a5g0,27,10,1|fkg03z,27,10,1|fkg040,1,1,0|fs083z,1,1,0|fs0840,27,10,1|g362rz,27,10,1|g362s0,1,1,0|gaqarz,1,1,0|gaqas0,27,10,1|glw5fz,27,10,1|glw5g0,1,1,0|gttc3z,1,1,0|gttc40,27,10,1|h4m83z,27,10,1|h4m840,1,1,0|hcjerz,1,1,0|hcjes0,27,10,1|hncarz,27,10,1|hncas0,1,1,0|hv9hfz,1,1,0|hv9hg0,27,10,1|i6fc3z,27,10,1|i6fc40,1,1,0|idzk3z,1,1,0|idzk40,27,10,1|ip5erz,27,10,1|ip5es0,1,1,0|iwpmrz,1,1,0|iwpms0,27,10,1|j7vhfz,27,10,1|j7vhg0,1,1,0|jffpfz,1,1,0|jffpg0,27,10,1|jqlk3z,27,10,1|jqlk40,1,1,0|jyiqrz,1,1,0|jyiqs0,27,10,1|k9bmrz,27,10,1|k9bms0,1,1,0|kh8tfz,1,1,0|kh8tg0,27,10,1|ks1pfz,27,10,1|ks1pg0,1,1,0|kzyw3z,1,1,0|kzyw40,27,10,1|lb4qrz,27,10,1|lb4qs0,1,1,0|lioyrz,1,1,0|lioys0,27,10,1|ltutfz,27,10,1|ltutg0,1,1,0|m1f1fz,1,1,0|m1f1g0,27,10,1|mckw3z,27,10,1|mckw40,1,1,0|mki2rz,1,1,0|mki2s0,27,10,1|mvayrz,27,10,1|mvays0,1,1,0|n385fz,1,1,0|n385g0,27,10,1|ne11fz,27,10,1|ne11g0,1,1,0|nly83z,1,1,0|nly840,27,10,1|nwr43z,27,10,1|nwr440,1,1,0|o4oarz,1,1,0|o4oas0,27,10,1|ofu5fz,27,10,1|ofu5g0,1,1,0|onedfz,1,1,0|onedg0,27,10,1|oyk83z,27,10,1|oyk840,1,1,0|p64g3z,1,1,0|p64g40,27,10,1|phaarz,27,10,1|phaas0,1,1,0|pp7hfz,1,1,0|pp7hg0,27,10,1|q00dfz,27,10,1|q00dg0,1,1,0|q7xk3z,1,1,0|q7xk40,27,10,1|qiqg3z,27,10,1|qiqg40,1,1,0|qqnmrz,1,1,0|qqnms0,27,10,1|r1thfz,27,10,1|r1thg0,1,1,0|r9dpfz,1,1,0|r9dpg0,27,10,1|rkjk3z,27,10,1|rkjk40,1,1,0|rs3s3z,1,1,0|rs3s40,27,10,1|s39mrz,27,10,1|s39ms0,1,1,0|sb6tfz,1,1,0|sb6tg0,27,10,1|slzpfz,27,10,1|slzpg0,1,1,0|stww3z,1,1,0|stww40,27,10,1|t4ps3z,27,10,1|t4ps40,1,1,0|tcmyrz,1,1,0|tcmys0,27,10,1|tnfurz,27,10,1|tnfus0,1,1,0|tvd1fz,1,1,0|tvd1g0,27,10,1|u6iw3z,27,10,1|u6iw40,1,1,0|ue343z,1,1,0|ue3440,27,10,1|up8yrz,27,10,1|up8ys0,1,1,0|uwt6rz,1,1,0|uwt6s0,27,10,1|v7z1fz,27,10,1|v7z1g0,1,1,0|vfw83z,1,1,0|vfw840,27,10,1|vqp43z,27,10,1|vqp440,1,1,0|vymarz,1,1,0|vymas0,27,10,1|w9f6rz,27,10,1|w9f6s0,1,1,0|whcdfz,1,1,0|whcdg0,27,10,1|wsi83z,27,10,1|wsi840,1,1,0|x02g3z,1,1,0|x02g40,27,10,1|xb8arz,27,10,1|xb8as0,1,1,0|xisirz,1,1,0|xisis0,27,10,1|xtydfz,27,10,1|xtydg0,1,1,0|y1ilfz,1,1,0|y1ilg0,27,10,1|ycog3z,27,10,1|ycog40,1,1,0|yklmrz,1,1,0|yklms0,27,10,1|yveirz,27,10,1|yveis0,1,1,0|z3bpfz,1,1,0|z3bpg0,27,10,1|ze4lfz,27,10,1|ze4lg0,1,1,0","Europe/Kaliningrad|,0,332,0|-14212go,10,10,0|-s0e081,10,10,0|-s0e080,11,11,1|-rsilg1,11,11,1|-rsilg0,10,10,0|-ridmk1,10,10,0|-ridmk0,11,11,1|-ragfw1,11,11,1|-ragfw0,10,10,0|-qznjw1,10,10,0|-qznjw0,11,11,1|-qrqd81,11,11,1|-qrqd80,10,10,0|-fizzw1,10,10,0|-fizzw0,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d6dp81,11,11,1|-d6dp80,10,10,0|-cx0nw1,10,10,0|-cx0nw0,11,11,1|-cwm2w1,11,11,1|-cwm2w0,15,11,0|-cvmw81,15,11,0|-cvmw80,16,6,1|-cm2j01,16,6,1|-cm2j00,15,11,0|-cdzpk1,15,11,0|-cdzpk0,148,6,0|5vb6bz,148,6,0|5vb6c0,149,209,1|64pzjz,149,209,1|64pzk0,148,6,0|6e33nz,148,6,0|6e33o0,149,209,1|6nhwvz,149,209,1|6nhww0,148,6,0|6wv0zz,148,6,0|6wv100,149,209,1|769u7z,149,209,1|769u80,148,6,0|7foszz,148,6,0|7fot00,149,209,1|7p1zvz,149,209,1|7p1zw0,148,6,0|7yf17z,148,6,0|7yf180,149,209,1|87s2jz,149,209,1|87s2k0,148,6,0|8h53vz,148,6,0|8h53w0,149,209,1|8qi57z,149,209,1|8qi580,148,6,0|8zv6jz,148,6,0|8zv6k0,149,209,1|9987vz,149,209,1|9987w0,148,6,0|9il97z,148,6,0|9il980,149,209,1|9ryajz,149,209,1|9ryak0,148,6,0|a1bbvz,148,6,0|a1bbw0,16,6,1|aaofzz,16,6,1|aaog00,15,11,0|ak1hbz,15,11,0|ak1hc0,16,6,1|atrhbz,16,6,1|atrhc0,15,11,0|b34inz,15,11,0|b34io0,16,6,1|bchjzz,16,6,1|bchk00,15,11,0|blulbz,15,11,0|blulc0,16,6,1|bv7mnz,16,6,1|bv7mo0,15,11,0|c4knzz,15,11,0|c4ko00,16,6,1|cdxpbz,16,6,1|cdxpc0,15,11,0|cnaqnz,15,11,0|cnaqo0,16,6,1|cwnrzz,16,6,1|cwns00,15,11,0|d60tbz,15,11,0|d60tc0,16,6,1|dfdunz,16,6,1|dfduo0,15,11,0|dp3unz,15,11,0|dp3uo0,16,6,1|dzwqnz,16,6,1|dzwqo0,15,11,0|e7txbz,15,11,0|e7txc0,16,6,1|eimtbz,16,6,1|eimtc0,15,11,0|eqjzzz,15,11,0|eqk000,16,6,1|f1cvzz,16,6,1|f1cw00,15,11,0|f9a2nz,15,11,0|f9a2o0,16,6,1|fkfxbz,16,6,1|fkfxc0,15,11,0|fs05bz,15,11,0|fs05c0,16,6,1|g35zzz,16,6,1|g36000,15,11,0|gaq7zz,15,11,0|gaq800,16,6,1|glw2nz,16,6,1|glw2o0,15,11,0|gtt9bz,15,11,0|gtt9c0,16,6,1|h4m5bz,16,6,1|h4m5c0,15,11,0|hcjbzz,15,11,0|hcjc00,16,6,1|hnc7zz,16,6,1|hnc800,15,11,0|hv9enz,15,11,0|hv9eo0,16,6,1|i6f9bz,16,6,1|i6f9c0,15,11,0|idzhbz,15,11,0|idzhc0,16,6,1|ip5bzz,16,6,1|ip5c00,15,11,0|iwpjzz,15,11,0|iwpk00,16,6,1|j7venz,16,6,1|j7veo0,15,11,0|jffmnz,15,11,0|jffmo0,16,6,1|jqlhbz,16,6,1|jqlhc0,15,11,0|jyinzz,15,11,0|jyio00,16,6,1|k9bjzz,16,6,1|k9bk00,15,11,0|kh8qnz,15,11,0|kh8qo0,16,6,1|ks1mnz,16,6,1|ks1mo0,15,11,0|kzytbz,15,11,0|kzytc0,16,6,1|lb4nzz,16,6,1|lb4o00,15,11,0|liovzz,15,11,0|liow00,100,6,0|ne0vvz,100,6,0|ne0vw0,15,11,0","Europe/Kiev|,0,351,0|-1ayy8bg,74,351,0|-nu11nh,74,351,0|-nu11ng,15,11,0|-kmr1k1,15,11,0|-kmr1k0,148,6,0|-erdv01,148,6,0|-erdv00,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dnetg1,10,10,0|-dnetg0,148,6,0|5vb6bz,148,6,0|5vb6c0,149,209,1|64pzjz,149,209,1|64pzk0,148,6,0|6e33nz,148,6,0|6e33o0,149,209,1|6nhwvz,149,209,1|6nhww0,148,6,0|6wv0zz,148,6,0|6wv100,149,209,1|769u7z,149,209,1|769u80,148,6,0|7foszz,148,6,0|7fot00,149,209,1|7p1zvz,149,209,1|7p1zw0,148,6,0|7yf17z,148,6,0|7yf180,149,209,1|87s2jz,149,209,1|87s2k0,148,6,0|8h53vz,148,6,0|8h53w0,149,209,1|8qi57z,149,209,1|8qi580,148,6,0|8zv6jz,148,6,0|8zv6k0,149,209,1|9987vz,149,209,1|9987w0,148,6,0|9il97z,148,6,0|9il980,149,209,1|9ryajz,149,209,1|9ryak0,148,6,0|a1bbvz,148,6,0|a1bbw0,149,209,1|aaod7z,149,209,1|aaod80,148,6,0|ak1ejz,148,6,0|ak1ek0,149,209,1|ap2t3z,149,209,1|ap2t40,16,6,1|bchjzz,16,6,1|bchk00,15,11,0|blufrz,15,11,0|blufs0,16,6,1|bv7ebz,16,6,1|bv7ec0,15,11,0|c4kifz,15,11,0|c4kig0,16,6,1|cdxgzz,16,6,1|cdxh00,15,11,0|cnal3z,15,11,0|cnal40,16,6,1|cwnjnz,16,6,1|cwnjo0,15,11,0|d60w3z,15,11,0|d60w40,16,6,1|dfdxfz,16,6,1|dfdxg0,15,11,0|dp3xfz,15,11,0|dp3xg0,16,6,1|dzwtfz,16,6,1|dzwtg0,15,11,0|e7u03z,15,11,0|e7u040,16,6,1|eimw3z,16,6,1|eimw40,15,11,0|eqk2rz,15,11,0|eqk2s0,16,6,1|f1cyrz,16,6,1|f1cys0,15,11,0|f9a5fz,15,11,0|f9a5g0,16,6,1|fkg03z,16,6,1|fkg040,15,11,0|fs083z,15,11,0|fs0840,16,6,1|g362rz,16,6,1|g362s0,15,11,0|gaqarz,15,11,0|gaqas0,16,6,1|glw5fz,16,6,1|glw5g0,15,11,0|gttc3z,15,11,0|gttc40,16,6,1|h4m83z,16,6,1|h4m840,15,11,0|hcjerz,15,11,0|hcjes0,16,6,1|hncarz,16,6,1|hncas0,15,11,0|hv9hfz,15,11,0|hv9hg0,16,6,1|i6fc3z,16,6,1|i6fc40,15,11,0|idzk3z,15,11,0|idzk40,16,6,1|ip5erz,16,6,1|ip5es0,15,11,0|iwpmrz,15,11,0|iwpms0,16,6,1|j7vhfz,16,6,1|j7vhg0,15,11,0|jffpfz,15,11,0|jffpg0,16,6,1|jqlk3z,16,6,1|jqlk40,15,11,0|jyiqrz,15,11,0|jyiqs0,16,6,1|k9bmrz,16,6,1|k9bms0,15,11,0|kh8tfz,15,11,0|kh8tg0,16,6,1|ks1pfz,16,6,1|ks1pg0,15,11,0|kzyw3z,15,11,0|kzyw40,16,6,1|lb4qrz,16,6,1|lb4qs0,15,11,0|lioyrz,15,11,0|lioys0,16,6,1|ltutfz,16,6,1|ltutg0,15,11,0|m1f1fz,15,11,0|m1f1g0,16,6,1|mckw3z,16,6,1|mckw40,15,11,0|mki2rz,15,11,0|mki2s0,16,6,1|mvayrz,16,6,1|mvays0,15,11,0|n385fz,15,11,0|n385g0,16,6,1|ne11fz,16,6,1|ne11g0,15,11,0|nly83z,15,11,0|nly840,16,6,1|nwr43z,16,6,1|nwr440,15,11,0|o4oarz,15,11,0|o4oas0,16,6,1|ofu5fz,16,6,1|ofu5g0,15,11,0|onedfz,15,11,0|onedg0,16,6,1|oyk83z,16,6,1|oyk840,15,11,0|p64g3z,15,11,0|p64g40,16,6,1|phaarz,16,6,1|phaas0,15,11,0|pp7hfz,15,11,0|pp7hg0,16,6,1|q00dfz,16,6,1|q00dg0,15,11,0|q7xk3z,15,11,0|q7xk40,16,6,1|qiqg3z,16,6,1|qiqg40,15,11,0|qqnmrz,15,11,0|qqnms0,16,6,1|r1thfz,16,6,1|r1thg0,15,11,0|r9dpfz,15,11,0|r9dpg0,16,6,1|rkjk3z,16,6,1|rkjk40,15,11,0|rs3s3z,15,11,0|rs3s40,16,6,1|s39mrz,16,6,1|s39ms0,15,11,0|sb6tfz,15,11,0|sb6tg0,16,6,1|slzpfz,16,6,1|slzpg0,15,11,0|stww3z,15,11,0|stww40,16,6,1|t4ps3z,16,6,1|t4ps40,15,11,0|tcmyrz,15,11,0|tcmys0,16,6,1|tnfurz,16,6,1|tnfus0,15,11,0|tvd1fz,15,11,0|tvd1g0,16,6,1|u6iw3z,16,6,1|u6iw40,15,11,0|ue343z,15,11,0|ue3440,16,6,1|up8yrz,16,6,1|up8ys0,15,11,0|uwt6rz,15,11,0|uwt6s0,16,6,1|v7z1fz,16,6,1|v7z1g0,15,11,0|vfw83z,15,11,0|vfw840,16,6,1|vqp43z,16,6,1|vqp440,15,11,0|vymarz,15,11,0|vymas0,16,6,1|w9f6rz,16,6,1|w9f6s0,15,11,0|whcdfz,15,11,0|whcdg0,16,6,1|wsi83z,16,6,1|wsi840,15,11,0|x02g3z,15,11,0|x02g40,16,6,1|xb8arz,16,6,1|xb8as0,15,11,0|xisirz,15,11,0|xisis0,16,6,1|xtydfz,16,6,1|xtydg0,15,11,0|y1ilfz,15,11,0|y1ilg0,16,6,1|ycog3z,16,6,1|ycog40,15,11,0|yklmrz,15,11,0|yklms0,16,6,1|yveirz,16,6,1|yveis0,15,11,0|z3bpfz,15,11,0|z3bpg0,16,6,1|ze4lfz,16,6,1|ze4lg0,15,11,0","Europe/Kirov|,0,352,0|-qcx400,100,6,0|-kmr4c1,100,6,0|-kmr4c0,105,209,0|5vb3jz,105,209,0|5vb3k0,92,194,1|64pwrz,92,194,1|64pws0,105,209,0|6e30vz,105,209,0|6e30w0,92,194,1|6nhu3z,92,194,1|6nhu40,105,209,0|6wuy7z,105,209,0|6wuy80,92,194,1|769rfz,92,194,1|769rg0,105,209,0|7foq7z,105,209,0|7foq80,92,194,1|7p1x3z,92,194,1|7p1x40,105,209,0|7yeyfz,105,209,0|7yeyg0,92,194,1|87rzrz,92,194,1|87rzs0,105,209,0|8h513z,105,209,0|8h5140,92,194,1|8qi2fz,92,194,1|8qi2g0,105,209,0|8zv3rz,105,209,0|8zv3s0,92,194,1|99853z,92,194,1|998540,105,209,0|9il6fz,105,209,0|9il6g0,92,194,1|9ry7rz,92,194,1|9ry7s0,105,209,0|a1b93z,105,209,0|a1b940,105,209,1|aaod7z,105,209,1|aaod80,100,6,0|ak1ejz,100,6,0|ak1ek0,105,209,1|atrejz,105,209,1|atrek0,100,6,0|b34fvz,100,6,0|b34fw0,105,209,0|blufrz,105,209,0|blufs0,105,209,1|bv7jvz,105,209,1|bv7jw0,100,6,0|c4kl7z,100,6,0|c4kl80,105,209,1|cdxmjz,105,209,1|cdxmk0,100,6,0|cnanvz,100,6,0|cnanw0,105,209,1|cwnp7z,105,209,1|cwnp80,100,6,0|d60qjz,100,6,0|d60qk0,105,209,1|dfdrvz,105,209,1|dfdrw0,100,6,0|dp3rvz,100,6,0|dp3rw0,105,209,1|dzwnvz,105,209,1|dzwnw0,100,6,0|e7tujz,100,6,0|e7tuk0,105,209,1|eimqjz,105,209,1|eimqk0,100,6,0|eqjx7z,100,6,0|eqjx80,105,209,1|f1ct7z,105,209,1|f1ct80,100,6,0|f99zvz,100,6,0|f99zw0,105,209,1|fkfujz,105,209,1|fkfuk0,100,6,0|fs02jz,100,6,0|fs02k0,105,209,1|g35x7z,105,209,1|g35x80,100,6,0|gaq57z,100,6,0|gaq580,105,209,1|glvzvz,105,209,1|glvzw0,100,6,0|gtt6jz,100,6,0|gtt6k0,105,209,1|h4m2jz,105,209,1|h4m2k0,100,6,0|hcj97z,100,6,0|hcj980,105,209,1|hnc57z,105,209,1|hnc580,100,6,0|hv9bvz,100,6,0|hv9bw0,105,209,1|i6f6jz,105,209,1|i6f6k0,100,6,0|idzejz,100,6,0|idzek0,105,209,1|ip597z,105,209,1|ip5980,100,6,0|iwph7z,100,6,0|iwph80,105,209,1|j7vbvz,105,209,1|j7vbw0,100,6,0|jffjvz,100,6,0|jffjw0,105,209,1|jqlejz,105,209,1|jqlek0,100,6,0|jyil7z,100,6,0|jyil80,105,209,1|k9bh7z,105,209,1|k9bh80,100,6,0|kh8nvz,100,6,0|kh8nw0,105,209,1|ks1jvz,105,209,1|ks1jw0,100,6,0|kzyqjz,100,6,0|kzyqk0,105,209,1|lb4l7z,105,209,1|lb4l80,100,6,0|liot7z,100,6,0|liot80,105,209,0|ne0t3z,105,209,0|ne0t40,100,6,0","Europe/Lisbon|,0,29,0|-u9rhc0,8,1,0|-rxx1g1,8,1,0|-rxx1g0,9,10,1|-rqx401,9,10,1|-rqx400,8,1,0|-rkqys1,8,1,0|-rkqys0,9,10,1|-r90qs1,9,10,1|-r90qs0,8,1,0|-r1x6s1,8,1,0|-r1x6s0,9,10,1|-qq8tg1,9,10,1|-qq8tg0,8,1,0|-qj7441,8,1,0|-qj7440,9,10,1|-q7gw41,9,10,1|-q7gw40,8,1,0|-q0dc41,8,1,0|-q0dc40,9,10,1|-pon441,9,10,1|-pon440,8,1,0|-phles1,8,1,0|-phles0,9,10,1|-p5v6s1,9,10,1|-p5v6s0,8,1,0|-nusqs1,8,1,0|-nusqs0,9,10,1|-nlhk41,9,10,1|-nlhk40,8,1,0|-mt71g1,8,1,0|-mt71g0,9,10,1|-mkjxg1,9,10,1|-mkjxg0,8,1,0|-matxg1,8,1,0|-matxg0,9,10,1|-m1tus1,9,10,1|-m1tus0,8,1,0|-lrqw41,8,1,0|-lrqw40,9,10,1|-liqtg1,9,10,1|-liqtg0,8,1,0|-l8nus1,8,1,0|-l8nus0,9,10,1|-l00qs1,9,10,1|-l00qs0,8,1,0|-k77pg1,8,1,0|-k77pg0,9,10,1|-jyklg1,9,10,1|-jyklg0,8,1,0|-jp7k41,8,1,0|-jp7k40,9,10,1|-jfuis1,9,10,1|-jfuis0,8,1,0|-ineg41,8,1,0|-ineg40,9,10,1|-ie1es1,9,10,1|-ie1es0,8,1,0|-i51c41,8,1,0|-i51c40,9,10,1|-hvbc41,9,10,1|-hvbc40,8,1,0|-hl8dg1,8,1,0|-hl8dg0,9,10,1|-hcl9g1,9,10,1|-hcl9g0,8,1,0|-h38841,8,1,0|-h38840,9,10,1|-gtv6s1,9,10,1|-gtv6s0,8,1,0|-gkv441,8,1,0|-gkv440,9,10,1|-gb5441,9,10,1|-gb5440,8,1,0|-g125g1,8,1,0|-g125g0,9,10,1|-fpwas1,9,10,1|-fpwas0,8,1,0|-fkutg1,8,1,0|-fkutg0,9,10,1|-f9c041,9,10,1|-f9c040,8,1,0|-ezyys1,8,1,0|-ezyys0,9,10,1|-eqk2s1,9,10,1|-eqk2s0,8,1,0|-eibs41,8,1,0|-eibs40,9,10,1|-eg62w1,9,10,1|-eg62w0,152,11,1|-eaeo81,152,11,1|-eaeo80,9,10,1|-e6sys1,9,10,1|-e6sys0,8,1,0|-dzlpg1,8,1,0|-dzlpg0,9,10,1|-dxsyw1,9,10,1|-dxsyw0,152,11,1|-dqyo81,152,11,1|-dqyo80,9,10,1|-dnpxg1,9,10,1|-dnpxg0,8,1,0|-dgvms1,8,1,0|-dgvms0,9,10,1|-depxk1,9,10,1|-depxk0,152,11,1|-d88lk1,152,11,1|-d88lk0,9,10,1|-d4zus1,9,10,1|-d4zus0,8,1,0|-cy5k41,8,1,0|-cy5k40,9,10,1|-cvzuw1,9,10,1|-cvzuw0,152,11,1|-cpiiw1,152,11,1|-cpiiw0,9,10,1|-cm9s41,9,10,1|-cm9s40,8,1,0|-cdzms1,8,1,0|-cdzms0,9,10,1|-c4mlg1,9,10,1|-c4mlg0,8,1,0|-bv9bs1,8,1,0|-bv9bs0,9,10,1|-blwag1,9,10,1|-blwag0,8,1,0|-bcj941,8,1,0|-bcj940,9,10,1|-b367s1,9,10,1|-b367s0,8,1,0|-att6g1,8,1,0|-att6g0,9,10,1|-akg541,9,10,1|-akg540,8,1,0|-9sd141,8,1,0|-9sd140,9,10,1|-9in141,9,10,1|-9in140,8,1,0|-999zs1,8,1,0|-999zs0,9,10,1|-8zwyg1,9,10,1|-8zwyg0,8,1,0|-8qjx41,8,1,0|-8qjx40,9,10,1|-8h6vs1,9,10,1|-8h6vs0,8,1,0|-87tug1,8,1,0|-87tug0,9,10,1|-7ygt41,9,10,1|-7ygt40,8,1,0|-7p3rs1,8,1,0|-7p3rs0,9,10,1|-7fqqg1,9,10,1|-7fqqg0,8,1,0|-76dp41,8,1,0|-76dp40,9,10,1|-6wnp41,9,10,1|-6wnp40,8,1,0|-6nans1,8,1,0|-6nans0,9,10,1|-6dxmg1,9,10,1|-6dxmg0,8,1,0|-64kl41,8,1,0|-64kl40,9,10,1|-5v7js1,9,10,1|-5v7js0,8,1,0|-5luig1,8,1,0|-5luig0,9,10,1|-5chh41,9,10,1|-5chh40,8,1,0|-534fs1,8,1,0|-534fs0,9,10,1|-4treg1,9,10,1|-4treg0,8,1,0|-4ked41,8,1,0|-4ked40,9,10,1|-4b1bs1,9,10,1|-4b1bs0,8,1,0|-41oag1,8,1,0|-41oag0,9,10,1|-3ryag1,9,10,1|-3ryag0,8,1,0|-3il941,8,1,0|-3il940,9,10,1|-3987s1,9,10,1|-3987s0,8,1,0|-2zv6g1,8,1,0|-2zv6g0,9,10,1|-2qi541,9,10,1|-2qi540,8,1,0|-2h53s1,8,1,0|-2h53s0,9,10,1|-27s2g1,9,10,1|-27s2g0,8,1,0|-1yf141,8,1,0|-1yf140,10,10,0|3ijjzz,10,10,0|3ijk00,8,1,0|3rwlbz,8,1,0|3rwlc0,9,10,1|419mnz,9,10,1|419mo0,8,1,0|4azmnz,8,1,0|4azmo0,9,10,1|4kcnzz,9,10,1|4kco00,8,1,0|4tppbz,8,1,0|4tppc0,9,10,1|532tfz,9,10,1|532tg0,8,1,0|5cfrzz,8,1,0|5cfs00,9,10,1|5lsw3z,9,10,1|5lsw40,8,1,0|5v5xfz,8,1,0|5v5xg0,9,10,1|64iyrz,9,10,1|64iys0,8,1,0|6dw03z,8,1,0|6dw040,9,10,1|6n91fz,9,10,1|6n91g0,8,1,0|6wm5jz,8,1,0|6wm5k0,9,10,1|75z43z,9,10,1|75z440,8,1,0|7fc5fz,8,1,0|7fc5g0,9,10,1|7p25fz,9,10,1|7p25g0,8,1,0|7yf6rz,8,1,0|7yf6s0,9,10,1|87s83z,9,10,1|87s840,8,1,0|8h59fz,8,1,0|8h59g0,9,10,1|8qiarz,9,10,1|8qias0,8,1,0|8zvc3z,8,1,0|8zvc40,9,10,1|998dfz,9,10,1|998dg0,8,1,0|9ilerz,8,1,0|9iles0,9,10,1|9ryg3z,9,10,1|9ryg40,8,1,0|a1bhfz,8,1,0|a1bhg0,9,10,1|aaoirz,9,10,1|aaois0,8,1,0|ak1k3z,8,1,0|ak1k40,9,10,1|atrk3z,9,10,1|atrk40,8,1,0|b34lfz,8,1,0|b34lg0,9,10,1|bchmrz,9,10,1|bchms0,8,1,0|bluo3z,8,1,0|bluo40,9,10,1|bv7pfz,9,10,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,9,10,1|dzwtfz,9,10,1|dzwtg0,8,1,0|e7u03z,8,1,0|e7u040,9,10,1|eimw3z,9,10,1|eimw40,8,1,0|eqk2rz,8,1,0|eqk2s0,9,10,1|f1cyrz,9,10,1|f1cys0,8,1,0|f9a5fz,8,1,0|f9a5g0,9,10,1|fkg03z,9,10,1|fkg040,8,1,0|fs083z,8,1,0|fs0840,9,10,1|g362rz,9,10,1|g362s0,8,1,0|gaqarz,8,1,0|gaqas0,9,10,1|glw5fz,9,10,1|glw5g0,8,1,0|gttc3z,8,1,0|gttc40,9,10,1|h4m83z,9,10,1|h4m840,8,1,0|hcjerz,8,1,0|hcjes0,9,10,1|hncarz,9,10,1|hncas0,8,1,0|hv9hfz,8,1,0|hv9hg0,9,10,1|i6fc3z,9,10,1|i6fc40,8,1,0|idzk3z,8,1,0|idzk40,9,10,1|ip5erz,9,10,1|ip5es0,8,1,0|iwpmrz,8,1,0|iwpms0,9,10,1|j7vhfz,9,10,1|j7vhg0,8,1,0|jffpfz,8,1,0|jffpg0,9,10,1|jqlk3z,9,10,1|jqlk40,8,1,0|jyiqrz,8,1,0|jyiqs0,9,10,1|k9bmrz,9,10,1|k9bms0,8,1,0|kh8tfz,8,1,0|kh8tg0,9,10,1|ks1pfz,9,10,1|ks1pg0,8,1,0|kzyw3z,8,1,0|kzyw40,9,10,1|lb4qrz,9,10,1|lb4qs0,8,1,0|lioyrz,8,1,0|lioys0,9,10,1|ltutfz,9,10,1|ltutg0,8,1,0|m1f1fz,8,1,0|m1f1g0,9,10,1|mckw3z,9,10,1|mckw40,8,1,0|mki2rz,8,1,0|mki2s0,9,10,1|mvayrz,9,10,1|mvays0,8,1,0|n385fz,8,1,0|n385g0,9,10,1|ne11fz,9,10,1|ne11g0,8,1,0|nly83z,8,1,0|nly840,9,10,1|nwr43z,9,10,1|nwr440,8,1,0|o4oarz,8,1,0|o4oas0,9,10,1|ofu5fz,9,10,1|ofu5g0,8,1,0|onedfz,8,1,0|onedg0,9,10,1|oyk83z,9,10,1|oyk840,8,1,0|p64g3z,8,1,0|p64g40,9,10,1|phaarz,9,10,1|phaas0,8,1,0|pp7hfz,8,1,0|pp7hg0,9,10,1|q00dfz,9,10,1|q00dg0,8,1,0|q7xk3z,8,1,0|q7xk40,9,10,1|qiqg3z,9,10,1|qiqg40,8,1,0|qqnmrz,8,1,0|qqnms0,9,10,1|r1thfz,9,10,1|r1thg0,8,1,0|r9dpfz,8,1,0|r9dpg0,9,10,1|rkjk3z,9,10,1|rkjk40,8,1,0|rs3s3z,8,1,0|rs3s40,9,10,1|s39mrz,9,10,1|s39ms0,8,1,0|sb6tfz,8,1,0|sb6tg0,9,10,1|slzpfz,9,10,1|slzpg0,8,1,0|stww3z,8,1,0|stww40,9,10,1|t4ps3z,9,10,1|t4ps40,8,1,0|tcmyrz,8,1,0|tcmys0,9,10,1|tnfurz,9,10,1|tnfus0,8,1,0|tvd1fz,8,1,0|tvd1g0,9,10,1|u6iw3z,9,10,1|u6iw40,8,1,0|ue343z,8,1,0|ue3440,9,10,1|up8yrz,9,10,1|up8ys0,8,1,0|uwt6rz,8,1,0|uwt6s0,9,10,1|v7z1fz,9,10,1|v7z1g0,8,1,0|vfw83z,8,1,0|vfw840,9,10,1|vqp43z,9,10,1|vqp440,8,1,0|vymarz,8,1,0|vymas0,9,10,1|w9f6rz,9,10,1|w9f6s0,8,1,0|whcdfz,8,1,0|whcdg0,9,10,1|wsi83z,9,10,1|wsi840,8,1,0|x02g3z,8,1,0|x02g40,9,10,1|xb8arz,9,10,1|xb8as0,8,1,0|xisirz,8,1,0|xisis0,9,10,1|xtydfz,9,10,1|xtydg0,8,1,0|y1ilfz,8,1,0|y1ilg0,9,10,1|ycog3z,9,10,1|ycog40,8,1,0|yklmrz,8,1,0|yklms0,9,10,1|yveirz,9,10,1|yveis0,8,1,0|z3bpfz,8,1,0|z3bpg0,9,10,1|ze4lfz,9,10,1|ze4lg0,8,1,0","Europe/Ljubljana|,0,332,0|-18vsmgo,10,10,0|-ezayw1,10,10,0|-ezayw0,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d6dp81,11,11,1|-d6dp80,10,10,0|-cv5zw1,10,10,0|-cv5zw0,11,11,1|-cofek1,11,11,1|-cofek0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/London|,0,347,0|-1rprx9x,1,1,0|-rzcns1,1,1,0|-rzcns0,27,10,1|-rsid41,27,10,1|-rsid40,1,1,0|-risd41,1,1,0|-risd40,27,10,1|-ragd41,27,10,1|-ragd40,1,1,0|-r0s7s1,1,1,0|-r0s7s0,27,10,1|-qr0d41,27,10,1|-qr0d40,1,1,0|-qhp6g1,1,1,0|-qhp6g0,27,10,1|-q8aag1,27,10,1|-q8aag0,1,1,0|-pyz3s1,1,1,0|-pyz3s0,27,10,1|-po4d41,27,10,1|-po4d40,1,1,0|-pfw2g1,1,1,0|-pfw2g0,27,10,1|-p6h6g1,27,10,1|-p6h6g0,1,1,0|-oxiyg1,1,1,0|-oxiyg0,27,10,1|-onfzs1,27,10,1|-onfzs0,1,1,0|-odd141,1,1,0|-odd140,27,10,1|-o5st41,27,10,1|-o5st40,1,1,0|-nuzx41,1,1,0|-nuzx40,27,10,1|-nmprs1,27,10,1|-nmprs0,1,1,0|-nbwvs1,1,1,0|-nbwvs0,27,10,1|-n39rs1,27,10,1|-n39rs0,1,1,0|-mt6t41,1,1,0|-mt6t40,27,10,1|-mkjp41,27,10,1|-mkjp40,1,1,0|-matp41,1,1,0|-matp40,27,10,1|-m1tmg1,27,10,1|-m1tmg0,1,1,0|-lrdp41,1,1,0|-lrdp40,27,10,1|-liql41,27,10,1|-liql40,1,1,0|-l8nmg1,1,1,0|-l8nmg0,27,10,1|-l00ig1,27,10,1|-l00ig0,1,1,0|-kqaig1,1,1,0|-kqaig0,27,10,1|-khafs1,27,10,1|-khafs0,1,1,0|-k77h41,1,1,0|-k77h40,27,10,1|-jykd41,27,10,1|-jykd40,1,1,0|-joheg1,1,1,0|-joheg0,27,10,1|-jfuag1,27,10,1|-jfuag0,1,1,0|-j64ag1,1,1,0|-j64ag0,27,10,1|-iwr941,27,10,1|-iwr940,1,1,0|-imoag1,1,1,0|-imoag0,27,10,1|-ie16g1,27,10,1|-ie16g0,1,1,0|-i4b6g1,1,1,0|-i4b6g0,27,10,1|-hvb3s1,27,10,1|-hvb3s0,1,1,0|-hl8541,1,1,0|-hl8540,27,10,1|-hcl141,27,10,1|-hcl140,1,1,0|-h2i2g1,1,1,0|-h2i2g0,27,10,1|-gtuyg1,27,10,1|-gtuyg0,1,1,0|-gk4yg1,1,1,0|-gk4yg0,27,10,1|-gb4vs1,27,10,1|-gb4vs0,1,1,0|-g11x41,1,1,0|-g11x40,27,10,1|-fpw2g1,27,10,1|-fpw2g0,1,1,0|-fkul41,1,1,0|-fkul40,27,10,1|-eyiyk1,27,10,1|-eyiyk0,151,11,1|-ethh81,151,11,1|-ethh80,27,10,1|-eh8qk1,27,10,1|-eh8qk0,151,11,1|-earek1,151,11,1|-earek0,27,10,1|-dyinw1,27,10,1|-dyinw0,151,11,1|-drod81,151,11,1|-drod80,27,10,1|-dfsl81,27,10,1|-dfsl80,151,11,1|-d75h81,151,11,1|-d75h80,27,10,1|-cx0nw1,27,10,1|-cx0nw0,151,11,1|-cro2k1,151,11,1|-cro2k0,27,10,1|-cncfs1,27,10,1|-cncfs0,1,1,0|-cdmfs1,1,1,0|-cdmfs0,27,10,1|-c4md41,27,10,1|-c4md40,1,1,0|-bwc7s1,1,1,0|-bwc7s0,27,10,1|-buwfw1,27,10,1|-buwfw0,151,11,1|-bos2k1,151,11,1|-bos2k0,27,10,1|-bkgfs1,27,10,1|-bkgfs0,1,1,0|-bdm541,1,1,0|-bdm540,27,10,1|-b1qd41,27,10,1|-b1qd40,1,1,0|-att6g1,1,1,0|-att6g0,27,10,1|-aj0ag1,27,10,1|-aj0ag0,1,1,0|-aad6g1,1,1,0|-aad6g0,27,10,1|-a0n6g1,27,10,1|-a0n6g0,1,1,0|-9rn3s1,1,1,0|-9rn3s0,27,10,1|-9hx3s1,27,10,1|-9hx3s0,1,1,0|-98k2g1,1,1,0|-98k2g0,27,10,1|-8yu2g1,27,10,1|-8yu2g0,1,1,0|-8ptzs1,1,1,0|-8ptzs0,27,10,1|-8h6vs1,27,10,1|-8h6vs0,1,1,0|-87gvs1,1,1,0|-87gvs0,27,10,1|-7ygt41,27,10,1|-7ygt40,1,1,0|-7odug1,1,1,0|-7odug0,27,10,1|-7fqqg1,27,10,1|-7fqqg0,1,1,0|-75at41,1,1,0|-75at40,27,10,1|-6wnp41,27,10,1|-6wnp40,1,1,0|-6mxp41,1,1,0|-6mxp40,27,10,1|-6dxmg1,27,10,1|-6dxmg0,1,1,0|-63uns1,1,1,0|-63uns0,27,10,1|-5v7js1,27,10,1|-5v7js0,1,1,0|-5l4l41,1,1,0|-5l4l40,27,10,1|-5chh41,27,10,1|-5chh40,1,1,0|-52rh41,1,1,0|-52rh40,27,10,1|-4treg1,27,10,1|-4treg0,1,1,0|-4krbs1,1,1,0|-4krbs0,27,10,1|-49lh41,27,10,1|-49lh40,1,1,0|-421941,1,1,0|-421940,27,10,1|-3qveg1,27,10,1|-3qveg0,1,1,0|-3iy7s1,1,1,0|-3iy7s0,27,10,1|-385bs1,27,10,1|-385bs0,1,1,0|-30l3s1,1,1,0|-30l3s0,27,10,1|-2pf941,27,10,1|-2pf940,1,1,0|-2hv141,1,1,0|-2hv140,27,10,1|-26p6g1,27,10,1|-26p6g0,1,1,0|-1z4yg1,1,1,0|-1z4yg0,27,10,1|-1nz3s1,27,10,1|-1nz3s0,1,1,0|-1gevs1,1,1,0|-1gevs0,27,10,1|-14w2g1,27,10,1|-14w2g0,1,1,0|-z4ns1,1,1,0|-z4ns0,27,10,1|-m6841,27,10,1|-m6840,27,10,0|yd6vz,27,10,0|yd6w0,1,1,0|15kg7z,1,1,0|15kg80,27,10,1|1h39jz,27,10,1|1h39k0,1,1,0|1oaivz,1,1,0|1oaiw0,27,10,1|1ztc7z,27,10,1|1ztc80,1,1,0|270ljz,1,1,0|270lk0,27,10,1|2ijevz,27,10,1|2ijew0,1,1,0|2pqo7z,1,1,0|2pqo80,27,10,1|319hjz,27,10,1|319hk0,1,1,0|38tpjz,1,1,0|38tpk0,27,10,1|3jzk7z,27,10,1|3jzk80,1,1,0|3rjs7z,1,1,0|3rjs80,27,10,1|42pmvz,27,10,1|42pmw0,1,1,0|4a9uvz,1,1,0|4a9uw0,27,10,1|4lso7z,27,10,1|4lso80,1,1,0|4szxjz,1,1,0|4szxk0,27,10,1|54iqvz,27,10,1|54iqw0,1,1,0|5bq07z,1,1,0|5bq080,27,10,1|5n8tjz,27,10,1|5n8tk0,1,1,0|5v5xfz,1,1,0|5v5xg0,27,10,1|65ytfz,27,10,1|65ytg0,1,1,0|6dw03z,1,1,0|6dw040,27,10,1|6oow3z,27,10,1|6oow40,1,1,0|6wm2rz,1,1,0|6wm2s0,27,10,1|77eyrz,27,10,1|77eys0,1,1,0|7fc5fz,1,1,0|7fc5g0,27,10,1|7qi03z,27,10,1|7qi040,1,1,0|7yf6rz,1,1,0|7yf6s0,27,10,1|8982rz,27,10,1|8982s0,1,1,0|8h59fz,1,1,0|8h59g0,27,10,1|8ry5fz,27,10,1|8ry5g0,1,1,0|8zvc3z,1,1,0|8zvc40,27,10,1|9ao83z,27,10,1|9ao840,1,1,0|9ilerz,1,1,0|9iles0,27,10,1|9tearz,27,10,1|9teas0,1,1,0|a1bhfz,1,1,0|a1bhg0,27,10,1|achc3z,27,10,1|achc40,1,1,0|ak1k3z,1,1,0|ak1k40,27,10,1|av7erz,27,10,1|av7es0,1,1,0|b34lfz,1,1,0|b34lg0,27,10,1|bdxhfz,27,10,1|bdxhg0,1,1,0|bluo3z,1,1,0|bluo40,27,10,1|bwnk3z,27,10,1|bwnk40,1,1,0|c4kqrz,1,1,0|c4kqs0,27,10,1|cfdmrz,27,10,1|cfdms0,1,1,0|cnatfz,1,1,0|cnatg0,27,10,1|cy3pfz,27,10,1|cy3pg0,1,1,0|d60w3z,1,1,0|d60w40,27,10,1|dgts3z,27,10,1|dgts40,1,1,0|dp3xfz,1,1,0|dp3xg0,27,10,1|dzwtfz,27,10,1|dzwtg0,1,1,0|e7u03z,1,1,0|e7u040,27,10,1|eimw3z,27,10,1|eimw40,1,1,0|eqk2rz,1,1,0|eqk2s0,27,10,1|f1cyrz,27,10,1|f1cys0,1,1,0|f9a5fz,1,1,0|f9a5g0,27,10,1|fkg03z,27,10,1|fkg040,1,1,0|fs083z,1,1,0|fs0840,27,10,1|g362rz,27,10,1|g362s0,1,1,0|gaqarz,1,1,0|gaqas0,27,10,1|glw5fz,27,10,1|glw5g0,1,1,0|gttc3z,1,1,0|gttc40,27,10,1|h4m83z,27,10,1|h4m840,1,1,0|hcjerz,1,1,0|hcjes0,27,10,1|hncarz,27,10,1|hncas0,1,1,0|hv9hfz,1,1,0|hv9hg0,27,10,1|i6fc3z,27,10,1|i6fc40,1,1,0|idzk3z,1,1,0|idzk40,27,10,1|ip5erz,27,10,1|ip5es0,1,1,0|iwpmrz,1,1,0|iwpms0,27,10,1|j7vhfz,27,10,1|j7vhg0,1,1,0|jffpfz,1,1,0|jffpg0,27,10,1|jqlk3z,27,10,1|jqlk40,1,1,0|jyiqrz,1,1,0|jyiqs0,27,10,1|k9bmrz,27,10,1|k9bms0,1,1,0|kh8tfz,1,1,0|kh8tg0,27,10,1|ks1pfz,27,10,1|ks1pg0,1,1,0|kzyw3z,1,1,0|kzyw40,27,10,1|lb4qrz,27,10,1|lb4qs0,1,1,0|lioyrz,1,1,0|lioys0,27,10,1|ltutfz,27,10,1|ltutg0,1,1,0|m1f1fz,1,1,0|m1f1g0,27,10,1|mckw3z,27,10,1|mckw40,1,1,0|mki2rz,1,1,0|mki2s0,27,10,1|mvayrz,27,10,1|mvays0,1,1,0|n385fz,1,1,0|n385g0,27,10,1|ne11fz,27,10,1|ne11g0,1,1,0|nly83z,1,1,0|nly840,27,10,1|nwr43z,27,10,1|nwr440,1,1,0|o4oarz,1,1,0|o4oas0,27,10,1|ofu5fz,27,10,1|ofu5g0,1,1,0|onedfz,1,1,0|onedg0,27,10,1|oyk83z,27,10,1|oyk840,1,1,0|p64g3z,1,1,0|p64g40,27,10,1|phaarz,27,10,1|phaas0,1,1,0|pp7hfz,1,1,0|pp7hg0,27,10,1|q00dfz,27,10,1|q00dg0,1,1,0|q7xk3z,1,1,0|q7xk40,27,10,1|qiqg3z,27,10,1|qiqg40,1,1,0|qqnmrz,1,1,0|qqnms0,27,10,1|r1thfz,27,10,1|r1thg0,1,1,0|r9dpfz,1,1,0|r9dpg0,27,10,1|rkjk3z,27,10,1|rkjk40,1,1,0|rs3s3z,1,1,0|rs3s40,27,10,1|s39mrz,27,10,1|s39ms0,1,1,0|sb6tfz,1,1,0|sb6tg0,27,10,1|slzpfz,27,10,1|slzpg0,1,1,0|stww3z,1,1,0|stww40,27,10,1|t4ps3z,27,10,1|t4ps40,1,1,0|tcmyrz,1,1,0|tcmys0,27,10,1|tnfurz,27,10,1|tnfus0,1,1,0|tvd1fz,1,1,0|tvd1g0,27,10,1|u6iw3z,27,10,1|u6iw40,1,1,0|ue343z,1,1,0|ue3440,27,10,1|up8yrz,27,10,1|up8ys0,1,1,0|uwt6rz,1,1,0|uwt6s0,27,10,1|v7z1fz,27,10,1|v7z1g0,1,1,0|vfw83z,1,1,0|vfw840,27,10,1|vqp43z,27,10,1|vqp440,1,1,0|vymarz,1,1,0|vymas0,27,10,1|w9f6rz,27,10,1|w9f6s0,1,1,0|whcdfz,1,1,0|whcdg0,27,10,1|wsi83z,27,10,1|wsi840,1,1,0|x02g3z,1,1,0|x02g40,27,10,1|xb8arz,27,10,1|xb8as0,1,1,0|xisirz,1,1,0|xisis0,27,10,1|xtydfz,27,10,1|xtydg0,1,1,0|y1ilfz,1,1,0|y1ilg0,27,10,1|ycog3z,27,10,1|ycog40,1,1,0|yklmrz,1,1,0|yklms0,27,10,1|yveirz,27,10,1|yveis0,1,1,0|z3bpfz,1,1,0|z3bpg0,27,10,1|ze4lfz,27,10,1|ze4lg0,1,1,0","Europe/Luxembourg|,0,353,0|-y89550,10,10,0|-rzo2w1,10,10,0|-rzo2w0,11,11,1|-rsilg1,11,11,1|-rsilg0,10,10,0|-rhps81,10,10,0|-rhps80,11,11,1|-raglg1,11,11,1|-raglg0,10,10,0|-qznjw1,10,10,0|-qznjw0,11,11,1|-qrqd81,11,11,1|-qrqd80,10,10,0|-qo4w41,10,10,0|-qo4w40,8,1,0|-qj59g1,8,1,0|-qj59g0,9,10,1|-q7z6g1,9,10,1|-q7z6g0,8,1,0|-q15441,8,1,0|-q15440,9,10,1|-po6ak1,9,10,1|-po6ak0,8,1,0|-pgvhg1,8,1,0|-pgvhg0,9,10,1|-p5anw1,9,10,1|-p5anw0,8,1,0|-oxj6s1,8,1,0|-oxj6s0,9,10,1|-ong5c1,9,10,1|-ong5c0,8,1,0|-odd9g1,8,1,0|-odd9g0,9,10,1|-o4pzw1,9,10,1|-o4pzw0,8,1,0|-nvq2s1,8,1,0|-nvq2s0,9,10,1|-nm0001,9,10,1|-nm0000,8,1,0|-ncl6s1,8,1,0|-ncl6s0,9,10,1|-n39xc1,9,10,1|-n39xc0,8,1,0|-mt71g1,8,1,0|-mt71g0,9,10,1|-mkjuo1,9,10,1|-mkjuo0,8,1,0|-matxg1,8,1,0|-matxg0,9,10,1|-m1ts01,9,10,1|-m1ts00,8,1,0|-lrqw41,8,1,0|-lrqw40,9,10,1|-liqqo1,9,10,1|-liqqo0,8,1,0|-l8nus1,8,1,0|-l8nus0,9,10,1|-l00ig1,9,10,1|-l00ig0,8,1,0|-kqaig1,8,1,0|-kqaig0,9,10,1|-khafs1,9,10,1|-khafs0,8,1,0|-k77h41,8,1,0|-k77h40,9,10,1|-jykd41,9,10,1|-jykd40,8,1,0|-jp7bs1,8,1,0|-jp7bs0,9,10,1|-jfuag1,9,10,1|-jfuag0,8,1,0|-j6u7s1,8,1,0|-j6u7s0,9,10,1|-iwr941,9,10,1|-iwr940,8,1,0|-ine7s1,8,1,0|-ine7s0,9,10,1|-ie16g1,9,10,1|-ie16g0,8,1,0|-i513s1,8,1,0|-i513s0,9,10,1|-hvb3s1,9,10,1|-hvb3s0,8,1,0|-hl8541,8,1,0|-hl8540,9,10,1|-hcl141,9,10,1|-hcl140,8,1,0|-h37zs1,8,1,0|-h37zs0,9,10,1|-gtuyg1,9,10,1|-gtuyg0,8,1,0|-gkuvs1,8,1,0|-gkuvs0,9,10,1|-gb4vs1,9,10,1|-gb4vs0,8,1,0|-g11x41,8,1,0|-g11x40,9,10,1|-fpw2g1,9,10,1|-fpw2g0,8,1,0|-fkul41,8,1,0|-fkul40,9,10,1|-fgsag1,9,10,1|-fgsag0,9,11,1|-e6dzw1,9,11,1|-e6dzw0,8,10,0|-dytrw1,8,10,0|-dytrw0,9,11,1|-dp3rw1,9,11,1|-dp3rw0,8,10,0|-dfqqk1,8,10,0|-dfqqk0,9,11,1|-d73mk1,9,11,1|-d73mk0,10,10,0|-cx0nw1,10,10,0|-cx0nw0,11,11,1|-cofek1,11,11,1|-cofek0,10,10,0|-cbtp81,10,10,0|-cbtp80,11,11,1|-c4kl81,11,11,1|-c4kl80,10,10,0|3s9mrz,10,10,0|3s9ms0,11,11,1|419pfz,11,11,1|419pg0,10,10,0|4azpfz,10,10,0|4azpg0,11,11,1|4kcqrz,11,11,1|4kcqs0,10,10,0|4tps3z,10,10,0|4tps40,11,11,1|532tfz,11,11,1|532tg0,10,10,0|5cstfz,10,10,0|5cstg0,11,11,1|5lsw3z,11,11,1|5lsw40,10,10,0|5v5xfz,10,10,0|5v5xg0,11,11,1|64iyrz,11,11,1|64iys0,10,10,0|6dw03z,10,10,0|6dw040,11,11,1|6n91fz,11,11,1|6n91g0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Madrid|,0,354,0|-100edc0,8,1,0|-qzlus1,8,1,0|-qzlus0,9,10,1|-qqnk01,9,10,1|-qqnk00,8,1,0|-qhalg1,8,1,0|-qhalg0,9,10,1|-q7vmo1,9,10,1|-q7vmo0,8,1,0|-nusqs1,8,1,0|-nusqs0,9,10,1|-nm0001,9,10,1|-nm0000,8,1,0|-mt71g1,8,1,0|-mt71g0,9,10,1|-mkjuo1,9,10,1|-mkjuo0,8,1,0|-matxg1,8,1,0|-matxg0,9,10,1|-m1ts01,9,10,1|-m1ts00,8,1,0|-lrqtc1,8,1,0|-lrqtc0,9,10,1|-liqqo1,9,10,1|-liqqo0,8,1,0|-l8nus1,8,1,0|-l8nus0,9,10,1|-l00o01,9,10,1|-l00o00,8,1,0|-gzf6s1,8,1,0|-gzf6s0,9,10,1|-gtv401,9,10,1|-gtv400,8,1,0|-gki5g1,8,1,0|-gki5g0,9,10,1|-gj2dk1,9,10,1|-gj2dk0,152,11,1|-gb3c81,152,11,1|-gb3c80,9,10,1|-fs2001,9,10,1|-fs2000,8,1,0|-fjrxg1,8,1,0|-fjrxg0,10,10,0|-eft481,10,10,0|-eft480,11,11,1|-e9kys1,11,11,1|-e9kys0,10,10,0|-dxsyw1,10,10,0|-dxsyw0,11,11,1|-dp5s41,11,11,1|-dp5s40,10,10,0|-df2w81,10,10,0|-df2w80,11,11,1|-d6fpg1,11,11,1|-d6fpg0,10,10,0|-cwctk1,10,10,0|-cwctk0,11,11,1|-cnpms1,11,11,1|-cnpms0,10,10,0|-cdmqw1,10,10,0|-cdmqw0,11,11,1|-c4zk41,11,11,1|-c4zk40,10,10,0|-asdmw1,10,10,0|-asdmw0,11,11,1|-akgdg1,11,11,1|-akgdg0,10,10,0|28g53z,10,10,0|28g540,11,11,1|2hgajz,11,11,1|2hgak0,10,10,0|2r67rz,10,10,0|2r67s0,11,11,1|306d7z,11,11,1|306d80,10,10,0|396d3z,10,10,0|396d40,11,11,1|3ijh7z,11,11,1|3ijh80,10,10,0|3s9efz,10,10,0|3s9eg0,11,11,1|419jvz,11,11,1|419jw0,10,10,0|4azpfz,10,10,0|4azpg0,11,11,1|4kcqrz,11,11,1|4kcqs0,10,10,0|4tps3z,10,10,0|4tps40,11,11,1|532tfz,11,11,1|532tg0,10,10,0|5cstfz,10,10,0|5cstg0,11,11,1|5lsw3z,11,11,1|5lsw40,10,10,0|5v5xfz,10,10,0|5v5xg0,11,11,1|64iyrz,11,11,1|64iys0,10,10,0|6dw03z,10,10,0|6dw040,11,11,1|6n91fz,11,11,1|6n91g0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Malta|,0,355,0|-13qyw0s,10,10,0|-rymys1,10,10,0|-rymys0,11,11,1|-rsio81,11,11,1|-rsio80,10,10,0|-rj5k41,10,10,0|-rj5k40,11,11,1|-r9qqw1,11,11,1|-r9qqw0,10,10,0|-r1idg1,10,10,0|-r1idg0,11,11,1|-qqnpk1,11,11,1|-qqnpk0,10,10,0|-qj59g1,10,10,0|-qj59g0,11,11,1|-q7zhk1,11,11,1|-q7zhk0,10,10,0|-pzcas1,10,10,0|-pzcas0,11,11,1|-ppzc81,11,11,1|-ppzc80,10,10,0|-ff59g1,10,10,0|-ff59g0,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfsl81,10,10,0|-dfsl80,11,11,1|-d75h81,11,11,1|-d75h80,10,10,0|-cx0nw1,10,10,0|-cx0nw0,11,11,1|-cohes1,11,11,1|-cohes0,10,10,0|-cf2d81,10,10,0|-cf2d80,11,11,1|-c4mfw1,11,11,1|-c4mfw0,10,10,0|-bwcg41,10,10,0|-bwcg40,11,11,1|-blwis1,11,11,1|-blwis0,10,10,0|-bec581,10,10,0|-bec580,11,11,1|-b36ak1,11,11,1|-b36ak0,10,10,0|-1vwis1,10,10,0|-1vwis0,11,11,1|-1pf9k1,11,11,1|-1pf9k0,10,10,0|-1cthg1,10,10,0|-1cthg0,11,11,1|-16p441,11,11,1|-16p440,10,10,0|-u3es1,10,10,0|-u3es0,11,11,1|-nz1g1,11,11,1|-nz1g0,10,10,0|-b0dg1,10,10,0|-b0dg0,11,11,1|-4w041,11,11,1|-4w040,10,10,0|7pp7z,10,10,0|7pp80,11,11,1|du2jz,11,11,1|du2k0,10,10,0|q2t7z,10,10,0|q2t80,11,11,1|wk57z,11,11,1|wk580,10,10,0|195ujz,10,10,0|195uk0,11,11,1|1fn6jz,11,11,1|1fn6k0,10,10,0|1oyd7z,10,10,0|1oyd80,11,11,1|1ybejz,11,11,1|1ybek0,10,10,0|28t6jz,10,10,0|28t6k0,11,11,1|2gf97z,11,11,1|2gf980,10,10,0|2rjerz,10,10,0|2rjes0,11,11,1|2zginz,11,11,1|2zgio0,10,10,0|3a9hfz,10,10,0|3a9hg0,11,11,1|3i6lbz,11,11,1|3i6lc0,10,10,0|3szk3z,10,10,0|3szk40,11,11,1|40wnzz,11,11,1|40wo00,10,10,0|4bpmrz,10,10,0|4bpms0,11,11,1|4jmqnz,11,11,1|4jmqo0,10,10,0|4ufpfz,10,10,0|4ufpg0,11,11,1|52ctbz,11,11,1|52ctc0,10,10,0|5chpfz,10,10,0|5chpg0,11,11,1|5lfunz,11,11,1|5lfuo0,10,10,0|5v5xfz,10,10,0|5v5xg0,11,11,1|64iyrz,11,11,1|64iys0,10,10,0|6dw03z,10,10,0|6dw040,11,11,1|6n91fz,11,11,1|6n91g0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Mariehamn|,0,348,0|-1bss9yd,77,348,0|-peghye,77,348,0|-peghyd,15,11,0|-ehco81,15,11,0|-ehco80,16,6,1|-e7vxk1,16,6,1|-e7vxk0,15,11,0|5v5unz,15,11,0|5v5uo0,16,6,1|64ivzz,16,6,1|64iw00,15,11,0|6dvxbz,15,11,0|6dvxc0,16,6,1|6n8ynz,16,6,1|6n8yo0,15,11,0|6wm2rz,15,11,0|6wm2s0,16,6,1|75z43z,16,6,1|75z440,15,11,0|7fc5fz,15,11,0|7fc5g0,16,6,1|7p25fz,16,6,1|7p25g0,15,11,0|7yf6rz,15,11,0|7yf6s0,16,6,1|87s83z,16,6,1|87s840,15,11,0|8h59fz,15,11,0|8h59g0,16,6,1|8qiarz,16,6,1|8qias0,15,11,0|8zvc3z,15,11,0|8zvc40,16,6,1|998dfz,16,6,1|998dg0,15,11,0|9ilerz,15,11,0|9iles0,16,6,1|9ryg3z,16,6,1|9ryg40,15,11,0|a1bhfz,15,11,0|a1bhg0,16,6,1|aaoirz,16,6,1|aaois0,15,11,0|ak1k3z,15,11,0|ak1k40,16,6,1|atrk3z,16,6,1|atrk40,15,11,0|b34lfz,15,11,0|b34lg0,16,6,1|bchmrz,16,6,1|bchms0,15,11,0|bluo3z,15,11,0|bluo40,16,6,1|bv7pfz,16,6,1|bv7pg0,15,11,0|c4kqrz,15,11,0|c4kqs0,16,6,1|cdxs3z,16,6,1|cdxs40,15,11,0|cnatfz,15,11,0|cnatg0,16,6,1|cwnurz,16,6,1|cwnus0,15,11,0|d60w3z,15,11,0|d60w40,16,6,1|dfdxfz,16,6,1|dfdxg0,15,11,0|dp3xfz,15,11,0|dp3xg0,16,6,1|dzwtfz,16,6,1|dzwtg0,15,11,0|e7u03z,15,11,0|e7u040,16,6,1|eimw3z,16,6,1|eimw40,15,11,0|eqk2rz,15,11,0|eqk2s0,16,6,1|f1cyrz,16,6,1|f1cys0,15,11,0|f9a5fz,15,11,0|f9a5g0,16,6,1|fkg03z,16,6,1|fkg040,15,11,0|fs083z,15,11,0|fs0840,16,6,1|g362rz,16,6,1|g362s0,15,11,0|gaqarz,15,11,0|gaqas0,16,6,1|glw5fz,16,6,1|glw5g0,15,11,0|gttc3z,15,11,0|gttc40,16,6,1|h4m83z,16,6,1|h4m840,15,11,0|hcjerz,15,11,0|hcjes0,16,6,1|hncarz,16,6,1|hncas0,15,11,0|hv9hfz,15,11,0|hv9hg0,16,6,1|i6fc3z,16,6,1|i6fc40,15,11,0|idzk3z,15,11,0|idzk40,16,6,1|ip5erz,16,6,1|ip5es0,15,11,0|iwpmrz,15,11,0|iwpms0,16,6,1|j7vhfz,16,6,1|j7vhg0,15,11,0|jffpfz,15,11,0|jffpg0,16,6,1|jqlk3z,16,6,1|jqlk40,15,11,0|jyiqrz,15,11,0|jyiqs0,16,6,1|k9bmrz,16,6,1|k9bms0,15,11,0|kh8tfz,15,11,0|kh8tg0,16,6,1|ks1pfz,16,6,1|ks1pg0,15,11,0|kzyw3z,15,11,0|kzyw40,16,6,1|lb4qrz,16,6,1|lb4qs0,15,11,0|lioyrz,15,11,0|lioys0,16,6,1|ltutfz,16,6,1|ltutg0,15,11,0|m1f1fz,15,11,0|m1f1g0,16,6,1|mckw3z,16,6,1|mckw40,15,11,0|mki2rz,15,11,0|mki2s0,16,6,1|mvayrz,16,6,1|mvays0,15,11,0|n385fz,15,11,0|n385g0,16,6,1|ne11fz,16,6,1|ne11g0,15,11,0|nly83z,15,11,0|nly840,16,6,1|nwr43z,16,6,1|nwr440,15,11,0|o4oarz,15,11,0|o4oas0,16,6,1|ofu5fz,16,6,1|ofu5g0,15,11,0|onedfz,15,11,0|onedg0,16,6,1|oyk83z,16,6,1|oyk840,15,11,0|p64g3z,15,11,0|p64g40,16,6,1|phaarz,16,6,1|phaas0,15,11,0|pp7hfz,15,11,0|pp7hg0,16,6,1|q00dfz,16,6,1|q00dg0,15,11,0|q7xk3z,15,11,0|q7xk40,16,6,1|qiqg3z,16,6,1|qiqg40,15,11,0|qqnmrz,15,11,0|qqnms0,16,6,1|r1thfz,16,6,1|r1thg0,15,11,0|r9dpfz,15,11,0|r9dpg0,16,6,1|rkjk3z,16,6,1|rkjk40,15,11,0|rs3s3z,15,11,0|rs3s40,16,6,1|s39mrz,16,6,1|s39ms0,15,11,0|sb6tfz,15,11,0|sb6tg0,16,6,1|slzpfz,16,6,1|slzpg0,15,11,0|stww3z,15,11,0|stww40,16,6,1|t4ps3z,16,6,1|t4ps40,15,11,0|tcmyrz,15,11,0|tcmys0,16,6,1|tnfurz,16,6,1|tnfus0,15,11,0|tvd1fz,15,11,0|tvd1g0,16,6,1|u6iw3z,16,6,1|u6iw40,15,11,0|ue343z,15,11,0|ue3440,16,6,1|up8yrz,16,6,1|up8ys0,15,11,0|uwt6rz,15,11,0|uwt6s0,16,6,1|v7z1fz,16,6,1|v7z1g0,15,11,0|vfw83z,15,11,0|vfw840,16,6,1|vqp43z,16,6,1|vqp440,15,11,0|vymarz,15,11,0|vymas0,16,6,1|w9f6rz,16,6,1|w9f6s0,15,11,0|whcdfz,15,11,0|whcdg0,16,6,1|wsi83z,16,6,1|wsi840,15,11,0|x02g3z,15,11,0|x02g40,16,6,1|xb8arz,16,6,1|xb8as0,15,11,0|xisirz,15,11,0|xisis0,16,6,1|xtydfz,16,6,1|xtydg0,15,11,0|y1ilfz,15,11,0|y1ilg0,16,6,1|ycog3z,16,6,1|ycog40,15,11,0|yklmrz,15,11,0|yklms0,16,6,1|yveirz,16,6,1|yveis0,15,11,0|z3bpfz,15,11,0|z3bpg0,16,6,1|ze4lfz,16,6,1|ze4lg0,15,11,0","Europe/Minsk|,0,356,0|-1ayy7rs,21,357,0|-nu113d,21,357,0|-nu113c,15,11,0|-kmr1k1,15,11,0|-kmr1k0,148,6,0|-evpf01,148,6,0|-evpf00,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-db2g81,11,11,1|-db2g80,148,6,0|5vb6bz,148,6,0|5vb6c0,149,209,1|64pzjz,149,209,1|64pzk0,148,6,0|6e33nz,148,6,0|6e33o0,149,209,1|6nhwvz,149,209,1|6nhww0,148,6,0|6wv0zz,148,6,0|6wv100,149,209,1|769u7z,149,209,1|769u80,148,6,0|7foszz,148,6,0|7fot00,149,209,1|7p1zvz,149,209,1|7p1zw0,148,6,0|7yf17z,148,6,0|7yf180,149,209,1|87s2jz,149,209,1|87s2k0,148,6,0|8h53vz,148,6,0|8h53w0,149,209,1|8qi57z,149,209,1|8qi580,148,6,0|8zv6jz,148,6,0|8zv6k0,149,209,1|9987vz,149,209,1|9987w0,148,6,0|9il97z,148,6,0|9il980,149,209,1|9ryajz,149,209,1|9ryak0,148,6,0|a1bbvz,148,6,0|a1bbw0,149,209,1|aaod7z,149,209,1|aaod80,148,6,0|b34fvz,148,6,0|b34fw0,16,6,1|bchjzz,16,6,1|bchk00,15,11,0|blulbz,15,11,0|blulc0,16,6,1|bv7mnz,16,6,1|bv7mo0,15,11,0|c4knzz,15,11,0|c4ko00,16,6,1|cdxpbz,16,6,1|cdxpc0,15,11,0|cnaqnz,15,11,0|cnaqo0,16,6,1|cwnrzz,16,6,1|cwns00,15,11,0|d60tbz,15,11,0|d60tc0,16,6,1|dfdunz,16,6,1|dfduo0,15,11,0|dp3unz,15,11,0|dp3uo0,16,6,1|dzwqnz,16,6,1|dzwqo0,15,11,0|e7txbz,15,11,0|e7txc0,16,6,1|eimtbz,16,6,1|eimtc0,15,11,0|eqjzzz,15,11,0|eqk000,16,6,1|f1cvzz,16,6,1|f1cw00,15,11,0|f9a2nz,15,11,0|f9a2o0,16,6,1|fkfxbz,16,6,1|fkfxc0,15,11,0|fs05bz,15,11,0|fs05c0,16,6,1|g35zzz,16,6,1|g36000,15,11,0|gaq7zz,15,11,0|gaq800,16,6,1|glw2nz,16,6,1|glw2o0,15,11,0|gtt9bz,15,11,0|gtt9c0,16,6,1|h4m5bz,16,6,1|h4m5c0,15,11,0|hcjbzz,15,11,0|hcjc00,16,6,1|hnc7zz,16,6,1|hnc800,15,11,0|hv9enz,15,11,0|hv9eo0,16,6,1|i6f9bz,16,6,1|i6f9c0,15,11,0|idzhbz,15,11,0|idzhc0,16,6,1|ip5bzz,16,6,1|ip5c00,15,11,0|iwpjzz,15,11,0|iwpk00,16,6,1|j7venz,16,6,1|j7veo0,15,11,0|jffmnz,15,11,0|jffmo0,16,6,1|jqlhbz,16,6,1|jqlhc0,15,11,0|jyinzz,15,11,0|jyio00,16,6,1|k9bjzz,16,6,1|k9bk00,15,11,0|kh8qnz,15,11,0|kh8qo0,16,6,1|ks1mnz,16,6,1|ks1mo0,15,11,0|kzytbz,15,11,0|kzytc0,16,6,1|lb4nzz,16,6,1|lb4o00,15,11,0|liovzz,15,11,0|liow00,100,6,0","Europe/Monaco|,0,358,0|-14hnyp8,7,9,0|-uo2b3m,7,9,0|-uo2b3l,8,1,0|-ry2lg1,8,1,0|-ry2lg0,9,10,1|-rsgqs1,9,10,1|-rsgqs0,8,1,0|-rjiis1,8,1,0|-rjiis0,9,10,1|-r9dpg1,9,10,1|-r9dpg0,8,1,0|-r1idg1,8,1,0|-r1idg0,9,10,1|-qqnms1,9,10,1|-qqnms0,8,1,0|-qj59g1,8,1,0|-qj59g0,9,10,1|-q7xk41,9,10,1|-q7xk40,8,1,0|-q15441,8,1,0|-q15440,9,10,1|-po6g41,9,10,1|-po6g40,8,1,0|-pgvhg1,8,1,0|-pgvhg0,9,10,1|-p5atg1,9,10,1|-p5atg0,8,1,0|-oxj6s1,8,1,0|-oxj6s0,9,10,1|-ong841,9,10,1|-ong840,8,1,0|-obkg41,8,1,0|-obkg40,9,10,1|-o4q5g1,9,10,1|-o4q5g0,8,1,0|-nvq2s1,8,1,0|-nvq2s0,9,10,1|-nm02s1,9,10,1|-nm02s0,8,1,0|-ncn1g1,8,1,0|-ncn1g0,9,10,1|-n3a041,9,10,1|-n3a040,8,1,0|-mt71g1,8,1,0|-mt71g0,9,10,1|-mkjxg1,9,10,1|-mkjxg0,8,1,0|-matxg1,8,1,0|-matxg0,9,10,1|-m1tus1,9,10,1|-m1tus0,8,1,0|-lrqw41,8,1,0|-lrqw40,9,10,1|-liqtg1,9,10,1|-liqtg0,8,1,0|-l8nus1,8,1,0|-l8nus0,9,10,1|-l00qs1,9,10,1|-l00qs0,8,1,0|-kqaqs1,8,1,0|-kqaqs0,9,10,1|-khao41,9,10,1|-khao40,8,1,0|-k77pg1,8,1,0|-k77pg0,9,10,1|-jyklg1,9,10,1|-jyklg0,8,1,0|-jp7k41,8,1,0|-jp7k40,9,10,1|-jfuis1,9,10,1|-jfuis0,8,1,0|-j6ug41,8,1,0|-j6ug40,9,10,1|-iwrhg1,9,10,1|-iwrhg0,8,1,0|-ineg41,8,1,0|-ineg40,9,10,1|-ie1es1,9,10,1|-ie1es0,8,1,0|-i51c41,8,1,0|-i51c40,9,10,1|-hvbc41,9,10,1|-hvbc40,8,1,0|-hl8dg1,8,1,0|-hl8dg0,9,10,1|-hcl9g1,9,10,1|-hcl9g0,8,1,0|-h38841,8,1,0|-h38840,9,10,1|-gtv6s1,9,10,1|-gtv6s0,8,1,0|-gkv441,8,1,0|-gkv440,9,10,1|-gb5441,9,10,1|-gb5440,8,1,0|-g125g1,8,1,0|-g125g0,9,10,1|-fpwas1,9,10,1|-fpwas0,8,1,0|-fkul41,8,1,0|-fkul40,9,10,1|-eyh9g1,9,10,1|-eyh9g0,152,11,1|-eqk5k1,152,11,1|-eqk5k0,9,10,1|-eimw41,9,10,1|-eimw40,152,11,1|-e6dzw1,152,11,1|-e6dzw0,9,10,1|-dytrw1,9,10,1|-dytrw0,152,11,1|-dp3rw1,152,11,1|-dp3rw0,9,10,1|-dfqqk1,9,10,1|-dfqqk0,152,11,1|-d62qs1,152,11,1|-d62qs0,9,10,1|-cx0nw1,9,10,1|-cx0nw0,152,11,1|-cofek1,152,11,1|-cofek0,10,10,0|396inz,10,10,0|396io0,11,11,1|3ijh7z,11,11,1|3ijh80,10,10,0|3s9mrz,10,10,0|3s9ms0,11,11,1|419pfz,11,11,1|419pg0,10,10,0|4azpfz,10,10,0|4azpg0,11,11,1|4kcqrz,11,11,1|4kcqs0,10,10,0|4tps3z,10,10,0|4tps40,11,11,1|532tfz,11,11,1|532tg0,10,10,0|5cstfz,10,10,0|5cstg0,11,11,1|5lsw3z,11,11,1|5lsw40,10,10,0|5v5xfz,10,10,0|5v5xg0,11,11,1|64iyrz,11,11,1|64iys0,10,10,0|6dw03z,10,10,0|6dw040,11,11,1|6n91fz,11,11,1|6n91g0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Moscow|,0,359,0|-1ayy9mh,21,359,0|-rx5dmi,21,359,0|-rx5dmh,21,360,0|-refds8,21,360,0|-refds7,50,361,1|-r57wg8,50,361,1|-r57wg7,21,360,0|-qx8xw8,21,360,0|-qx8xw7,153,362,1|-qrqps8,153,362,1|-qrqps7,50,361,1|-qeh0k8,50,361,1|-qeh0k7,153,362,1|-qcx401,153,362,1|-qcx400,149,209,1|-qak8g1,149,209,1|-qak8g0,148,6,0|-pibkg1,148,6,0|-pibkg0,149,209,1|-pgkok1,149,209,1|-pgkok0,92,194,1|-p84z81,92,194,1|-p84z80,149,209,1|-p6lcg1,149,209,1|-p6lcg0,148,6,0|-ontcc1,148,6,0|-ontcc0,15,11,0|-kmr1k1,15,11,0|-kmr1k0,148,6,0|5vb6bz,148,6,0|5vb6c0,149,209,1|64pzjz,149,209,1|64pzk0,148,6,0|6e33nz,148,6,0|6e33o0,149,209,1|6nhwvz,149,209,1|6nhww0,148,6,0|6wv0zz,148,6,0|6wv100,149,209,1|769u7z,149,209,1|769u80,148,6,0|7foszz,148,6,0|7fot00,149,209,1|7p1zvz,149,209,1|7p1zw0,148,6,0|7yf17z,148,6,0|7yf180,149,209,1|87s2jz,149,209,1|87s2k0,148,6,0|8h53vz,148,6,0|8h53w0,149,209,1|8qi57z,149,209,1|8qi580,148,6,0|8zv6jz,148,6,0|8zv6k0,149,209,1|9987vz,149,209,1|9987w0,148,6,0|9il97z,148,6,0|9il980,149,209,1|9ryajz,149,209,1|9ryak0,148,6,0|a1bbvz,148,6,0|a1bbw0,149,209,1|aaod7z,149,209,1|aaod80,148,6,0|ak1ejz,148,6,0|ak1ek0,149,209,1|atrejz,149,209,1|atrek0,148,6,0|b34fvz,148,6,0|b34fw0,16,6,1|bchjzz,16,6,1|bchk00,15,11,0|bi8ynz,15,11,0|bi8yo0,148,6,0|bluijz,148,6,0|bluik0,149,209,1|bv7jvz,149,209,1|bv7jw0,148,6,0|c4kl7z,148,6,0|c4kl80,149,209,1|cdxmjz,149,209,1|cdxmk0,148,6,0|cnanvz,148,6,0|cnanw0,149,209,1|cwnp7z,149,209,1|cwnp80,148,6,0|d60qjz,148,6,0|d60qk0,149,209,1|dfdrvz,149,209,1|dfdrw0,148,6,0|dp3rvz,148,6,0|dp3rw0,149,209,1|dzwnvz,149,209,1|dzwnw0,148,6,0|e7tujz,148,6,0|e7tuk0,149,209,1|eimqjz,149,209,1|eimqk0,148,6,0|eqjx7z,148,6,0|eqjx80,149,209,1|f1ct7z,149,209,1|f1ct80,148,6,0|f99zvz,148,6,0|f99zw0,149,209,1|fkfujz,149,209,1|fkfuk0,148,6,0|fs02jz,148,6,0|fs02k0,149,209,1|g35x7z,149,209,1|g35x80,148,6,0|gaq57z,148,6,0|gaq580,149,209,1|glvzvz,149,209,1|glvzw0,148,6,0|gtt6jz,148,6,0|gtt6k0,149,209,1|h4m2jz,149,209,1|h4m2k0,148,6,0|hcj97z,148,6,0|hcj980,149,209,1|hnc57z,149,209,1|hnc580,148,6,0|hv9bvz,148,6,0|hv9bw0,149,209,1|i6f6jz,149,209,1|i6f6k0,148,6,0|idzejz,148,6,0|idzek0,149,209,1|ip597z,149,209,1|ip5980,148,6,0|iwph7z,148,6,0|iwph80,149,209,1|j7vbvz,149,209,1|j7vbw0,148,6,0|jffjvz,148,6,0|jffjw0,149,209,1|jqlejz,149,209,1|jqlek0,148,6,0|jyil7z,148,6,0|jyil80,149,209,1|k9bh7z,149,209,1|k9bh80,148,6,0|kh8nvz,148,6,0|kh8nw0,149,209,1|ks1jvz,149,209,1|ks1jw0,148,6,0|kzyqjz,148,6,0|kzyqk0,149,209,1|lb4l7z,149,209,1|lb4l80,148,6,0|liot7z,148,6,0|liot80,148,209,0|ne0t3z,148,209,0|ne0t40,148,6,0","Europe/Oslo|,0,202,0|-1353tzo,10,10,0|-rzayo1,10,10,0|-rzayo0,11,11,1|-rskiw1,11,11,1|-rskiw0,10,10,0|-fc7s81,10,10,0|-fc7s80,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d6dp81,11,11,1|-d6dp80,10,10,0|-cx0nw1,10,10,0|-cx0nw0,11,11,1|-cnnmk1,11,11,1|-cnnmk0,10,10,0|-5mxh81,10,10,0|-5mxh80,11,11,1|-5d7h81,11,11,1|-5d7h80,10,10,0|-53ufw1,10,10,0|-53ufw0,11,11,1|-4uhek1,11,11,1|-4uhek0,10,10,0|-4l4d81,10,10,0|-4l4d80,11,11,1|-4brbw1,11,11,1|-4brbw0,10,10,0|-42eak1,10,10,0|-42eak0,11,11,1|-3t1981,11,11,1|-3t1980,10,10,0|-3jo7w1,10,10,0|-3jo7w0,11,11,1|-3ab6k1,11,11,1|-3ab6k0,10,10,0|-30y581,10,10,0|-30y580,11,11,1|-2r8581,11,11,1|-2r8580,10,10,0|-2g2ak1,10,10,0|-2g2ak0,11,11,1|-28i2k1,11,11,1|-28i2k0,10,10,0|5cstfz,10,10,0|5cstg0,11,11,1|5lsw3z,11,11,1|5lsw40,10,10,0|5v5xfz,10,10,0|5v5xg0,11,11,1|64iyrz,11,11,1|64iys0,10,10,0|6dw03z,10,10,0|6dw040,11,11,1|6n91fz,11,11,1|6n91g0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Paris|,0,9,0|-154gb3l,7,9,0|-uozn3m,7,9,0|-uozn3l,8,1,0|-ry2lg1,8,1,0|-ry2lg0,9,10,1|-rsgqs1,9,10,1|-rsgqs0,8,1,0|-rjiis1,8,1,0|-rjiis0,9,10,1|-r9dpg1,9,10,1|-r9dpg0,8,1,0|-r1idg1,8,1,0|-r1idg0,9,10,1|-qqnms1,9,10,1|-qqnms0,8,1,0|-qj59g1,8,1,0|-qj59g0,9,10,1|-q7xk41,9,10,1|-q7xk40,8,1,0|-q15441,8,1,0|-q15440,9,10,1|-po6g41,9,10,1|-po6g40,8,1,0|-pgvhg1,8,1,0|-pgvhg0,9,10,1|-p5atg1,9,10,1|-p5atg0,8,1,0|-oxj6s1,8,1,0|-oxj6s0,9,10,1|-ong841,9,10,1|-ong840,8,1,0|-obkg41,8,1,0|-obkg40,9,10,1|-o4q5g1,9,10,1|-o4q5g0,8,1,0|-nvq2s1,8,1,0|-nvq2s0,9,10,1|-nm02s1,9,10,1|-nm02s0,8,1,0|-ncn1g1,8,1,0|-ncn1g0,9,10,1|-n3a041,9,10,1|-n3a040,8,1,0|-mt71g1,8,1,0|-mt71g0,9,10,1|-mkjxg1,9,10,1|-mkjxg0,8,1,0|-matxg1,8,1,0|-matxg0,9,10,1|-m1tus1,9,10,1|-m1tus0,8,1,0|-lrqw41,8,1,0|-lrqw40,9,10,1|-liqtg1,9,10,1|-liqtg0,8,1,0|-l8nus1,8,1,0|-l8nus0,9,10,1|-l00qs1,9,10,1|-l00qs0,8,1,0|-kqaqs1,8,1,0|-kqaqs0,9,10,1|-khao41,9,10,1|-khao40,8,1,0|-k77pg1,8,1,0|-k77pg0,9,10,1|-jyklg1,9,10,1|-jyklg0,8,1,0|-jp7k41,8,1,0|-jp7k40,9,10,1|-jfuis1,9,10,1|-jfuis0,8,1,0|-j6ug41,8,1,0|-j6ug40,9,10,1|-iwrhg1,9,10,1|-iwrhg0,8,1,0|-ineg41,8,1,0|-ineg40,9,10,1|-ie1es1,9,10,1|-ie1es0,8,1,0|-i51c41,8,1,0|-i51c40,9,10,1|-hvbc41,9,10,1|-hvbc40,8,1,0|-hl8dg1,8,1,0|-hl8dg0,9,10,1|-hcl9g1,9,10,1|-hcl9g0,8,1,0|-h38841,8,1,0|-h38840,9,10,1|-gtv6s1,9,10,1|-gtv6s0,8,1,0|-gkv441,8,1,0|-gkv440,9,10,1|-gb5441,9,10,1|-gb5440,8,1,0|-g125g1,8,1,0|-g125g0,9,10,1|-fpwas1,9,10,1|-fpwas0,8,1,0|-fkul41,8,1,0|-fkul40,9,10,1|-ff5c81,9,10,1|-ff5c80,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d8caw1,11,11,1|-d8caw0,152,11,1|-d62qs1,152,11,1|-d62qs0,9,10,1|-cx0nw1,9,10,1|-cx0nw0,152,11,1|-cofek1,152,11,1|-cofek0,10,10,0|396inz,10,10,0|396io0,11,11,1|3ijh7z,11,11,1|3ijh80,10,10,0|3s9mrz,10,10,0|3s9ms0,11,11,1|419pfz,11,11,1|419pg0,10,10,0|4azpfz,10,10,0|4azpg0,11,11,1|4kcqrz,11,11,1|4kcqs0,10,10,0|4tps3z,10,10,0|4tps40,11,11,1|532tfz,11,11,1|532tg0,10,10,0|5cstfz,10,10,0|5cstg0,11,11,1|5lsw3z,11,11,1|5lsw40,10,10,0|5v5xfz,10,10,0|5v5xg0,11,11,1|64iyrz,11,11,1|64iys0,10,10,0|6dw03z,10,10,0|6dw040,11,11,1|6n91fz,11,11,1|6n91g0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Podgorica|,0,332,0|-18vsmgo,10,10,0|-ezayw1,10,10,0|-ezayw0,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d6dp81,11,11,1|-d6dp80,10,10,0|-cv5zw1,10,10,0|-cv5zw0,11,11,1|-cofek1,11,11,1|-cofek0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Prague|,0,334,0|-1qmkw08,7,334,0|-14u7uo9,7,334,0|-14u7uo8,10,10,0|-s0e081,10,10,0|-s0e080,11,11,1|-rsilg1,11,11,1|-rsilg0,10,10,0|-ridmk1,10,10,0|-ridmk0,11,11,1|-ragfw1,11,11,1|-ragfw0,10,10,0|-qznjw1,10,10,0|-qznjw0,11,11,1|-qrqd81,11,11,1|-qrqd80,10,10,0|-fizzw1,10,10,0|-fizzw0,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d6dp81,11,11,1|-d6dp80,10,10,0|-cx0nw1,10,10,0|-cx0nw0,11,11,1|-cnnmk1,11,11,1|-cnnmk0,10,10,0|-cchrw1,10,10,0|-cchrw0,11,11,1|-c4mfw1,11,11,1|-c4mfw0,10,10,0|-c1qns1,10,10,0|-c1qns0,1,1,1|-bxf3s1,1,1,1|-bxf3s0,10,10,0|-bujh81,10,10,0|-bujh80,11,11,1|-blwd81,11,11,1|-blwd80,10,10,0|-bbtek1,10,10,0|-bbtek0,11,11,1|-b36ak1,11,11,1|-b36ak0,10,10,0|-ati581,10,10,0|-ati580,11,11,1|-akg7w1,11,11,1|-akg7w0,10,10,0|4tps3z,10,10,0|4tps40,11,11,1|532tfz,11,11,1|532tg0,10,10,0|5cstfz,10,10,0|5cstg0,11,11,1|5lsw3z,11,11,1|5lsw40,10,10,0|5v5xfz,10,10,0|5v5xg0,11,11,1|64iyrz,11,11,1|64iys0,10,10,0|6dw03z,10,10,0|6dw040,11,11,1|6n91fz,11,11,1|6n91g0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Riga|,0,363,0|-1ayy74y,136,363,0|-qznlkz,136,363,0|-qznlky,154,364,1|-qrqewz,154,364,1|-qrqewy,136,363,0|-qhllkz,136,363,0|-qhllky,154,364,1|-qez5kz,154,364,1|-qez5ky,136,363,0|-ms0hsz,136,363,0|-ms0hsy,15,11,0|-fciw81,15,11,0|-fciw80,148,6,0|-evjv01,148,6,0|-evjv00,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d6dp81,11,11,1|-d6dp80,10,10,0|-d5thg1,10,10,0|-d5thg0,148,6,0|5vb6bz,148,6,0|5vb6c0,149,209,1|64pzjz,149,209,1|64pzk0,148,6,0|6e33nz,148,6,0|6e33o0,149,209,1|6nhwvz,149,209,1|6nhww0,148,6,0|6wv0zz,148,6,0|6wv100,149,209,1|769u7z,149,209,1|769u80,148,6,0|7foszz,148,6,0|7fot00,149,209,1|7p1zvz,149,209,1|7p1zw0,148,6,0|7yf17z,148,6,0|7yf180,149,209,1|87s2jz,149,209,1|87s2k0,148,6,0|8h53vz,148,6,0|8h53w0,149,209,1|8qi57z,149,209,1|8qi580,148,6,0|8zv6jz,148,6,0|8zv6k0,149,209,1|9987vz,149,209,1|9987w0,148,6,0|9il97z,148,6,0|9il980,149,209,1|9ryajz,149,209,1|9ryak0,148,6,0|a1bbvz,148,6,0|a1bbw0,16,6,1|aaofzz,16,6,1|aaog00,15,11,0|ak1hbz,15,11,0|ak1hc0,16,6,1|atrhbz,16,6,1|atrhc0,15,11,0|b34inz,15,11,0|b34io0,16,6,1|bchjzz,16,6,1|bchk00,15,11,0|blulbz,15,11,0|blulc0,16,6,1|bv7mnz,16,6,1|bv7mo0,15,11,0|c4knzz,15,11,0|c4ko00,16,6,1|cdxpbz,16,6,1|cdxpc0,15,11,0|cnaqnz,15,11,0|cnaqo0,16,6,1|cwnrzz,16,6,1|cwns00,15,11,0|d60tbz,15,11,0|d60tc0,16,6,1|dfdunz,16,6,1|dfduo0,15,11,0|dp3unz,15,11,0|dp3uo0,16,6,1|dygvzz,16,6,1|dygw00,15,11,0|e7u03z,15,11,0|e7u040,16,6,1|eimw3z,16,6,1|eimw40,15,11,0|eqk2rz,15,11,0|eqk2s0,16,6,1|f1cyrz,16,6,1|f1cys0,15,11,0|f9a5fz,15,11,0|f9a5g0,16,6,1|fkg03z,16,6,1|fkg040,15,11,0|gaqarz,15,11,0|gaqas0,16,6,1|glw5fz,16,6,1|glw5g0,15,11,0|gttc3z,15,11,0|gttc40,16,6,1|h4m83z,16,6,1|h4m840,15,11,0|hcjerz,15,11,0|hcjes0,16,6,1|hncarz,16,6,1|hncas0,15,11,0|hv9hfz,15,11,0|hv9hg0,16,6,1|i6fc3z,16,6,1|i6fc40,15,11,0|idzk3z,15,11,0|idzk40,16,6,1|ip5erz,16,6,1|ip5es0,15,11,0|iwpmrz,15,11,0|iwpms0,16,6,1|j7vhfz,16,6,1|j7vhg0,15,11,0|jffpfz,15,11,0|jffpg0,16,6,1|jqlk3z,16,6,1|jqlk40,15,11,0|jyiqrz,15,11,0|jyiqs0,16,6,1|k9bmrz,16,6,1|k9bms0,15,11,0|kh8tfz,15,11,0|kh8tg0,16,6,1|ks1pfz,16,6,1|ks1pg0,15,11,0|kzyw3z,15,11,0|kzyw40,16,6,1|lb4qrz,16,6,1|lb4qs0,15,11,0|lioyrz,15,11,0|lioys0,16,6,1|ltutfz,16,6,1|ltutg0,15,11,0|m1f1fz,15,11,0|m1f1g0,16,6,1|mckw3z,16,6,1|mckw40,15,11,0|mki2rz,15,11,0|mki2s0,16,6,1|mvayrz,16,6,1|mvays0,15,11,0|n385fz,15,11,0|n385g0,16,6,1|ne11fz,16,6,1|ne11g0,15,11,0|nly83z,15,11,0|nly840,16,6,1|nwr43z,16,6,1|nwr440,15,11,0|o4oarz,15,11,0|o4oas0,16,6,1|ofu5fz,16,6,1|ofu5g0,15,11,0|onedfz,15,11,0|onedg0,16,6,1|oyk83z,16,6,1|oyk840,15,11,0|p64g3z,15,11,0|p64g40,16,6,1|phaarz,16,6,1|phaas0,15,11,0|pp7hfz,15,11,0|pp7hg0,16,6,1|q00dfz,16,6,1|q00dg0,15,11,0|q7xk3z,15,11,0|q7xk40,16,6,1|qiqg3z,16,6,1|qiqg40,15,11,0|qqnmrz,15,11,0|qqnms0,16,6,1|r1thfz,16,6,1|r1thg0,15,11,0|r9dpfz,15,11,0|r9dpg0,16,6,1|rkjk3z,16,6,1|rkjk40,15,11,0|rs3s3z,15,11,0|rs3s40,16,6,1|s39mrz,16,6,1|s39ms0,15,11,0|sb6tfz,15,11,0|sb6tg0,16,6,1|slzpfz,16,6,1|slzpg0,15,11,0|stww3z,15,11,0|stww40,16,6,1|t4ps3z,16,6,1|t4ps40,15,11,0|tcmyrz,15,11,0|tcmys0,16,6,1|tnfurz,16,6,1|tnfus0,15,11,0|tvd1fz,15,11,0|tvd1g0,16,6,1|u6iw3z,16,6,1|u6iw40,15,11,0|ue343z,15,11,0|ue3440,16,6,1|up8yrz,16,6,1|up8ys0,15,11,0|uwt6rz,15,11,0|uwt6s0,16,6,1|v7z1fz,16,6,1|v7z1g0,15,11,0|vfw83z,15,11,0|vfw840,16,6,1|vqp43z,16,6,1|vqp440,15,11,0|vymarz,15,11,0|vymas0,16,6,1|w9f6rz,16,6,1|w9f6s0,15,11,0|whcdfz,15,11,0|whcdg0,16,6,1|wsi83z,16,6,1|wsi840,15,11,0|x02g3z,15,11,0|x02g40,16,6,1|xb8arz,16,6,1|xb8as0,15,11,0|xisirz,15,11,0|xisis0,16,6,1|xtydfz,16,6,1|xtydg0,15,11,0|y1ilfz,15,11,0|y1ilg0,16,6,1|ycog3z,16,6,1|ycog40,15,11,0|yklmrz,15,11,0|yklms0,16,6,1|yveirz,16,6,1|yveis0,15,11,0|z3bpfz,15,11,0|z3bpg0,16,6,1|ze4lfz,16,6,1|ze4lg0,15,11,0","Europe/Rome|,0,365,0|-1hs7rn8,136,365,0|-13r0qs1,136,365,0|-13r0qs0,10,10,0|-rymys1,10,10,0|-rymys0,11,11,1|-rsio81,11,11,1|-rsio80,10,10,0|-rj5k41,10,10,0|-rj5k40,11,11,1|-r9qqw1,11,11,1|-r9qqw0,10,10,0|-r1idg1,10,10,0|-r1idg0,11,11,1|-qqnpk1,11,11,1|-qqnpk0,10,10,0|-qj59g1,10,10,0|-qj59g0,11,11,1|-q7zhk1,11,11,1|-q7zhk0,10,10,0|-pzcas1,10,10,0|-pzcas0,11,11,1|-ppzc81,11,11,1|-ppzc80,10,10,0|-ff59g1,10,10,0|-ff59g0,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d75h81,11,11,1|-d75h80,10,10,0|-cx0nw1,10,10,0|-cx0nw0,11,11,1|-cohes1,11,11,1|-cohes0,10,10,0|-cf2d81,10,10,0|-cf2d80,11,11,1|-c4mfw1,11,11,1|-c4mfw0,10,10,0|-bwcg41,10,10,0|-bwcg40,11,11,1|-blwis1,11,11,1|-blwis0,10,10,0|-bec581,10,10,0|-bec580,11,11,1|-b36ak1,11,11,1|-b36ak0,10,10,0|-1vwis1,10,10,0|-1vwis0,11,11,1|-1pf9k1,11,11,1|-1pf9k0,10,10,0|-1cthg1,10,10,0|-1cthg0,11,11,1|-16p441,11,11,1|-16p440,10,10,0|-u3es1,10,10,0|-u3es0,11,11,1|-nz1g1,11,11,1|-nz1g0,10,10,0|-b0dg1,10,10,0|-b0dg0,11,11,1|-4w041,11,11,1|-4w040,10,10,0|7pp7z,10,10,0|7pp80,11,11,1|du2jz,11,11,1|du2k0,10,10,0|q2t7z,10,10,0|q2t80,11,11,1|wk57z,11,11,1|wk580,10,10,0|195ujz,10,10,0|195uk0,11,11,1|1fn6jz,11,11,1|1fn6k0,10,10,0|1s8vvz,10,10,0|1s8vw0,11,11,1|1yd97z,11,11,1|1yd980,10,10,0|2alzvz,10,10,0|2alzw0,11,11,1|2h3bvz,11,11,1|2h3bw0,10,10,0|2tp17z,10,10,0|2tp180,11,11,1|2ztejz,11,11,1|2ztek0,10,10,0|3cf3vz,10,10,0|3cf3w0,11,11,1|3ijh7z,11,11,1|3ijh80,10,10,0|3us7vz,10,10,0|3us7w0,11,11,1|419jvz,11,11,1|419jw0,10,10,0|4dv97z,10,10,0|4dv980,11,11,1|4kcl7z,11,11,1|4kcl80,10,10,0|4wlbvz,10,10,0|4wlbw0,11,11,1|532nvz,11,11,1|532nw0,10,10,0|5cstfz,10,10,0|5cstg0,11,11,1|5lsw3z,11,11,1|5lsw40,10,10,0|5v5xfz,10,10,0|5v5xg0,11,11,1|64iyrz,11,11,1|64iys0,10,10,0|6dw03z,10,10,0|6dw040,11,11,1|6n91fz,11,11,1|6n91g0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Samara|,0,366,0|-qcx400,100,6,0|-kmr4c1,100,6,0|-kmr4c0,105,209,0|5vb3jz,105,209,0|5vb3k0,92,194,1|64pwrz,92,194,1|64pws0,105,209,0|6e30vz,105,209,0|6e30w0,92,194,1|6nhu3z,92,194,1|6nhu40,105,209,0|6wuy7z,105,209,0|6wuy80,92,194,1|769rfz,92,194,1|769rg0,105,209,0|7foq7z,105,209,0|7foq80,92,194,1|7p1x3z,92,194,1|7p1x40,105,209,0|7yeyfz,105,209,0|7yeyg0,92,194,1|87rzrz,92,194,1|87rzs0,105,209,0|8h513z,105,209,0|8h5140,92,194,1|8qi2fz,92,194,1|8qi2g0,105,209,0|8zv3rz,105,209,0|8zv3s0,92,194,1|99853z,92,194,1|998540,105,209,0|9il6fz,105,209,0|9il6g0,92,194,1|9ry7rz,92,194,1|9ry7s0,105,209,0|a1b93z,105,209,0|a1b940,105,209,1|aaod7z,105,209,1|aaod80,100,6,0|ak1ejz,100,6,0|ak1ek0,105,209,1|atrejz,105,209,1|atrek0,100,6,0|b34fvz,100,6,0|b34fw0,100,6,1|bchjzz,100,6,1|bchk00,100,6,0|bdkfzz,100,6,0|bdkg00,105,209,0|blufrz,105,209,0|blufs0,92,194,1|bv7h3z,92,194,1|bv7h40,105,209,0|c4kifz,105,209,0|c4kig0,92,194,1|cdxjrz,92,194,1|cdxjs0,105,209,0|cnal3z,105,209,0|cnal40,92,194,1|cwnmfz,92,194,1|cwnmg0,105,209,0|d60nrz,105,209,0|d60ns0,92,194,1|dfdp3z,92,194,1|dfdp40,105,209,0|dp3p3z,105,209,0|dp3p40,92,194,1|dzwl3z,92,194,1|dzwl40,105,209,0|e7trrz,105,209,0|e7trs0,92,194,1|eimnrz,92,194,1|eimns0,105,209,0|eqjufz,105,209,0|eqjug0,92,194,1|f1cqfz,92,194,1|f1cqg0,105,209,0|f99x3z,105,209,0|f99x40,92,194,1|fkfrrz,92,194,1|fkfrs0,105,209,0|frzzrz,105,209,0|frzzs0,92,194,1|g35ufz,92,194,1|g35ug0,105,209,0|gaq2fz,105,209,0|gaq2g0,92,194,1|glvx3z,92,194,1|glvx40,105,209,0|gtt3rz,105,209,0|gtt3s0,92,194,1|h4lzrz,92,194,1|h4lzs0,105,209,0|hcj6fz,105,209,0|hcj6g0,92,194,1|hnc2fz,92,194,1|hnc2g0,105,209,0|hv993z,105,209,0|hv9940,92,194,1|i6f3rz,92,194,1|i6f3s0,105,209,0|idzbrz,105,209,0|idzbs0,92,194,1|ip56fz,92,194,1|ip56g0,105,209,0|iwpefz,105,209,0|iwpeg0,92,194,1|j7v93z,92,194,1|j7v940,105,209,0|jffh3z,105,209,0|jffh40,92,194,1|jqlbrz,92,194,1|jqlbs0,105,209,0|jyiifz,105,209,0|jyiig0,92,194,1|k9befz,92,194,1|k9beg0,105,209,0|kh8l3z,105,209,0|kh8l40,92,194,1|ks1h3z,92,194,1|ks1h40,105,209,0|kzynrz,105,209,0|kzyns0,105,209,1|lb4l7z,105,209,1|lb4l80,100,6,0|liot7z,100,6,0|liot80,105,209,0","Europe/San_Marino|,0,365,0|-1hs7rn8,136,365,0|-13r0qs1,136,365,0|-13r0qs0,10,10,0|-rymys1,10,10,0|-rymys0,11,11,1|-rsio81,11,11,1|-rsio80,10,10,0|-rj5k41,10,10,0|-rj5k40,11,11,1|-r9qqw1,11,11,1|-r9qqw0,10,10,0|-r1idg1,10,10,0|-r1idg0,11,11,1|-qqnpk1,11,11,1|-qqnpk0,10,10,0|-qj59g1,10,10,0|-qj59g0,11,11,1|-q7zhk1,11,11,1|-q7zhk0,10,10,0|-pzcas1,10,10,0|-pzcas0,11,11,1|-ppzc81,11,11,1|-ppzc80,10,10,0|-ff59g1,10,10,0|-ff59g0,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d75h81,11,11,1|-d75h80,10,10,0|-cx0nw1,10,10,0|-cx0nw0,11,11,1|-cohes1,11,11,1|-cohes0,10,10,0|-cf2d81,10,10,0|-cf2d80,11,11,1|-c4mfw1,11,11,1|-c4mfw0,10,10,0|-bwcg41,10,10,0|-bwcg40,11,11,1|-blwis1,11,11,1|-blwis0,10,10,0|-bec581,10,10,0|-bec580,11,11,1|-b36ak1,11,11,1|-b36ak0,10,10,0|-1vwis1,10,10,0|-1vwis0,11,11,1|-1pf9k1,11,11,1|-1pf9k0,10,10,0|-1cthg1,10,10,0|-1cthg0,11,11,1|-16p441,11,11,1|-16p440,10,10,0|-u3es1,10,10,0|-u3es0,11,11,1|-nz1g1,11,11,1|-nz1g0,10,10,0|-b0dg1,10,10,0|-b0dg0,11,11,1|-4w041,11,11,1|-4w040,10,10,0|7pp7z,10,10,0|7pp80,11,11,1|du2jz,11,11,1|du2k0,10,10,0|q2t7z,10,10,0|q2t80,11,11,1|wk57z,11,11,1|wk580,10,10,0|195ujz,10,10,0|195uk0,11,11,1|1fn6jz,11,11,1|1fn6k0,10,10,0|1s8vvz,10,10,0|1s8vw0,11,11,1|1yd97z,11,11,1|1yd980,10,10,0|2alzvz,10,10,0|2alzw0,11,11,1|2h3bvz,11,11,1|2h3bw0,10,10,0|2tp17z,10,10,0|2tp180,11,11,1|2ztejz,11,11,1|2ztek0,10,10,0|3cf3vz,10,10,0|3cf3w0,11,11,1|3ijh7z,11,11,1|3ijh80,10,10,0|3us7vz,10,10,0|3us7w0,11,11,1|419jvz,11,11,1|419jw0,10,10,0|4dv97z,10,10,0|4dv980,11,11,1|4kcl7z,11,11,1|4kcl80,10,10,0|4wlbvz,10,10,0|4wlbw0,11,11,1|532nvz,11,11,1|532nw0,10,10,0|5cstfz,10,10,0|5cstg0,11,11,1|5lsw3z,11,11,1|5lsw40,10,10,0|5v5xfz,10,10,0|5v5xg0,11,11,1|64iyrz,11,11,1|64iys0,10,10,0|6dw03z,10,10,0|6dw040,11,11,1|6n91fz,11,11,1|6n91g0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Sarajevo|,0,332,0|-18vsmgo,10,10,0|-ezayw1,10,10,0|-ezayw0,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d6dp81,11,11,1|-d6dp80,10,10,0|-cv5zw1,10,10,0|-cv5zw0,11,11,1|-cofek1,11,11,1|-cofek0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Saratov|,0,367,0|-qcx400,100,6,0|-kmr4c1,100,6,0|-kmr4c0,105,209,0|5vb3jz,105,209,0|5vb3k0,92,194,1|64pwrz,92,194,1|64pws0,105,209,0|6e30vz,105,209,0|6e30w0,92,194,1|6nhu3z,92,194,1|6nhu40,105,209,0|6wuy7z,105,209,0|6wuy80,92,194,1|769rfz,92,194,1|769rg0,105,209,0|7foq7z,105,209,0|7foq80,92,194,1|7p1x3z,92,194,1|7p1x40,105,209,0|7yeyfz,105,209,0|7yeyg0,92,194,1|87rzrz,92,194,1|87rzs0,105,209,0|8h513z,105,209,0|8h5140,92,194,1|8qi2fz,92,194,1|8qi2g0,105,209,0|8zv3rz,105,209,0|8zv3s0,92,194,1|99853z,92,194,1|998540,105,209,0|9il6fz,105,209,0|9il6g0,105,209,1|9ryajz,105,209,1|9ryak0,100,6,0|a1bbvz,100,6,0|a1bbw0,105,209,1|aaod7z,105,209,1|aaod80,100,6,0|ak1ejz,100,6,0|ak1ek0,105,209,1|atrejz,105,209,1|atrek0,100,6,0|b34fvz,100,6,0|b34fw0,105,209,0|blufrz,105,209,0|blufs0,105,209,1|bv7jvz,105,209,1|bv7jw0,100,6,0|c4kl7z,100,6,0|c4kl80,105,209,1|cdxmjz,105,209,1|cdxmk0,100,6,0|cnanvz,100,6,0|cnanw0,105,209,1|cwnp7z,105,209,1|cwnp80,100,6,0|d60qjz,100,6,0|d60qk0,105,209,1|dfdrvz,105,209,1|dfdrw0,100,6,0|dp3rvz,100,6,0|dp3rw0,105,209,1|dzwnvz,105,209,1|dzwnw0,100,6,0|e7tujz,100,6,0|e7tuk0,105,209,1|eimqjz,105,209,1|eimqk0,100,6,0|eqjx7z,100,6,0|eqjx80,105,209,1|f1ct7z,105,209,1|f1ct80,100,6,0|f99zvz,100,6,0|f99zw0,105,209,1|fkfujz,105,209,1|fkfuk0,100,6,0|fs02jz,100,6,0|fs02k0,105,209,1|g35x7z,105,209,1|g35x80,100,6,0|gaq57z,100,6,0|gaq580,105,209,1|glvzvz,105,209,1|glvzw0,100,6,0|gtt6jz,100,6,0|gtt6k0,105,209,1|h4m2jz,105,209,1|h4m2k0,100,6,0|hcj97z,100,6,0|hcj980,105,209,1|hnc57z,105,209,1|hnc580,100,6,0|hv9bvz,100,6,0|hv9bw0,105,209,1|i6f6jz,105,209,1|i6f6k0,100,6,0|idzejz,100,6,0|idzek0,105,209,1|ip597z,105,209,1|ip5980,100,6,0|iwph7z,100,6,0|iwph80,105,209,1|j7vbvz,105,209,1|j7vbw0,100,6,0|jffjvz,100,6,0|jffjw0,105,209,1|jqlejz,105,209,1|jqlek0,100,6,0|jyil7z,100,6,0|jyil80,105,209,1|k9bh7z,105,209,1|k9bh80,100,6,0|kh8nvz,100,6,0|kh8nw0,105,209,1|ks1jvz,105,209,1|ks1jw0,100,6,0|kzyqjz,100,6,0|kzyqk0,105,209,1|lb4l7z,105,209,1|lb4l80,100,6,0|liot7z,100,6,0|liot80,105,209,0|ne0t3z,105,209,0|ne0t40,100,6,0|ohmt7z,100,6,0|ohmt80,105,209,0","Europe/Simferopol|,0,368,0|-1ayy8zc,85,369,0|-nu12ap,85,369,0|-nu12ao,15,11,0|-kmr1k1,15,11,0|-kmr1k0,148,6,0|-ep8301,148,6,0|-ep8300,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-df8g81,11,11,1|-df8g80,148,6,0|5vb6bz,148,6,0|5vb6c0,149,209,1|64pzjz,149,209,1|64pzk0,148,6,0|6e33nz,148,6,0|6e33o0,149,209,1|6nhwvz,149,209,1|6nhww0,148,6,0|6wv0zz,148,6,0|6wv100,149,209,1|769u7z,149,209,1|769u80,148,6,0|7foszz,148,6,0|7fot00,149,209,1|7p1zvz,149,209,1|7p1zw0,148,6,0|7yf17z,148,6,0|7yf180,149,209,1|87s2jz,149,209,1|87s2k0,148,6,0|8h53vz,148,6,0|8h53w0,149,209,1|8qi57z,149,209,1|8qi580,148,6,0|8zv6jz,148,6,0|8zv6k0,149,209,1|9987vz,149,209,1|9987w0,148,6,0|9il97z,148,6,0|9il980,149,209,1|9ryajz,149,209,1|9ryak0,148,6,0|a1bbvz,148,6,0|a1bbw0,149,209,1|aaod7z,149,209,1|aaod80,148,6,0|ap2vvz,148,6,0|ap2vw0,15,11,0|blufrz,15,11,0|blufs0,16,6,1|bv7ebz,16,6,1|bv7ec0,15,11,0|c4kifz,15,11,0|c4kig0,16,6,1|cdxgzz,16,6,1|cdxh00,15,11,0|cnal3z,15,11,0|cnal40,16,6,1|cp3bnz,16,6,1|cp3bo0,149,209,1|cwngvz,149,209,1|cwngw0,148,6,0|d60kzz,148,6,0|d60l00,149,209,1|dfdjjz,149,209,1|dfdjk0,148,6,0|dp3mbz,148,6,0|dp3mc0,149,209,1|dzwqnz,149,209,1|dzwqo0,148,6,0|e7u03z,148,6,0|e7u040,16,6,1|eimw3z,16,6,1|eimw40,15,11,0|eqk2rz,15,11,0|eqk2s0,16,6,1|f1cyrz,16,6,1|f1cys0,15,11,0|f9a5fz,15,11,0|f9a5g0,16,6,1|fkg03z,16,6,1|fkg040,15,11,0|fs083z,15,11,0|fs0840,16,6,1|g362rz,16,6,1|g362s0,15,11,0|gaqarz,15,11,0|gaqas0,16,6,1|glw5fz,16,6,1|glw5g0,15,11,0|gttc3z,15,11,0|gttc40,16,6,1|h4m83z,16,6,1|h4m840,15,11,0|hcjerz,15,11,0|hcjes0,16,6,1|hncarz,16,6,1|hncas0,15,11,0|hv9hfz,15,11,0|hv9hg0,16,6,1|i6fc3z,16,6,1|i6fc40,15,11,0|idzk3z,15,11,0|idzk40,16,6,1|ip5erz,16,6,1|ip5es0,15,11,0|iwpmrz,15,11,0|iwpms0,16,6,1|j7vhfz,16,6,1|j7vhg0,15,11,0|jffpfz,15,11,0|jffpg0,16,6,1|jqlk3z,16,6,1|jqlk40,15,11,0|jyiqrz,15,11,0|jyiqs0,16,6,1|k9bmrz,16,6,1|k9bms0,15,11,0|kh8tfz,15,11,0|kh8tg0,16,6,1|ks1pfz,16,6,1|ks1pg0,15,11,0|kzyw3z,15,11,0|kzyw40,16,6,1|lb4qrz,16,6,1|lb4qs0,15,11,0|lioyrz,15,11,0|lioys0,16,6,1|ltutfz,16,6,1|ltutg0,15,11,0|m1f1fz,15,11,0|m1f1g0,16,6,1|mckw3z,16,6,1|mckw40,15,11,0|mki2rz,15,11,0|mki2s0,16,6,1|mvayrz,16,6,1|mvays0,15,11,0|n382nz,15,11,0|n382o0,148,209,0|ne0t3z,148,209,0|ne0t40,148,6,0","Europe/Skopje|,0,332,0|-18vsmgo,10,10,0|-ezayw1,10,10,0|-ezayw0,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d6dp81,11,11,1|-d6dp80,10,10,0|-cv5zw1,10,10,0|-cv5zw0,11,11,1|-cofek1,11,11,1|-cofek0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Sofia|,0,370,0|-1ayy6zg,117,350,0|-136r6qx,117,350,0|-136r6qw,15,11,0|-e6dzw1,15,11,0|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d6dp81,11,11,1|-d6dp80,10,10,0|-cx0l41,10,10,0|-cx0l40,15,11,0|4tpgzz,15,11,0|4tph00,16,6,1|534frz,16,6,1|534fs0,15,11,0|5csibz,15,11,0|5csic0,16,6,1|5luifz,16,6,1|5luig0,15,11,0|5vikzz,15,11,0|5vil00,16,6,1|64it7z,16,6,1|64it80,15,11,0|6e8nnz,15,11,0|6e8no0,16,6,1|6n8ynz,16,6,1|6n8yo0,15,11,0|6wlzzz,15,11,0|6wm000,16,6,1|75z1bz,16,6,1|75z1c0,15,11,0|7fc2nz,15,11,0|7fc2o0,16,6,1|7p22nz,16,6,1|7p22o0,15,11,0|7yf3zz,15,11,0|7yf400,16,6,1|87s5bz,16,6,1|87s5c0,15,11,0|8h56nz,15,11,0|8h56o0,16,6,1|8qi7zz,16,6,1|8qi800,15,11,0|8zv9bz,15,11,0|8zv9c0,16,6,1|998anz,16,6,1|998ao0,15,11,0|9ilbzz,15,11,0|9ilc00,16,6,1|9rydbz,16,6,1|9rydc0,15,11,0|a1benz,15,11,0|a1beo0,16,6,1|aaofzz,16,6,1|aaog00,15,11,0|ak1hbz,15,11,0|ak1hc0,16,6,1|atrhbz,16,6,1|atrhc0,15,11,0|b34d3z,15,11,0|b34d40,16,6,1|bchbnz,16,6,1|bchbo0,15,11,0|blufrz,15,11,0|blufs0,16,6,1|bv7ebz,16,6,1|bv7ec0,15,11,0|c4kifz,15,11,0|c4kig0,16,6,1|cdxgzz,16,6,1|cdxh00,15,11,0|cnal3z,15,11,0|cnal40,16,6,1|cwnjnz,16,6,1|cwnjo0,15,11,0|d60nrz,15,11,0|d60ns0,16,6,1|dfdmbz,16,6,1|dfdmc0,15,11,0|dp3p3z,15,11,0|dp3p40,16,6,1|dzwibz,16,6,1|dzwic0,15,11,0|e7u03z,15,11,0|e7u040,16,6,1|eimw3z,16,6,1|eimw40,15,11,0|eqk2rz,15,11,0|eqk2s0,16,6,1|f1cyrz,16,6,1|f1cys0,15,11,0|f9a5fz,15,11,0|f9a5g0,16,6,1|fkg03z,16,6,1|fkg040,15,11,0|fs083z,15,11,0|fs0840,16,6,1|g362rz,16,6,1|g362s0,15,11,0|gaqarz,15,11,0|gaqas0,16,6,1|glw5fz,16,6,1|glw5g0,15,11,0|gttc3z,15,11,0|gttc40,16,6,1|h4m83z,16,6,1|h4m840,15,11,0|hcjerz,15,11,0|hcjes0,16,6,1|hncarz,16,6,1|hncas0,15,11,0|hv9hfz,15,11,0|hv9hg0,16,6,1|i6fc3z,16,6,1|i6fc40,15,11,0|idzk3z,15,11,0|idzk40,16,6,1|ip5erz,16,6,1|ip5es0,15,11,0|iwpmrz,15,11,0|iwpms0,16,6,1|j7vhfz,16,6,1|j7vhg0,15,11,0|jffpfz,15,11,0|jffpg0,16,6,1|jqlk3z,16,6,1|jqlk40,15,11,0|jyiqrz,15,11,0|jyiqs0,16,6,1|k9bmrz,16,6,1|k9bms0,15,11,0|kh8tfz,15,11,0|kh8tg0,16,6,1|ks1pfz,16,6,1|ks1pg0,15,11,0|kzyw3z,15,11,0|kzyw40,16,6,1|lb4qrz,16,6,1|lb4qs0,15,11,0|lioyrz,15,11,0|lioys0,16,6,1|ltutfz,16,6,1|ltutg0,15,11,0|m1f1fz,15,11,0|m1f1g0,16,6,1|mckw3z,16,6,1|mckw40,15,11,0|mki2rz,15,11,0|mki2s0,16,6,1|mvayrz,16,6,1|mvays0,15,11,0|n385fz,15,11,0|n385g0,16,6,1|ne11fz,16,6,1|ne11g0,15,11,0|nly83z,15,11,0|nly840,16,6,1|nwr43z,16,6,1|nwr440,15,11,0|o4oarz,15,11,0|o4oas0,16,6,1|ofu5fz,16,6,1|ofu5g0,15,11,0|onedfz,15,11,0|onedg0,16,6,1|oyk83z,16,6,1|oyk840,15,11,0|p64g3z,15,11,0|p64g40,16,6,1|phaarz,16,6,1|phaas0,15,11,0|pp7hfz,15,11,0|pp7hg0,16,6,1|q00dfz,16,6,1|q00dg0,15,11,0|q7xk3z,15,11,0|q7xk40,16,6,1|qiqg3z,16,6,1|qiqg40,15,11,0|qqnmrz,15,11,0|qqnms0,16,6,1|r1thfz,16,6,1|r1thg0,15,11,0|r9dpfz,15,11,0|r9dpg0,16,6,1|rkjk3z,16,6,1|rkjk40,15,11,0|rs3s3z,15,11,0|rs3s40,16,6,1|s39mrz,16,6,1|s39ms0,15,11,0|sb6tfz,15,11,0|sb6tg0,16,6,1|slzpfz,16,6,1|slzpg0,15,11,0|stww3z,15,11,0|stww40,16,6,1|t4ps3z,16,6,1|t4ps40,15,11,0|tcmyrz,15,11,0|tcmys0,16,6,1|tnfurz,16,6,1|tnfus0,15,11,0|tvd1fz,15,11,0|tvd1g0,16,6,1|u6iw3z,16,6,1|u6iw40,15,11,0|ue343z,15,11,0|ue3440,16,6,1|up8yrz,16,6,1|up8ys0,15,11,0|uwt6rz,15,11,0|uwt6s0,16,6,1|v7z1fz,16,6,1|v7z1g0,15,11,0|vfw83z,15,11,0|vfw840,16,6,1|vqp43z,16,6,1|vqp440,15,11,0|vymarz,15,11,0|vymas0,16,6,1|w9f6rz,16,6,1|w9f6s0,15,11,0|whcdfz,15,11,0|whcdg0,16,6,1|wsi83z,16,6,1|wsi840,15,11,0|x02g3z,15,11,0|x02g40,16,6,1|xb8arz,16,6,1|xb8as0,15,11,0|xisirz,15,11,0|xisis0,16,6,1|xtydfz,16,6,1|xtydg0,15,11,0|y1ilfz,15,11,0|y1ilg0,16,6,1|ycog3z,16,6,1|ycog40,15,11,0|yklmrz,15,11,0|yklms0,16,6,1|yveirz,16,6,1|yveis0,15,11,0|z3bpfz,15,11,0|z3bpg0,16,6,1|ze4lfz,16,6,1|ze4lg0,15,11,0","Europe/Stockholm|,0,371,0|-1bhq3cc,155,372,0|-10j6dgf,155,372,0|-10j6dge,10,10,0|-rzo2w1,10,10,0|-rzo2w0,11,11,1|-rsilg1,11,11,1|-rsilg0,10,10,0|5cstfz,10,10,0|5cstg0,11,11,1|5lsw3z,11,11,1|5lsw40,10,10,0|5v5xfz,10,10,0|5v5xg0,11,11,1|64iyrz,11,11,1|64iys0,10,10,0|6dw03z,10,10,0|6dw040,11,11,1|6n91fz,11,11,1|6n91g0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Tallinn|,0,373,0|-1ayy790,133,373,0|-r3exx1,133,373,0|-r3exx0,10,10,0|-qznjw1,10,10,0|-qznjw0,11,11,1|-qrqd81,11,11,1|-qrqd80,10,10,0|-qcx6s1,10,10,0|-qcx6s0,133,373,0|-peghx1,133,373,0|-peghx0,15,11,0|-fch1k1,15,11,0|-fch1k0,148,6,0|-ern4c1,148,6,0|-ern4c0,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d6wg81,11,11,1|-d6wg80,148,6,0|5vb6bz,148,6,0|5vb6c0,149,209,1|64pzjz,149,209,1|64pzk0,148,6,0|6e33nz,148,6,0|6e33o0,149,209,1|6nhwvz,149,209,1|6nhww0,148,6,0|6wv0zz,148,6,0|6wv100,149,209,1|769u7z,149,209,1|769u80,148,6,0|7foszz,148,6,0|7fot00,149,209,1|7p1zvz,149,209,1|7p1zw0,148,6,0|7yf17z,148,6,0|7yf180,149,209,1|87s2jz,149,209,1|87s2k0,148,6,0|8h53vz,148,6,0|8h53w0,149,209,1|8qi57z,149,209,1|8qi580,148,6,0|8zv6jz,148,6,0|8zv6k0,149,209,1|9987vz,149,209,1|9987w0,148,6,0|9il97z,148,6,0|9il980,149,209,1|9ryajz,149,209,1|9ryak0,148,6,0|a1bbvz,148,6,0|a1bbw0,16,6,1|aaofzz,16,6,1|aaog00,15,11,0|ak1hbz,15,11,0|ak1hc0,16,6,1|atrhbz,16,6,1|atrhc0,15,11,0|b34inz,15,11,0|b34io0,16,6,1|bchjzz,16,6,1|bchk00,15,11,0|blulbz,15,11,0|blulc0,16,6,1|bv7mnz,16,6,1|bv7mo0,15,11,0|c4knzz,15,11,0|c4ko00,16,6,1|cdxpbz,16,6,1|cdxpc0,15,11,0|cnaqnz,15,11,0|cnaqo0,16,6,1|cwnrzz,16,6,1|cwns00,15,11,0|d60tbz,15,11,0|d60tc0,16,6,1|dfdunz,16,6,1|dfduo0,15,11,0|dp3unz,15,11,0|dp3uo0,16,6,1|dzwqnz,16,6,1|dzwqo0,15,11,0|e7txbz,15,11,0|e7txc0,16,6,1|eimtbz,16,6,1|eimtc0,15,11,0|eqjzzz,15,11,0|eqk000,16,6,1|f1cyrz,16,6,1|f1cys0,15,11,0|f9a5fz,15,11,0|f9a5g0,16,6,1|fkg03z,16,6,1|fkg040,15,11,0|gttc3z,15,11,0|gttc40,16,6,1|h4m83z,16,6,1|h4m840,15,11,0|hcjerz,15,11,0|hcjes0,16,6,1|hncarz,16,6,1|hncas0,15,11,0|hv9hfz,15,11,0|hv9hg0,16,6,1|i6fc3z,16,6,1|i6fc40,15,11,0|idzk3z,15,11,0|idzk40,16,6,1|ip5erz,16,6,1|ip5es0,15,11,0|iwpmrz,15,11,0|iwpms0,16,6,1|j7vhfz,16,6,1|j7vhg0,15,11,0|jffpfz,15,11,0|jffpg0,16,6,1|jqlk3z,16,6,1|jqlk40,15,11,0|jyiqrz,15,11,0|jyiqs0,16,6,1|k9bmrz,16,6,1|k9bms0,15,11,0|kh8tfz,15,11,0|kh8tg0,16,6,1|ks1pfz,16,6,1|ks1pg0,15,11,0|kzyw3z,15,11,0|kzyw40,16,6,1|lb4qrz,16,6,1|lb4qs0,15,11,0|lioyrz,15,11,0|lioys0,16,6,1|ltutfz,16,6,1|ltutg0,15,11,0|m1f1fz,15,11,0|m1f1g0,16,6,1|mckw3z,16,6,1|mckw40,15,11,0|mki2rz,15,11,0|mki2s0,16,6,1|mvayrz,16,6,1|mvays0,15,11,0|n385fz,15,11,0|n385g0,16,6,1|ne11fz,16,6,1|ne11g0,15,11,0|nly83z,15,11,0|nly840,16,6,1|nwr43z,16,6,1|nwr440,15,11,0|o4oarz,15,11,0|o4oas0,16,6,1|ofu5fz,16,6,1|ofu5g0,15,11,0|onedfz,15,11,0|onedg0,16,6,1|oyk83z,16,6,1|oyk840,15,11,0|p64g3z,15,11,0|p64g40,16,6,1|phaarz,16,6,1|phaas0,15,11,0|pp7hfz,15,11,0|pp7hg0,16,6,1|q00dfz,16,6,1|q00dg0,15,11,0|q7xk3z,15,11,0|q7xk40,16,6,1|qiqg3z,16,6,1|qiqg40,15,11,0|qqnmrz,15,11,0|qqnms0,16,6,1|r1thfz,16,6,1|r1thg0,15,11,0|r9dpfz,15,11,0|r9dpg0,16,6,1|rkjk3z,16,6,1|rkjk40,15,11,0|rs3s3z,15,11,0|rs3s40,16,6,1|s39mrz,16,6,1|s39ms0,15,11,0|sb6tfz,15,11,0|sb6tg0,16,6,1|slzpfz,16,6,1|slzpg0,15,11,0|stww3z,15,11,0|stww40,16,6,1|t4ps3z,16,6,1|t4ps40,15,11,0|tcmyrz,15,11,0|tcmys0,16,6,1|tnfurz,16,6,1|tnfus0,15,11,0|tvd1fz,15,11,0|tvd1g0,16,6,1|u6iw3z,16,6,1|u6iw40,15,11,0|ue343z,15,11,0|ue3440,16,6,1|up8yrz,16,6,1|up8ys0,15,11,0|uwt6rz,15,11,0|uwt6s0,16,6,1|v7z1fz,16,6,1|v7z1g0,15,11,0|vfw83z,15,11,0|vfw840,16,6,1|vqp43z,16,6,1|vqp440,15,11,0|vymarz,15,11,0|vymas0,16,6,1|w9f6rz,16,6,1|w9f6s0,15,11,0|whcdfz,15,11,0|whcdg0,16,6,1|wsi83z,16,6,1|wsi840,15,11,0|x02g3z,15,11,0|x02g40,16,6,1|xb8arz,16,6,1|xb8as0,15,11,0|xisirz,15,11,0|xisis0,16,6,1|xtydfz,16,6,1|xtydg0,15,11,0|y1ilfz,15,11,0|y1ilg0,16,6,1|ycog3z,16,6,1|ycog40,15,11,0|yklmrz,15,11,0|yklms0,16,6,1|yveirz,16,6,1|yveis0,15,11,0|z3bpfz,15,11,0|z3bpg0,16,6,1|ze4lfz,16,6,1|ze4lg0,15,11,0","Europe/Tirane|,0,374,0|-t85vo8,10,10,0|-ff3es1,10,10,0|-ff3es0,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dy7jw1,11,11,1|-dy7jw0,10,10,0|29h97z,10,10,0|29h980,11,11,1|2h8t3z,11,11,1|2h8t40,10,10,0|2s3mjz,10,10,0|2s3mk0,11,11,1|300qfz,11,11,1|300qg0,10,10,0|3az97z,10,10,0|3az980,11,11,1|3iwd3z,11,11,1|3iwd40,10,10,0|3u2ajz,10,10,0|3u2ak0,11,11,1|41mfrz,11,11,1|41mfs0,10,10,0|4cqijz,10,10,0|4cqik0,11,11,1|4kcifz,11,11,1|4kcig0,10,10,0|4vgl7z,10,10,0|4vgl80,11,11,1|532l3z,11,11,1|532l40,10,10,0|5e6nvz,10,10,0|5e6nw0,11,11,1|5m3rrz,11,11,1|5m3rs0,10,10,0|5wlmjz,10,10,0|5wlmk0,11,11,1|64iqfz,11,11,1|64iqg0,10,10,0|6fonvz,10,10,0|6fonw0,11,11,1|6nlrrz,11,11,1|6nlrs0,10,10,0|6xqnvz,10,10,0|6xqnw0,11,11,1|769zrz,11,11,1|769zs0,10,10,0|7foyjz,10,10,0|7foyk0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Ulyanovsk|,0,375,0|-qcx400,100,6,0|-kmr4c1,100,6,0|-kmr4c0,105,209,0|5vb3jz,105,209,0|5vb3k0,92,194,1|64pwrz,92,194,1|64pws0,105,209,0|6e30vz,105,209,0|6e30w0,92,194,1|6nhu3z,92,194,1|6nhu40,105,209,0|6wuy7z,105,209,0|6wuy80,92,194,1|769rfz,92,194,1|769rg0,105,209,0|7foq7z,105,209,0|7foq80,92,194,1|7p1x3z,92,194,1|7p1x40,105,209,0|7yeyfz,105,209,0|7yeyg0,92,194,1|87rzrz,92,194,1|87rzs0,105,209,0|8h513z,105,209,0|8h5140,92,194,1|8qi2fz,92,194,1|8qi2g0,105,209,0|8zv3rz,105,209,0|8zv3s0,92,194,1|99853z,92,194,1|998540,105,209,0|9il6fz,105,209,0|9il6g0,92,194,1|9ry7rz,92,194,1|9ry7s0,105,209,0|a1b93z,105,209,0|a1b940,105,209,1|aaod7z,105,209,1|aaod80,100,6,0|ak1ejz,100,6,0|ak1ek0,105,209,1|atrejz,105,209,1|atrek0,100,6,0|b34fvz,100,6,0|b34fw0,100,6,1|bchjzz,100,6,1|bchk00,101,11,0|bi8ynz,101,11,0|bi8yo0,100,6,0|bluijz,100,6,0|bluik0,105,209,1|bv7jvz,105,209,1|bv7jw0,100,6,0|c4kl7z,100,6,0|c4kl80,105,209,1|cdxmjz,105,209,1|cdxmk0,100,6,0|cnanvz,100,6,0|cnanw0,105,209,1|cwnp7z,105,209,1|cwnp80,100,6,0|d60qjz,100,6,0|d60qk0,105,209,1|dfdrvz,105,209,1|dfdrw0,100,6,0|dp3rvz,100,6,0|dp3rw0,105,209,1|dzwnvz,105,209,1|dzwnw0,100,6,0|e7tujz,100,6,0|e7tuk0,105,209,1|eimqjz,105,209,1|eimqk0,100,6,0|eqjx7z,100,6,0|eqjx80,105,209,1|f1ct7z,105,209,1|f1ct80,100,6,0|f99zvz,100,6,0|f99zw0,105,209,1|fkfujz,105,209,1|fkfuk0,100,6,0|fs02jz,100,6,0|fs02k0,105,209,1|g35x7z,105,209,1|g35x80,100,6,0|gaq57z,100,6,0|gaq580,105,209,1|glvzvz,105,209,1|glvzw0,100,6,0|gtt6jz,100,6,0|gtt6k0,105,209,1|h4m2jz,105,209,1|h4m2k0,100,6,0|hcj97z,100,6,0|hcj980,105,209,1|hnc57z,105,209,1|hnc580,100,6,0|hv9bvz,100,6,0|hv9bw0,105,209,1|i6f6jz,105,209,1|i6f6k0,100,6,0|idzejz,100,6,0|idzek0,105,209,1|ip597z,105,209,1|ip5980,100,6,0|iwph7z,100,6,0|iwph80,105,209,1|j7vbvz,105,209,1|j7vbw0,100,6,0|jffjvz,100,6,0|jffjw0,105,209,1|jqlejz,105,209,1|jqlek0,100,6,0|jyil7z,100,6,0|jyil80,105,209,1|k9bh7z,105,209,1|k9bh80,100,6,0|kh8nvz,100,6,0|kh8nw0,105,209,1|ks1jvz,105,209,1|ks1jw0,100,6,0|kzyqjz,100,6,0|kzyqk0,105,209,1|lb4l7z,105,209,1|lb4l80,100,6,0|liot7z,100,6,0|liot80,105,209,0|ne0t3z,105,209,0|ne0t40,100,6,0|o4o57z,100,6,0|o4o580,105,209,0","Europe/Uzhgorod|,0,376,0|-15cztgo,10,10,0|-fizzw1,10,10,0|-fizzw0,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d55hk1,11,11,1|-d55hk0,10,10,0|-cshus1,10,10,0|-cshus0,148,6,0|5vb6bz,148,6,0|5vb6c0,149,209,1|64pzjz,149,209,1|64pzk0,148,6,0|6e33nz,148,6,0|6e33o0,149,209,1|6nhwvz,149,209,1|6nhww0,148,6,0|6wv0zz,148,6,0|6wv100,149,209,1|769u7z,149,209,1|769u80,148,6,0|7foszz,148,6,0|7fot00,149,209,1|7p1zvz,149,209,1|7p1zw0,148,6,0|7yf17z,148,6,0|7yf180,149,209,1|87s2jz,149,209,1|87s2k0,148,6,0|8h53vz,148,6,0|8h53w0,149,209,1|8qi57z,149,209,1|8qi580,148,6,0|8zv6jz,148,6,0|8zv6k0,149,209,1|9987vz,149,209,1|9987w0,148,6,0|9il97z,148,6,0|9il980,149,209,1|9ryajz,149,209,1|9ryak0,148,6,0|a1bbvz,148,6,0|a1bbw0,149,209,1|aaod7z,149,209,1|aaod80,148,6,0|ap2vvz,148,6,0|ap2vw0,10,10,0|b34o7z,10,10,0|b34o80,15,11,0|blufrz,15,11,0|blufs0,16,6,1|bv7ebz,16,6,1|bv7ec0,15,11,0|c4kifz,15,11,0|c4kig0,16,6,1|cdxgzz,16,6,1|cdxh00,15,11,0|cnal3z,15,11,0|cnal40,16,6,1|cwnjnz,16,6,1|cwnjo0,15,11,0|d60w3z,15,11,0|d60w40,16,6,1|dfdxfz,16,6,1|dfdxg0,15,11,0|dp3xfz,15,11,0|dp3xg0,16,6,1|dzwtfz,16,6,1|dzwtg0,15,11,0|e7u03z,15,11,0|e7u040,16,6,1|eimw3z,16,6,1|eimw40,15,11,0|eqk2rz,15,11,0|eqk2s0,16,6,1|f1cyrz,16,6,1|f1cys0,15,11,0|f9a5fz,15,11,0|f9a5g0,16,6,1|fkg03z,16,6,1|fkg040,15,11,0|fs083z,15,11,0|fs0840,16,6,1|g362rz,16,6,1|g362s0,15,11,0|gaqarz,15,11,0|gaqas0,16,6,1|glw5fz,16,6,1|glw5g0,15,11,0|gttc3z,15,11,0|gttc40,16,6,1|h4m83z,16,6,1|h4m840,15,11,0|hcjerz,15,11,0|hcjes0,16,6,1|hncarz,16,6,1|hncas0,15,11,0|hv9hfz,15,11,0|hv9hg0,16,6,1|i6fc3z,16,6,1|i6fc40,15,11,0|idzk3z,15,11,0|idzk40,16,6,1|ip5erz,16,6,1|ip5es0,15,11,0|iwpmrz,15,11,0|iwpms0,16,6,1|j7vhfz,16,6,1|j7vhg0,15,11,0|jffpfz,15,11,0|jffpg0,16,6,1|jqlk3z,16,6,1|jqlk40,15,11,0|jyiqrz,15,11,0|jyiqs0,16,6,1|k9bmrz,16,6,1|k9bms0,15,11,0|kh8tfz,15,11,0|kh8tg0,16,6,1|ks1pfz,16,6,1|ks1pg0,15,11,0|kzyw3z,15,11,0|kzyw40,16,6,1|lb4qrz,16,6,1|lb4qs0,15,11,0|lioyrz,15,11,0|lioys0,16,6,1|ltutfz,16,6,1|ltutg0,15,11,0|m1f1fz,15,11,0|m1f1g0,16,6,1|mckw3z,16,6,1|mckw40,15,11,0|mki2rz,15,11,0|mki2s0,16,6,1|mvayrz,16,6,1|mvays0,15,11,0|n385fz,15,11,0|n385g0,16,6,1|ne11fz,16,6,1|ne11g0,15,11,0|nly83z,15,11,0|nly840,16,6,1|nwr43z,16,6,1|nwr440,15,11,0|o4oarz,15,11,0|o4oas0,16,6,1|ofu5fz,16,6,1|ofu5g0,15,11,0|onedfz,15,11,0|onedg0,16,6,1|oyk83z,16,6,1|oyk840,15,11,0|p64g3z,15,11,0|p64g40,16,6,1|phaarz,16,6,1|phaas0,15,11,0|pp7hfz,15,11,0|pp7hg0,16,6,1|q00dfz,16,6,1|q00dg0,15,11,0|q7xk3z,15,11,0|q7xk40,16,6,1|qiqg3z,16,6,1|qiqg40,15,11,0|qqnmrz,15,11,0|qqnms0,16,6,1|r1thfz,16,6,1|r1thg0,15,11,0|r9dpfz,15,11,0|r9dpg0,16,6,1|rkjk3z,16,6,1|rkjk40,15,11,0|rs3s3z,15,11,0|rs3s40,16,6,1|s39mrz,16,6,1|s39ms0,15,11,0|sb6tfz,15,11,0|sb6tg0,16,6,1|slzpfz,16,6,1|slzpg0,15,11,0|stww3z,15,11,0|stww40,16,6,1|t4ps3z,16,6,1|t4ps40,15,11,0|tcmyrz,15,11,0|tcmys0,16,6,1|tnfurz,16,6,1|tnfus0,15,11,0|tvd1fz,15,11,0|tvd1g0,16,6,1|u6iw3z,16,6,1|u6iw40,15,11,0|ue343z,15,11,0|ue3440,16,6,1|up8yrz,16,6,1|up8ys0,15,11,0|uwt6rz,15,11,0|uwt6s0,16,6,1|v7z1fz,16,6,1|v7z1g0,15,11,0|vfw83z,15,11,0|vfw840,16,6,1|vqp43z,16,6,1|vqp440,15,11,0|vymarz,15,11,0|vymas0,16,6,1|w9f6rz,16,6,1|w9f6s0,15,11,0|whcdfz,15,11,0|whcdg0,16,6,1|wsi83z,16,6,1|wsi840,15,11,0|x02g3z,15,11,0|x02g40,16,6,1|xb8arz,16,6,1|xb8as0,15,11,0|xisirz,15,11,0|xisis0,16,6,1|xtydfz,16,6,1|xtydg0,15,11,0|y1ilfz,15,11,0|y1ilg0,16,6,1|ycog3z,16,6,1|ycog40,15,11,0|yklmrz,15,11,0|yklms0,16,6,1|yveirz,16,6,1|yveis0,15,11,0|z3bpfz,15,11,0|z3bpg0,16,6,1|ze4lfz,16,6,1|ze4lg0,15,11,0","Europe/Vaduz|,0,338,0|-1os49kw,53,339,0|-13g441n,53,339,0|-13g441m,10,10,0|-eyh6o1,10,10,0|-eyh6o0,11,11,1|-eqk001,11,11,1|-eqk000,10,10,0|-efr401,10,10,0|-efr400,11,11,1|-e7txc1,11,11,1|-e7txc0,10,10,0|5v5xfz,10,10,0|5v5xg0,11,11,1|64iyrz,11,11,1|64iys0,10,10,0|6dw03z,10,10,0|6dw040,11,11,1|6n91fz,11,11,1|6n91g0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Vatican|,0,365,0|-1hs7rn8,136,365,0|-13r0qs1,136,365,0|-13r0qs0,10,10,0|-rymys1,10,10,0|-rymys0,11,11,1|-rsio81,11,11,1|-rsio80,10,10,0|-rj5k41,10,10,0|-rj5k40,11,11,1|-r9qqw1,11,11,1|-r9qqw0,10,10,0|-r1idg1,10,10,0|-r1idg0,11,11,1|-qqnpk1,11,11,1|-qqnpk0,10,10,0|-qj59g1,10,10,0|-qj59g0,11,11,1|-q7zhk1,11,11,1|-q7zhk0,10,10,0|-pzcas1,10,10,0|-pzcas0,11,11,1|-ppzc81,11,11,1|-ppzc80,10,10,0|-ff59g1,10,10,0|-ff59g0,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d75h81,11,11,1|-d75h80,10,10,0|-cx0nw1,10,10,0|-cx0nw0,11,11,1|-cohes1,11,11,1|-cohes0,10,10,0|-cf2d81,10,10,0|-cf2d80,11,11,1|-c4mfw1,11,11,1|-c4mfw0,10,10,0|-bwcg41,10,10,0|-bwcg40,11,11,1|-blwis1,11,11,1|-blwis0,10,10,0|-bec581,10,10,0|-bec580,11,11,1|-b36ak1,11,11,1|-b36ak0,10,10,0|-1vwis1,10,10,0|-1vwis0,11,11,1|-1pf9k1,11,11,1|-1pf9k0,10,10,0|-1cthg1,10,10,0|-1cthg0,11,11,1|-16p441,11,11,1|-16p440,10,10,0|-u3es1,10,10,0|-u3es0,11,11,1|-nz1g1,11,11,1|-nz1g0,10,10,0|-b0dg1,10,10,0|-b0dg0,11,11,1|-4w041,11,11,1|-4w040,10,10,0|7pp7z,10,10,0|7pp80,11,11,1|du2jz,11,11,1|du2k0,10,10,0|q2t7z,10,10,0|q2t80,11,11,1|wk57z,11,11,1|wk580,10,10,0|195ujz,10,10,0|195uk0,11,11,1|1fn6jz,11,11,1|1fn6k0,10,10,0|1s8vvz,10,10,0|1s8vw0,11,11,1|1yd97z,11,11,1|1yd980,10,10,0|2alzvz,10,10,0|2alzw0,11,11,1|2h3bvz,11,11,1|2h3bw0,10,10,0|2tp17z,10,10,0|2tp180,11,11,1|2ztejz,11,11,1|2ztek0,10,10,0|3cf3vz,10,10,0|3cf3w0,11,11,1|3ijh7z,11,11,1|3ijh80,10,10,0|3us7vz,10,10,0|3us7w0,11,11,1|419jvz,11,11,1|419jw0,10,10,0|4dv97z,10,10,0|4dv980,11,11,1|4kcl7z,11,11,1|4kcl80,10,10,0|4wlbvz,10,10,0|4wlbw0,11,11,1|532nvz,11,11,1|532nw0,10,10,0|5cstfz,10,10,0|5cstg0,11,11,1|5lsw3z,11,11,1|5lsw40,10,10,0|5v5xfz,10,10,0|5v5xg0,11,11,1|64iyrz,11,11,1|64iys0,10,10,0|6dw03z,10,10,0|6dw040,11,11,1|6n91fz,11,11,1|6n91g0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Vienna|,0,377,0|-14211ox,10,10,0|-s0e081,10,10,0|-s0e080,11,11,1|-rsilg1,11,11,1|-rsilg0,10,10,0|-ridmk1,10,10,0|-ridmk0,11,11,1|-ragfw1,11,11,1|-ragfw0,10,10,0|-qznjw1,10,10,0|-qznjw0,11,11,1|-qrqd81,11,11,1|-qrqd80,10,10,0|-pykd81,10,10,0|-pykd80,11,11,1|-pqa7w1,11,11,1|-pqa7w0,10,10,0|-fizzw1,10,10,0|-fizzw0,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d6dp81,11,11,1|-d6dp80,10,10,0|-cx0nw1,10,10,0|-cx0nw0,11,11,1|-cwi581,11,11,1|-cwi580,10,10,0|-cdmik1,10,10,0|-cdmik0,11,11,1|-c4kl81,11,11,1|-c4kl80,10,10,0|-bv9ek1,10,10,0|-bv9ek0,11,11,1|-blwd81,11,11,1|-blwd80,10,10,0|-bbtek1,10,10,0|-bbtek0,11,11,1|-b36ak1,11,11,1|-b36ak0,10,10,0|5csnvz,10,10,0|5csnw0,11,11,1|5lsnrz,11,11,1|5lsns0,10,10,0|5v5xfz,10,10,0|5v5xg0,11,11,1|64iyrz,11,11,1|64iys0,10,10,0|6dw03z,10,10,0|6dw040,11,11,1|6n91fz,11,11,1|6n91g0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Vilnius|,0,378,0|-1ayy7cs,156,379,0|-rns981,156,379,0|-rns980,74,380,0|-q7q73d,74,380,0|-q7q73c,10,10,0|-ptj1g1,10,10,0|-ptj1g0,15,11,0|-poyaw1,15,11,0|-poyaw0,10,10,0|-fcmis1,10,10,0|-fcmis0,148,6,0|-evwto1,148,6,0|-evwto0,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d9kqw1,11,11,1|-d9kqw0,148,6,0|5vb6bz,148,6,0|5vb6c0,149,209,1|64pzjz,149,209,1|64pzk0,148,6,0|6e33nz,148,6,0|6e33o0,149,209,1|6nhwvz,149,209,1|6nhww0,148,6,0|6wv0zz,148,6,0|6wv100,149,209,1|769u7z,149,209,1|769u80,148,6,0|7foszz,148,6,0|7fot00,149,209,1|7p1zvz,149,209,1|7p1zw0,148,6,0|7yf17z,148,6,0|7yf180,149,209,1|87s2jz,149,209,1|87s2k0,148,6,0|8h53vz,148,6,0|8h53w0,149,209,1|8qi57z,149,209,1|8qi580,148,6,0|8zv6jz,148,6,0|8zv6k0,149,209,1|9987vz,149,209,1|9987w0,148,6,0|9il97z,148,6,0|9il980,149,209,1|9ryajz,149,209,1|9ryak0,148,6,0|a1bbvz,148,6,0|a1bbw0,16,6,1|aaofzz,16,6,1|aaog00,15,11,0|ak1hbz,15,11,0|ak1hc0,16,6,1|atrhbz,16,6,1|atrhc0,15,11,0|b34inz,15,11,0|b34io0,16,6,1|bchjzz,16,6,1|bchk00,15,11,0|blulbz,15,11,0|blulc0,16,6,1|bv7mnz,16,6,1|bv7mo0,15,11,0|c4knzz,15,11,0|c4ko00,16,6,1|cdxpbz,16,6,1|cdxpc0,15,11,0|cnaqnz,15,11,0|cnaqo0,16,6,1|cwnrzz,16,6,1|cwns00,15,11,0|d60tbz,15,11,0|d60tc0,16,6,1|dfdunz,16,6,1|dfduo0,15,11,0|dp3unz,15,11,0|dp3uo0,16,6,1|dzwqnz,16,6,1|dzwqo0,15,11,0|e7txbz,15,11,0|e7txc0,16,6,1|eimtbz,16,6,1|eimtc0,15,11,0|eqk2rz,15,11,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,15,11,0|hcjerz,15,11,0|hcjes0,16,6,1|hncarz,16,6,1|hncas0,15,11,0|hv9hfz,15,11,0|hv9hg0,16,6,1|i6fc3z,16,6,1|i6fc40,15,11,0|idzk3z,15,11,0|idzk40,16,6,1|ip5erz,16,6,1|ip5es0,15,11,0|iwpmrz,15,11,0|iwpms0,16,6,1|j7vhfz,16,6,1|j7vhg0,15,11,0|jffpfz,15,11,0|jffpg0,16,6,1|jqlk3z,16,6,1|jqlk40,15,11,0|jyiqrz,15,11,0|jyiqs0,16,6,1|k9bmrz,16,6,1|k9bms0,15,11,0|kh8tfz,15,11,0|kh8tg0,16,6,1|ks1pfz,16,6,1|ks1pg0,15,11,0|kzyw3z,15,11,0|kzyw40,16,6,1|lb4qrz,16,6,1|lb4qs0,15,11,0|lioyrz,15,11,0|lioys0,16,6,1|ltutfz,16,6,1|ltutg0,15,11,0|m1f1fz,15,11,0|m1f1g0,16,6,1|mckw3z,16,6,1|mckw40,15,11,0|mki2rz,15,11,0|mki2s0,16,6,1|mvayrz,16,6,1|mvays0,15,11,0|n385fz,15,11,0|n385g0,16,6,1|ne11fz,16,6,1|ne11g0,15,11,0|nly83z,15,11,0|nly840,16,6,1|nwr43z,16,6,1|nwr440,15,11,0|o4oarz,15,11,0|o4oas0,16,6,1|ofu5fz,16,6,1|ofu5g0,15,11,0|onedfz,15,11,0|onedg0,16,6,1|oyk83z,16,6,1|oyk840,15,11,0|p64g3z,15,11,0|p64g40,16,6,1|phaarz,16,6,1|phaas0,15,11,0|pp7hfz,15,11,0|pp7hg0,16,6,1|q00dfz,16,6,1|q00dg0,15,11,0|q7xk3z,15,11,0|q7xk40,16,6,1|qiqg3z,16,6,1|qiqg40,15,11,0|qqnmrz,15,11,0|qqnms0,16,6,1|r1thfz,16,6,1|r1thg0,15,11,0|r9dpfz,15,11,0|r9dpg0,16,6,1|rkjk3z,16,6,1|rkjk40,15,11,0|rs3s3z,15,11,0|rs3s40,16,6,1|s39mrz,16,6,1|s39ms0,15,11,0|sb6tfz,15,11,0|sb6tg0,16,6,1|slzpfz,16,6,1|slzpg0,15,11,0|stww3z,15,11,0|stww40,16,6,1|t4ps3z,16,6,1|t4ps40,15,11,0|tcmyrz,15,11,0|tcmys0,16,6,1|tnfurz,16,6,1|tnfus0,15,11,0|tvd1fz,15,11,0|tvd1g0,16,6,1|u6iw3z,16,6,1|u6iw40,15,11,0|ue343z,15,11,0|ue3440,16,6,1|up8yrz,16,6,1|up8ys0,15,11,0|uwt6rz,15,11,0|uwt6s0,16,6,1|v7z1fz,16,6,1|v7z1g0,15,11,0|vfw83z,15,11,0|vfw840,16,6,1|vqp43z,16,6,1|vqp440,15,11,0|vymarz,15,11,0|vymas0,16,6,1|w9f6rz,16,6,1|w9f6s0,15,11,0|whcdfz,15,11,0|whcdg0,16,6,1|wsi83z,16,6,1|wsi840,15,11,0|x02g3z,15,11,0|x02g40,16,6,1|xb8arz,16,6,1|xb8as0,15,11,0|xisirz,15,11,0|xisis0,16,6,1|xtydfz,16,6,1|xtydg0,15,11,0|y1ilfz,15,11,0|y1ilg0,16,6,1|ycog3z,16,6,1|ycog40,15,11,0|yklmrz,15,11,0|yklms0,16,6,1|yveirz,16,6,1|yveis0,15,11,0|z3bpfz,15,11,0|z3bpg0,16,6,1|ze4lfz,16,6,1|ze4lg0,15,11,0","Europe/Volgograd|,0,213,0|-q3cw84,100,6,0|-kmr4c1,100,6,0|-kmr4c0,105,209,0|5vb3jz,105,209,0|5vb3k0,92,194,1|64pwrz,92,194,1|64pws0,105,209,0|6e30vz,105,209,0|6e30w0,92,194,1|6nhu3z,92,194,1|6nhu40,105,209,0|6wuy7z,105,209,0|6wuy80,92,194,1|769rfz,92,194,1|769rg0,105,209,0|7foq7z,105,209,0|7foq80,92,194,1|7p1x3z,92,194,1|7p1x40,105,209,0|7yeyfz,105,209,0|7yeyg0,92,194,1|87rzrz,92,194,1|87rzs0,105,209,0|8h513z,105,209,0|8h5140,92,194,1|8qi2fz,92,194,1|8qi2g0,105,209,0|8zv3rz,105,209,0|8zv3s0,92,194,1|99853z,92,194,1|998540,105,209,0|9il6fz,105,209,0|9il6g0,105,209,1|9ryajz,105,209,1|9ryak0,100,6,0|a1bbvz,100,6,0|a1bbw0,105,209,1|aaod7z,105,209,1|aaod80,100,6,0|ak1ejz,100,6,0|ak1ek0,105,209,1|atrejz,105,209,1|atrek0,100,6,0|b34fvz,100,6,0|b34fw0,105,209,0|blufrz,105,209,0|blufs0,105,209,1|bv7jvz,105,209,1|bv7jw0,100,6,0|c4kl7z,100,6,0|c4kl80,105,209,1|cdxmjz,105,209,1|cdxmk0,100,6,0|cnanvz,100,6,0|cnanw0,105,209,1|cwnp7z,105,209,1|cwnp80,100,6,0|d60qjz,100,6,0|d60qk0,105,209,1|dfdrvz,105,209,1|dfdrw0,100,6,0|dp3rvz,100,6,0|dp3rw0,105,209,1|dzwnvz,105,209,1|dzwnw0,100,6,0|e7tujz,100,6,0|e7tuk0,105,209,1|eimqjz,105,209,1|eimqk0,100,6,0|eqjx7z,100,6,0|eqjx80,105,209,1|f1ct7z,105,209,1|f1ct80,100,6,0|f99zvz,100,6,0|f99zw0,105,209,1|fkfujz,105,209,1|fkfuk0,100,6,0|fs02jz,100,6,0|fs02k0,105,209,1|g35x7z,105,209,1|g35x80,100,6,0|gaq57z,100,6,0|gaq580,105,209,1|glvzvz,105,209,1|glvzw0,100,6,0|gtt6jz,100,6,0|gtt6k0,105,209,1|h4m2jz,105,209,1|h4m2k0,100,6,0|hcj97z,100,6,0|hcj980,105,209,1|hnc57z,105,209,1|hnc580,100,6,0|hv9bvz,100,6,0|hv9bw0,105,209,1|i6f6jz,105,209,1|i6f6k0,100,6,0|idzejz,100,6,0|idzek0,105,209,1|ip597z,105,209,1|ip5980,100,6,0|iwph7z,100,6,0|iwph80,105,209,1|j7vbvz,105,209,1|j7vbw0,100,6,0|jffjvz,100,6,0|jffjw0,105,209,1|jqlejz,105,209,1|jqlek0,100,6,0|jyil7z,100,6,0|jyil80,105,209,1|k9bh7z,105,209,1|k9bh80,100,6,0|kh8nvz,100,6,0|kh8nw0,105,209,1|ks1jvz,105,209,1|ks1jw0,100,6,0|kzyqjz,100,6,0|kzyqk0,105,209,1|lb4l7z,105,209,1|lb4l80,100,6,0|liot7z,100,6,0|liot80,105,209,0|ne0t3z,105,209,0|ne0t40,100,6,0|pha57z,100,6,0|pha580,105,209,0|qlyvrz,105,209,0|qlyvs0,100,6,0","Europe/Warsaw|,0,379,0|-1ayy6k0,156,379,0|-se9yk1,156,379,0|-se9yk0,10,10,0|-s0e081,10,10,0|-s0e080,11,11,1|-rsilg1,11,11,1|-rsilg0,10,10,0|-ridmk1,10,10,0|-ridmk0,11,11,1|-ragfw1,11,11,1|-ragfw0,10,10,0|-qznjw1,10,10,0|-qznjw0,11,11,1|-qrqd81,11,11,1|-qrqd80,15,11,0|-qgvpc1,15,11,0|-qgvpc0,16,6,1|-q8yio1,16,6,1|-q8yio0,15,11,0|-ou36w1,15,11,0|-ou36w0,10,10,0|-feqak1,10,10,0|-feqak0,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d6a2o1,11,11,1|-d6a2o0,10,10,0|-cvmtg1,10,10,0|-cvmtg0,11,11,1|-cm2g81,11,11,1|-cm2g80,10,10,0|-cdmo41,10,10,0|-cdmo40,11,11,1|-c4kl81,11,11,1|-c4kl80,10,10,0|-bttjw1,10,10,0|-bttjw0,11,11,1|-blwd81,11,11,1|-blwd80,10,10,0|-bbtek1,10,10,0|-bbtek0,11,11,1|-b36ak1,11,11,1|-b36ak0,10,10,0|-atgak1,10,10,0|-atgak0,11,11,1|-akg7w1,11,11,1|-akg7w0,10,10,0|-6kf401,10,10,0|-6kf400,11,11,1|-6eaqo1,11,11,1|-6eaqo0,10,10,0|-64xpc1,10,10,0|-64xpc0,11,11,1|-5vko01,11,11,1|-5vko00,10,10,0|-5iyyo1,10,10,0|-5iyyo0,11,11,1|-5chmo1,11,11,1|-5chmo0,10,10,0|-534lc1,10,10,0|-534lc0,11,11,1|-4trk01,11,11,1|-4trk00,10,10,0|-4hitc1,10,10,0|-4hitc0,11,11,1|-4b1hc1,11,11,1|-4b1hc0,10,10,0|-3ysqo1,10,10,0|-3ysqo0,11,11,1|-3sbeo1,11,11,1|-3sbeo0,10,10,0|-3g2o01,10,10,0|-3g2o00,11,11,1|-39lc01,11,11,1|-39lc00,10,10,0|-2wzmo1,10,10,0|-2wzmo0,11,11,1|-2qv9c1,11,11,1|-2qv9c0,10,10,0|3s9jzz,10,10,0|3s9k00,11,11,1|419mnz,11,11,1|419mo0,10,10,0|4azmnz,10,10,0|4azmo0,11,11,1|4kcnzz,11,11,1|4kco00,10,10,0|4tppbz,10,10,0|4tppc0,11,11,1|532qnz,11,11,1|532qo0,10,10,0|5csqnz,10,10,0|5csqo0,11,11,1|5lstbz,11,11,1|5lstc0,10,10,0|5v5unz,10,10,0|5v5uo0,11,11,1|64ivzz,11,11,1|64iw00,10,10,0|6dvxbz,10,10,0|6dvxc0,11,11,1|6n8ynz,11,11,1|6n8yo0,10,10,0|6wlzzz,10,10,0|6wm000,11,11,1|75z1bz,11,11,1|75z1c0,10,10,0|7fc2nz,10,10,0|7fc2o0,11,11,1|7p22nz,11,11,1|7p22o0,10,10,0|7yf3zz,10,10,0|7yf400,11,11,1|87s5bz,11,11,1|87s5c0,10,10,0|8h56nz,10,10,0|8h56o0,11,11,1|8qi7zz,11,11,1|8qi800,10,10,0|8zv9bz,10,10,0|8zv9c0,11,11,1|998anz,11,11,1|998ao0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Zagreb|,0,332,0|-18vsmgo,10,10,0|-ezayw1,10,10,0|-ezayw0,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-dfqqk1,10,10,0|-dfqqk0,11,11,1|-d6dp81,11,11,1|-d6dp80,10,10,0|-cv5zw1,10,10,0|-cv5zw0,11,11,1|-cofek1,11,11,1|-cofek0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Europe/Zaporozhye|,0,250,0|-1ayy96g,157,381,0|-nu12hd,157,381,0|-nu12hc,15,11,0|-kmr1k1,15,11,0|-kmr1k0,148,6,0|-esq0c1,148,6,0|-esq0c0,11,11,1|-e6dzw1,11,11,1|-e6dzw0,10,10,0|-dytrw1,10,10,0|-dytrw0,11,11,1|-dp3rw1,11,11,1|-dp3rw0,10,10,0|-do11g1,10,10,0|-do11g0,148,6,0|5vb6bz,148,6,0|5vb6c0,149,209,1|64pzjz,149,209,1|64pzk0,148,6,0|6e33nz,148,6,0|6e33o0,149,209,1|6nhwvz,149,209,1|6nhww0,148,6,0|6wv0zz,148,6,0|6wv100,149,209,1|769u7z,149,209,1|769u80,148,6,0|7foszz,148,6,0|7fot00,149,209,1|7p1zvz,149,209,1|7p1zw0,148,6,0|7yf17z,148,6,0|7yf180,149,209,1|87s2jz,149,209,1|87s2k0,148,6,0|8h53vz,148,6,0|8h53w0,149,209,1|8qi57z,149,209,1|8qi580,148,6,0|8zv6jz,148,6,0|8zv6k0,149,209,1|9987vz,149,209,1|9987w0,148,6,0|9il97z,148,6,0|9il980,149,209,1|9ryajz,149,209,1|9ryak0,148,6,0|a1bbvz,148,6,0|a1bbw0,149,209,1|aaod7z,149,209,1|aaod80,148,6,0|ak1ejz,148,6,0|ak1ek0,149,209,1|atrejz,149,209,1|atrek0,148,6,0|b34fvz,148,6,0|b34fw0,16,6,1|bchbnz,16,6,1|bchbo0,15,11,0|blufrz,15,11,0|blufs0,16,6,1|bv7ebz,16,6,1|bv7ec0,15,11,0|c4kifz,15,11,0|c4kig0,16,6,1|cdxgzz,16,6,1|cdxh00,15,11,0|cnal3z,15,11,0|cnal40,16,6,1|cwnjnz,16,6,1|cwnjo0,15,11,0|d60w3z,15,11,0|d60w40,16,6,1|dfdxfz,16,6,1|dfdxg0,15,11,0|dp3xfz,15,11,0|dp3xg0,16,6,1|dzwtfz,16,6,1|dzwtg0,15,11,0|e7u03z,15,11,0|e7u040,16,6,1|eimw3z,16,6,1|eimw40,15,11,0|eqk2rz,15,11,0|eqk2s0,16,6,1|f1cyrz,16,6,1|f1cys0,15,11,0|f9a5fz,15,11,0|f9a5g0,16,6,1|fkg03z,16,6,1|fkg040,15,11,0|fs083z,15,11,0|fs0840,16,6,1|g362rz,16,6,1|g362s0,15,11,0|gaqarz,15,11,0|gaqas0,16,6,1|glw5fz,16,6,1|glw5g0,15,11,0|gttc3z,15,11,0|gttc40,16,6,1|h4m83z,16,6,1|h4m840,15,11,0|hcjerz,15,11,0|hcjes0,16,6,1|hncarz,16,6,1|hncas0,15,11,0|hv9hfz,15,11,0|hv9hg0,16,6,1|i6fc3z,16,6,1|i6fc40,15,11,0|idzk3z,15,11,0|idzk40,16,6,1|ip5erz,16,6,1|ip5es0,15,11,0|iwpmrz,15,11,0|iwpms0,16,6,1|j7vhfz,16,6,1|j7vhg0,15,11,0|jffpfz,15,11,0|jffpg0,16,6,1|jqlk3z,16,6,1|jqlk40,15,11,0|jyiqrz,15,11,0|jyiqs0,16,6,1|k9bmrz,16,6,1|k9bms0,15,11,0|kh8tfz,15,11,0|kh8tg0,16,6,1|ks1pfz,16,6,1|ks1pg0,15,11,0|kzyw3z,15,11,0|kzyw40,16,6,1|lb4qrz,16,6,1|lb4qs0,15,11,0|lioyrz,15,11,0|lioys0,16,6,1|ltutfz,16,6,1|ltutg0,15,11,0|m1f1fz,15,11,0|m1f1g0,16,6,1|mckw3z,16,6,1|mckw40,15,11,0|mki2rz,15,11,0|mki2s0,16,6,1|mvayrz,16,6,1|mvays0,15,11,0|n385fz,15,11,0|n385g0,16,6,1|ne11fz,16,6,1|ne11g0,15,11,0|nly83z,15,11,0|nly840,16,6,1|nwr43z,16,6,1|nwr440,15,11,0|o4oarz,15,11,0|o4oas0,16,6,1|ofu5fz,16,6,1|ofu5g0,15,11,0|onedfz,15,11,0|onedg0,16,6,1|oyk83z,16,6,1|oyk840,15,11,0|p64g3z,15,11,0|p64g40,16,6,1|phaarz,16,6,1|phaas0,15,11,0|pp7hfz,15,11,0|pp7hg0,16,6,1|q00dfz,16,6,1|q00dg0,15,11,0|q7xk3z,15,11,0|q7xk40,16,6,1|qiqg3z,16,6,1|qiqg40,15,11,0|qqnmrz,15,11,0|qqnms0,16,6,1|r1thfz,16,6,1|r1thg0,15,11,0|r9dpfz,15,11,0|r9dpg0,16,6,1|rkjk3z,16,6,1|rkjk40,15,11,0|rs3s3z,15,11,0|rs3s40,16,6,1|s39mrz,16,6,1|s39ms0,15,11,0|sb6tfz,15,11,0|sb6tg0,16,6,1|slzpfz,16,6,1|slzpg0,15,11,0|stww3z,15,11,0|stww40,16,6,1|t4ps3z,16,6,1|t4ps40,15,11,0|tcmyrz,15,11,0|tcmys0,16,6,1|tnfurz,16,6,1|tnfus0,15,11,0|tvd1fz,15,11,0|tvd1g0,16,6,1|u6iw3z,16,6,1|u6iw40,15,11,0|ue343z,15,11,0|ue3440,16,6,1|up8yrz,16,6,1|up8ys0,15,11,0|uwt6rz,15,11,0|uwt6s0,16,6,1|v7z1fz,16,6,1|v7z1g0,15,11,0|vfw83z,15,11,0|vfw840,16,6,1|vqp43z,16,6,1|vqp440,15,11,0|vymarz,15,11,0|vymas0,16,6,1|w9f6rz,16,6,1|w9f6s0,15,11,0|whcdfz,15,11,0|whcdg0,16,6,1|wsi83z,16,6,1|wsi840,15,11,0|x02g3z,15,11,0|x02g40,16,6,1|xb8arz,16,6,1|xb8as0,15,11,0|xisirz,15,11,0|xisis0,16,6,1|xtydfz,16,6,1|xtydg0,15,11,0|y1ilfz,15,11,0|y1ilg0,16,6,1|ycog3z,16,6,1|ycog40,15,11,0|yklmrz,15,11,0|yklms0,16,6,1|yveirz,16,6,1|yveis0,15,11,0|z3bpfz,15,11,0|z3bpg0,16,6,1|ze4lfz,16,6,1|ze4lg0,15,11,0","Europe/Zurich|,0,338,0|-1os49kw,53,339,0|-13g441n,53,339,0|-13g441m,10,10,0|-eyh6o1,10,10,0|-eyh6o0,11,11,1|-eqk001,11,11,1|-eqk000,10,10,0|-efr401,10,10,0|-efr400,11,11,1|-e7txc1,11,11,1|-e7txc0,10,10,0|5v5xfz,10,10,0|5v5xg0,11,11,1|64iyrz,11,11,1|64iys0,10,10,0|6dw03z,10,10,0|6dw040,11,11,1|6n91fz,11,11,1|6n91g0,10,10,0|6wm2rz,10,10,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,10,0|7fc5fz,10,10,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,10,0|7yf6rz,10,10,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,10,0|8h59fz,10,10,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,10,0|8zvc3z,10,10,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,10,0|9ilerz,10,10,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,10,0|a1bhfz,10,10,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,10,0|ak1k3z,10,10,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,10,0|b34lfz,10,10,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,10,0|bluo3z,10,10,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,10,0|c4kqrz,10,10,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,10,0|cnatfz,10,10,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,10,0|d60w3z,10,10,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,10,0|dp3xfz,10,10,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,10,0|e7u03z,10,10,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,10,0|eqk2rz,10,10,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,10,0|f9a5fz,10,10,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,10,0|fs083z,10,10,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,10,0|gaqarz,10,10,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,10,0|gttc3z,10,10,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,10,0|hcjerz,10,10,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,10,0|hv9hfz,10,10,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,10,0|idzk3z,10,10,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,10,0|iwpmrz,10,10,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,10,0|jffpfz,10,10,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,10,0|jyiqrz,10,10,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,10,0|kh8tfz,10,10,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,10,0|kzyw3z,10,10,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,10,0|lioyrz,10,10,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,10,0|m1f1fz,10,10,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,10,0|mki2rz,10,10,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,10,0|n385fz,10,10,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,10,0|nly83z,10,10,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,10,0|o4oarz,10,10,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,10,0|onedfz,10,10,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,10,0|p64g3z,10,10,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,10,0|pp7hfz,10,10,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,10,0|q7xk3z,10,10,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,10,0|qqnmrz,10,10,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,10,0|r9dpfz,10,10,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,10,0|rs3s3z,10,10,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,10,0|sb6tfz,10,10,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,10,0|stww3z,10,10,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,10,0|tcmyrz,10,10,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,10,0|tvd1fz,10,10,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,10,0|ue343z,10,10,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,10,0|uwt6rz,10,10,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,10,0|vfw83z,10,10,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,10,0|vymarz,10,10,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,10,0|whcdfz,10,10,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,10,0|x02g3z,10,10,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,10,0|xisirz,10,10,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,10,0|y1ilfz,10,10,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,10,0|yklmrz,10,10,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,10,0|z3bpfz,10,10,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,10,0","Indian/Antananarivo|,0,4,0|-w6p5hg,4,5,0|-lnsey1,4,5,0|-lnsey0,5,6,0|-kvcdo1,5,6,0|-kvcdo0,4,5,0|-h80ka1,4,5,0|-h80ka0,6,7,0|-eb6ib1,6,7,0|-eb6ib0,5,6,0","Indian/Chagos|,0,382,0|-wvpc2s,92,194,0|dkgsrz,92,194,0|dkgss0,96,196,0","Indian/Christmas|,0,383,0|-133iwws,91,193,0","Indian/Cocos|,0,384,0|-10j6sm4,109,229,0","Indian/Comoro|,0,4,0|-w6p5hg,4,5,0|-lnsey1,4,5,0|-lnsey0,5,6,0|-kvcdo1,5,6,0|-kvcdo0,4,5,0|-h80ka1,4,5,0|-h80ka0,6,7,0|-eb6ib1,6,7,0|-eb6ib0,5,6,0","Indian/Kerguelen|,60,1,0|-afrs00,92,194,0","Indian/Mahe|,0,385,0|-wvp8xo,105,209,0","Indian/Maldives|,0,386,0|-1ayyga0,21,386,0|-57x6y1,21,386,0|-57x6y0,92,194,0","Indian/Mauritius|,0,387,0|-wvp9bc,105,209,0|6nykvz,105,209,0|6nykw0,92,194,1|6wai3z,92,194,1|6wai40,105,209,0|k9befz,105,209,0|k9beg0,92,194,1|kh8ibz,92,194,1|kh8ic0,105,209,0","Indian/Mayotte|,0,4,0|-w6p5hg,4,5,0|-lnsey1,4,5,0|-lnsey0,5,6,0|-kvcdo1,5,6,0|-kvcdo0,4,5,0|-h80ka1,4,5,0|-h80ka0,6,7,0|-eb6ib1,6,7,0|-eb6ib0,5,6,0","Indian/Reunion|,0,388,0|-uks29s,105,209,0","Pacific/Apia|,0,389,0|-14fxxj4,0,390,0|-usiiv5,0,390,0|-usiiv4,158,391,0|-afqw21,158,391,0|-afqw20,159,35,0|l9cp7z,159,35,0|l9cp80,160,36,1|lj12vz,160,36,1|lj12w0,159,35,0|ls15jz,159,35,0|ls15k0,160,36,1|lx0h3z,160,36,1|lx0h40,104,207,1|m1r5jz,104,207,1|m1r5k0,103,201,0|mb46vz,103,201,0|mb46w0,104,207,1|mku6vz,104,207,1|mku6w0,103,201,0|mtu9jz,103,201,0|mtu9k0,104,207,1|n3k9jz,104,207,1|n3k9k0,103,201,0|nckc7z,103,201,0|nckc80,104,207,1|nmac7z,104,207,1|nmac80,103,201,0|nvaevz,103,201,0|nvaew0,104,207,1|o50evz,104,207,1|o50ew0,103,201,0|oe0hjz,103,201,0|oe0hk0,104,207,1|onqhjz,104,207,1|onqhk0,103,201,0|owqk7z,103,201,0|owqk80,104,207,1|p6gk7z,104,207,1|p6gk80,103,201,0|pftljz,103,201,0|pftlk0,104,207,1|ppjljz,104,207,1|ppjlk0,103,201,0|pyjo7z,103,201,0|pyjo80,104,207,1|q89o7z,104,207,1|q89o80,103,201,0|qh9qvz,103,201,0|qh9qw0,104,207,1|qqzqvz,104,207,1|qqzqw0,103,201,0|qzztjz,103,201,0|qzztk0,104,207,1|r9ptjz,104,207,1|r9ptk0,103,201,0|ripw7z,103,201,0|ripw80,104,207,1|rsfw7z,104,207,1|rsfw80,103,201,0|s1fyvz,103,201,0|s1fyw0,104,207,1|sbixjz,104,207,1|sbixk0,103,201,0|skj07z,103,201,0|skj080,104,207,1|su907z,104,207,1|su9080,103,201,0|t392vz,103,201,0|t392w0,104,207,1|tcz2vz,104,207,1|tcz2w0,103,201,0|tlz5jz,103,201,0|tlz5k0,104,207,1|tvp5jz,104,207,1|tvp5k0,103,201,0|u4p87z,103,201,0|u4p880,104,207,1|uef87z,104,207,1|uef880,103,201,0|unfavz,103,201,0|unfaw0,104,207,1|ux5avz,104,207,1|ux5aw0,103,201,0|v6ic7z,103,201,0|v6ic80,104,207,1|vg8c7z,104,207,1|vg8c80,103,201,0|vp8evz,103,201,0|vp8ew0,104,207,1|vyyevz,104,207,1|vyyew0,103,201,0|w7yhjz,103,201,0|w7yhk0,104,207,1|whohjz,104,207,1|whohk0,103,201,0|wqok7z,103,201,0|wqok80,104,207,1|x0ek7z,104,207,1|x0ek80,103,201,0|x9emvz,103,201,0|x9emw0,104,207,1|xj4mvz,104,207,1|xj4mw0,103,201,0|xs4pjz,103,201,0|xs4pk0,104,207,1|y1upjz,104,207,1|y1upk0,103,201,0|yb7qvz,103,201,0|yb7qw0,104,207,1|ykxqvz,104,207,1|ykxqw0,103,201,0|ytxtjz,103,201,0|ytxtk0,104,207,1|z3ntjz,104,207,1|z3ntk0,103,201,0|zcnw7z,103,201,0|zcnw80,104,207,1","Pacific/Auckland|,0,197,0|-1gsoz14,97,198,0|-m01p21,97,198,0|-m01p20,98,199,1|-ltxei1,98,199,1|-ltxei0,97,198,0|-lieie1,97,198,0|-lieie0,98,200,1|-lahd41,98,200,1|-lahd40,97,198,0|-kzofq1,97,198,0|-kzofq0,98,200,1|-krrag1,98,200,1|-krrag0,97,198,0|-kgyd21,97,198,0|-kgyd20,98,200,1|-k917s1,98,200,1|-k917s0,97,198,0|-jy8ae1,97,198,0|-jy8ae0,98,200,1|-jpy6g1,98,200,1|-jpy6g0,97,198,0|-jfi7q1,97,198,0|-jfi7q0,98,200,1|-j783s1,98,200,1|-j783s0,97,198,0|-iws521,97,198,0|-iws520,98,200,1|-imc941,98,200,1|-imc940,97,198,0|-ief121,97,198,0|-ief120,98,200,1|-i3m6g1,98,200,1|-i3m6g0,97,198,0|-hvoye1,97,198,0|-hvoye0,98,200,1|-hkw3s1,98,200,1|-hkw3s0,97,198,0|-hcyvq1,97,198,0|-hcyvq0,98,200,1|-h26141,98,200,1|-h26140,97,198,0|-gu8t21,97,198,0|-gu8t20,98,200,1|-gjfyg1,98,200,1|-gjfyg0,97,198,0|-gbiqe1,97,198,0|-gbiqe0,98,200,1|-g0cx41,98,200,1|-g0cx40,97,198,0|-fssnq1,97,198,0|-fssnq0,98,200,1|-fhmug1,98,200,1|-fhmug0,97,198,0|-f9pme1,97,198,0|-f9pme0,98,200,1|-ciy9c1,98,200,1|-ciy9c0,98,200,0|2ivg7z,98,200,0|2ivg80,99,201,1|2omuvz,99,201,1|2omuw0,98,200,0|318k7z,98,200,0|318k80,99,201,1|382uvz,99,201,1|382uw0,98,200,0|3kbljz,98,200,0|3kblk0,99,201,1|3qsxjz,99,201,1|3qsxk0,98,200,0|431o7z,98,200,0|431o80,99,201,1|49j07z,99,201,1|49j080,98,200,0|4lrqvz,98,200,0|4lrqw0,99,201,1|4s92vz,99,201,1|4s92w0,98,200,0|54htjz,98,200,0|54htk0,99,201,1|5az5jz,99,201,1|5az5k0,98,200,0|5n7w7z,98,200,0|5n7w80,99,201,1|5tp87z,99,201,1|5tp880,98,200,0|65xyvz,98,200,0|65xyw0,99,201,1|6cs9jz,99,201,1|6cs9k0,98,200,0|6p107z,98,200,0|6p1080,99,201,1|6vic7z,99,201,1|6vic80,98,200,0|77r2vz,98,200,0|77r2w0,99,201,1|7e8evz,99,201,1|7e8ew0,98,200,0|7qh5jz,98,200,0|7qh5k0,99,201,1|7wyhjz,99,201,1|7wyhk0,98,200,0|89787z,98,200,0|897880,99,201,1|8fok7z,99,201,1|8fok80,98,200,0|8rxavz,98,200,0|8rxaw0,99,201,1|8yemvz,99,201,1|8yemw0,98,200,0|9andjz,98,200,0|9andk0,99,201,1|9hho7z,99,201,1|9hho80,98,200,0|9tqevz,98,200,0|9tqew0,99,201,1|a07qvz,99,201,1|a07qw0,98,200,0|abdljz,98,200,0|abdlk0,99,201,1|ajnqvz,99,201,1|ajnqw0,98,200,0|au3o7z,98,200,0|au3o80,99,201,1|b2dtjz,99,201,1|b2dtk0,98,200,0|bctqvz,98,200,0|bctqw0,99,201,1|bl3w7z,99,201,1|bl3w80,98,200,0|bvjtjz,98,200,0|bvjtk0,99,201,1|c46xjz,99,201,1|c46xk0,98,200,0|ce9w7z,98,200,0|ce9w80,99,201,1|cmx07z,99,201,1|cmx080,98,200,0|cwzyvz,98,200,0|cwzyw0,99,201,1|d5n2vz,99,201,1|d5n2w0,98,200,0|dfq1jz,98,200,0|dfq1k0,99,201,1|dod5jz,99,201,1|dod5k0,98,200,0|dyt2vz,98,200,0|dyt2w0,99,201,1|e7387z,99,201,1|e73880,98,200,0|ehj5jz,98,200,0|ehj5k0,99,201,1|eptavz,99,201,1|eptaw0,98,200,0|f0987z,98,200,0|f09880,99,201,1|f8wc7z,99,201,1|f8wc80,98,200,0|fizavz,98,200,0|fizaw0,99,201,1|frmevz,99,201,1|frmew0,98,200,0|g1pdjz,98,200,0|g1pdk0,99,201,1|gachjz,99,201,1|gachk0,98,200,0|gksevz,98,200,0|gksew0,99,201,1|gt2k7z,99,201,1|gt2k80,98,200,0|h3ihjz,98,200,0|h3ihk0,99,201,1|hbsmvz,99,201,1|hbsmw0,98,200,0|hm8k7z,98,200,0|hm8k80,99,201,1|huvo7z,99,201,1|huvo80,98,200,0|i4ymvz,98,200,0|i4ymw0,99,201,1|idlqvz,99,201,1|idlqw0,98,200,0|inopjz,98,200,0|inopk0,99,201,1|iwbtjz,99,201,1|iwbtk0,98,200,0|j6es7z,98,200,0|j6es80,99,201,1|jf1w7z,99,201,1|jf1w80,98,200,0|jp4uvz,98,200,0|jp4uw0,99,201,1|jyuuvz,99,201,1|jyuuw0,98,200,0|k7uxjz,98,200,0|k7uxk0,99,201,1|khkxjz,99,201,1|khkxk0,98,200,0|kql07z,98,200,0|kql080,99,201,1|l0b07z,99,201,1|l0b080,98,200,0|l9b2vz,98,200,0|l9b2w0,99,201,1|lj12vz,99,201,1|lj12w0,98,200,0|ls15jz,98,200,0|ls15k0,99,201,1|m1r5jz,99,201,1|m1r5k0,98,200,0|mb46vz,98,200,0|mb46w0,99,201,1|mku6vz,99,201,1|mku6w0,98,200,0|mtu9jz,98,200,0|mtu9k0,99,201,1|n3k9jz,99,201,1|n3k9k0,98,200,0|nckc7z,98,200,0|nckc80,99,201,1|nmac7z,99,201,1|nmac80,98,200,0|nvaevz,98,200,0|nvaew0,99,201,1|o50evz,99,201,1|o50ew0,98,200,0|oe0hjz,98,200,0|oe0hk0,99,201,1|onqhjz,99,201,1|onqhk0,98,200,0|owqk7z,98,200,0|owqk80,99,201,1|p6gk7z,99,201,1|p6gk80,98,200,0|pftljz,98,200,0|pftlk0,99,201,1|ppjljz,99,201,1|ppjlk0,98,200,0|pyjo7z,98,200,0|pyjo80,99,201,1|q89o7z,99,201,1|q89o80,98,200,0|qh9qvz,98,200,0|qh9qw0,99,201,1|qqzqvz,99,201,1|qqzqw0,98,200,0|qzztjz,98,200,0|qzztk0,99,201,1|r9ptjz,99,201,1|r9ptk0,98,200,0|ripw7z,98,200,0|ripw80,99,201,1|rsfw7z,99,201,1|rsfw80,98,200,0|s1fyvz,98,200,0|s1fyw0,99,201,1|sbixjz,99,201,1|sbixk0,98,200,0|skj07z,98,200,0|skj080,99,201,1|su907z,99,201,1|su9080,98,200,0|t392vz,98,200,0|t392w0,99,201,1|tcz2vz,99,201,1|tcz2w0,98,200,0|tlz5jz,98,200,0|tlz5k0,99,201,1|tvp5jz,99,201,1|tvp5k0,98,200,0|u4p87z,98,200,0|u4p880,99,201,1|uef87z,99,201,1|uef880,98,200,0|unfavz,98,200,0|unfaw0,99,201,1|ux5avz,99,201,1|ux5aw0,98,200,0|v6ic7z,98,200,0|v6ic80,99,201,1|vg8c7z,99,201,1|vg8c80,98,200,0|vp8evz,98,200,0|vp8ew0,99,201,1|vyyevz,99,201,1|vyyew0,98,200,0|w7yhjz,98,200,0|w7yhk0,99,201,1|whohjz,99,201,1|whohk0,98,200,0|wqok7z,98,200,0|wqok80,99,201,1|x0ek7z,99,201,1|x0ek80,98,200,0|x9emvz,98,200,0|x9emw0,99,201,1|xj4mvz,99,201,1|xj4mw0,98,200,0|xs4pjz,98,200,0|xs4pk0,99,201,1|y1upjz,99,201,1|y1upk0,98,200,0|yb7qvz,98,200,0|yb7qw0,99,201,1|ykxqvz,99,201,1|ykxqw0,98,200,0|ytxtjz,98,200,0|ytxtk0,99,201,1|z3ntjz,99,201,1|z3ntk0,98,200,0|zcnw7z,98,200,0|zcnw80,99,201,1","Pacific/Bougainville|,0,392,0|-1ayyvh4,161,393,0|-1354j8x,161,393,0|-1354j8w,93,195,0|-ecsh41,93,195,0|-ecsh40,107,224,0|-cpsbo1,107,224,0|-cpsbo0,93,195,0|nh90fz,93,195,0|nh90g0,90,192,0","Pacific/Chatham|,0,394,0|-1gsp0n0,162,395,0|-ciya11,162,395,0|-ciya10,163,396,0|2ivg7z,163,396,0|2ivg80,164,397,1|2omuvz,164,397,1|2omuw0,163,396,0|318k7z,163,396,0|318k80,164,397,1|382uvz,164,397,1|382uw0,163,396,0|3kbljz,163,396,0|3kblk0,164,397,1|3qsxjz,164,397,1|3qsxk0,163,396,0|431o7z,163,396,0|431o80,164,397,1|49j07z,164,397,1|49j080,163,396,0|4lrqvz,163,396,0|4lrqw0,164,397,1|4s92vz,164,397,1|4s92w0,163,396,0|54htjz,163,396,0|54htk0,164,397,1|5az5jz,164,397,1|5az5k0,163,396,0|5n7w7z,163,396,0|5n7w80,164,397,1|5tp87z,164,397,1|5tp880,163,396,0|65xyvz,163,396,0|65xyw0,164,397,1|6cs9jz,164,397,1|6cs9k0,163,396,0|6p107z,163,396,0|6p1080,164,397,1|6vic7z,164,397,1|6vic80,163,396,0|77r2vz,163,396,0|77r2w0,164,397,1|7e8evz,164,397,1|7e8ew0,163,396,0|7qh5jz,163,396,0|7qh5k0,164,397,1|7wyhjz,164,397,1|7wyhk0,163,396,0|89787z,163,396,0|897880,164,397,1|8fok7z,164,397,1|8fok80,163,396,0|8rxavz,163,396,0|8rxaw0,164,397,1|8yemvz,164,397,1|8yemw0,163,396,0|9andjz,163,396,0|9andk0,164,397,1|9hho7z,164,397,1|9hho80,163,396,0|9tqevz,163,396,0|9tqew0,164,397,1|a07qvz,164,397,1|a07qw0,163,396,0|abdljz,163,396,0|abdlk0,164,397,1|ajnqvz,164,397,1|ajnqw0,163,396,0|au3o7z,163,396,0|au3o80,164,397,1|b2dtjz,164,397,1|b2dtk0,163,396,0|bctqvz,163,396,0|bctqw0,164,397,1|bl3w7z,164,397,1|bl3w80,163,396,0|bvjtjz,163,396,0|bvjtk0,164,397,1|c46xjz,164,397,1|c46xk0,163,396,0|ce9w7z,163,396,0|ce9w80,164,397,1|cmx07z,164,397,1|cmx080,163,396,0|cwzyvz,163,396,0|cwzyw0,164,397,1|d5n2vz,164,397,1|d5n2w0,163,396,0|dfq1jz,163,396,0|dfq1k0,164,397,1|dod5jz,164,397,1|dod5k0,163,396,0|dyt2vz,163,396,0|dyt2w0,164,397,1|e7387z,164,397,1|e73880,163,396,0|ehj5jz,163,396,0|ehj5k0,164,397,1|eptavz,164,397,1|eptaw0,163,396,0|f0987z,163,396,0|f09880,164,397,1|f8wc7z,164,397,1|f8wc80,163,396,0|fizavz,163,396,0|fizaw0,164,397,1|frmevz,164,397,1|frmew0,163,396,0|g1pdjz,163,396,0|g1pdk0,164,397,1|gachjz,164,397,1|gachk0,163,396,0|gksevz,163,396,0|gksew0,164,397,1|gt2k7z,164,397,1|gt2k80,163,396,0|h3ihjz,163,396,0|h3ihk0,164,397,1|hbsmvz,164,397,1|hbsmw0,163,396,0|hm8k7z,163,396,0|hm8k80,164,397,1|huvo7z,164,397,1|huvo80,163,396,0|i4ymvz,163,396,0|i4ymw0,164,397,1|idlqvz,164,397,1|idlqw0,163,396,0|inopjz,163,396,0|inopk0,164,397,1|iwbtjz,164,397,1|iwbtk0,163,396,0|j6es7z,163,396,0|j6es80,164,397,1|jf1w7z,164,397,1|jf1w80,163,396,0|jp4uvz,163,396,0|jp4uw0,164,397,1|jyuuvz,164,397,1|jyuuw0,163,396,0|k7uxjz,163,396,0|k7uxk0,164,397,1|khkxjz,164,397,1|khkxk0,163,396,0|kql07z,163,396,0|kql080,164,397,1|l0b07z,164,397,1|l0b080,163,396,0|l9b2vz,163,396,0|l9b2w0,164,397,1|lj12vz,164,397,1|lj12w0,163,396,0|ls15jz,163,396,0|ls15k0,164,397,1|m1r5jz,164,397,1|m1r5k0,163,396,0|mb46vz,163,396,0|mb46w0,164,397,1|mku6vz,164,397,1|mku6w0,163,396,0|mtu9jz,163,396,0|mtu9k0,164,397,1|n3k9jz,164,397,1|n3k9k0,163,396,0|nckc7z,163,396,0|nckc80,164,397,1|nmac7z,164,397,1|nmac80,163,396,0|nvaevz,163,396,0|nvaew0,164,397,1|o50evz,164,397,1|o50ew0,163,396,0|oe0hjz,163,396,0|oe0hk0,164,397,1|onqhjz,164,397,1|onqhk0,163,396,0|owqk7z,163,396,0|owqk80,164,397,1|p6gk7z,164,397,1|p6gk80,163,396,0|pftljz,163,396,0|pftlk0,164,397,1|ppjljz,164,397,1|ppjlk0,163,396,0|pyjo7z,163,396,0|pyjo80,164,397,1|q89o7z,164,397,1|q89o80,163,396,0|qh9qvz,163,396,0|qh9qw0,164,397,1|qqzqvz,164,397,1|qqzqw0,163,396,0|qzztjz,163,396,0|qzztk0,164,397,1|r9ptjz,164,397,1|r9ptk0,163,396,0|ripw7z,163,396,0|ripw80,164,397,1|rsfw7z,164,397,1|rsfw80,163,396,0|s1fyvz,163,396,0|s1fyw0,164,397,1|sbixjz,164,397,1|sbixk0,163,396,0|skj07z,163,396,0|skj080,164,397,1|su907z,164,397,1|su9080,163,396,0|t392vz,163,396,0|t392w0,164,397,1|tcz2vz,164,397,1|tcz2w0,163,396,0|tlz5jz,163,396,0|tlz5k0,164,397,1|tvp5jz,164,397,1|tvp5k0,163,396,0|u4p87z,163,396,0|u4p880,164,397,1|uef87z,164,397,1|uef880,163,396,0|unfavz,163,396,0|unfaw0,164,397,1|ux5avz,164,397,1|ux5aw0,163,396,0|v6ic7z,163,396,0|v6ic80,164,397,1|vg8c7z,164,397,1|vg8c80,163,396,0|vp8evz,163,396,0|vp8ew0,164,397,1|vyyevz,164,397,1|vyyew0,163,396,0|w7yhjz,163,396,0|w7yhk0,164,397,1|whohjz,164,397,1|whohk0,163,396,0|wqok7z,163,396,0|wqok80,164,397,1|x0ek7z,164,397,1|x0ek80,163,396,0|x9emvz,163,396,0|x9emw0,164,397,1|xj4mvz,164,397,1|xj4mw0,163,396,0|xs4pjz,163,396,0|xs4pk0,164,397,1|y1upjz,164,397,1|y1upk0,163,396,0|yb7qvz,163,396,0|yb7qw0,164,397,1|ykxqvz,164,397,1|ykxqw0,163,396,0|ytxtjz,163,396,0|ytxtk0,164,397,1|z3ntjz,164,397,1|z3ntk0,163,396,0|zcnw7z,163,396,0|zcnw80,164,397,1","Pacific/Chuuk|,0,398,0|-1t8j2rw,0,399,0|-100f5fx,0,399,0|-100f5fw,93,195,0|-su4zs1,93,195,0|-su4zs0,107,224,0|-qknl01,107,224,0|-qknl00,93,195,0|-f08x41,93,195,0|-f08x40,107,224,0|-cqtd01,107,224,0|-cqtd00,93,195,0","Pacific/Easter|,0,400,0|-15r0p2w,165,400,0|-jhfaex,165,400,0|-jhfaew,166,66,0|-lsvk1,166,66,0|-lsvk0,167,62,1|-e8qc1,167,62,1|-e8qc0,166,66,0|-1zww1,166,66,0|-1zww0,167,62,1|4hcbz,167,62,1|4hcc0,166,66,0|ekdrz,166,66,0|ekds0,167,62,1|mhhnz,167,62,1|mhho0,166,66,0|xagfz,166,66,0|xagg0,167,62,1|157kbz,167,62,1|157kc0,166,66,0|1gdhrz,166,66,0|1gdhs0,167,62,1|1nxmzz,167,62,1|1nxn00,166,66,0|1ydn3z,166,66,0|1ydn40,167,62,1|26npnz,167,62,1|26npo0,166,66,0|2htn3z,166,66,0|2htn40,167,62,1|2pdsbz,167,62,1|2pdsc0,166,66,0|30jprz,166,66,0|30jps0,167,62,1|38gtnz,167,62,1|38gto0,166,66,0|3j9sfz,166,66,0|3j9sg0,167,62,1|3r6wbz,167,62,1|3r6wc0,166,66,0|41zv3z,166,66,0|41zv40,167,62,1|49wyzz,167,62,1|49wz00,166,66,0|4l2wfz,166,66,0|4l2wg0,167,62,1|4sn1nz,167,62,1|4sn1o0,166,66,0|53sz3z,166,66,0|53sz40,167,62,1|5bd4bz,167,62,1|5bd4c0,166,66,0|5mj1rz,166,66,0|5mj1s0,167,62,1|5ug5nz,167,62,1|5ug5o0,166,66,0|6594fz,166,66,0|6594g0,167,62,1|6d68bz,167,62,1|6d68c0,167,62,0|6nz73z,167,62,0|6nz740,56,63,1|6vwazz,56,63,1|6vwb00,167,62,0|76p9rz,167,62,0|76p9s0,56,63,1|7emdnz,56,63,1|7emdo0,167,62,0|7psb3z,167,62,0|7psb40,56,63,1|7xcgbz,56,63,1|7xcgc0,167,62,0|88idrz,167,62,0|88ids0,56,63,1|8g2izz,56,63,1|8g2j00,167,62,0|8r8gfz,167,62,0|8r8gg0,56,63,1|90lezz,56,63,1|90lf00,167,62,0|99yj3z,167,62,0|99yj40,56,63,1|9hvmzz,56,63,1|9hvn00,167,62,0|9solrz,167,62,0|9sols0,56,63,1|a0lpnz,56,63,1|a0lpo0,167,62,0|abrn3z,167,62,0|abrn40,56,63,1|ajbsbz,56,63,1|ajbsc0,167,62,0|at1v3z,167,62,0|at1v40,56,63,1|b21uzz,56,63,1|b21v00,167,62,0|bd7sfz,167,62,0|bd7sg0,56,63,1|bl4wbz,56,63,1|bl4wc0,167,62,0|bvxv3z,167,62,0|bvxv40,56,63,1|c3uyzz,56,63,1|c3uz00,167,62,0|cenxrz,167,62,0|cenxs0,56,63,1|cml1nz,56,63,1|cml1o0,167,62,0|cxe0fz,167,62,0|cxe0g0,56,63,1|d5b4bz,56,63,1|d5b4c0,167,62,0|dgh1rz,167,62,0|dgh1s0,56,63,1|do16zz,56,63,1|do1700,167,62,0|dz74fz,167,62,0|dz74g0,56,63,1|e7u5nz,56,63,1|e7u5o0,167,62,0|ehx73z,167,62,0|ehx740,56,63,1|epuazz,56,63,1|epub00,167,62,0|ezxcfz,167,62,0|ezxcg0,56,63,1|f9n9nz,56,63,1|f9n9o0,167,62,0|fjdcfz,167,62,0|fjdcg0,56,63,1|fragbz,56,63,1|fragc0,167,62,0|g2gdrz,167,62,0|g2gds0,56,63,1|ga0izz,56,63,1|ga0j00,167,62,0|gl6gfz,167,62,0|gl6gg0,56,63,1|gsqlnz,56,63,1|gsqlo0,167,62,0|h3wj3z,167,62,0|h3wj40,56,63,1|hbgobz,56,63,1|hbgoc0,167,62,0|hmmlrz,167,62,0|hmmls0,56,63,1|hujpnz,56,63,1|hujpo0,167,62,0|i5cofz,167,62,0|i5cog0,56,63,1|id9sbz,56,63,1|id9sc0,167,62,0|io2r3z,167,62,0|io2r40,56,63,1|ivzuzz,56,63,1|ivzv00,167,62,0|j75sfz,167,62,0|j75sg0,56,63,1|jepxnz,56,63,1|jepxo0,167,62,0|jpvv3z,167,62,0|jpvv40,56,63,1|jyiwbz,56,63,1|jyiwc0,167,62,0|k8lxrz,167,62,0|k8lxs0,56,63,1|kgj1nz,56,63,1|kgj1o0,167,62,0|krc0fz,167,62,0|krc0g0,56,63,1|l0c0bz,56,63,1|l0c0c0,167,62,0|la233z,167,62,0|la2340,56,63,1|lkuwbz,56,63,1|lkuwc0,167,62,0|lq9f3z,167,62,0|lq9f40,56,63,1|m380bz,56,63,1|m380c0,167,62,0|m9pf3z,167,62,0|m9pf40,56,63,1|mly2zz,56,63,1|mly300,167,62,0|mssgfz,167,62,0|mssgg0,56,63,1|n4o5nz,56,63,1|n4o5o0,167,62,0|nbij3z,167,62,0|nbij40,56,63,1|o776zz,56,63,1|o77700,167,62,0|obvsfz,167,62,0|obvsg0,56,63,1|opx9nz,56,63,1|opx9o0,167,62,0|oulv3z,167,62,0|oulv40,56,63,1|p8ncbz,56,63,1|p8ncc0,167,62,0|pdbxrz,167,62,0|pdbxs0,56,63,1|ppklnz,56,63,1|ppklo0,167,62,0|pxhv3z,167,62,0|pxhv40,56,63,1|q8aobz,56,63,1|q8aoc0,167,62,0|qg7xrz,167,62,0|qg7xs0,56,63,1|qr0qzz,56,63,1|qr0r00,167,62,0|qyy0fz,167,62,0|qyy0g0,56,63,1|r9qtnz,56,63,1|r9qto0,167,62,0|rho33z,167,62,0|rho340,56,63,1|rsgwbz,56,63,1|rsgwc0,167,62,0|s0e5rz,167,62,0|s0e5s0,56,63,1|sbjxnz,56,63,1|sbjxo0,167,62,0|sjh73z,167,62,0|sjh740,56,63,1|sua0bz,56,63,1|sua0c0,167,62,0|t279rz,167,62,0|t279s0,56,63,1|td02zz,56,63,1|td0300,167,62,0|tkxcfz,167,62,0|tkxcg0,56,63,1|tvq5nz,56,63,1|tvq5o0,167,62,0|u3nf3z,167,62,0|u3nf40,56,63,1|ueg8bz,56,63,1|ueg8c0,167,62,0|umdhrz,167,62,0|umdhs0,56,63,1|uxj9nz,56,63,1|uxj9o0,167,62,0|v53kfz,167,62,0|v53kg0,56,63,1|vg9cbz,56,63,1|vg9cc0,167,62,0|vo6lrz,167,62,0|vo6ls0,56,63,1|vyzezz,56,63,1|vyzf00,167,62,0|w6wofz,167,62,0|w6wog0,56,63,1|whphnz,56,63,1|whpho0,167,62,0|wpmr3z,167,62,0|wpmr40,56,63,1|x0fkbz,56,63,1|x0fkc0,167,62,0|x8ctrz,167,62,0|x8cts0,56,63,1|xj5mzz,56,63,1|xj5n00,167,62,0|xr2wfz,167,62,0|xr2wg0,56,63,1|y28obz,56,63,1|y28oc0,167,62,0|y9sz3z,167,62,0|y9sz40,56,63,1|ykyqzz,56,63,1|ykyr00,167,62,0|ysw0fz,167,62,0|ysw0g0,56,63,1|z3otnz,56,63,1|z3oto0,167,62,0|zbm33z,167,62,0|zbm340,56,63,1","Pacific/Efate|,0,401,0|-u964i4,90,192,0|22nynz,90,192,0|22nyo0,102,200,1|27pfzz,102,200,1|27pg00,90,192,0|75y6rz,90,192,0|75y6s0,102,200,1|7fb5bz,102,200,1|7fb5c0,90,192,0|7oo9fz,90,192,0|7oo9g0,102,200,1|7y17zz,102,200,1|7y1800,90,192,0|87rarz,90,192,0|87ras0,102,200,1|8granz,102,200,1|8grao0,90,192,0|8qhdfz,90,192,0|8qhdg0,102,200,1|8zubzz,102,200,1|8zuc00,90,192,0|997g3z,90,192,0|997g40,102,200,1|9ikenz,102,200,1|9ikeo0,90,192,0|9rxirz,90,192,0|9rxis0,102,200,1|a1ahbz,102,200,1|a1ahc0,90,192,0|aanlfz,90,192,0|aanlg0,102,200,1|ak0jzz,102,200,1|ak0k00,90,192,0|atdo3z,90,192,0|atdo40,102,200,1|b2qmnz,102,200,1|b2qmo0,90,192,0|bcgpfz,90,192,0|bcgpg0,102,200,1|bikzzz,102,200,1|bil000,90,192,0|bwmmrz,90,192,0|bwmms0,102,200,1|c1b2nz,102,200,1|c1b2o0,90,192,0","Pacific/Enderbury|,0,402,0|-100dhng,168,403,0|535inz,168,403,0|535io0,159,35,0|d1o97z,159,35,0|d1o980,103,201,0","Pacific/Fakaofo|,0,404,0|-100dhmg,159,35,0|lx0jvz,159,35,0|lx0jw0,103,201,0","Pacific/Fiji|,0,405,0|-sa2x4w,102,200,0|f1p2vz,102,200,0|f1p2w0,103,201,1|f7tg7z,103,201,1|f7tg80,102,200,0|fks47z,102,200,0|fks480,103,201,1|fqjivz,103,201,1|fqjiw0,102,200,0|ktto7z,102,200,0|ktto80,103,201,1|kzy1jz,103,201,1|kzy1k0,102,200,0|laqxjz,102,200,0|laqxk0,103,201,1|lhl87z,103,201,1|lhl880,102,200,0|lth07z,102,200,0|lth080,103,201,1|ly5ivz,103,201,1|ly5iw0,102,200,0|mc72vz,102,200,0|mc72w0,103,201,1|mgvljz,103,201,1|mgvlk0,102,200,0|mva47z,102,200,0|mva480,103,201,1|mzllfz,103,201,1|mzllg0,102,200,0|ned5jz,102,200,0|ned5k0,103,201,1|nibqvz,103,201,1|nibqw0,102,200,0|nx387z,102,200,0|nx3880,103,201,1|o11tjz,103,201,1|o11tk0,102,200,0|og69jz,102,200,0|og69k0,103,201,1|ojrw7z,103,201,1|ojrw80,102,200,0|oywc7z,102,200,0|oywc80,103,201,1|p2hyvz,103,201,1|p2hyw0,102,200,0|phmevz,102,200,0|phmew0,103,201,1|pl81jz,103,201,1|pl81k0,102,200,0|q0pg7z,102,200,0|q0pg80,103,201,1|q3y47z,103,201,1|q3y480,102,200,0|qllavz,102,200,0|qllaw0,103,201,1|qn15jz,103,201,1|qn15k0,102,200,0|r2ik7z,102,200,0|r2ik80,103,201,1|r5r87z,103,201,1|r5r880,102,200,0|rl8mvz,102,200,0|rl8mw0,103,201,1|rohavz,103,201,1|rohaw0,102,200,0|s3ypjz,102,200,0|s3ypk0,103,201,1|s77djz,103,201,1|s77dk0,102,200,0|smos7z,102,200,0|smos80,103,201,1|spxg7z,103,201,1|spxg80,102,200,0|t5euvz,102,200,0|t5euw0,103,201,1|t90hjz,103,201,1|t90hk0,102,200,0|to4xjz,102,200,0|to4xk0,103,201,1|trqk7z,103,201,1|trqk80,102,200,0|u77yvz,102,200,0|u77yw0,103,201,1|uagmvz,103,201,1|uagmw0,102,200,0|upy1jz,102,200,0|upy1k0,103,201,1|ut6pjz,103,201,1|ut6pk0,102,200,0|v8o47z,102,200,0|v8o480,103,201,1|vbws7z,103,201,1|vbws80,102,200,0|vre6vz,102,200,0|vre6w0,103,201,1|vumuvz,103,201,1|vumuw0,102,200,0|wa49jz,102,200,0|wa49k0,103,201,1|wdpw7z,103,201,1|wdpw80,102,200,0|wt7avz,102,200,0|wt7aw0,103,201,1|wwfyvz,103,201,1|wwfyw0,102,200,0|xbxdjz,102,200,0|xbxdk0,103,201,1|xf61jz,103,201,1|xf61k0,102,200,0|xung7z,102,200,0|xung80,103,201,1|xxw47z,103,201,1|xxw480,102,200,0|yddivz,102,200,0|yddiw0,103,201,1|ygm6vz,103,201,1|ygm6w0,102,200,0|yw3ljz,102,200,0|yw3lk0,103,201,1|yzp87z,103,201,1|yzp880,102,200,0|zeto7z,102,200,0|zeto80,103,201,1","Pacific/Funafuti|,0,406,0|-100fais,102,200,0","Pacific/Galapagos|,0,407,0|-kcr62o,56,63,0|8cmlvz,56,63,0|8cmlw0,167,62,0|byewnz,167,62,0|byewo0,56,63,1|c1ylvz,56,63,1|c1ylw0,167,62,0","Pacific/Gambier|,0,408,0|-tvndoc,169,37,0","Pacific/Guadalcanal|,0,409,0|-tvowac,90,192,0","Pacific/Guam|,0,410,0|-1t8j1h0,0,411,0|-100f451,0,411,0|-100f450,170,195,0|-en8eg1,170,195,0|-en8eg0,107,224,0|-d9n501,107,224,0|-d9n500,170,195,0|-5hlkw1,170,195,0|-5hlkw0,171,192,1|-4nnvo1,171,192,1|-4nnvo0,170,195,0|-17w8w1,170,195,0|-17w8w0,171,192,1|-hih6d,171,192,1|-hih6c,170,195,0|-9y0w1,170,195,0|-9y0w0,171,192,1|-6ch01,171,192,1|-6ch00,170,195,0|5wcfz,170,195,0|5wcg0,171,192,1|cqkbz,171,192,1|cqkc0,170,195,0|omf3z,170,195,0|omf40,171,192,1|vgmzz,171,192,1|vgn00,170,195,0|22bb3z,170,195,0|22bb40,171,192,1|25wuzz,171,192,1|25wv00,170,195,0|3c75rz,170,195,0|3c75s0,171,192,1|3gq1pn,171,192,1|3gq1po,170,195,0|3tbtrz,170,195,0|3tbts0,171,192,1|3zt2zz,171,192,1|3zt300,170,195,0|g5z2vz,170,195,0|g5z2w0,172,195,0","Pacific/Honolulu|,0,412,0|-12lnw3m,30,413,0|-j50la1,30,413,0|-j50la0,31,414,1|-j3x0a1,31,414,1|-j3x0a0,30,413,0|-ek1pa1,30,413,0|-ek1pa0,173,414,1|-cq2tg1,173,414,1|-cq2tg0,174,414,1|-cnoo21,174,414,1|-cnoo20,30,413,0|-brzum1,30,413,0|-brzum0,30,36,0","Pacific/Kiritimati|,0,415,0|-100dk74,175,416,0|535eyn,175,416,0|535eyo,160,36,0|d1o6fz,160,36,0|d1o6g0,104,207,0","Pacific/Kosrae|,0,417,0|-1t8j4uk,0,418,0|-100f7il,0,418,0|-100f7ik,90,192,0|-su52k1,90,192,0|-su52k0,107,224,0|-qknl01,107,224,0|-qknl00,90,192,0|-h817w1,90,192,0|-h817w0,93,195,0|-f08x41,93,195,0|-f08x40,107,224,0|-cqtd01,107,224,0|-cqtd00,90,192,0|-4r7w1,90,192,0|-4r7w0,102,200,0|f4tvzz,102,200,0|f4tw00,90,192,0","Pacific/Kwajalein|,0,419,0|-100f8bk,90,192,0|-h817w1,90,192,0|-h817w0,93,195,0|-f08x41,93,195,0|-f08x40,107,224,0|-dip2c1,107,224,0|-dip2c0,90,192,0|-4r7w1,90,192,0|-4r7w0,168,403,0|cc3ynz,168,403,0|cc3yo0,102,200,0","Pacific/Majuro|,0,420,0|-100f91c,90,192,0|-su52k1,90,192,0|-su52k0,107,224,0|-qknl01,107,224,0|-qknl00,90,192,0|-h817w1,90,192,0|-h817w0,93,195,0|-f08x41,93,195,0|-f08x40,107,224,0|-dj2101,107,224,0|-dj2100,90,192,0|-4r7w1,90,192,0|-4r7w0,102,200,0","Pacific/Marquesas|,0,421,0|-tvncu0,176,414,0","Pacific/Midway|,0,422,0|-14fxxq0,0,423,0|-usij21,0,423,0|-usij20,177,35,0","Pacific/Nauru|,0,424,0|-pjxiws,143,198,0|-e9rby1,143,198,0|-e9rby0,107,224,0|-couzo1,107,224,0|-couzo0,143,198,0|4r4dlz,143,198,0|4r4dm0,102,200,0","Pacific/Niue|,0,425,0|-100dhv8,178,426,0|-9wyz6p,178,426,0|-9wyz6o,158,391,0|4kdjxz,158,391,0|4kdjy0,159,35,0","Pacific/Norfolk|,0,427,0|-100f8fs,179,428,0|-9x0ps1,179,428,0|-9x0ps0,143,198,0|2iiixz,143,198,0|2iiiy0,180,199,1|2ozuxz,180,199,1|2ozuy0,143,198,0|nvnexz,143,198,0|nvney0,90,192,0|pywpnz,90,192,0|pywpo0,102,200,1|q89qzz,102,200,1|q89r00,90,192,0|qhmsbz,90,192,0|qhmsc0,102,200,1|qqztnz,102,200,1|qqzto0,90,192,0|r0cuzz,90,192,0|r0cv00,102,200,1|r9pwbz,102,200,1|r9pwc0,90,192,0|rj2xnz,90,192,0|rj2xo0,102,200,1|rsfyzz,102,200,1|rsfz00,90,192,0|s1t0bz,90,192,0|s1t0c0,102,200,1|sbj0bz,102,200,1|sbj0c0,90,192,0|skw1nz,90,192,0|skw1o0,102,200,1|su92zz,102,200,1|su9300,90,192,0|t3m4bz,90,192,0|t3m4c0,102,200,1|tcz5nz,102,200,1|tcz5o0,90,192,0|tmc6zz,90,192,0|tmc700,102,200,1|tvp8bz,102,200,1|tvp8c0,90,192,0|u529nz,90,192,0|u529o0,102,200,1|uefazz,102,200,1|uefb00,90,192,0|unscbz,90,192,0|unscc0,102,200,1|ux5dnz,102,200,1|ux5do0,90,192,0|v6vdnz,90,192,0|v6vdo0,102,200,1|vg8ezz,102,200,1|vg8f00,90,192,0|vplgbz,90,192,0|vplgc0,102,200,1|vyyhnz,102,200,1|vyyho0,90,192,0|w8bizz,90,192,0|w8bj00,102,200,1|whokbz,102,200,1|whokc0,90,192,0|wr1lnz,90,192,0|wr1lo0,102,200,1|x0emzz,102,200,1|x0en00,90,192,0|x9robz,90,192,0|x9roc0,102,200,1|xj4pnz,102,200,1|xj4po0,90,192,0|xshqzz,90,192,0|xshr00,102,200,1|y1usbz,102,200,1|y1usc0,90,192,0|ybksbz,90,192,0|ybksc0,102,200,1|ykxtnz,102,200,1|ykxto0,90,192,0|yuauzz,90,192,0|yuav00,102,200,1|z3nwbz,102,200,1|z3nwc0,90,192,0|zd0xnz,90,192,0|zd0xo0,102,200,1","Pacific/Noumea|,0,429,0|-u9645o,90,192,0|44uerz,90,192,0|44ues0,102,200,1|497qnz,102,200,1|497qo0,90,192,0|4nkhfz,90,192,0|4nkhg0,102,200,1|4rznzz,102,200,1|4rzo00,90,192,0|e1ouzz,90,192,0|e1ov00,102,200,1|e6ddnz,102,200,1|e6ddo0,90,192,0","Pacific/Pago_Pago|,0,422,0|-14fxxq0,0,423,0|-usij21,0,423,0|-usij20,177,35,0","Pacific/Palau|,0,430,0|-1t8izkk,0,431,0|-100f28l,0,431,0|-100f28k,107,224,0","Pacific/Pitcairn|,0,432,0|-100dp8s,181,433,0|es2cxz,181,433,0|es2cy0,182,40,0","Pacific/Pohnpei|,0,434,0|-1t8j3ys,0,435,0|-100f6mt,0,435,0|-100f6ms,90,192,0|-su52k1,90,192,0|-su52k0,107,224,0|-qknl01,107,224,0|-qknl00,90,192,0|-h817w1,90,192,0|-h817w0,93,195,0|-f08x41,93,195,0|-f08x40,107,224,0|-cqtd01,107,224,0|-cqtd00,90,192,0","Pacific/Port_Moresby|,0,436,0|-1ayytx4,161,393,0|-1354j8x,161,393,0|-1354j8w,93,195,0","Pacific/Rarotonga|,0,437,0|-100djqw,183,413,0|4mj95z,183,413,0|4mj960,176,414,1|4sal1z,176,414,1|4sal20,160,36,0|54jd3z,160,36,0|54jd40,176,414,1|5b0npz,176,414,1|5b0nq0,160,36,0|5n9frz,160,36,0|5n9fs0,176,414,1|5tqqdz,176,414,1|5tqqe0,160,36,0|65zifz,160,36,0|65zig0,176,414,1|6ctrpz,176,414,1|6ctrq0,160,36,0|6p2jrz,160,36,0|6p2js0,176,414,1|6vjudz,176,414,1|6vjue0,160,36,0|77smfz,160,36,0|77smg0,176,414,1|7e9x1z,176,414,1|7e9x20,160,36,0|7qip3z,160,36,0|7qip40,176,414,1|7wzzpz,176,414,1|7wzzq0,160,36,0|898rrz,160,36,0|898rs0,176,414,1|8fq2dz,176,414,1|8fq2e0,160,36,0|8ryufz,160,36,0|8ryug0,176,414,1|8yg51z,176,414,1|8yg520,160,36,0|9aox3z,160,36,0|9aox40,176,414,1|9hj6dz,176,414,1|9hj6e0,160,36,0|9tryfz,160,36,0|9tryg0,176,414,1|a0991z,176,414,1|a09920,160,36,0|aci13z,160,36,0|aci140,176,414,1|aizbpz,176,414,1|aizbq0,160,36,0|av83rz,160,36,0|av83s0,176,414,1|b1pedz,176,414,1|b1pee0,160,36,0","Pacific/Saipan|,0,410,0|-1t8j1h0,0,411,0|-100f451,0,411,0|-100f450,170,195,0|-en8eg1,170,195,0|-en8eg0,107,224,0|-d9n501,107,224,0|-d9n500,170,195,0|-5hlkw1,170,195,0|-5hlkw0,171,192,1|-4nnvo1,171,192,1|-4nnvo0,170,195,0|-17w8w1,170,195,0|-17w8w0,171,192,1|-hih6d,171,192,1|-hih6c,170,195,0|-9y0w1,170,195,0|-9y0w0,171,192,1|-6ch01,171,192,1|-6ch00,170,195,0|5wcfz,170,195,0|5wcg0,171,192,1|cqkbz,171,192,1|cqkc0,170,195,0|omf3z,170,195,0|omf40,171,192,1|vgmzz,171,192,1|vgn00,170,195,0|22bb3z,170,195,0|22bb40,171,192,1|25wuzz,171,192,1|25wv00,170,195,0|3c75rz,170,195,0|3c75s0,171,192,1|3gq1pn,171,192,1|3gq1po,170,195,0|3tbtrz,170,195,0|3tbts0,171,192,1|3zt2zz,171,192,1|3zt300,170,195,0|g5z2vz,170,195,0|g5z2w0,172,195,0","Pacific/Tahiti|,0,438,0|-tvnayw,160,36,0","Pacific/Tarawa|,0,439,0|-100f9dg,102,200,0","Pacific/Tongatapu|,0,440,0|-100fbk8,184,441,0|-f4vrld,184,441,0|-f4vrlc,103,201,0|fj6mrz,103,201,0|fj6ms0,104,207,1|frmc3z,104,207,1|frmc40,103,201,0|g3i43z,103,201,0|g3i440,104,207,1|g7tlbz,104,207,1|g7tlc0,103,201,0|gm86rz,103,201,0|gm86s0,104,207,1|gqjnzz,104,207,1|gqjo00,103,201,0|og66rz,103,201,0|og66s0,104,207,1|ojrtfz,104,207,1|ojrtg0,103,201,0","Pacific/Wake|,0,442,0|-100f86s,102,200,0","Pacific/Wallis|,0,443,0|-100fbdk,102,200,0"],"abbrvs":"LMT|GMT|+0020|+0030|+0230|EAT|+0245|PMT|WET|WEST|CET|CEST|WAT|-01|CAT|EET|EEST|+00|+01|SAST|CAST|MMT|WAST|+0130|NST|NWT|NPT|BST|BDT|AHST|HST|HDT|AST|AWT|APT|AHDT|YST|AKST|AKDT|-03|-02|CMT|-04|-0430|AMT|CST|CDT|CWT|CPT|EST|MST|PST|MDT|BMT|ADT|-0530|-05|PDT|MWT|MPT|-00|MDDT|EDT|SJMT|YDT|YWT|YPT|YDDT|PWT|PPT|EWT|EPT|NDT|ADDT|KMT|QMT|-0345|HMT|PDDT|EDDT|FFMT|-0330|-0230|-0130|PPMT|SMT|CDDT|SDMT|NDDT|+08|+11|+07|+05|+10|AEST|AEDT|+06|NZMT|NZST|NZDT|+03|+02|+12|+13|+14|+04|+0730|+09|+0530|+0630|IST|IDT|PLMT|HKT|HKST|HKWT|JST|IMT|+0720|WIB|+0930|WIT|JMT|IDDT|+0430|PKT|PKST|+0545|+0820|WITA|KST|KDT|TBMT|TMT|+0330|JDT|RMT|FMT|ACST|ACDT|+0845|+0945|+1030|+1130|AWST|AWDT|+0120|CEMT|MSK|MSD|DMT|BDST|WEMT|MDST|LST|SET|WMT|+0220|-1130|-11|-10|PMMT|+1215|+1245|+1345|EMT|-07|-06|-12|-09|GST|GDT|ChST|HWT|HPT|-1040|-0930|SST|-1120|+1112|+1230|-0830|-08|-1030|+1220|GMT+14|GMT+13|GMT+12|GMT+11|GMT+10|GMT+9|GMT+8|GMT+7|GMT+6|GMT+5|GMT+4|GMT+3|GMT+2|GMT+1|GMT-1|GMT-2|GMT-3|GMT-4|GMT-5|GMT-6|GMT-7|GMT-8|GMT-9|GMT-10|GMT-11|GMT-12","offsets":"-1g|0|xc|1e0|6tg|6y0|8c0|7n0|kc|fl|2s0|5k0|-qw|mn|-2vw|-2s0|618|5sl|-1ek|-zg|-2g0|56o|460|5us|60w|-1zw|-226|2sc|18w|-1p9|2fw|1vw|360|xya|-wpq|-uk0|-rs0|-p00|12wo|-rrc|-m80|-be4|-b40|-8xc|-8c0|-5k0|-ato|-bw0|-c6k|-c3c|-cdo|-cqs|-ctg|-c44|-cos|-cac|-c2s|-cnc|-crn|-ci0|-aog|-gys|-go0|-dw0|-74s|-jho|-jg0|-b1h|-8z8|-gc0|-fa0|-aks|-b8g|-dps|-lip|-a44|-g2g|-ce8|-ce4|-9ow|-eq8|-eso|-g8c|-jn8|-fkd|-lks|-adw|-3gg|-ptg|-m9k|-jfw|-fdn|-l0g|-cxs|-gio|-mpz|-74o|-b3o|-b6s|-9rg|-6zg|-9q0|-6y0|-d68|-e7y|-grg|-es8|-ejc|-ars|-af0|-bs0|-f94|-f9c|-kjs|-fye|-g1i|-fzn|-g5v|-g2f|-fr4|-g7j|-g1d|15rv|-ow5|-fvq|-fpo|-cmc|-9uc|-e9o|-eac|-lwa|-6m4|-fz8|-fzc|-b44|-bb8|-iio|-jpg|-g83|-glg|16au|-od6|-id0|-aeg|-bzw|-iks|-aer|-460|-ebu|-dpe|-gcg|101a|-umq|-604|-iuj|-irc|-is3|-9kw|-jc4|-a7s|-a84|-a7o|-kr6|-de8|-ddo|-bu0|-c8p|-d4s|-d3a|-hig|-6go|-jdo|-ck0|-a4o|-cy0|-cyo|-8ms|-42g|15lz|-p21|-jyw|-g5g|-cqk|-gj0|-lo4|-ep8|-mss|-p0c|-hzo|14sh|-pvj|m80|uk0|jg0|dw0|rs0|go0|wd4|vy0|yq0|xc0|1040|1zo|8ng|e90|6nk|wv8|12w0|9b4|b40|al4|at8|9m8|884|880|9jk|98c|im4|fic|6ko|dtc|la4|ku0|l0g|p00|l7c|esc|esk|fa0|i20|6q0|gqs|gcw|n98|a8o|cqo|6ac|6ds|6hz|jr4|jqu|l56|nm0|gz0|jb5|js0|kdc|q20|qe0|6iu|6ig|ctc|ci0|tdo|cf0|fss|fz0|p3p|gd4|eva|h72|ity|j8d|kfk|n5c|l0y|rxc|m40|-189c|meo|66g|g5c|fcs|dl6|9ic|k8w|nac|bs4|c4g|qfc|ceh|nig|mhj|sgs|mi0|ctz|8an|9iw|9q0|glo|pvn|fqf|jsk|g7w|qiu|of7|o0y|htb|b89|af5|88o|-4r4|-5aw|-c06|-986|-2uo|-4cs|-194|-34o|-42o|-6rk|-apo|pnw|t60|sc8|q70|ra4|o88|nv4|ob0|r30|rl8|tgk|qug|lgc|s04|wk|3ok|3pc|a4|8wc|4e4|3so|2h4|2o8|t6|4u0|3j8|1kw|1dm|5c8|5bo|2bw|-15o|-169|1lr|-zo|-23|4md|5d4|5ew|5ng|97c|150|-ok|2os|53s|53c|1d8|6yh|707|9s7|ck7|4gy|78y|2b8|99w|8j6|6bc|6ao|4bg|3cc|2se|4l0|3o8|8yo|44o|30x|4os|3w0|4fc|6hc|des|jks|hy4|a9o|dm0|anc|a9s|yv4|-vsw|-vy0|st4|r8w|xz0|y10|zf0|1270|-12k4|s3w|-k94|v64|-vok|-xc0|-vpk|x4w|x6s|-glc|-ozo|tmc|-13v0|qt0|-t8e|-t60|-qe0|-t4w|-tmo|-10hg|u6k|uzk|vpc|-pu0|z20|-vm0|uws|-vgs|-vhc|v3s|v40|uto|-15rg|owk|-o38|-nm0|-11d8|tas|r94|-tl4|-rp4|w1g|y88|y9c|uus|y1k"}) } } if (!((function(t){if("Intl"in t&&"DateTimeFormat"in t.Intl&&"format"in t.Intl.DateTimeFormat.prototype)try{return"Australia/Sydney"===new Intl.DateTimeFormat("en",{timeZone:"Australia/Sydney",timeZoneName:"short"}).resolvedOptions().timeZone}catch(t){return!1}return!1})(self) )) { // Intl.DateTimeFormat.~timeZone.golden // @generated // prettier-ignore if ('DateTimeFormat' in Intl && Intl.DateTimeFormat.__addTZData) { Intl.DateTimeFormat.__addTZData({"zones":["Africa/Accra|,0,0,0|-s9p1ak,1,1,0|-q5eqo1,1,1,0|-q5eqo0,2,2,1|-q3g8pd,2,2,1|-q3g8pc,1,1,0|-pqwd41,1,1,0|-pqwd40,2,2,1|-pkmgpd,2,2,1|-pkmgpc,1,1,0|-p84fs1,1,1,0|-p84fs0,2,2,1|-p1ujdd,2,2,1|-p1ujdc,1,1,0|-opcig1,1,1,0|-opcig0,2,2,1|-oj2m1d,2,2,1|-oj2m1c,1,1,0|-o6kl41,1,1,0|-o6kl40,2,2,1|-o0aopd,2,2,1|-o0aopc,1,1,0|-nnqt41,1,1,0|-nnqt40,2,2,1|-nhgwpd,2,2,1|-nhgwpc,1,1,0|-n4yvs1,1,1,0|-n4yvs0,2,2,1|-myozdd,2,2,1|-myozdc,1,1,0|-mm6yg1,1,1,0|-mm6yg0,2,2,1|-mfx21d,2,2,1|-mfx21c,1,1,0|-m3f141,1,1,0|-m3f140,2,2,1|-lx54pd,2,2,1|-lx54pc,1,1,0|-lkl941,1,1,0|-lkl940,2,2,1|-lebcpd,2,2,1|-lebcpc,1,1,0|-l1tbs1,1,1,0|-l1tbs0,2,2,1|-kvjfdd,2,2,1|-kvjfdc,1,1,0|-kj1eg1,1,1,0|-kj1eg0,2,2,1|-kcri1d,2,2,1|-kcri1c,1,1,0|-k09h41,1,1,0|-k09h40,2,2,1|-jtzkpd,2,2,1|-jtzkpc,1,1,0|-jhfp41,1,1,0|-jhfp40,2,2,1|-jb5spd,2,2,1|-jb5spc,1,1,0|-iynrs1,1,1,0|-iynrs0,2,2,1|-isdvdd,2,2,1|-isdvdc,1,1,0|-ifvug1,1,1,0|-ifvug0,2,2,1|-i9ly1d,2,2,1|-i9ly1c,1,1,0|-hx3x41,1,1,0|-hx3x40,2,2,1|-hqu0pd,2,2,1|-hqu0pc,1,1,0|-hea541,1,1,0|-hea540,2,2,1|-h808pd,2,2,1|-h808pc,1,1,0|-gvi7s1,1,1,0|-gvi7s0,2,2,1|-gp8bdd,2,2,1|-gp8bdc,1,1,0|-gcqag1,1,1,0|-gcqag0,2,2,1|-g6ge1d,2,2,1|-g6ge1c,1,1,0|-ftyd41,1,1,0|-ftyd40,2,2,1|-fnogpd,2,2,1|-fnogpc,1,1,0|-fhgd41,1,1,0|-fhgd40,2,2,1|-f4uopd,2,2,1|-f4uopc,1,1,0|-eyofs1,1,1,0|-eyofs0,2,2,1|-em2rdd,2,2,1|-em2rdc,1,1,0|-ek4io1,1,1,0|-ek4io0,3,3,0|-cio421,3,3,0|-cio420,1,1,0|-a39mg1,1,1,0|-a39mg0,3,3,1|-9wzqi1,3,3,1|-9wzqi0,1,1,0|-9khp41,1,1,0|-9khp40,3,3,1|-9e7t61,3,3,1|-9e7t60,1,1,0|-91nx41,1,1,0|-91nx40,3,3,1|-8ve161,3,3,1|-8ve160,1,1,0|-8ivzs1,1,1,0|-8ivzs0,3,3,1|-8cm3u1,3,3,1|-8cm3u0,1,1,0|-8042g1,1,1,0|-8042g0,3,3,1|-7tu6i1,3,3,1|-7tu6i0,1,1,0|-7hc541,1,1,0|-7hc540,3,3,1|-7b2961,3,3,1|-7b2960,1,1,0","Africa/Algiers|,0,4,0|-154gb8c,4,5,0|-uozn3m,4,5,0|-uozn3l,5,1,0|-ry2lg1,5,1,0|-ry2lg0,6,6,1|-rsgqs1,6,6,1|-rsgqs0,5,1,0|-rjiis1,5,1,0|-rjiis0,6,6,1|-r9dpg1,6,6,1|-r9dpg0,5,1,0|-r1idg1,5,1,0|-r1idg0,6,6,1|-qqnms1,6,6,1|-qqnms0,5,1,0|-qj59g1,5,1,0|-qj59g0,6,6,1|-q7xk41,6,6,1|-q7xk40,5,1,0|-q15441,5,1,0|-q15440,6,6,1|-po6g41,6,6,1|-po6g40,5,1,0|-pgvhg1,5,1,0|-pgvhg0,6,6,1|-pbs5g1,6,6,1|-pbs5g0,5,1,0|-fte841,5,1,0|-fte840,6,6,1|-fpw801,6,6,1|-fpw800,5,1,0|-fkul41,5,1,0|-fkul40,7,6,0|-dfqqk1,7,6,0|-dfqqk0,8,7,1|-d62o01,8,7,1|-d62o00,7,6,0|-cx0nw1,7,6,0|-cx0nw0,8,7,1|-cofk41,8,7,1|-cofk40,7,6,0|-c4kqs1,7,6,0|-c4kqs0,5,1,0|-79mio1,5,1,0|-79mio0,7,6,0|-3i8is1,7,6,0|-3i8is0,5,1,0|oot7z,5,1,0|oot80,6,6,1|wlzvz,6,6,1|wlzw0,5,1,0|3tynzz,5,1,0|3tyo00,6,6,1|42lp7z,6,6,1|42lp80,7,6,0|4aiynz,7,6,0|4aiyo0,8,7,1|4jw2rz,8,7,1|4jw2s0,7,6,0|54et7z,7,6,0|54et80,5,1,0|5drxbz,5,1,0|5drxc0,6,6,1|5ni03z,6,6,1|5ni040,5,1,0|5wuynz,5,1,0|5wuyo0,7,6,0","Africa/Bissau|,0,8,0|-u9rek0,9,9,0|2lxk3z,9,9,0|2lxk40,1,1,0","Africa/Cairo|,0,10,0|-1054wgl,10,7,0|-fdls81,10,7,0|-fdls80,11,11,1|-f9lf01,11,11,1|-f9lf00,10,7,0|-ezidk1,10,7,0|-ezidk0,11,11,1|-erl9o1,11,11,1|-erl9o0,10,7,0|-ehgdk1,10,7,0|-ehgdk0,11,11,1|-e6pf01,11,11,1|-e6pf00,10,7,0|-dyog81,10,7,0|-dyog80,11,11,1|-dno8c1,11,11,1|-dno8c0,10,7,0|-dfuo81,10,7,0|-dfuo80,11,11,1|-d4ugc1,11,11,1|-d4ugc0,10,7,0|-cwayw1,10,7,0|-cwayw0,11,11,1|-cm2j01,11,11,1|-cm2j00,10,7,0|-6lluw1,10,7,0|-6lluw0,11,11,1|-6e79o1,11,11,1|-6e79o0,10,7,0|-63alk1,10,7,0|-63alk0,11,11,1|-5vfcc1,11,11,1|-5vfcc0,10,7,0|-5kilg1,10,7,0|-5kilg0,11,11,1|-5cp1c1,11,11,1|-5cp1c0,10,7,0|-51otg1,10,7,0|-51otg0,11,11,1|-4tv9c1,11,11,1|-4tv9c0,10,7,0|-4iww41,10,7,0|-4iww40,11,11,1|-4b3c01,11,11,1|-4b3c00,10,7,0|-404ys1,10,7,0|-404ys0,11,11,1|-3sbeo1,11,11,1|-3sbeo0,10,7,0|-3hd1g1,10,7,0|-3hd1g0,11,11,1|-39jhc1,11,11,1|-39jhc0,10,7,0|-2yj9g1,10,7,0|-2yj9g0,11,11,1|-2qppc1,11,11,1|-2qppc0,10,7,0|-2frc41,10,7,0|-2frc40,11,11,1|-27xs01,11,11,1|-27xs00,10,7,0|-1wzes1,10,7,0|-1wzes0,11,11,1|-1p4001,11,11,1|-1p4000,10,7,0|-1e7hg1,10,7,0|-1e7hg0,11,11,1|-16c2o1,11,11,1|-16c2o0,10,7,0|-vdpg1,10,7,0|-vdpg0,11,11,1|-niao1,11,11,1|-niao0,10,7,0|-cls41,10,7,0|-cls40,11,11,1|-4qdc1,11,11,1|-4qdc0,10,7,0|6657z,10,7,0|66580,11,11,1|e1jzz,11,11,1|e1k00,10,7,0|oy2jz,10,7,0|oy2k0,11,11,1|wthbz,11,11,1|wthc0,10,7,0|17rujz,10,7,0|17ruk0,11,11,1|1fn9bz,11,11,1|1fn9c0,10,7,0|1qjrvz,10,7,0|1qjrw0,11,11,1|1yf6nz,11,11,1|1yf6o0,10,7,0|29bp7z,10,7,0|29bp80,11,11,1|2h73zz,11,11,1|2h7400,10,7,0|2s3mjz,10,7,0|2s3mk0,11,11,1|2zz1bz,11,11,1|2zz1c0,10,7,0|3axejz,10,7,0|3axek0,11,11,1|3istbz,11,11,1|3istc0,10,7,0|3tpbvz,10,7,0|3tpbw0,11,11,1|41kqnz,11,11,1|41kqo0,10,7,0|4ch97z,10,7,0|4ch980,11,11,1|4kcnzz,11,11,1|4kco00,10,7,0|4v96jz,10,7,0|4v96k0,11,11,1|534lbz,11,11,1|534lc0,10,7,0|5e2yjz,10,7,0|5e2yk0,11,11,1|5lydbz,11,11,1|5lydc0,10,7,0|5wuvvz,10,7,0|5wuvw0,11,11,1|64qanz,11,11,1|64qao0,10,7,0|6k07vz,10,7,0|6k07w0,11,11,1|6ni7zz,11,11,1|6ni800,10,7,0|7242jz,10,7,0|7242k0,11,11,1|76a5bz,11,11,1|76a5c0,10,7,0|7h8ijz,10,7,0|7h8ik0,11,11,1|7p3xbz,11,11,1|7p3xc0,10,7,0|800fvz,10,7,0|800fw0,11,11,1|87vunz,11,11,1|87vuo0,10,7,0|8isd7z,10,7,0|8isd80,11,11,1|8qnrzz,11,11,1|8qns00,10,7,0|91kajz,10,7,0|91kak0,11,11,1|99fpbz,11,11,1|99fpc0,10,7,0|9ke2jz,10,7,0|9ke2k0,11,11,1|9s9hbz,11,11,1|9s9hc0,10,7,0|a3f97z,10,7,0|a3f980,11,11,1|ab1enz,11,11,1|ab1eo0,10,7,0|alxx7z,10,7,0|alxx80,11,11,1|attbzz,11,11,1|attc00,10,7,0|b4pujz,10,7,0|b4puk0,11,11,1|bcl9bz,11,11,1|bcl9c0,10,7,0|bnjmjz,10,7,0|bnjmk0,11,11,1|bvf1bz,11,11,1|bvf1c0,10,7,0|c6bjvz,10,7,0|c6bjw0,11,11,1|ce6ynz,11,11,1|ce6yo0,10,7,0|cp3h7z,10,7,0|cp3h80,11,11,1|cwyvzz,11,11,1|cwyw00,10,7,0|d7prrz,10,7,0|d7prs0,11,11,1|dfmvnz,11,11,1|dfmvo0,10,7,0|dqfufz,10,7,0|dqfug0,11,11,1|dycybz,11,11,1|dycyc0,10,7,0|e95x3z,10,7,0|e95x40,11,11,1|eh30zz,11,11,1|eh3100,10,7,0|ervzrz,10,7,0|ervzs0,11,11,1|ezt3nz,11,11,1|ezt3o0,10,7,0|faz13z,10,7,0|faz140,11,11,1|fiw4zz,11,11,1|fiw500,10,7,0|ftp3rz,10,7,0|ftp3s0,11,11,1|g1m7nz,11,11,1|g1m7o0,10,7,0|gcf6fz,10,7,0|gcf6g0,11,11,1|gkcabz,11,11,1|gkcac0,10,7,0|gv593z,10,7,0|gv5940,11,11,1|h32czz,11,11,1|h32d00,10,7,0|hdvbrz,10,7,0|hdvbs0,11,11,1|hlsfnz,11,11,1|hlsfo0,10,7,0|hwyd3z,10,7,0|hwyd40,11,11,1|i4vgzz,11,11,1|i4vh00,10,7,0|ifofrz,10,7,0|ifofs0,11,11,1|inljnz,11,11,1|inljo0,10,7,0|iyeifz,10,7,0|iyeig0,11,11,1|j5ynnz,11,11,1|j5yno0,10,7,0|jh4l3z,10,7,0|jh4l40,11,11,1|jnyszz,11,11,1|jnyt00,10,7,0|jzunrz,10,7,0|jzuns0,11,11,1|k6bwzz,11,11,1|k6bx00,10,7,0|kikqfz,10,7,0|kikqg0,11,11,1|kop0zz,11,11,1|kop100,10,7,0|l1nrrz,10,7,0|l1nrs0,11,11,1|l6yfnz,11,11,1|l6yfo0,10,7,0|l8i2fz,10,7,0|l8i2g0,11,11,1|l9kvnz,11,11,1|l9kvo0,10,7,0|n5myfz,10,7,0|n5myg0,11,11,1|n7snnz,11,11,1|n7sno0,10,7,0|n9ljrz,10,7,0|n9ljs0,11,11,1|nch6bz,11,11,1|nch6c0,10,7,0","Africa/Casablanca|,0,12,0|-tblt9g,12,1,0|-fte5c1,12,1,0|-fte5c0,13,6,1|-fpwas1,13,6,1|-fpwas0,12,1,0|-fkuqo1,12,1,0|-fkuqo0,13,6,1|-cl6w41,13,6,1|-cl6w40,12,1,0|-a7hmo1,12,1,0|-a7hmo0,13,6,1|-a0ag41,13,6,1|-a0ag40,12,1,0|-1chdc1,12,1,0|-1chdc0,13,6,1|-16c5g1,13,6,1|-16c5g0,12,1,0|2c3rzz,12,1,0|2c3s00,13,6,1|2fnh7z,13,6,1|2fnh80,12,1,0|3axhbz,12,1,0|3axhc0,13,6,1|3fnrvz,13,6,1|3fnrw0,12,1,0|3tpenz,12,1,0|3tpeo0,13,6,1|41f3vz,13,6,1|41f3w0,12,1,0|4e2qnz,12,1,0|4e2qo0,13,6,1|4hd6jz,13,6,1|4hd6k0,12,1,0|7evenz,12,1,0|7eveo0,13,6,0|8cm57z,13,6,0|8cm580,12,1,0|k1rbzz,12,1,0|k1rc00,13,6,1|k6hmjz,13,6,1|k6hmk0,12,1,0|kkj9bz,12,1,0|kkj9c0,13,6,1|kop6jz,13,6,1|kop6k0,12,1,0|l1rmnz,12,1,0|l1rmo0,13,6,1|l6t17z,13,6,1|l6t180,12,1,0|lj1unz,12,1,0|lj1uo0,13,6,1|lp657z,13,6,1|lp6580,12,1,0|m37xjz,12,1,0|m37xk0,13,6,1|m7fs7z,13,6,1|m7fs80,12,1,0|m916vz,12,1,0|m916w0,13,6,1|mb547z,13,6,1|mb5480,12,1,0|mly07z,12,1,0|mly080,13,6,1|mpjmvz,13,6,1|mpjmw0,12,1,0|mraljz,12,1,0|mralk0,13,6,1|mvb1jz,13,6,1|mvb1k0,12,1,0|n3887z,12,1,0|n38880,13,6,1|n7uw7z,13,6,1|n7uw80,12,1,0|n9npjz,12,1,0|n9npk0,13,6,1|ne147z,13,6,1|ne1480,12,1,0|nlyavz,12,1,0|nlyaw0,13,6,1|npww7z,13,6,1|npww80,12,1,0|nrppjz,12,1,0|nrppk0,13,6,1|nwr6vz,13,6,1|nwr6w0,12,1,0|o4odjz,12,1,0|o4odk0,13,6,1|o8a07z,13,6,1|o8a080,12,1,0|oa2tjz,12,1,0|oa2tk0,13,6,1|ofu87z,13,6,1|ofu880,12,1,0|oneg7z,12,1,0|oneg80,13,6,1|oqa5jz,13,6,1|oqa5k0,12,1,0|osfxjz,12,1,0|osfxk0,13,6,1|oykavz,13,6,1|oykaw0,12,1,0|p64ivz,12,1,0|p64iw0,13,6,1|p8n9jz,13,6,1|p8n9k0,12,1,0|pag2vz,12,1,0|pag2w0,13,6,1|phadjz,13,6,1|phadk0,13,6,0|pr0djz,13,6,0|pr0dk0,12,1,1|pst6vz,12,1,1|pst6w0,13,6,0|q90ivz,13,6,0|q90iw0,12,1,1|qb6avz,12,1,1|qb6aw0,13,6,0|qrdmvz,13,6,0|qrdmw0,12,1,1|qt6g7z,12,1,1|qt6g80,13,6,0|r9ds7z,13,6,0|r9ds80,12,1,1|rbjk7z,12,1,1|rbjk80,13,6,0|rrqw7z,13,6,0|rrqw80,12,1,1|rtwo7z,12,1,1|rtwo80,13,6,0|sa407z,13,6,0|sa4080,12,1,1|sbwtjz,12,1,1|sbwtk0,13,6,0|ss45jz,13,6,0|ss45k0,12,1,1|su9xjz,12,1,1|su9xk0,13,6,0|tah9jz,13,6,0|tah9k0,12,1,1|tca2vz,12,1,1|tca2w0,13,6,0|tsudjz,13,6,0|tsudk0,12,1,1|tun6vz,12,1,1|tun6w0,13,6,0|uauivz,13,6,0|uauiw0,12,1,1|ud0avz,12,1,1|ud0aw0,13,6,0|ut7mvz,13,6,0|ut7mw0,12,1,1|uv0g7z,12,1,1|uv0g80,13,6,0|vb7s7z,13,6,0|vb7s80,12,1,1|vddk7z,12,1,1|vddk80,13,6,0|vtkw7z,13,6,0|vtkw80,12,1,1|vvqo7z,12,1,1|vvqo80,13,6,0|wby07z,13,6,0|wby080,12,1,1|wdqtjz,12,1,1|wdqtk0,13,6,0|wty5jz,13,6,0|wty5k0,12,1,1|ww3xjz,12,1,1|ww3xk0,13,6,0|xcb9jz,13,6,0|xcb9k0,12,1,1|xe42vz,12,1,1|xe42w0,13,6,0|xubevz,13,6,0|xubew0,12,1,1|xwh6vz,12,1,1|xwh6w0,13,6,0|ycoivz,13,6,0|ycoiw0,12,1,1|yeuavz,12,1,1|yeuaw0,13,6,0|yv1mvz,13,6,0|yv1mw0,12,1,1|ywug7z,12,1,1|ywug80,13,6,0|zd1s7z,13,6,0|zd1s80,12,1,1|zf7k7z,12,1,1|zf7k80,13,6,0","Africa/Ceuta|,0,13,0|-100edc0,5,1,0|-qyiys1,5,1,0|-qyiys0,6,6,1|-qqluw1,6,6,1|-qqluw0,5,1,0|-nusqs1,5,1,0|-nusqs0,6,6,1|-nm0001,6,6,1|-nm0000,5,1,0|-mt71g1,5,1,0|-mt71g0,6,6,1|-mkjuo1,6,6,1|-mkjuo0,5,1,0|-matxg1,5,1,0|-matxg0,6,6,1|-m1ts01,6,6,1|-m1ts00,5,1,0|-lrqtc1,5,1,0|-lrqtc0,6,6,1|-liqqo1,6,6,1|-liqqo0,5,1,0|-1chdc1,5,1,0|-1chdc0,6,6,1|-16c5g1,6,6,1|-16c5g0,5,1,0|2c3rzz,5,1,0|2c3s00,6,6,1|2fnh7z,6,6,1|2fnh80,5,1,0|3axhbz,5,1,0|3axhc0,6,6,1|3fnrvz,6,6,1|3fnrw0,5,1,0|3tpenz,5,1,0|3tpeo0,6,6,1|41f3vz,6,6,1|41f3w0,5,1,0|4e2qnz,5,1,0|4e2qo0,6,6,1|4hd6jz,6,6,1|4hd6k0,5,1,0|7evenz,5,1,0|7eveo0,7,6,0|8h59fz,7,6,0|8h59g0,8,7,1|8qiarz,8,7,1|8qias0,7,6,0|8zvc3z,7,6,0|8zvc40,8,7,1|998dfz,8,7,1|998dg0,7,6,0|9ilerz,7,6,0|9iles0,8,7,1|9ryg3z,8,7,1|9ryg40,7,6,0|a1bhfz,7,6,0|a1bhg0,8,7,1|aaoirz,8,7,1|aaois0,7,6,0|ak1k3z,7,6,0|ak1k40,8,7,1|atrk3z,8,7,1|atrk40,7,6,0|b34lfz,7,6,0|b34lg0,8,7,1|bchmrz,8,7,1|bchms0,7,6,0|bluo3z,7,6,0|bluo40,8,7,1|bv7pfz,8,7,1|bv7pg0,7,6,0|c4kqrz,7,6,0|c4kqs0,8,7,1|cdxs3z,8,7,1|cdxs40,7,6,0|cnatfz,7,6,0|cnatg0,8,7,1|cwnurz,8,7,1|cwnus0,7,6,0|d60w3z,7,6,0|d60w40,8,7,1|dfdxfz,8,7,1|dfdxg0,7,6,0|dp3xfz,7,6,0|dp3xg0,8,7,1|dzwtfz,8,7,1|dzwtg0,7,6,0|e7u03z,7,6,0|e7u040,8,7,1|eimw3z,8,7,1|eimw40,7,6,0|eqk2rz,7,6,0|eqk2s0,8,7,1|f1cyrz,8,7,1|f1cys0,7,6,0|f9a5fz,7,6,0|f9a5g0,8,7,1|fkg03z,8,7,1|fkg040,7,6,0|fs083z,7,6,0|fs0840,8,7,1|g362rz,8,7,1|g362s0,7,6,0|gaqarz,7,6,0|gaqas0,8,7,1|glw5fz,8,7,1|glw5g0,7,6,0|gttc3z,7,6,0|gttc40,8,7,1|h4m83z,8,7,1|h4m840,7,6,0|hcjerz,7,6,0|hcjes0,8,7,1|hncarz,8,7,1|hncas0,7,6,0|hv9hfz,7,6,0|hv9hg0,8,7,1|i6fc3z,8,7,1|i6fc40,7,6,0|idzk3z,7,6,0|idzk40,8,7,1|ip5erz,8,7,1|ip5es0,7,6,0|iwpmrz,7,6,0|iwpms0,8,7,1|j7vhfz,8,7,1|j7vhg0,7,6,0|jffpfz,7,6,0|jffpg0,8,7,1|jqlk3z,8,7,1|jqlk40,7,6,0|jyiqrz,7,6,0|jyiqs0,8,7,1|k9bmrz,8,7,1|k9bms0,7,6,0|kh8tfz,7,6,0|kh8tg0,8,7,1|ks1pfz,8,7,1|ks1pg0,7,6,0|kzyw3z,7,6,0|kzyw40,8,7,1|lb4qrz,8,7,1|lb4qs0,7,6,0|lioyrz,7,6,0|lioys0,8,7,1|ltutfz,8,7,1|ltutg0,7,6,0|m1f1fz,7,6,0|m1f1g0,8,7,1|mckw3z,8,7,1|mckw40,7,6,0|mki2rz,7,6,0|mki2s0,8,7,1|mvayrz,8,7,1|mvays0,7,6,0|n385fz,7,6,0|n385g0,8,7,1|ne11fz,8,7,1|ne11g0,7,6,0|nly83z,7,6,0|nly840,8,7,1|nwr43z,8,7,1|nwr440,7,6,0|o4oarz,7,6,0|o4oas0,8,7,1|ofu5fz,8,7,1|ofu5g0,7,6,0|onedfz,7,6,0|onedg0,8,7,1|oyk83z,8,7,1|oyk840,7,6,0|p64g3z,7,6,0|p64g40,8,7,1|phaarz,8,7,1|phaas0,7,6,0|pp7hfz,7,6,0|pp7hg0,8,7,1|q00dfz,8,7,1|q00dg0,7,6,0|q7xk3z,7,6,0|q7xk40,8,7,1|qiqg3z,8,7,1|qiqg40,7,6,0|qqnmrz,7,6,0|qqnms0,8,7,1|r1thfz,8,7,1|r1thg0,7,6,0|r9dpfz,7,6,0|r9dpg0,8,7,1|rkjk3z,8,7,1|rkjk40,7,6,0|rs3s3z,7,6,0|rs3s40,8,7,1|s39mrz,8,7,1|s39ms0,7,6,0|sb6tfz,7,6,0|sb6tg0,8,7,1|slzpfz,8,7,1|slzpg0,7,6,0|stww3z,7,6,0|stww40,8,7,1|t4ps3z,8,7,1|t4ps40,7,6,0|tcmyrz,7,6,0|tcmys0,8,7,1|tnfurz,8,7,1|tnfus0,7,6,0|tvd1fz,7,6,0|tvd1g0,8,7,1|u6iw3z,8,7,1|u6iw40,7,6,0|ue343z,7,6,0|ue3440,8,7,1|up8yrz,8,7,1|up8ys0,7,6,0|uwt6rz,7,6,0|uwt6s0,8,7,1|v7z1fz,8,7,1|v7z1g0,7,6,0|vfw83z,7,6,0|vfw840,8,7,1|vqp43z,8,7,1|vqp440,7,6,0|vymarz,7,6,0|vymas0,8,7,1|w9f6rz,8,7,1|w9f6s0,7,6,0|whcdfz,7,6,0|whcdg0,8,7,1|wsi83z,8,7,1|wsi840,7,6,0|x02g3z,7,6,0|x02g40,8,7,1|xb8arz,8,7,1|xb8as0,7,6,0|xisirz,7,6,0|xisis0,8,7,1|xtydfz,8,7,1|xtydg0,7,6,0|y1ilfz,7,6,0|y1ilg0,8,7,1|ycog3z,8,7,1|ycog40,7,6,0|yklmrz,7,6,0|yklms0,8,7,1|yveirz,8,7,1|yveis0,7,6,0|z3bpfz,7,6,0|z3bpg0,8,7,1|ze4lfz,8,7,1|ze4lg0,7,6,0","Africa/El_Aaiun|,0,14,0|-isdxk0,9,9,0|3a22rz,9,9,0|3a22s0,12,1,0|3axhbz,12,1,0|3axhc0,13,6,1|3fnrvz,13,6,1|3fnrw0,12,1,0|3tpenz,12,1,0|3tpeo0,13,6,1|41f3vz,13,6,1|41f3w0,12,1,0|4e2qnz,12,1,0|4e2qo0,13,6,1|4hd6jz,13,6,1|4hd6k0,12,1,0|k1rbzz,12,1,0|k1rc00,13,6,1|k6hmjz,13,6,1|k6hmk0,12,1,0|kkj9bz,12,1,0|kkj9c0,13,6,1|kop6jz,13,6,1|kop6k0,12,1,0|l1rmnz,12,1,0|l1rmo0,13,6,1|l6t17z,13,6,1|l6t180,12,1,0|lj1unz,12,1,0|lj1uo0,13,6,1|lp657z,13,6,1|lp6580,12,1,0|m37xjz,12,1,0|m37xk0,13,6,1|m7fs7z,13,6,1|m7fs80,12,1,0|m916vz,12,1,0|m916w0,13,6,1|mb547z,13,6,1|mb5480,12,1,0|mly07z,12,1,0|mly080,13,6,1|mpjmvz,13,6,1|mpjmw0,12,1,0|mraljz,12,1,0|mralk0,13,6,1|mvb1jz,13,6,1|mvb1k0,12,1,0|n3887z,12,1,0|n38880,13,6,1|n7uw7z,13,6,1|n7uw80,12,1,0|n9npjz,12,1,0|n9npk0,13,6,1|ne147z,13,6,1|ne1480,12,1,0|nlyavz,12,1,0|nlyaw0,13,6,1|npww7z,13,6,1|npww80,12,1,0|nrppjz,12,1,0|nrppk0,13,6,1|nwr6vz,13,6,1|nwr6w0,12,1,0|o4odjz,12,1,0|o4odk0,13,6,1|o8a07z,13,6,1|o8a080,12,1,0|oa2tjz,12,1,0|oa2tk0,13,6,1|ofu87z,13,6,1|ofu880,12,1,0|oneg7z,12,1,0|oneg80,13,6,1|oqa5jz,13,6,1|oqa5k0,12,1,0|osfxjz,12,1,0|osfxk0,13,6,1|oykavz,13,6,1|oykaw0,12,1,0|p64ivz,12,1,0|p64iw0,13,6,1|p8n9jz,13,6,1|p8n9k0,12,1,0|pag2vz,12,1,0|pag2w0,13,6,1|phadjz,13,6,1|phadk0,13,6,0|pr0djz,13,6,0|pr0dk0,12,1,1|pst6vz,12,1,1|pst6w0,13,6,0|q90ivz,13,6,0|q90iw0,12,1,1|qb6avz,12,1,1|qb6aw0,13,6,0|qrdmvz,13,6,0|qrdmw0,12,1,1|qt6g7z,12,1,1|qt6g80,13,6,0|r9ds7z,13,6,0|r9ds80,12,1,1|rbjk7z,12,1,1|rbjk80,13,6,0|rrqw7z,13,6,0|rrqw80,12,1,1|rtwo7z,12,1,1|rtwo80,13,6,0|sa407z,13,6,0|sa4080,12,1,1|sbwtjz,12,1,1|sbwtk0,13,6,0|ss45jz,13,6,0|ss45k0,12,1,1|su9xjz,12,1,1|su9xk0,13,6,0|tah9jz,13,6,0|tah9k0,12,1,1|tca2vz,12,1,1|tca2w0,13,6,0|tsudjz,13,6,0|tsudk0,12,1,1|tun6vz,12,1,1|tun6w0,13,6,0|uauivz,13,6,0|uauiw0,12,1,1|ud0avz,12,1,1|ud0aw0,13,6,0|ut7mvz,13,6,0|ut7mw0,12,1,1|uv0g7z,12,1,1|uv0g80,13,6,0|vb7s7z,13,6,0|vb7s80,12,1,1|vddk7z,12,1,1|vddk80,13,6,0|vtkw7z,13,6,0|vtkw80,12,1,1|vvqo7z,12,1,1|vvqo80,13,6,0|wby07z,13,6,0|wby080,12,1,1|wdqtjz,12,1,1|wdqtk0,13,6,0|wty5jz,13,6,0|wty5k0,12,1,1|ww3xjz,12,1,1|ww3xk0,13,6,0|xcb9jz,13,6,0|xcb9k0,12,1,1|xe42vz,12,1,1|xe42w0,13,6,0|xubevz,13,6,0|xubew0,12,1,1|xwh6vz,12,1,1|xwh6w0,13,6,0|ycoivz,13,6,0|ycoiw0,12,1,1|yeuavz,12,1,1|yeuaw0,13,6,0|yv1mvz,13,6,0|yv1mw0,12,1,1|ywug7z,12,1,1|ywug80,13,6,0|zd1s7z,13,6,0|zd1s80,12,1,1|zf7k7z,12,1,1|zf7k80,13,6,0","Africa/Johannesburg|,0,15,0|-14nj6io,14,16,0|-yvtdi1,14,16,0|-yvtdi0,14,7,0|-e8lpc1,14,7,0|-e8lpc0,14,11,1|-dz8qs1,14,11,1|-dz8qs0,14,7,0|-dpvmo1,14,7,0|-dpvmo0,14,11,1|-dgio41,14,11,1|-dgio40,14,7,0","Africa/Khartoum|,0,17,0|-kcrsow,15,7,0|662fz,15,7,0|662g0,16,11,1|er8zz,16,11,1|er900,15,7,0|ow53z,15,7,0|ow540,16,11,1|xj6bz,16,11,1|xj6c0,15,7,0|17px3z,15,7,0|17px40,16,11,1|1gcybz,16,11,1|1gcyc0,15,7,0|1qfzrz,15,7,0|1qfzs0,16,11,1|1z4vnz,16,11,1|1z4vo0,15,7,0|2962fz,15,7,0|2962g0,16,11,1|2hwszz,16,11,1|2hwt00,15,7,0|2rw53z,15,7,0|2rw540,16,11,1|30oqbz,16,11,1|30oqc0,15,7,0|3am7rz,15,7,0|3am7s0,16,11,1|3jiibz,16,11,1|3jiic0,15,7,0|3tcafz,15,7,0|3tcag0,16,11,1|42afnz,16,11,1|42afo0,15,7,0|4cfbrz,15,7,0|4cfbs0,16,11,1|4l2czz,16,11,1|4l2d00,15,7,0|4v5efz,15,7,0|4v5eg0,16,11,1|53uabz,16,11,1|53uac0,15,7,0|5dvh3z,15,7,0|5dvh40,16,11,1|5mo2bz,16,11,1|5mo2c0,15,7,0|5wljrz,15,7,0|5wljs0,16,11,1|65fznz,16,11,1|65fzo0,15,7,0|6fbmfz,15,7,0|6fbmg0,16,11,1|6o7wzz,16,11,1|6o7x00,15,7,0|6y1p3z,15,7,0|6y1p40,16,11,1|76zubz,16,11,1|76zuc0,15,7,0|7h4qfz,15,7,0|7h4qg0,16,11,1|7ptmbz,16,11,1|7ptmc0,15,7,0|7zut3z,15,7,0|7zut40,16,11,1|88ljnz,16,11,1|88ljo0,15,7,0|fodfrz,15,7,0|fodfs0,17,11,0|oypgzz,17,11,0|oyph00,15,7,0","Africa/Lagos|,0,18,0|-xnxnan,1,1,0|-w3k001,1,1,0|-w3k000,0,18,0|-t85smo,0,18,0|-t85smn,3,3,0|-q9qc21,3,3,0|-q9qc20,18,6,0","Africa/Maputo|,0,19,0|-yvtfd8,15,7,0","Africa/Monrovia|,0,20,0|-19xcbc4,19,20,0|-qj6zc5,19,20,0|-qj6zc4,19,21,0|11v0q5,19,21,0|11v0q6,1,1,0","Africa/Nairobi|,0,22,0|-w6p5hg,20,23,0|-lnsey1,20,23,0|-lnsey0,17,11,0|-kvcdo1,17,11,0|-kvcdo0,20,23,0|-h80ka1,20,23,0|-h80ka0,21,24,0|-eb6ib1,21,24,0|-eb6ib0,17,11,0","Africa/Ndjamena|,0,25,0|-u9rk4c,18,6,0|53sl7z,18,6,0|53sl80,22,7,1|5bavrz,22,7,1|5bavs0,18,6,0","Africa/Tripoli|,0,26,0|-q3gfrw,7,6,0|-9ia581,7,6,0|-9ia580,8,7,1|-9e82w1,8,7,1|-9e82w0,7,6,0|-8gxp81,7,6,0|-8gxp80,8,7,1|-8cmdk1,8,7,1|-8cmdk0,7,6,0|-7fuo41,7,6,0|-7fuo40,8,7,1|-7b2iw1,8,7,1|-7b2iw0,7,6,0|-5qotg1,7,6,0|-5qotg0,10,7,0|69gifz,10,7,0|69gig0,7,6,0|6e397z,7,6,0|6e3980,8,7,1|6ni2fz,8,7,1|6ni2g0,7,6,0|6wv6jz,7,6,0|6wv6k0,8,7,1|769zrz,8,7,1|769zs0,7,6,0|7foyjz,7,6,0|7foyk0,8,7,1|7p3rrz,8,7,1|7p3rs0,7,6,0|7yq57z,7,6,0|7yq580,8,7,1|87vp3z,8,7,1|87vp40,7,6,0|8hed7z,7,6,0|8hed80,8,7,1|8qrbrz,8,7,1|8qrbs0,7,6,0|900qjz,7,6,0|900qk0,8,7,1|99fjrz,8,7,1|99fjs0,7,6,0|9iuijz,7,6,0|9iuik0,8,7,1|9s9brz,8,7,1|9s9bs0,7,6,0|a1mfvz,7,6,0|a1mfw0,8,7,1|ab193z,8,7,1|ab1940,7,6,0|am3h7z,7,6,0|am3h80,10,7,0|dyil3z,10,7,0|dyil40,7,6,0|e833vz,7,6,0|e833w0,8,7,1|ehhx3z,8,7,1|ehhx40,10,7,0|md8vzz,10,7,0|md8w00,7,6,0|mkeanz,7,6,0|mkeao0,8,7,1|mv76nz,8,7,1|mv76o0,10,7,0","Africa/Tunis|,0,27,0|-1a9dr7w,4,5,0|-uozn3m,4,5,0|-uozn3l,7,6,0|-g12881,7,6,0|-g12880,8,7,1|-fpwdk1,8,7,1|-fpwdk0,7,6,0|-fkt1k1,7,6,0|-fkt1k0,8,7,1|-eqk5k1,8,7,1|-eqk5k0,7,6,0|-eimw41,7,6,0|-eimw40,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dxuo01,8,7,1|-dxuo00,7,6,0|-dxfrw1,7,6,0|-dxfrw0,8,7,1|-dp3uo1,8,7,1|-dp3uo0,7,6,0|-dfqqk1,7,6,0|-dfqqk0,8,7,1|-d62tk1,8,7,1|-d62tk0,7,6,0|-cx0nw1,7,6,0|-cx0nw0,8,7,1|-cofmw1,8,7,1|-cofmw0,7,6,0|3tnh7z,7,6,0|3tnh80,8,7,1|417p7z,8,7,1|417p80,7,6,0|4ch97z,7,6,0|4ch980,8,7,1|4kcl7z,8,7,1|4kcl80,7,6,0|9lzh7z,7,6,0|9lzh80,8,7,1|9ryajz,8,7,1|9ryak0,7,6,0|a1bbvz,7,6,0|a1bbw0,8,7,1|aaod7z,8,7,1|aaod80,7,6,0|alxx7z,7,6,0|alxx80,8,7,1|atrejz,8,7,1|atrek0,7,6,0|ifs7vz,7,6,0|ifs7w0,8,7,1|inlrzz,8,7,1|inls00,7,6,0|iwpmrz,7,6,0|iwpms0,8,7,1|j7vhfz,8,7,1|j7vhg0,7,6,0|jffpfz,7,6,0|jffpg0,8,7,1|jqlk3z,8,7,1|jqlk40,7,6,0|jyiqrz,7,6,0|jyiqs0,8,7,1|k9bmrz,8,7,1|k9bms0,7,6,0","Africa/Windhoek|,0,28,0|-14nj4i0,23,16,0|-yvtdi1,23,16,0|-yvtdi0,14,7,0|-e8lpc1,14,7,0|-e8lpc0,14,11,1|-dz8qs1,14,11,1|-dz8qs0,14,7,0|ajtx3z,14,7,0|ajtx40,15,7,0|cmzh3z,15,7,0|cmzh40,18,6,1|cvkyrz,18,6,1|cvkys0,15,7,0|d6drzz,15,7,0|d6ds00,18,6,1|deb1fz,18,6,1|deb1g0,15,7,0|dpgtbz,15,7,0|dpgtc0,18,6,1|dx143z,18,6,1|dx1440,15,7,0|e86vzz,15,7,0|e86w00,18,6,1|eg45fz,18,6,1|eg45g0,15,7,0|eqwynz,15,7,0|eqwyo0,18,6,1|eyu83z,18,6,1|eyu840,15,7,0|f9n1bz,15,7,0|f9n1c0,18,6,1|fhkarz,18,6,1|fhkas0,15,7,0|fsd3zz,15,7,0|fsd400,18,6,1|g0adfz,18,6,1|g0adg0,15,7,0|gb36nz,15,7,0|gb36o0,18,6,1|gj0g3z,18,6,1|gj0g40,15,7,0|gu67zz,15,7,0|gu6800,18,6,1|h1qirz,18,6,1|h1qis0,15,7,0|hcwanz,15,7,0|hcwao0,18,6,1|hktk3z,18,6,1|hktk40,15,7,0|hvmdbz,15,7,0|hvmdc0,18,6,1|i3jmrz,18,6,1|i3jms0,15,7,0|iecfzz,15,7,0|iecg00,18,6,1|im9pfz,18,6,1|im9pg0,15,7,0|ix2inz,15,7,0|ix2io0,18,6,1|j4zs3z,18,6,1|j4zs40,15,7,0|jfslbz,15,7,0|jfslc0,18,6,1|jnpurz,18,6,1|jnpus0,15,7,0|jyvmnz,15,7,0|jyvmo0,18,6,1|k6sw3z,18,6,1|k6sw40,15,7,0|khlpbz,15,7,0|khlpc0,18,6,1|kpiyrz,18,6,1|kpiys0,15,7,0|l0brzz,15,7,0|l0bs00,18,6,1|l891fz,18,6,1|l891g0,15,7,0|lj1unz,15,7,0|lj1uo0,18,6,1|lqz43z,18,6,1|lqz440,15,7,0|m1rxbz,15,7,0|m1rxc0,18,6,1|m9p6rz,18,6,1|m9p6s0,15,7,0|mkuynz,15,7,0|mkuyo0,18,6,1|msf9fz,18,6,1|msf9g0,15,7,0|n3l1bz,15,7,0|n3l1c0,18,6,1|nbiarz,18,6,1|nbias0,15,7,0|nmb3zz,15,7,0|nmb400,18,6,1|nu8dfz,18,6,1|nu8dg0,15,7,0|o516nz,15,7,0|o516o0,18,6,1|ocyg3z,18,6,1|ocyg40,15,7,0|onr9bz,15,7,0|onr9c0,18,6,1|ovoirz,18,6,1|ovois0,15,7,0","America/Anchorage|,0,29,0|-1hc7qjz,0,30,0|-1078tkp,0,30,0|-1078tko,24,31,0|-ek1qo1,24,31,0|-ek1qo0,25,32,1|-cq2tg1,25,32,1|-cq2tg0,26,32,1|-cnopg1,26,32,1|-cnopg0,24,31,0|-1fq6w1,24,31,0|-1fq6w0,27,31,0|-cs6o1,27,31,0|-cs6o0,28,32,1|-3f841,28,32,1|-3f840,27,31,0|5xvzz,27,31,0|5xw00,28,32,1|faujz,28,32,1|fauk0,27,31,0|onynz,27,31,0|onyo0,28,32,1|ydvvz,28,32,1|ydvw0,27,31,0|17qzzz,27,31,0|17r000,28,32,1|1h3yjz,28,32,1|1h3yk0,27,31,0|1qh2nz,27,31,0|1qh2o0,28,32,1|1zu17z,28,32,1|1zu180,27,31,0|23fqnz,27,31,0|23fqo0,28,32,1|2ik3vz,28,32,1|2ik3w0,27,31,0|2oojzz,27,31,0|2ook00,28,32,1|31a6jz,28,32,1|31a6k0,27,31,0|3ananz,27,31,0|3anao0,28,32,1|3kd7vz,28,32,1|3kd7w0,27,31,0|3tddbz,27,31,0|3tddc0,28,32,1|433ajz,28,32,1|433ak0,27,31,0|4cgenz,27,31,0|4cgeo0,28,32,1|4ltd7z,28,32,1|4ltd80,27,31,0|4v6hbz,27,31,0|4v6hc0,28,32,1|54jfvz,28,32,1|54jfw0,27,31,0|5dwjzz,27,31,0|5dwk00,28,32,1|5n9ijz,28,32,1|5n9ik0,27,31,0|5wmmnz,27,31,0|5wmmo0,28,32,1|65zl7z,28,32,1|65zl80,27,31,0|6fcpbz,27,31,0|6fcpc0,28,32,1|6p2mjz,28,32,1|6p2mk0,27,31,0|6y2rzz,27,31,0|6y2s00,28,32,1|77sp7z,28,32,1|77sp80,29,32,0|79dybz,29,32,0|79dyc0,30,32,0|7h5qjz,30,32,0|7h5qk0,31,33,1|7qip3z,31,33,1|7qip40,30,32,0|7zvt7z,30,32,0|7zvt80,31,33,1|898rrz,31,33,1|898rs0,30,32,0|8ilvvz,30,32,0|8ilvw0,31,33,1|8ryufz,31,33,1|8ryug0,30,32,0|9092jz,30,32,0|9092k0,31,33,1|9aox3z,31,33,1|9aox40,30,32,0|9iz57z,30,32,0|9iz580,31,33,1|9tryfz,31,33,1|9tryg0,30,32,0|a1p7vz,30,32,0|a1p7w0,31,33,1|aci13z,31,33,1|aci140,30,32,0|akfajz,30,32,0|akfak0,31,33,1|av83rz,31,33,1|av83s0,30,32,0|b3ibvz,30,32,0|b3ibw0,31,33,1|bdy6fz,31,33,1|bdy6g0,30,32,0|bm8ejz,30,32,0|bm8ek0,31,33,1|bwo93z,31,33,1|bwo940,30,32,0|c4yh7z,30,32,0|c4yh80,31,33,1|cfrafz,31,33,1|cfrag0,30,32,0|cnojvz,30,32,0|cnojw0,31,33,1|cyhd3z,31,33,1|cyhd40,30,32,0|d6emjz,30,32,0|d6emk0,31,33,1|dh7frz,31,33,1|dh7fs0,30,32,0|dphnvz,30,32,0|dphnw0,31,33,1|dzxifz,31,33,1|dzxig0,30,32,0|e87qjz,30,32,0|e87qk0,31,33,1|einl3z,31,33,1|einl40,30,32,0|eqxt7z,30,32,0|eqxt80,31,33,1|f1dnrz,31,33,1|f1dns0,30,32,0|f9nvvz,30,32,0|f9nvw0,31,33,1|fkgp3z,31,33,1|fkgp40,30,32,0|fsdyjz,30,32,0|fsdyk0,31,33,1|g36rrz,31,33,1|g36rs0,30,32,0|gb417z,30,32,0|gb4180,31,33,1|glwufz,31,33,1|glwug0,30,32,0|gu72jz,30,32,0|gu72k0,31,33,1|h4mx3z,31,33,1|h4mx40,30,32,0|hcx57z,30,32,0|hcx580,31,33,1|hnczrz,31,33,1|hnczs0,30,32,0|hvn7vz,30,32,0|hvn7w0,31,33,1|i6g13z,31,33,1|i6g140,30,32,0|iedajz,30,32,0|iedak0,31,33,1|ip63rz,31,33,1|ip63s0,30,32,0|ix3d7z,30,32,0|ix3d80,31,33,1|j7w6fz,31,33,1|j7w6g0,30,32,0|jeqjvz,30,32,0|jeqjw0,31,33,1|jqz7rz,31,33,1|jqz7s0,30,32,0|jxgmjz,30,32,0|jxgmk0,31,33,1|k9pafz,31,33,1|k9pag0,30,32,0|kg6p7z,30,32,0|kg6p80,31,33,1|ksfd3z,31,33,1|ksfd40,30,32,0|kz9qjz,30,32,0|kz9qk0,31,33,1|lbiefz,31,33,1|lbieg0,30,32,0|lhzt7z,30,32,0|lhzt80,31,33,1|lu8h3z,31,33,1|lu8h40,30,32,0|m0pvvz,30,32,0|m0pvw0,31,33,1|mcyjrz,31,33,1|mcyjs0,30,32,0|mjfyjz,30,32,0|mjfyk0,31,33,1|mvomfz,31,33,1|mvomg0,30,32,0|n2617z,30,32,0|n26180,31,33,1|neep3z,31,33,1|neep40,30,32,0|nkw3vz,30,32,0|nkw3w0,31,33,1|nx4rrz,31,33,1|nx4rs0,30,32,0|o3z57z,30,32,0|o3z580,31,33,1|og7t3z,31,33,1|og7t40,30,32,0|omp7vz,30,32,0|omp7w0,31,33,1|oyxvrz,31,33,1|oyxvs0,30,32,0|p5fajz,30,32,0|p5fak0,31,33,1|phnyfz,31,33,1|phnyg0,30,32,0|po5d7z,30,32,0|po5d80,31,33,1|q0e13z,31,33,1|q0e140,30,32,0|q6vfvz,30,32,0|q6vfw0,31,33,1|qj43rz,31,33,1|qj43s0,30,32,0|qpyh7z,30,32,0|qpyh80,31,33,1|r2753z,31,33,1|r27540,30,32,0|r8ojvz,30,32,0|r8ojw0,31,33,1|rkx7rz,31,33,1|rkx7s0,30,32,0|rremjz,30,32,0|rremk0,31,33,1|s3nafz,31,33,1|s3nag0,30,32,0|sa4p7z,30,32,0|sa4p80,31,33,1|smdd3z,31,33,1|smdd40,30,32,0|ssurvz,30,32,0|ssurw0,31,33,1|t53frz,31,33,1|t53fs0,30,32,0|tbkujz,30,32,0|tbkuk0,31,33,1|tntifz,31,33,1|tntig0,30,32,0|tunvvz,30,32,0|tunvw0,31,33,1|u6wjrz,31,33,1|u6wjs0,30,32,0|uddyjz,30,32,0|uddyk0,31,33,1|upmmfz,31,33,1|upmmg0,30,32,0|uw417z,30,32,0|uw4180,31,33,1|v8cp3z,31,33,1|v8cp40,30,32,0|veu3vz,30,32,0|veu3w0,31,33,1|vr2rrz,31,33,1|vr2rs0,30,32,0|vxk6jz,30,32,0|vxk6k0,31,33,1|w9sufz,31,33,1|w9sug0,30,32,0|wgn7vz,30,32,0|wgn7w0,31,33,1|wsvvrz,31,33,1|wsvvs0,30,32,0|wzdajz,30,32,0|wzdak0,31,33,1|xblyfz,31,33,1|xblyg0,30,32,0|xi3d7z,30,32,0|xi3d80,31,33,1|xuc13z,31,33,1|xuc140,30,32,0|y0tfvz,30,32,0|y0tfw0,31,33,1|yd23rz,31,33,1|yd23s0,30,32,0|yjjijz,30,32,0|yjjik0,31,33,1|yvs6fz,31,33,1|yvs6g0,30,32,0|z29l7z,30,32,0|z29l80,31,33,1|zei93z,31,33,1|zei940,30,32,0","America/Araguaina|,0,34,0|-t85j2o,32,35,0|-jylag1,32,35,0|-jylag0,33,36,1|-jpb141,33,36,1|-jpb140,32,35,0|-jfsd01,32,35,0|-jfsd00,33,36,1|-j6j3s1,33,36,1|-j6j3s0,32,35,0|-ahcyc1,32,35,0|-ahcyc0,33,36,1|-aad3o1,33,36,1|-aad3o0,32,35,0|-9yl101,32,35,0|-9yl100,33,36,1|-9sd141,33,36,1|-9sd140,32,35,0|-9ft3o1,32,35,0|-9ft3o0,33,36,1|-99j941,33,36,1|-99j940,32,35,0|-8wzbo1,32,35,0|-8wzbo0,33,36,1|-8scqg1,33,36,1|-8scqg0,32,35,0|-35xmc1,32,35,0|-35xmc0,33,36,1|-31nzs1,33,36,1|-31nzs0,32,35,0|-2kdp01,32,35,0|-2kdp00,33,36,1|-2hcig1,33,36,1|-2hcig0,32,35,0|-24qqc1,32,35,0|-24qqc0,33,36,1|-204541,33,36,1|-204540,32,35,0|-1nid01,32,35,0|-1nid00,33,36,1|-1hc7s1,33,36,1|-1hc7s0,32,35,0|-14qfo1,32,35,0|-14qfo0,33,36,1|-yifs1,33,36,1|-yifs0,32,35,0|89jcbz,32,35,0|89jcc0,33,36,1|8gdk7z,33,36,1|8gdk80,32,35,0|8rwgbz,32,35,0|8rwgc0,33,36,1|8xns7z,33,36,1|8xns80,32,35,0|9aodnz,32,35,0|9aodo0,33,36,1|9g2qvz,33,36,1|9g2qw0,32,35,0|9t1hnz,32,35,0|9t1ho0,33,36,1|9yfuvz,33,36,1|9yfuw0,32,35,0|abrkbz,32,35,0|abrkc0,33,36,1|ahvuvz,33,36,1|ahvuw0,32,35,0|dggyzz,32,35,0|dggz00,33,36,1|dml9jz,33,36,1|dml9k0,32,35,0|dyu2zz,32,35,0|dyu300,33,36,1|e5oavz,33,36,1|e5oaw0,32,35,0|ehm0bz,32,35,0|ehm0c0,33,36,1|ep4avz,33,36,1|ep4aw0,32,35,0|f0n6zz,32,35,0|f0n700,33,36,1|f7hevz,33,36,1|f7hew0,32,35,0|fj0azz,32,35,0|fj0b00,33,36,1|fqkg7z,33,36,1|fqkg80,32,35,0|g23cbz,32,35,0|g23cc0,33,36,1|g8xk7z,33,36,1|g8xk80,32,35,0|gl6dnz,32,35,0|gl6do0,33,36,1|grnmvz,33,36,1|grnmw0,32,35,0|h4zcbz,32,35,0|h4zcc0,33,36,1|hadpjz,33,36,1|hadpk0,32,35,0|mc82zz,32,35,0|mc8300,33,36,1|micdjz,33,36,1|micdk0,32,35,0","America/Asuncion|,0,37,0|-15r0ynk,34,37,0|-jy93zl,34,37,0|-jy93zk,35,38,0|1fnkfz,35,38,0|1fnkg0,32,35,0|27sgbz,32,35,0|27sgc0,35,38,0|2zzcfz,35,38,0|2zzcg0,32,35,1|37sqzz,32,35,1|37sr00,35,38,0|3it4fz,35,38,0|3it4g0,32,35,1|3qkobz,32,35,1|3qkoc0,35,38,0|41l1rz,35,38,0|41l1s0,32,35,1|49clnz,32,35,1|49clo0,35,38,0|4kcz3z,35,38,0|4kcz40,32,35,1|4tpxnz,32,35,1|4tpxo0,35,38,0|534wfz,35,38,0|534wg0,32,35,1|5cjpnz,32,35,1|5cjpo0,35,38,0|5lyofz,35,38,0|5lyog0,32,35,1|5vbmzz,32,35,1|5vbn00,35,38,0|64qlrz,35,38,0|64qls0,32,35,1|6e3kbz,32,35,1|6e3kc0,35,38,0|6nij3z,35,38,0|6nij40,32,35,1|6wvhnz,32,35,1|6wvho0,35,38,0|76agfz,35,38,0|76agg0,32,35,1|7fp9nz,32,35,1|7fp9o0,35,38,0|7p48fz,35,38,0|7p48g0,32,35,1|7yh6zz,32,35,1|7yh700,35,38,0|87w5rz,35,38,0|87w5s0,32,35,1|8h94bz,32,35,1|8h94c0,35,38,0|8qo33z,35,38,0|8qo340,32,35,1|9011nz,32,35,1|9011o0,35,38,0|99g0fz,35,38,0|99g0g0,32,35,1|9iutnz,32,35,1|9iuto0,35,38,0|9s9sfz,35,38,0|9s9sg0,32,35,1|a1mqzz,32,35,1|a1mr00,35,38,0|ac4lrz,35,38,0|ac4ls0,32,35,1|akeobz,32,35,1|akeoc0,35,38,0|attn3z,35,38,0|attn40,32,35,1|b36lnz,32,35,1|b36lo0,35,38,0|bcutrz,35,38,0|bcuts0,32,35,1|bkeyzz,32,35,1|bkez00,35,38,0|bvmr3z,35,38,0|bvmr40,32,35,1|c4qgbz,32,35,1|c4qgc0,35,38,0|ce79rz,35,38,0|ce79s0,32,35,1|clv4bz,32,35,1|clv4c0,35,38,0|cwz73z,35,38,0|cwz740,32,35,1|d4l6zz,32,35,1|d4l700,35,38,0|dfr4fz,35,38,0|dfr4g0,32,35,1|dnkizz,32,35,1|dnkj00,35,38,0|dyu5rz,35,38,0|dyu5s0,32,35,1|e61cbz,32,35,1|e61cc0,35,38,0|ehk8fz,35,38,0|ehk8g0,32,35,1|ep4dnz,32,35,1|ep4do0,35,38,0|f0ab3z,35,38,0|f0ab40,32,35,1|f87ezz,32,35,1|f87f00,35,38,0|fj0drz,35,38,0|fj0ds0,32,35,1|fqxhnz,32,35,1|fqxho0,35,38,0|g1qgfz,35,38,0|g1qgg0,32,35,1|g9nkbz,32,35,1|g9nkc0,35,38,0|gkthrz,35,38,0|gkths0,32,35,1|gu6gbz,32,35,1|gu6gc0,35,38,0|h1qr3z,35,38,0|h1qr40,32,35,1|hcwizz,32,35,1|hcwj00,35,38,0|hktsfz,35,38,0|hktsg0,32,35,1|hvmlnz,32,35,1|hvmlo0,35,38,0|i5pn3z,35,38,0|i5pn40,32,35,1|id9sbz,32,35,1|id9sc0,35,38,0|iofprz,35,38,0|iofps0,32,35,1|ivzuzz,32,35,1|ivzv00,35,38,0|j75sfz,35,38,0|j75sg0,32,35,1|jepxnz,32,35,1|jepxo0,35,38,0|jq8trz,35,38,0|jq8ts0,32,35,1|jxg0bz,32,35,1|jxg0c0,35,38,0|k8ywfz,35,38,0|k8ywg0,32,35,1|kg62zz,32,35,1|kg6300,35,38,0|kroz3z,35,38,0|kroz40,32,35,1|l0oyzz,32,35,1|l0oz00,35,38,0|l9p4fz,35,38,0|l9p4g0,32,35,1|ljf1nz,32,35,1|ljf1o0,35,38,0|lsf73z,35,38,0|lsf740,32,35,1|m254bz,32,35,1|m254c0,35,38,0|mbi8fz,35,38,0|mbi8g0,32,35,1|mk59nz,32,35,1|mk59o0,35,38,0|mu8b3z,35,38,0|mu8b40,32,35,1|n2vcbz,32,35,1|n2vcc0,35,38,0|ncydrz,35,38,0|ncyds0,32,35,1|nllezz,32,35,1|nllf00,35,38,0|nvogfz,35,38,0|nvogg0,32,35,1|o4ogbz,32,35,1|o4ogc0,35,38,0|oeej3z,35,38,0|oeej40,32,35,1|oneizz,32,35,1|onej00,35,38,0|ox4lrz,35,38,0|ox4ls0,32,35,1|p64lnz,32,35,1|p64lo0,35,38,0|pg7n3z,35,38,0|pg7n40,32,35,1|pouobz,32,35,1|pouoc0,35,38,0|pyxprz,35,38,0|pyxps0,32,35,1|q7kqzz,32,35,1|q7kr00,35,38,0|qhnsfz,35,38,0|qhnsg0,32,35,1|qqnsbz,32,35,1|qqnsc0,35,38,0|r0dv3z,35,38,0|r0dv40,32,35,1|r9duzz,32,35,1|r9dv00,35,38,0|rj3xrz,35,38,0|rj3xs0,32,35,1|rs3xnz,32,35,1|rs3xo0,35,38,0|s1u0fz,35,38,0|s1u0g0,32,35,1|sau0bz,32,35,1|sau0c0,35,38,0|skx1rz,35,38,0|skx1s0,32,35,1|stk2zz,32,35,1|stk300,35,38,0|t3n4fz,35,38,0|t3n4g0,32,35,1|tca5nz,32,35,1|tca5o0,35,38,0|tmd73z,35,38,0|tmd740,32,35,1|tvd6zz,32,35,1|tvd700,35,38,0|u539rz,35,38,0|u539s0,32,35,1|ue39nz,32,35,1|ue39o0,35,38,0|untcfz,35,38,0|untcg0,32,35,1|uwtcbz,32,35,1|uwtcc0,35,38,0|v6wdrz,35,38,0|v6wds0,32,35,1|vfjezz,32,35,1|vfjf00,35,38,0|vpmgfz,35,38,0|vpmgg0,32,35,1|vy9hnz,32,35,1|vy9ho0,35,38,0|w8cj3z,35,38,0|w8cj40,32,35,1|whcizz,32,35,1|whcj00,35,38,0|wr2lrz,35,38,0|wr2ls0,32,35,1|x02lnz,32,35,1|x02lo0,35,38,0|x9sofz,35,38,0|x9sog0,32,35,1|xisobz,32,35,1|xisoc0,35,38,0|xsir3z,35,38,0|xsir40,32,35,1|y1iqzz,32,35,1|y1ir00,35,38,0|yblsfz,35,38,0|yblsg0,32,35,1|yk8tnz,32,35,1|yk8to0,35,38,0|yubv3z,35,38,0|yubv40,32,35,1|z2ywbz,32,35,1|z2ywc0,35,38,0|zd1xrz,35,38,0|zd1xs0,32,35,1","America/Bahia|,0,39,0|-t85kv8,32,35,0|-jylag1,32,35,0|-jylag0,33,36,1|-jpb141,33,36,1|-jpb140,32,35,0|-jfsd01,32,35,0|-jfsd00,33,36,1|-j6j3s1,33,36,1|-j6j3s0,32,35,0|-ahcyc1,32,35,0|-ahcyc0,33,36,1|-aad3o1,33,36,1|-aad3o0,32,35,0|-9yl101,32,35,0|-9yl100,33,36,1|-9sd141,33,36,1|-9sd140,32,35,0|-9ft3o1,32,35,0|-9ft3o0,33,36,1|-99j941,33,36,1|-99j940,32,35,0|-8wzbo1,32,35,0|-8wzbo0,33,36,1|-8scqg1,33,36,1|-8scqg0,32,35,0|-35xmc1,32,35,0|-35xmc0,33,36,1|-31nzs1,33,36,1|-31nzs0,32,35,0|-2kdp01,32,35,0|-2kdp00,33,36,1|-2hcig1,33,36,1|-2hcig0,32,35,0|-24qqc1,32,35,0|-24qqc0,33,36,1|-204541,33,36,1|-204540,32,35,0|-1nid01,32,35,0|-1nid00,33,36,1|-1hc7s1,33,36,1|-1hc7s0,32,35,0|-14qfo1,32,35,0|-14qfo0,33,36,1|-yifs1,33,36,1|-yifs0,32,35,0|89jcbz,32,35,0|89jcc0,33,36,1|8gdk7z,33,36,1|8gdk80,32,35,0|8rwgbz,32,35,0|8rwgc0,33,36,1|8xns7z,33,36,1|8xns80,32,35,0|9aodnz,32,35,0|9aodo0,33,36,1|9g2qvz,33,36,1|9g2qw0,32,35,0|9t1hnz,32,35,0|9t1ho0,33,36,1|9yfuvz,33,36,1|9yfuw0,32,35,0|abrkbz,32,35,0|abrkc0,33,36,1|ahvuvz,33,36,1|ahvuw0,32,35,0|auulnz,32,35,0|auulo0,33,36,1|b0yw7z,33,36,1|b0yw80,32,35,0|bdkobz,32,35,0|bdkoc0,33,36,1|bjc07z,33,36,1|bjc080,32,35,0|bwnpnz,32,35,0|bwnpo0,33,36,1|c1p47z,33,36,1|c1p480,32,35,0|cf0tnz,32,35,0|cf0to0,33,36,1|cli2vz,33,36,1|cli2w0,32,35,0|cxqwbz,32,35,0|cxqwc0,33,36,1|d485jz,33,36,1|d485k0,32,35,0|dggyzz,32,35,0|dggz00,33,36,1|dml9jz,33,36,1|dml9k0,32,35,0|dyu2zz,32,35,0|dyu300,33,36,1|e5oavz,33,36,1|e5oaw0,32,35,0|ehm0bz,32,35,0|ehm0c0,33,36,1|ep4avz,33,36,1|ep4aw0,32,35,0|f0n6zz,32,35,0|f0n700,33,36,1|f7hevz,33,36,1|f7hew0,32,35,0|fj0azz,32,35,0|fj0b00,33,36,1|fqkg7z,33,36,1|fqkg80,32,35,0|g23cbz,32,35,0|g23cc0,33,36,1|g8xk7z,33,36,1|g8xk80,32,35,0|gl6dnz,32,35,0|gl6do0,33,36,1|grnmvz,33,36,1|grnmw0,32,35,0|h4zcbz,32,35,0|h4zcc0,33,36,1|hadpjz,33,36,1|hadpk0,32,35,0|lt51nz,32,35,0|lt51o0,33,36,1|lzz9jz,33,36,1|lzz9k0,32,35,0","America/Bahia_Banderas|,0,40,0|-p1u4k0,36,41,0|-m7mko1,36,41,0|-m7mko0,37,42,0|-kf67c1,37,42,0|-kf67c0,36,41,0|-k6j3c1,36,41,0|-k6j3c0,37,42,0|-jypm01,37,42,0|-jypm00,36,41,0|-jpan81,36,41,0|-jpan80,37,42,0|-eg9601,37,42,0|-eg9600,36,41,0|-axv381,36,41,0|-axv380,38,33,0|m7z,38,33,0|m80,36,41,0|dphibz,36,41,0|dphic0,39,42,1|dzxcvz,39,42,1|dzxcw0,36,41,0|e87kzz,36,41,0|e87l00,39,42,1|einfjz,39,42,1|einfk0,36,41,0|eqxnnz,36,41,0|eqxno0,39,42,1|f1di7z,39,42,1|f1di80,36,41,0|f9nqbz,36,41,0|f9nqc0,39,42,1|fkgjjz,39,42,1|fkgjk0,36,41,0|fsdszz,36,41,0|fsdt00,39,42,1|g36m7z,39,42,1|g36m80,36,41,0|gcwozz,36,41,0|gcwp00,39,42,1|gkgu7z,39,42,1|gkgu80,36,41,0|gu6wzz,36,41,0|gu6x00,39,42,1|h4mrjz,39,42,1|h4mrk0,36,41,0|hcwznz,36,41,0|hcwzo0,39,42,1|hncu7z,39,42,1|hncu80,36,41,0|hvn2bz,36,41,0|hvn2c0,39,42,1|i6fvjz,39,42,1|i6fvk0,36,41,0|ied4zz,36,41,0|ied500,39,42,1|ip5y7z,39,42,1|ip5y80,36,41,0|ix37nz,36,41,0|ix37o0,39,42,1|j7w0vz,39,42,1|j7w0w0,36,41,0|jftabz,36,41,0|jftac0,39,42,1|jqm3jz,39,42,1|jqm3k0,36,41,0|jywbnz,36,41,0|jywbo0,39,42,1|k9c67z,39,42,1|k9c680,36,41,0|khmebz,36,41,0|khmec0,39,42,1|ks28vz,39,42,1|ks28w0,36,41,0|l0cgzz,36,41,0|l0ch00,40,43,1|lb57fz,40,43,1|lb57g0,37,42,0|lj2gvz,37,42,0|lj2gw0,40,43,1|ltva3z,40,43,1|ltva40,37,42,0|m1sjjz,37,42,0|m1sjk0,40,43,1|mclcrz,40,43,1|mclcs0,37,42,0|mkvkvz,37,42,0|mkvkw0,40,43,1|mvbffz,40,43,1|mvbfg0,37,42,0|n3lnjz,37,42,0|n3lnk0,40,43,1|ne1i3z,40,43,1|ne1i40,37,42,0|nmbq7z,37,42,0|nmbq80,40,43,1|nwrkrz,40,43,1|nwrks0,37,42,0|o51svz,37,42,0|o51sw0,40,43,1|ofum3z,40,43,1|ofum40,37,42,0|onrvjz,37,42,0|onrvk0,40,43,1|oykorz,40,43,1|oykos0,37,42,0|p6hy7z,37,42,0|p6hy80,40,43,1|pharfz,40,43,1|pharg0,37,42,0|ppkzjz,37,42,0|ppkzk0,40,43,1|q00u3z,40,43,1|q00u40,37,42,0|q8b27z,37,42,0|q8b280,40,43,1|qiqwrz,40,43,1|qiqws0,37,42,0|qr14vz,37,42,0|qr14w0,40,43,1|r1ty3z,40,43,1|r1ty40,37,42,0|r9r7jz,37,42,0|r9r7k0,40,43,1|rkk0rz,40,43,1|rkk0s0,37,42,0|rsha7z,37,42,0|rsha80,40,43,1|s3a3fz,40,43,1|s3a3g0,37,42,0|sbkbjz,37,42,0|sbkbk0,40,43,1|sm063z,40,43,1|sm0640,37,42,0|suae7z,37,42,0|suae80,40,43,1|t4q8rz,40,43,1|t4q8s0,37,42,0|td0gvz,37,42,0|td0gw0,40,43,1|tngbfz,40,43,1|tngbg0,37,42,0|tvqjjz,37,42,0|tvqjk0,40,43,1|u6jcrz,40,43,1|u6jcs0,37,42,0|uegm7z,37,42,0|uegm80,40,43,1|up9ffz,40,43,1|up9fg0,37,42,0|ux6ovz,37,42,0|ux6ow0,40,43,1|v7zi3z,40,43,1|v7zi40,37,42,0|vg9q7z,37,42,0|vg9q80,40,43,1|vqpkrz,40,43,1|vqpks0,37,42,0|vyzsvz,37,42,0|vyzsw0,40,43,1|w9fnfz,40,43,1|w9fng0,37,42,0|whpvjz,37,42,0|whpvk0,40,43,1|wsiorz,40,43,1|wsios0,37,42,0|x0fy7z,37,42,0|x0fy80,40,43,1|xb8rfz,40,43,1|xb8rg0,37,42,0|xj60vz,37,42,0|xj60w0,40,43,1|xtyu3z,40,43,1|xtyu40,37,42,0|y1w3jz,37,42,0|y1w3k0,40,43,1|ycowrz,40,43,1|ycows0,37,42,0|ykz4vz,37,42,0|ykz4w0,40,43,1|yvezfz,40,43,1|yvezg0,37,42,0|z3p7jz,37,42,0|z3p7k0,40,43,1|ze523z,40,43,1|ze5240,37,42,0","America/Barbados|,0,44,0|-o0aiaj,41,44,0|-jtzeak,41,44,0|-jtzeaj,24,38,0|3vvnbz,24,38,0|3vvnc0,42,35,1|41mz7z,42,35,1|41mz80,24,38,0|4bq0nz,24,38,0|4bq0o0,42,35,1|4kd1vz,42,35,1|4kd1w0,24,38,0|4ug3bz,24,38,0|4ug3c0,42,35,1|5334jz,42,35,1|5334k0,24,38,0|5dj4nz,24,38,0|5dj4o0,42,35,1|5lnn7z,42,35,1|5lnn80,24,38,0","America/Belem|,0,45,0|-t85j0s,32,35,0|-jylag1,32,35,0|-jylag0,33,36,1|-jpb141,33,36,1|-jpb140,32,35,0|-jfsd01,32,35,0|-jfsd00,33,36,1|-j6j3s1,33,36,1|-j6j3s0,32,35,0|-ahcyc1,32,35,0|-ahcyc0,33,36,1|-aad3o1,33,36,1|-aad3o0,32,35,0|-9yl101,32,35,0|-9yl100,33,36,1|-9sd141,33,36,1|-9sd140,32,35,0|-9ft3o1,32,35,0|-9ft3o0,33,36,1|-99j941,33,36,1|-99j940,32,35,0|-8wzbo1,32,35,0|-8wzbo0,33,36,1|-8scqg1,33,36,1|-8scqg0,32,35,0|-35xmc1,32,35,0|-35xmc0,33,36,1|-31nzs1,33,36,1|-31nzs0,32,35,0|-2kdp01,32,35,0|-2kdp00,33,36,1|-2hcig1,33,36,1|-2hcig0,32,35,0|-24qqc1,32,35,0|-24qqc0,33,36,1|-204541,33,36,1|-204540,32,35,0|-1nid01,32,35,0|-1nid00,33,36,1|-1hc7s1,33,36,1|-1hc7s0,32,35,0|-14qfo1,32,35,0|-14qfo0,33,36,1|-yifs1,33,36,1|-yifs0,32,35,0|89jcbz,32,35,0|89jcc0,33,36,1|8gdk7z,33,36,1|8gdk80,32,35,0|8rwgbz,32,35,0|8rwgc0,33,36,1|8xns7z,33,36,1|8xns80,32,35,0|9aodnz,32,35,0|9aodo0,33,36,1|9g2qvz,33,36,1|9g2qw0,32,35,0","America/Belize|,0,46,0|-u52ic0,37,42,0|-qqoy01,37,42,0|-qqoy00,43,47,1|-qk7ne1,43,47,1|-qk7ne0,37,42,0|-q7yvc1,37,42,0|-q7yvc0,43,47,1|-q14m21,43,47,1|-q14m20,37,42,0|-pp8so1,37,42,0|-pp8so0,43,47,1|-pieje1,43,47,1|-pieje0,37,42,0|-p6iq01,37,42,0|-p6iq00,43,47,1|-ozogq1,43,47,1|-ozogq0,37,42,0|-onfoo1,37,42,0|-onfoo0,43,47,1|-ogye21,43,47,1|-ogye20,37,42,0|-o4pm01,37,42,0|-o4pm00,43,47,1|-ny8be1,43,47,1|-ny8be0,37,42,0|-nlzjc1,37,42,0|-nlzjc0,43,47,1|-nf5a21,43,47,1|-nf5a20,37,42,0|-n39go1,37,42,0|-n39go0,43,47,1|-mwf7e1,43,47,1|-mwf7e0,37,42,0|-mkje01,37,42,0|-mkje00,43,47,1|-mdp4q1,43,47,1|-mdp4q0,37,42,0|-m1tbc1,37,42,0|-m1tbc0,43,47,1|-luz221,43,47,1|-luz220,37,42,0|-liqa01,37,42,0|-liqa00,43,47,1|-lc8ze1,43,47,1|-lc8ze0,37,42,0|-l007c1,37,42,0|-l007c0,43,47,1|-ktiwq1,43,47,1|-ktiwq0,37,42,0|-kha4o1,37,42,0|-kha4o0,43,47,1|-kafve1,43,47,1|-kafve0,37,42,0|-jyk201,37,42,0|-jyk200,43,47,1|-jrpsq1,43,47,1|-jrpsq0,37,42,0|-jftzc1,37,42,0|-jftzc0,43,47,1|-j8zq21,43,47,1|-j8zq20,37,42,0|-iwqy01,37,42,0|-iwqy00,43,47,1|-iq9ne1,43,47,1|-iq9ne0,37,42,0|-ie0vc1,37,42,0|-ie0vc0,43,47,1|-i7jkq1,43,47,1|-i7jkq0,37,42,0|-hvaso1,37,42,0|-hvaso0,43,47,1|-hoti21,43,47,1|-hoti20,37,42,0|-hckq01,37,42,0|-hckq00,43,47,1|-h5qgq1,43,47,1|-h5qgq0,37,42,0|-gtunc1,37,42,0|-gtunc0,43,47,1|-gn0e21,43,47,1|-gn0e20,37,42,0|-gb4ko1,37,42,0|-gb4ko0,43,47,1|-g4abe1,43,47,1|-g4abe0,37,42,0|-fs1jc1,37,42,0|-fs1jc0,43,47,1|-flk8q1,43,47,1|-flk8q0,37,42,0|-f9bgo1,37,42,0|-f9bgo0,43,47,1|-f2u621,43,47,1|-f2u620,37,42,0|-eqle01,37,42,0|-eqle00,43,47,1|-ejr4q1,43,47,1|-ejr4q0,37,42,0|-ecwso1,37,42,0|-ecwso0,44,43,1|-cq2tg1,44,43,1|-cq2tg0,45,43,1|-cjqks1,45,43,1|-cjqks0,37,42,0|-blvzc1,37,42,0|-blvzc0,43,47,1|-bf1q21,43,47,1|-bf1q20,37,42,0|-b35wo1,37,42,0|-b35wo0,43,47,1|-awbne1,43,47,1|-awbne0,37,42,0|-akfu01,37,42,0|-akfu00,43,47,1|-adlkq1,43,47,1|-adlkq0,37,42,0|-a1cso1,37,42,0|-a1cso0,43,47,1|-9uvi21,43,47,1|-9uvi20,37,42,0|-9imq01,37,42,0|-9imq00,43,47,1|-9c5fe1,43,47,1|-9c5fe0,37,42,0|-8zwnc1,37,42,0|-8zwnc0,43,47,1|-8t2e21,43,47,1|-8t2e20,37,42,0|-8h6ko1,37,42,0|-8h6ko0,43,47,1|-8acbe1,43,47,1|-8acbe0,37,42,0|-7ygi01,37,42,0|-7ygi00,43,47,1|-7rm8q1,43,47,1|-7rm8q0,37,42,0|-7fqfc1,37,42,0|-7fqfc0,43,47,1|-78w621,43,47,1|-78w620,37,42,0|-6wne01,37,42,0|-6wne00,43,47,1|-6q63e1,43,47,1|-6q63e0,37,42,0|-6dxbc1,37,42,0|-6dxbc0,43,47,1|-67g0q1,43,47,1|-67g0q0,37,42,0|-5v78o1,37,42,0|-5v78o0,43,47,1|-5ocze1,43,47,1|-5ocze0,37,42,0|-5ch601,37,42,0|-5ch600,43,47,1|-55mwq1,43,47,1|-55mwq0,37,42,0|-4tr3c1,37,42,0|-4tr3c0,43,47,1|-4mwu21,43,47,1|-4mwu20,37,42,0|-4ao201,37,42,0|-4ao200,43,47,1|-446re1,43,47,1|-446re0,37,42,0|-3rxzc1,37,42,0|-3rxzc0,43,47,1|-3lgoq1,43,47,1|-3lgoq0,37,42,0|-397wo1,37,42,0|-397wo0,43,47,1|-32qm21,43,47,1|-32qm20,37,42,0|-2qhu01,37,42,0|-2qhu00,43,47,1|-2jnkq1,43,47,1|-2jnkq0,37,42,0|-27rrc1,37,42,0|-27rrc0,43,47,1|-20xi21,43,47,1|-20xi20,37,42,0|-1p1oo1,37,42,0|-1p1oo0,43,47,1|-1i7fe1,43,47,1|-1i7fe0,37,42,0|-15ync1,37,42,0|-15ync0,43,47,1|-zhcq1,43,47,1|-zhcq0,37,42,0|21s0nz,37,42,0|21s0o0,40,43,1|2565vz,40,43,1|2565w0,37,42,0|6rj4nz,37,42,0|6rj4o0,40,43,1|6uer7z,40,43,1|6uer80,37,42,0","America/Bogota|,0,48,0|-18s2sy8,41,48,0|-srdoy9,41,48,0|-srdoy8,46,43,0|bnnsjz,46,43,0|bnnsk0,35,38,1|c4xxrz,35,38,1|c4xxs0,46,43,0","America/Boise|,0,49,0|-18y0gg0,38,33,0|-r0emw1,38,33,0|-r0emw0,47,41,1|-qplto1,47,41,1|-qplto0,38,33,0|-qhok81,38,33,0|-qhok80,47,41,1|-q6vr01,47,41,1|-q6vr00,38,33,0|-oc9iw1,38,33,0|-oc9iw0,36,41,0|-ek1z01,36,41,0|-ek1z00,48,42,1|-cq2tg1,48,42,1|-cq2tg0,49,42,1|-cnoxs1,49,42,1|-cnoxs0,36,41,0|-1e8kc1,36,41,0|-1e8kc0,39,42,1|-14vls1,39,42,1|-14vls0,36,41,0|-viho1,36,41,0|-viho0,39,42,1|-m5j41,39,42,1|-m5j40,36,41,0|-csf01,36,41,0|-csf00,39,42,1|-3fgg1,39,42,1|-3fgg0,36,41,0|5xnnz,36,41,0|5xno0,39,42,1|fam7z,39,42,1|fam80,36,41,0|onqbz,36,41,0|onqc0,39,42,1|ydnjz,39,42,1|ydnk0,36,41,0|17qrnz,36,41,0|17qro0,39,42,1|1h3q7z,39,42,1|1h3q80,36,41,0|1qgubz,36,41,0|1qguc0,39,42,1|1ztsvz,39,42,1|1ztsw0,36,41,0|24vczz,36,41,0|24vd00,39,42,1|2ijvjz,39,42,1|2ijvk0,36,41,0|2oobnz,36,41,0|2oobo0,39,42,1|319y7z,39,42,1|319y80,36,41,0|3an2bz,36,41,0|3an2c0,39,42,1|3kczjz,39,42,1|3kczk0,36,41,0|3td4zz,36,41,0|3td500,39,42,1|43327z,39,42,1|433280,36,41,0|4cg6bz,36,41,0|4cg6c0,39,42,1|4lt4vz,39,42,1|4lt4w0,36,41,0|4v68zz,36,41,0|4v6900,39,42,1|54j7jz,39,42,1|54j7k0,36,41,0|5dwbnz,36,41,0|5dwbo0,39,42,1|5n9a7z,39,42,1|5n9a80,36,41,0|5wmebz,36,41,0|5wmec0,39,42,1|65zcvz,39,42,1|65zcw0,36,41,0|6fcgzz,36,41,0|6fch00,39,42,1|6p2e7z,39,42,1|6p2e80,36,41,0|6y2jnz,36,41,0|6y2jo0,39,42,1|77sgvz,39,42,1|77sgw0,36,41,0|7h5kzz,36,41,0|7h5l00,39,42,1|7qijjz,39,42,1|7qijk0,36,41,0|7zvnnz,36,41,0|7zvno0,39,42,1|898m7z,39,42,1|898m80,36,41,0|8ilqbz,36,41,0|8ilqc0,39,42,1|8ryovz,39,42,1|8ryow0,36,41,0|908wzz,36,41,0|908x00,39,42,1|9aorjz,39,42,1|9aork0,36,41,0|9iyznz,36,41,0|9iyzo0,39,42,1|9trsvz,39,42,1|9trsw0,36,41,0|a1p2bz,36,41,0|a1p2c0,39,42,1|achvjz,39,42,1|achvk0,36,41,0|akf4zz,36,41,0|akf500,39,42,1|av7y7z,39,42,1|av7y80,36,41,0|b3i6bz,36,41,0|b3i6c0,39,42,1|bdy0vz,39,42,1|bdy0w0,36,41,0|bm88zz,36,41,0|bm8900,39,42,1|bwo3jz,39,42,1|bwo3k0,36,41,0|c4ybnz,36,41,0|c4ybo0,39,42,1|cfr4vz,39,42,1|cfr4w0,36,41,0|cnoebz,36,41,0|cnoec0,39,42,1|cyh7jz,39,42,1|cyh7k0,36,41,0|d6egzz,36,41,0|d6eh00,39,42,1|dh7a7z,39,42,1|dh7a80,36,41,0|dphibz,36,41,0|dphic0,39,42,1|dzxcvz,39,42,1|dzxcw0,36,41,0|e87kzz,36,41,0|e87l00,39,42,1|einfjz,39,42,1|einfk0,36,41,0|eqxnnz,36,41,0|eqxno0,39,42,1|f1di7z,39,42,1|f1di80,36,41,0|f9nqbz,36,41,0|f9nqc0,39,42,1|fkgjjz,39,42,1|fkgjk0,36,41,0|fsdszz,36,41,0|fsdt00,39,42,1|g36m7z,39,42,1|g36m80,36,41,0|gb3vnz,36,41,0|gb3vo0,39,42,1|glwovz,39,42,1|glwow0,36,41,0|gu6wzz,36,41,0|gu6x00,39,42,1|h4mrjz,39,42,1|h4mrk0,36,41,0|hcwznz,36,41,0|hcwzo0,39,42,1|hncu7z,39,42,1|hncu80,36,41,0|hvn2bz,36,41,0|hvn2c0,39,42,1|i6fvjz,39,42,1|i6fvk0,36,41,0|ied4zz,36,41,0|ied500,39,42,1|ip5y7z,39,42,1|ip5y80,36,41,0|ix37nz,36,41,0|ix37o0,39,42,1|j7w0vz,39,42,1|j7w0w0,36,41,0|jeqebz,36,41,0|jeqec0,39,42,1|jqz27z,39,42,1|jqz280,36,41,0|jxggzz,36,41,0|jxgh00,39,42,1|k9p4vz,39,42,1|k9p4w0,36,41,0|kg6jnz,36,41,0|kg6jo0,39,42,1|ksf7jz,39,42,1|ksf7k0,36,41,0|kz9kzz,36,41,0|kz9l00,39,42,1|lbi8vz,39,42,1|lbi8w0,36,41,0|lhznnz,36,41,0|lhzno0,39,42,1|lu8bjz,39,42,1|lu8bk0,36,41,0|m0pqbz,36,41,0|m0pqc0,39,42,1|mcye7z,39,42,1|mcye80,36,41,0|mjfszz,36,41,0|mjft00,39,42,1|mvogvz,39,42,1|mvogw0,36,41,0|n25vnz,36,41,0|n25vo0,39,42,1|neejjz,39,42,1|neejk0,36,41,0|nkvybz,36,41,0|nkvyc0,39,42,1|nx4m7z,39,42,1|nx4m80,36,41,0|o3yznz,36,41,0|o3yzo0,39,42,1|og7njz,39,42,1|og7nk0,36,41,0|omp2bz,36,41,0|omp2c0,39,42,1|oyxq7z,39,42,1|oyxq80,36,41,0|p5f4zz,36,41,0|p5f500,39,42,1|phnsvz,39,42,1|phnsw0,36,41,0|po57nz,36,41,0|po57o0,39,42,1|q0dvjz,39,42,1|q0dvk0,36,41,0|q6vabz,36,41,0|q6vac0,39,42,1|qj3y7z,39,42,1|qj3y80,36,41,0|qpybnz,36,41,0|qpybo0,39,42,1|r26zjz,39,42,1|r26zk0,36,41,0|r8oebz,36,41,0|r8oec0,39,42,1|rkx27z,39,42,1|rkx280,36,41,0|rregzz,36,41,0|rreh00,39,42,1|s3n4vz,39,42,1|s3n4w0,36,41,0|sa4jnz,36,41,0|sa4jo0,39,42,1|smd7jz,39,42,1|smd7k0,36,41,0|ssumbz,36,41,0|ssumc0,39,42,1|t53a7z,39,42,1|t53a80,36,41,0|tbkozz,36,41,0|tbkp00,39,42,1|tntcvz,39,42,1|tntcw0,36,41,0|tunqbz,36,41,0|tunqc0,39,42,1|u6we7z,39,42,1|u6we80,36,41,0|uddszz,36,41,0|uddt00,39,42,1|upmgvz,39,42,1|upmgw0,36,41,0|uw3vnz,36,41,0|uw3vo0,39,42,1|v8cjjz,39,42,1|v8cjk0,36,41,0|vetybz,36,41,0|vetyc0,39,42,1|vr2m7z,39,42,1|vr2m80,36,41,0|vxk0zz,36,41,0|vxk100,39,42,1|w9sovz,39,42,1|w9sow0,36,41,0|wgn2bz,36,41,0|wgn2c0,39,42,1|wsvq7z,39,42,1|wsvq80,36,41,0|wzd4zz,36,41,0|wzd500,39,42,1|xblsvz,39,42,1|xblsw0,36,41,0|xi37nz,36,41,0|xi37o0,39,42,1|xubvjz,39,42,1|xubvk0,36,41,0|y0tabz,36,41,0|y0tac0,39,42,1|yd1y7z,39,42,1|yd1y80,36,41,0|yjjczz,36,41,0|yjjd00,39,42,1|yvs0vz,39,42,1|yvs0w0,36,41,0|z29fnz,36,41,0|z29fo0,39,42,1|zei3jz,39,42,1|zei3k0,36,41,0","America/Campo_Grande|,0,50,0|-t85hvw,35,38,0|-jyl7o1,35,38,0|-jyl7o0,32,35,1|-jpayc1,32,35,1|-jpayc0,35,38,0|-jfsa81,35,38,0|-jfsa80,32,35,1|-j6j101,32,35,1|-j6j100,35,38,0|-ahcvk1,35,38,0|-ahcvk0,32,35,1|-aad0w1,32,35,1|-aad0w0,35,38,0|-9yky81,35,38,0|-9yky80,32,35,1|-9scyc1,32,35,1|-9scyc0,35,38,0|-9ft0w1,35,38,0|-9ft0w0,32,35,1|-99j6c1,32,35,1|-99j6c0,35,38,0|-8wz8w1,35,38,0|-8wz8w0,32,35,1|-8scno1,32,35,1|-8scno0,35,38,0|-35xjk1,35,38,0|-35xjk0,32,35,1|-31nx01,32,35,1|-31nx00,35,38,0|-2kdm81,35,38,0|-2kdm80,32,35,1|-2hcfo1,32,35,1|-2hcfo0,35,38,0|-24qnk1,35,38,0|-24qnk0,32,35,1|-2042c1,32,35,1|-2042c0,35,38,0|-1nia81,35,38,0|-1nia80,32,35,1|-1hc501,32,35,1|-1hc500,35,38,0|-14qcw1,35,38,0|-14qcw0,32,35,1|-yid01,32,35,1|-yid00,35,38,0|89jf3z,35,38,0|89jf40,32,35,1|8gdmzz,32,35,1|8gdn00,35,38,0|8rwj3z,35,38,0|8rwj40,32,35,1|8xnuzz,32,35,1|8xnv00,35,38,0|9aogfz,35,38,0|9aogg0,32,35,1|9g2tnz,32,35,1|9g2to0,35,38,0|9t1kfz,35,38,0|9t1kg0,32,35,1|9yfxnz,32,35,1|9yfxo0,35,38,0|abrn3z,35,38,0|abrn40,32,35,1|ahvxnz,32,35,1|ahvxo0,35,38,0|auuofz,35,38,0|auuog0,32,35,1|b0yyzz,32,35,1|b0yz00,35,38,0|bdkr3z,35,38,0|bdkr40,32,35,1|bjc2zz,32,35,1|bjc300,35,38,0|bwnsfz,35,38,0|bwnsg0,32,35,1|c1p6zz,32,35,1|c1p700,35,38,0|cf0wfz,35,38,0|cf0wg0,32,35,1|cli5nz,32,35,1|cli5o0,35,38,0|cxqz3z,35,38,0|cxqz40,32,35,1|d488bz,32,35,1|d488c0,35,38,0|dgh1rz,35,38,0|dgh1s0,32,35,1|dmlcbz,32,35,1|dmlcc0,35,38,0|dyu5rz,35,38,0|dyu5s0,32,35,1|e5odnz,32,35,1|e5odo0,35,38,0|ehm33z,35,38,0|ehm340,32,35,1|ep4dnz,32,35,1|ep4do0,35,38,0|f0n9rz,35,38,0|f0n9s0,32,35,1|f7hhnz,32,35,1|f7hho0,35,38,0|fj0drz,35,38,0|fj0ds0,32,35,1|fqkizz,32,35,1|fqkj00,35,38,0|g23f3z,35,38,0|g23f40,32,35,1|g8xmzz,32,35,1|g8xn00,35,38,0|gl6gfz,35,38,0|gl6gg0,32,35,1|grnpnz,32,35,1|grnpo0,35,38,0|h4zf3z,35,38,0|h4zf40,32,35,1|hadsbz,32,35,1|hadsc0,35,38,0|hmzkfz,35,38,0|hmzkg0,32,35,1|ht3uzz,32,35,1|ht3v00,35,38,0|i6j9rz,35,38,0|i6j9s0,32,35,1|ic6wbz,32,35,1|ic6wc0,35,38,0|iofprz,35,38,0|iofps0,32,35,1|iuwyzz,32,35,1|iuwz00,35,38,0|j88ofz,35,38,0|j88og0,32,35,1|je00bz,32,35,1|je00c0,35,38,0|jpvv3z,35,38,0|jpvv40,32,35,1|jwd4bz,32,35,1|jwd4c0,35,38,0|k8ywfz,35,38,0|k8ywg0,32,35,1|kf36zz,32,35,1|kf3700,35,38,0|kroz3z,35,38,0|kroz40,32,35,1|ky68bz,32,35,1|ky68c0,35,38,0|laf1rz,35,38,0|laf1s0,32,35,1|lgwazz,32,35,1|lgwb00,35,38,0|lt54fz,35,38,0|lt54g0,32,35,1|lzzcbz,32,35,1|lzzcc0,35,38,0|mc85rz,35,38,0|mc85s0,32,35,1|micgbz,32,35,1|micgc0,35,38,0|muy8fz,35,38,0|muy8g0,32,35,1|n12izz,32,35,1|n12j00,35,38,0|ndob3z,35,38,0|ndob40,32,35,1|nk5kbz,32,35,1|nk5kc0,35,38,0|nwedrz,35,38,0|nweds0,32,35,1|o2vmzz,32,35,1|o2vn00,35,38,0|of4gfz,35,38,0|of4gg0,32,35,1|ollpnz,32,35,1|ollpo0,35,38,0|oxuj3z,35,38,0|oxuj40,32,35,1|p4bsbz,32,35,1|p4bsc0,35,38,0|phnhrz,35,38,0|phnhs0,32,35,1|pn1uzz,32,35,1|pn1v00,35,38,0","America/Cancun|,0,51,0|-p1u7c0,37,42,0|690gnz,37,42,0|690go0,50,43,0|dphcrz,50,43,0|dphcs0,51,38,1|dzx7bz,51,38,1|dzx7c0,50,43,0|e87ffz,50,43,0|e87fg0,51,38,1|ein9zz,51,38,1|eina00,50,43,0|eqxi3z,50,43,0|eqxi40,51,38,1|ex1snz,51,38,1|ex1so0,40,43,1|f1dffz,40,43,1|f1dfg0,37,42,0|f9nnjz,37,42,0|f9nnk0,40,43,1|fkggrz,40,43,1|fkggs0,37,42,0|fsdq7z,37,42,0|fsdq80,40,43,1|g36jfz,40,43,1|g36jg0,37,42,0|gcwm7z,37,42,0|gcwm80,40,43,1|gkgrfz,40,43,1|gkgrg0,37,42,0|gu6u7z,37,42,0|gu6u80,40,43,1|h4morz,40,43,1|h4mos0,37,42,0|hcwwvz,37,42,0|hcwww0,40,43,1|hncrfz,40,43,1|hncrg0,37,42,0|hvmzjz,37,42,0|hvmzk0,40,43,1|i6fsrz,40,43,1|i6fss0,37,42,0|ied27z,37,42,0|ied280,40,43,1|ip5vfz,40,43,1|ip5vg0,37,42,0|ix34vz,37,42,0|ix34w0,40,43,1|j7vy3z,40,43,1|j7vy40,37,42,0|jft7jz,37,42,0|jft7k0,40,43,1|jqm0rz,40,43,1|jqm0s0,37,42,0|jyw8vz,37,42,0|jyw8w0,40,43,1|k9c3fz,40,43,1|k9c3g0,37,42,0|khmbjz,37,42,0|khmbk0,40,43,1|ks263z,40,43,1|ks2640,37,42,0|l0ce7z,37,42,0|l0ce80,40,43,1|lb57fz,40,43,1|lb57g0,37,42,0|lj2gvz,37,42,0|lj2gw0,40,43,1|ltva3z,40,43,1|ltva40,37,42,0|m1sjjz,37,42,0|m1sjk0,40,43,1|mclcrz,40,43,1|mclcs0,37,42,0|mkvkvz,37,42,0|mkvkw0,40,43,1|mvbffz,40,43,1|mvbfg0,37,42,0|n3lnjz,37,42,0|n3lnk0,40,43,1|ne1i3z,40,43,1|ne1i40,37,42,0|nj327z,37,42,0|nj3280,50,43,0","America/Caracas|,0,52,0|-15r0wxs,52,53,0|-u7lcxx,52,53,0|-u7lcxw,53,54,0|-2lx4u1,53,54,0|-2lx4u0,35,38,0|jsrsrz,35,38,0|jsrss0,53,54,0|o6hkrz,53,54,0|o6hks0,35,38,0","America/Cayenne|,0,55,0|-uj7yb4,35,38,0|-16brk1,35,38,0|-16brk0,32,35,0","America/Cayman|,0,56,0|-15r0uls,52,57,0|-w757vd,52,57,0|-w757vc,50,43,0","America/Chicago|,0,58,0|-18y0m00,37,42,0|-r0esg1,37,42,0|-r0esg0,40,43,1|-qplz81,40,43,1|-qplz80,37,42,0|-qhops1,37,42,0|-qhops0,40,43,1|-q6vwk1,40,43,1|-q6vwk0,37,42,0|-pv01s1,37,42,0|-pv01s0,40,43,1|-pnsv81,40,43,1|-pnsv80,37,42,0|-pg8kg1,37,42,0|-pg8kg0,40,43,1|-p52sk1,40,43,1|-p52sk0,37,42,0|-ovpog1,37,42,0|-ovpog0,40,43,1|-oo5j81,40,43,1|-oo5j80,37,42,0|-oczls1,37,42,0|-oczls0,40,43,1|-o52hw1,40,43,1|-o52hw0,37,42,0|-nu9j41,37,42,0|-nu9j40,40,43,1|-nmcf81,40,43,1|-nmcf80,37,42,0|-nbjgg1,37,42,0|-nbjgg0,40,43,1|-n3mck1,40,43,1|-n3mck0,37,42,0|-mstds1,37,42,0|-mstds0,40,43,1|-mkw9w1,40,43,1|-mkw9w0,37,42,0|-ma3b41,37,42,0|-ma3b40,40,43,1|-m26781,40,43,1|-m26780,37,42,0|-lr09s1,37,42,0|-lr09s0,40,43,1|-lj35w1,40,43,1|-lj35w0,37,42,0|-l8a741,37,42,0|-l8a740,40,43,1|-l0d381,40,43,1|-l0d380,37,42,0|-kpk4g1,37,42,0|-kpk4g0,40,43,1|-khn0k1,40,43,1|-khn0k0,37,42,0|-k6u1s1,37,42,0|-k6u1s0,40,43,1|-jywxw1,40,43,1|-jywxw0,37,42,0|-jo3z41,37,42,0|-jo3z40,40,43,1|-jg6v81,40,43,1|-jg6v80,37,42,0|-j50xs1,37,42,0|-j50xs0,40,43,1|-ixgsk1,40,43,1|-ixgsk0,37,42,0|-imav41,37,42,0|-imav40,40,43,1|-iedr81,40,43,1|-iedr80,37,42,0|-i3ksg1,37,42,0|-i3ksg0,40,43,1|-hvnok1,40,43,1|-hvnok0,37,42,0|-hnqf41,37,42,0|-hnqf40,50,43,0|-haev81,50,43,0|-haev80,37,42,0|-h24n41,37,42,0|-h24n40,40,43,1|-gu7j81,40,43,1|-gu7j80,37,42,0|-gjekg1,37,42,0|-gjekg0,40,43,1|-gbhgk1,40,43,1|-gbhgk0,37,42,0|-g0bj41,37,42,0|-g0bj40,40,43,1|-fsrdw1,40,43,1|-fsrdw0,37,42,0|-fhlgg1,37,42,0|-fhlgg0,40,43,1|-f9ock1,40,43,1|-f9ock0,37,42,0|-eyvds1,37,42,0|-eyvds0,40,43,1|-eqy9w1,40,43,1|-eqy9w0,37,42,0|-ek21s1,37,42,0|-ek21s0,44,43,1|-cq2tg1,44,43,1|-cq2tg0,45,43,1|-cnp0k1,45,43,1|-cnp0k0,37,42,0|-ccw1s1,37,42,0|-ccw1s0,40,43,1|-c4yxw1,40,43,1|-c4yxw0,37,42,0|-bu5z41,37,42,0|-bu5z40,40,43,1|-bm8v81,40,43,1|-bm8v80,37,42,0|-bbfwg1,37,42,0|-bbfwg0,40,43,1|-b3isk1,40,43,1|-b3isk0,37,42,0|-aspts1,37,42,0|-aspts0,40,43,1|-akspw1,40,43,1|-akspw0,37,42,0|-a9msg1,37,42,0|-a9msg0,40,43,1|-a22n81,40,43,1|-a22n80,37,42,0|-9qwps1,37,42,0|-9qwps0,40,43,1|-9izlw1,40,43,1|-9izlw0,37,42,0|-986n41,37,42,0|-986n40,40,43,1|-909j81,40,43,1|-909j80,37,42,0|-8pgkg1,37,42,0|-8pgkg0,40,43,1|-8hjgk1,40,43,1|-8hjgk0,37,42,0|-86qhs1,37,42,0|-86qhs0,40,43,1|-7ytdw1,40,43,1|-7ytdw0,37,42,0|-7o0f41,37,42,0|-7o0f40,40,43,1|-7eahw1,40,43,1|-7eahw0,37,42,0|-74xds1,37,42,0|-74xds0,40,43,1|-6vkf81,40,43,1|-6vkf80,37,42,0|-6m7b41,37,42,0|-6m7b40,40,43,1|-6cuck1,40,43,1|-6cuck0,37,42,0|-63h8g1,37,42,0|-63h8g0,40,43,1|-5u49w1,40,43,1|-5u49w0,37,42,0|-5kr5s1,37,42,0|-5kr5s0,40,43,1|-5be781,40,43,1|-5be780,37,42,0|-521341,37,42,0|-521340,40,43,1|-4sb5w1,40,43,1|-4sb5w0,37,42,0|-4iy1s1,37,42,0|-4iy1s0,40,43,1|-49l381,40,43,1|-49l380,37,42,0|-407z41,37,42,0|-407z40,40,43,1|-3qv0k1,40,43,1|-3qv0k0,37,42,0|-3hhwg1,37,42,0|-3hhwg0,40,43,1|-384xw1,40,43,1|-384xw0,37,42,0|-2yrts1,37,42,0|-2yrts0,40,43,1|-2pev81,40,43,1|-2pev80,37,42,0|-2g1r41,37,42,0|-2g1r40,40,43,1|-26btw1,40,43,1|-26btw0,37,42,0|-1xbog1,37,42,0|-1xbog0,40,43,1|-1nlr81,40,43,1|-1nlr80,37,42,0|-1e8n41,37,42,0|-1e8n40,40,43,1|-14vok1,40,43,1|-14vok0,37,42,0|-vikg1,37,42,0|-vikg0,40,43,1|-m5lw1,40,43,1|-m5lw0,37,42,0|-cshs1,37,42,0|-cshs0,40,43,1|-3fj81,40,43,1|-3fj80,37,42,0|5xkvz,37,42,0|5xkw0,40,43,1|fajfz,40,43,1|fajg0,37,42,0|onnjz,37,42,0|onnk0,40,43,1|ydkrz,40,43,1|ydks0,37,42,0|17qovz,37,42,0|17qow0,40,43,1|1h3nfz,40,43,1|1h3ng0,37,42,0|1qgrjz,37,42,0|1qgrk0,40,43,1|1ztq3z,40,43,1|1ztq40,37,42,0|23ffjz,37,42,0|23ffk0,40,43,1|2ijsrz,40,43,1|2ijss0,37,42,0|2oo8vz,37,42,0|2oo8w0,40,43,1|319vfz,40,43,1|319vg0,37,42,0|3amzjz,37,42,0|3amzk0,40,43,1|3kcwrz,40,43,1|3kcws0,37,42,0|3td27z,37,42,0|3td280,40,43,1|432zfz,40,43,1|432zg0,37,42,0|4cg3jz,37,42,0|4cg3k0,40,43,1|4lt23z,40,43,1|4lt240,37,42,0|4v667z,37,42,0|4v6680,40,43,1|54j4rz,40,43,1|54j4s0,37,42,0|5dw8vz,37,42,0|5dw8w0,40,43,1|5n97fz,40,43,1|5n97g0,37,42,0|5wmbjz,37,42,0|5wmbk0,40,43,1|65za3z,40,43,1|65za40,37,42,0|6fce7z,37,42,0|6fce80,40,43,1|6p2bfz,40,43,1|6p2bg0,37,42,0|6y2gvz,37,42,0|6y2gw0,40,43,1|77se3z,40,43,1|77se40,37,42,0|7h5i7z,37,42,0|7h5i80,40,43,1|7qigrz,40,43,1|7qigs0,37,42,0|7zvkvz,37,42,0|7zvkw0,40,43,1|898jfz,40,43,1|898jg0,37,42,0|8ilnjz,37,42,0|8ilnk0,40,43,1|8rym3z,40,43,1|8rym40,37,42,0|908u7z,37,42,0|908u80,40,43,1|9aoorz,40,43,1|9aoos0,37,42,0|9iywvz,37,42,0|9iyww0,40,43,1|9trq3z,40,43,1|9trq40,37,42,0|a1ozjz,37,42,0|a1ozk0,40,43,1|achsrz,40,43,1|achss0,37,42,0|akf27z,37,42,0|akf280,40,43,1|av7vfz,40,43,1|av7vg0,37,42,0|b3i3jz,37,42,0|b3i3k0,40,43,1|bdxy3z,40,43,1|bdxy40,37,42,0|bm867z,37,42,0|bm8680,40,43,1|bwo0rz,40,43,1|bwo0s0,37,42,0|c4y8vz,37,42,0|c4y8w0,40,43,1|cfr23z,40,43,1|cfr240,37,42,0|cnobjz,37,42,0|cnobk0,40,43,1|cyh4rz,40,43,1|cyh4s0,37,42,0|d6ee7z,37,42,0|d6ee80,40,43,1|dh77fz,40,43,1|dh77g0,37,42,0|dphfjz,37,42,0|dphfk0,40,43,1|dzxa3z,40,43,1|dzxa40,37,42,0|e87i7z,37,42,0|e87i80,40,43,1|eincrz,40,43,1|eincs0,37,42,0|eqxkvz,37,42,0|eqxkw0,40,43,1|f1dffz,40,43,1|f1dfg0,37,42,0|f9nnjz,37,42,0|f9nnk0,40,43,1|fkggrz,40,43,1|fkggs0,37,42,0|fsdq7z,37,42,0|fsdq80,40,43,1|g36jfz,40,43,1|g36jg0,37,42,0|gb3svz,37,42,0|gb3sw0,40,43,1|glwm3z,40,43,1|glwm40,37,42,0|gu6u7z,37,42,0|gu6u80,40,43,1|h4morz,40,43,1|h4mos0,37,42,0|hcwwvz,37,42,0|hcwww0,40,43,1|hncrfz,40,43,1|hncrg0,37,42,0|hvmzjz,37,42,0|hvmzk0,40,43,1|i6fsrz,40,43,1|i6fss0,37,42,0|ied27z,37,42,0|ied280,40,43,1|ip5vfz,40,43,1|ip5vg0,37,42,0|ix34vz,37,42,0|ix34w0,40,43,1|j7vy3z,40,43,1|j7vy40,37,42,0|jeqbjz,37,42,0|jeqbk0,40,43,1|jqyzfz,40,43,1|jqyzg0,37,42,0|jxge7z,37,42,0|jxge80,40,43,1|k9p23z,40,43,1|k9p240,37,42,0|kg6gvz,37,42,0|kg6gw0,40,43,1|ksf4rz,40,43,1|ksf4s0,37,42,0|kz9i7z,37,42,0|kz9i80,40,43,1|lbi63z,40,43,1|lbi640,37,42,0|lhzkvz,37,42,0|lhzkw0,40,43,1|lu88rz,40,43,1|lu88s0,37,42,0|m0pnjz,37,42,0|m0pnk0,40,43,1|mcybfz,40,43,1|mcybg0,37,42,0|mjfq7z,37,42,0|mjfq80,40,43,1|mvoe3z,40,43,1|mvoe40,37,42,0|n25svz,37,42,0|n25sw0,40,43,1|neegrz,40,43,1|neegs0,37,42,0|nkvvjz,37,42,0|nkvvk0,40,43,1|nx4jfz,40,43,1|nx4jg0,37,42,0|o3ywvz,37,42,0|o3yww0,40,43,1|og7krz,40,43,1|og7ks0,37,42,0|omozjz,37,42,0|omozk0,40,43,1|oyxnfz,40,43,1|oyxng0,37,42,0|p5f27z,37,42,0|p5f280,40,43,1|phnq3z,40,43,1|phnq40,37,42,0|po54vz,37,42,0|po54w0,40,43,1|q0dsrz,40,43,1|q0dss0,37,42,0|q6v7jz,37,42,0|q6v7k0,40,43,1|qj3vfz,40,43,1|qj3vg0,37,42,0|qpy8vz,37,42,0|qpy8w0,40,43,1|r26wrz,40,43,1|r26ws0,37,42,0|r8objz,37,42,0|r8obk0,40,43,1|rkwzfz,40,43,1|rkwzg0,37,42,0|rree7z,37,42,0|rree80,40,43,1|s3n23z,40,43,1|s3n240,37,42,0|sa4gvz,37,42,0|sa4gw0,40,43,1|smd4rz,40,43,1|smd4s0,37,42,0|ssujjz,37,42,0|ssujk0,40,43,1|t537fz,40,43,1|t537g0,37,42,0|tbkm7z,37,42,0|tbkm80,40,43,1|tnta3z,40,43,1|tnta40,37,42,0|tunnjz,37,42,0|tunnk0,40,43,1|u6wbfz,40,43,1|u6wbg0,37,42,0|uddq7z,37,42,0|uddq80,40,43,1|upme3z,40,43,1|upme40,37,42,0|uw3svz,37,42,0|uw3sw0,40,43,1|v8cgrz,40,43,1|v8cgs0,37,42,0|vetvjz,37,42,0|vetvk0,40,43,1|vr2jfz,40,43,1|vr2jg0,37,42,0|vxjy7z,37,42,0|vxjy80,40,43,1|w9sm3z,40,43,1|w9sm40,37,42,0|wgmzjz,37,42,0|wgmzk0,40,43,1|wsvnfz,40,43,1|wsvng0,37,42,0|wzd27z,37,42,0|wzd280,40,43,1|xblq3z,40,43,1|xblq40,37,42,0|xi34vz,37,42,0|xi34w0,40,43,1|xubsrz,40,43,1|xubss0,37,42,0|y0t7jz,37,42,0|y0t7k0,40,43,1|yd1vfz,40,43,1|yd1vg0,37,42,0|yjja7z,37,42,0|yjja80,40,43,1|yvry3z,40,43,1|yvry40,37,42,0|z29cvz,37,42,0|z29cw0,40,43,1|zei0rz,40,43,1|zei0s0,37,42,0","America/Chihuahua|,0,59,0|-p1u4k0,36,41,0|-m7mko1,36,41,0|-m7mko0,37,42,0|-kf67c1,37,42,0|-kf67c0,36,41,0|-k6j3c1,36,41,0|-k6j3c0,37,42,0|-jypm01,37,42,0|-jypm00,36,41,0|-jpan81,36,41,0|-jpan80,37,42,0|dphfjz,37,42,0|dphfk0,40,43,1|dzxa3z,40,43,1|dzxa40,37,42,0|e87i7z,37,42,0|e87i80,40,43,1|eincrz,40,43,1|eincs0,37,42,0|eqxnnz,37,42,0|eqxno0,39,42,1|f1di7z,39,42,1|f1di80,36,41,0|f9nqbz,36,41,0|f9nqc0,39,42,1|fkgjjz,39,42,1|fkgjk0,36,41,0|fsdszz,36,41,0|fsdt00,39,42,1|g36m7z,39,42,1|g36m80,36,41,0|gcwozz,36,41,0|gcwp00,39,42,1|gkgu7z,39,42,1|gkgu80,36,41,0|gu6wzz,36,41,0|gu6x00,39,42,1|h4mrjz,39,42,1|h4mrk0,36,41,0|hcwznz,36,41,0|hcwzo0,39,42,1|hncu7z,39,42,1|hncu80,36,41,0|hvn2bz,36,41,0|hvn2c0,39,42,1|i6fvjz,39,42,1|i6fvk0,36,41,0|ied4zz,36,41,0|ied500,39,42,1|ip5y7z,39,42,1|ip5y80,36,41,0|ix37nz,36,41,0|ix37o0,39,42,1|j7w0vz,39,42,1|j7w0w0,36,41,0|jftabz,36,41,0|jftac0,39,42,1|jqm3jz,39,42,1|jqm3k0,36,41,0|jywbnz,36,41,0|jywbo0,39,42,1|k9c67z,39,42,1|k9c680,36,41,0|khmebz,36,41,0|khmec0,39,42,1|ks28vz,39,42,1|ks28w0,36,41,0|l0cgzz,36,41,0|l0ch00,39,42,1|lb5a7z,39,42,1|lb5a80,36,41,0|lj2jnz,36,41,0|lj2jo0,39,42,1|ltvcvz,39,42,1|ltvcw0,36,41,0|m1smbz,36,41,0|m1smc0,39,42,1|mclfjz,39,42,1|mclfk0,36,41,0|mkvnnz,36,41,0|mkvno0,39,42,1|mvbi7z,39,42,1|mvbi80,36,41,0|n3lqbz,36,41,0|n3lqc0,39,42,1|ne1kvz,39,42,1|ne1kw0,36,41,0|nmbszz,36,41,0|nmbt00,39,42,1|nwrnjz,39,42,1|nwrnk0,36,41,0|o51vnz,36,41,0|o51vo0,39,42,1|ofuovz,39,42,1|ofuow0,36,41,0|onrybz,36,41,0|onryc0,39,42,1|oykrjz,39,42,1|oykrk0,36,41,0|p6i0zz,36,41,0|p6i100,39,42,1|phau7z,39,42,1|phau80,36,41,0|ppl2bz,36,41,0|ppl2c0,39,42,1|q00wvz,39,42,1|q00ww0,36,41,0|q8b4zz,36,41,0|q8b500,39,42,1|qiqzjz,39,42,1|qiqzk0,36,41,0|qr17nz,36,41,0|qr17o0,39,42,1|r1u0vz,39,42,1|r1u0w0,36,41,0|r9rabz,36,41,0|r9rac0,39,42,1|rkk3jz,39,42,1|rkk3k0,36,41,0|rshczz,36,41,0|rshd00,39,42,1|s3a67z,39,42,1|s3a680,36,41,0|sbkebz,36,41,0|sbkec0,39,42,1|sm08vz,39,42,1|sm08w0,36,41,0|suagzz,36,41,0|suah00,39,42,1|t4qbjz,39,42,1|t4qbk0,36,41,0|td0jnz,36,41,0|td0jo0,39,42,1|tnge7z,39,42,1|tnge80,36,41,0|tvqmbz,36,41,0|tvqmc0,39,42,1|u6jfjz,39,42,1|u6jfk0,36,41,0|uegozz,36,41,0|uegp00,39,42,1|up9i7z,39,42,1|up9i80,36,41,0|ux6rnz,36,41,0|ux6ro0,39,42,1|v7zkvz,39,42,1|v7zkw0,36,41,0|vg9szz,36,41,0|vg9t00,39,42,1|vqpnjz,39,42,1|vqpnk0,36,41,0|vyzvnz,36,41,0|vyzvo0,39,42,1|w9fq7z,39,42,1|w9fq80,36,41,0|whpybz,36,41,0|whpyc0,39,42,1|wsirjz,39,42,1|wsirk0,36,41,0|x0g0zz,36,41,0|x0g100,39,42,1|xb8u7z,39,42,1|xb8u80,36,41,0|xj63nz,36,41,0|xj63o0,39,42,1|xtywvz,39,42,1|xtyww0,36,41,0|y1w6bz,36,41,0|y1w6c0,39,42,1|ycozjz,39,42,1|ycozk0,36,41,0|ykz7nz,36,41,0|ykz7o0,39,42,1|yvf27z,39,42,1|yvf280,36,41,0|z3pabz,36,41,0|z3pac0,39,42,1|ze54vz,39,42,1|ze54w0,36,41,0","America/Costa_Rica|,0,60,0|-15r0trn,54,60,0|-pjw8fo,54,60,0|-pjw8fn,37,42,0|4rxcnz,37,42,0|4rxco0,40,43,1|4wyr7z,40,43,1|4wyr80,37,42,0|5anfbz,37,42,0|5anfc0,40,43,1|5fotvz,40,43,1|5fotw0,37,42,0|azhhzz,37,42,0|azhi00,40,43,1|b7v9vz,40,43,1|b7v9w0,37,42,0|bi7knz,37,42,0|bi7ko0,40,43,1|bl51vz,40,43,1|bl51w0,37,42,0","America/Cuiaba|,0,61,0|-t85hm4,35,38,0|-jyl7o1,35,38,0|-jyl7o0,32,35,1|-jpayc1,32,35,1|-jpayc0,35,38,0|-jfsa81,35,38,0|-jfsa80,32,35,1|-j6j101,32,35,1|-j6j100,35,38,0|-ahcvk1,35,38,0|-ahcvk0,32,35,1|-aad0w1,32,35,1|-aad0w0,35,38,0|-9yky81,35,38,0|-9yky80,32,35,1|-9scyc1,32,35,1|-9scyc0,35,38,0|-9ft0w1,35,38,0|-9ft0w0,32,35,1|-99j6c1,32,35,1|-99j6c0,35,38,0|-8wz8w1,35,38,0|-8wz8w0,32,35,1|-8scno1,32,35,1|-8scno0,35,38,0|-35xjk1,35,38,0|-35xjk0,32,35,1|-31nx01,32,35,1|-31nx00,35,38,0|-2kdm81,35,38,0|-2kdm80,32,35,1|-2hcfo1,32,35,1|-2hcfo0,35,38,0|-24qnk1,35,38,0|-24qnk0,32,35,1|-2042c1,32,35,1|-2042c0,35,38,0|-1nia81,35,38,0|-1nia80,32,35,1|-1hc501,32,35,1|-1hc500,35,38,0|-14qcw1,35,38,0|-14qcw0,32,35,1|-yid01,32,35,1|-yid00,35,38,0|89jf3z,35,38,0|89jf40,32,35,1|8gdmzz,32,35,1|8gdn00,35,38,0|8rwj3z,35,38,0|8rwj40,32,35,1|8xnuzz,32,35,1|8xnv00,35,38,0|9aogfz,35,38,0|9aogg0,32,35,1|9g2tnz,32,35,1|9g2to0,35,38,0|9t1kfz,35,38,0|9t1kg0,32,35,1|9yfxnz,32,35,1|9yfxo0,35,38,0|abrn3z,35,38,0|abrn40,32,35,1|ahvxnz,32,35,1|ahvxo0,35,38,0|auuofz,35,38,0|auuog0,32,35,1|b0yyzz,32,35,1|b0yz00,35,38,0|bdkr3z,35,38,0|bdkr40,32,35,1|bjc2zz,32,35,1|bjc300,35,38,0|bwnsfz,35,38,0|bwnsg0,32,35,1|c1p6zz,32,35,1|c1p700,35,38,0|cf0wfz,35,38,0|cf0wg0,32,35,1|cli5nz,32,35,1|cli5o0,35,38,0|cxqz3z,35,38,0|cxqz40,32,35,1|d488bz,32,35,1|d488c0,35,38,0|dgh1rz,35,38,0|dgh1s0,32,35,1|dmlcbz,32,35,1|dmlcc0,35,38,0|dyu5rz,35,38,0|dyu5s0,32,35,1|e5odnz,32,35,1|e5odo0,35,38,0|ehm33z,35,38,0|ehm340,32,35,1|ep4dnz,32,35,1|ep4do0,35,38,0|f0n9rz,35,38,0|f0n9s0,32,35,1|f7hhnz,32,35,1|f7hho0,35,38,0|fj0drz,35,38,0|fj0ds0,32,35,1|fqkizz,32,35,1|fqkj00,35,38,0|g23f3z,35,38,0|g23f40,32,35,1|g8xmzz,32,35,1|g8xn00,35,38,0|gl6gfz,35,38,0|gl6gg0,32,35,1|grnpnz,32,35,1|grnpo0,35,38,0|h4zf3z,35,38,0|h4zf40,32,35,1|hadsbz,32,35,1|hadsc0,35,38,0|i6j9rz,35,38,0|i6j9s0,32,35,1|ic6wbz,32,35,1|ic6wc0,35,38,0|iofprz,35,38,0|iofps0,32,35,1|iuwyzz,32,35,1|iuwz00,35,38,0|j88ofz,35,38,0|j88og0,32,35,1|je00bz,32,35,1|je00c0,35,38,0|jpvv3z,35,38,0|jpvv40,32,35,1|jwd4bz,32,35,1|jwd4c0,35,38,0|k8ywfz,35,38,0|k8ywg0,32,35,1|kf36zz,32,35,1|kf3700,35,38,0|kroz3z,35,38,0|kroz40,32,35,1|ky68bz,32,35,1|ky68c0,35,38,0|laf1rz,35,38,0|laf1s0,32,35,1|lgwazz,32,35,1|lgwb00,35,38,0|lt54fz,35,38,0|lt54g0,32,35,1|lzzcbz,32,35,1|lzzcc0,35,38,0|mc85rz,35,38,0|mc85s0,32,35,1|micgbz,32,35,1|micgc0,35,38,0|muy8fz,35,38,0|muy8g0,32,35,1|n12izz,32,35,1|n12j00,35,38,0|ndob3z,35,38,0|ndob40,32,35,1|nk5kbz,32,35,1|nk5kc0,35,38,0|nwedrz,35,38,0|nweds0,32,35,1|o2vmzz,32,35,1|o2vn00,35,38,0|of4gfz,35,38,0|of4gg0,32,35,1|ollpnz,32,35,1|ollpo0,35,38,0|oxuj3z,35,38,0|oxuj40,32,35,1|p4bsbz,32,35,1|p4bsc0,35,38,0|phnhrz,35,38,0|phnhs0,32,35,1|pn1uzz,32,35,1|pn1v00,35,38,0","America/Curacao|,0,62,0|-u7lckd,53,54,0|-2lx4u1,53,54,0|-2lx4u0,24,38,0","America/Dawson_Creek|,0,63,0|-18vrweg,38,33,0|-qzopk1,38,33,0|-qzopk0,47,41,1|-qplto1,47,41,1|-qplto0,38,33,0|-ek1w81,38,33,0|-ek1w80,55,41,1|-cq2tg1,55,41,1|-cq2tg0,56,41,1|-cnov01,56,41,1|-cnov00,38,33,0|-bu5tk1,38,33,0|-bu5tk0,47,41,1|-bm8po1,47,41,1|-bm8po0,38,33,0|-bbfqw1,38,33,0|-bbfqw0,47,41,1|-b3in01,47,41,1|-b3in00,38,33,0|-aspo81,38,33,0|-aspo80,47,41,1|-akskc1,47,41,1|-akskc0,38,33,0|-a9mmw1,38,33,0|-a9mmw0,47,41,1|-a22ho1,47,41,1|-a22ho0,38,33,0|-9qwk81,38,33,0|-9qwk80,47,41,1|-9izgc1,47,41,1|-9izgc0,38,33,0|-986hk1,38,33,0|-986hk0,47,41,1|-909do1,47,41,1|-909do0,38,33,0|-8pgew1,38,33,0|-8pgew0,47,41,1|-8hjb01,47,41,1|-8hjb00,38,33,0|-86qc81,38,33,0|-86qc80,47,41,1|-7yt8c1,47,41,1|-7yt8c0,38,33,0|-7o09k1,38,33,0|-7o09k0,47,41,1|-7g35o1,47,41,1|-7g35o0,38,33,0|-74x881,38,33,0|-74x880,47,41,1|-6x04c1,47,41,1|-6x04c0,38,33,0|-6m75k1,38,33,0|-6m75k0,47,41,1|-6ea1o1,47,41,1|-6ea1o0,38,33,0|-63h2w1,38,33,0|-63h2w0,47,41,1|-5vjz01,47,41,1|-5vjz00,38,33,0|-5kr081,38,33,0|-5kr080,47,41,1|-5ctwc1,47,41,1|-5ctwc0,38,33,0|-520xk1,38,33,0|-520xk0,47,41,1|-4u3to1,47,41,1|-4u3to0,38,33,0|-4ixw81,38,33,0|-4ixw80,47,41,1|-4bdr01,47,41,1|-4bdr00,38,33,0|-407tk1,38,33,0|-407tk0,47,41,1|-3quv01,47,41,1|-3quv00,38,33,0|-3hhqw1,38,33,0|-3hhqw0,47,41,1|-384sc1,47,41,1|-384sc0,38,33,0|-2yro81,38,33,0|-2yro80,47,41,1|-2pepo1,47,41,1|-2pepo0,38,33,0|-2g1lk1,38,33,0|-2g1lk0,47,41,1|-26boc1,47,41,1|-26boc0,38,33,0|-1xbiw1,38,33,0|-1xbiw0,47,41,1|-1nllo1,47,41,1|-1nllo0,38,33,0|-1e8hk1,38,33,0|-1e8hk0,47,41,1|-14vj01,47,41,1|-14vj00,38,33,0|-view1,38,33,0|-view0,47,41,1|-m5gc1,47,41,1|-m5gc0,38,33,0|-csc81,38,33,0|-csc80,47,41,1|-3fdo1,47,41,1|-3fdo0,38,33,0|5xqfz,38,33,0|5xqg0,47,41,1|faozz,47,41,1|fap00,38,33,0|ont3z,38,33,0|ont40,47,41,1|ydqbz,47,41,1|ydqc0,38,33,0|17qufz,38,33,0|17qug0,47,41,1|1e0ozz,47,41,1|1e0p00,36,41,0","America/Denver|,0,64,0|-18y0j80,36,41,0|-r0epo1,36,41,0|-r0epo0,39,42,1|-qplwg1,39,42,1|-qplwg0,36,41,0|-qhon01,36,41,0|-qhon00,39,42,1|-q6vts1,39,42,1|-q6vts0,36,41,0|-pyykc1,36,41,0|-pyykc0,39,42,1|-pnssg1,39,42,1|-pnssg0,36,41,0|-pg8ho1,36,41,0|-pg8ho0,39,42,1|-pdcv41,39,42,1|-pdcv40,36,41,0|-ek1z01,36,41,0|-ek1z00,48,42,1|-cq2tg1,48,42,1|-cq2tg0,49,42,1|-cnoxs1,49,42,1|-cnoxs0,36,41,0|-2g1oc1,36,41,0|-2g1oc0,39,42,1|-26br41,39,42,1|-26br40,36,41,0|-1xblo1,36,41,0|-1xblo0,39,42,1|-1nlog1,39,42,1|-1nlog0,36,41,0|-1e8kc1,36,41,0|-1e8kc0,39,42,1|-14vls1,39,42,1|-14vls0,36,41,0|-viho1,36,41,0|-viho0,39,42,1|-m5j41,39,42,1|-m5j40,36,41,0|-csf01,36,41,0|-csf00,39,42,1|-3fgg1,39,42,1|-3fgg0,36,41,0|5xnnz,36,41,0|5xno0,39,42,1|fam7z,39,42,1|fam80,36,41,0|onqbz,36,41,0|onqc0,39,42,1|ydnjz,39,42,1|ydnk0,36,41,0|17qrnz,36,41,0|17qro0,39,42,1|1h3q7z,39,42,1|1h3q80,36,41,0|1qgubz,36,41,0|1qguc0,39,42,1|1ztsvz,39,42,1|1ztsw0,36,41,0|23fibz,36,41,0|23fic0,39,42,1|2ijvjz,39,42,1|2ijvk0,36,41,0|2oobnz,36,41,0|2oobo0,39,42,1|319y7z,39,42,1|319y80,36,41,0|3an2bz,36,41,0|3an2c0,39,42,1|3kczjz,39,42,1|3kczk0,36,41,0|3td4zz,36,41,0|3td500,39,42,1|43327z,39,42,1|433280,36,41,0|4cg6bz,36,41,0|4cg6c0,39,42,1|4lt4vz,39,42,1|4lt4w0,36,41,0|4v68zz,36,41,0|4v6900,39,42,1|54j7jz,39,42,1|54j7k0,36,41,0|5dwbnz,36,41,0|5dwbo0,39,42,1|5n9a7z,39,42,1|5n9a80,36,41,0|5wmebz,36,41,0|5wmec0,39,42,1|65zcvz,39,42,1|65zcw0,36,41,0|6fcgzz,36,41,0|6fch00,39,42,1|6p2e7z,39,42,1|6p2e80,36,41,0|6y2jnz,36,41,0|6y2jo0,39,42,1|77sgvz,39,42,1|77sgw0,36,41,0|7h5kzz,36,41,0|7h5l00,39,42,1|7qijjz,39,42,1|7qijk0,36,41,0|7zvnnz,36,41,0|7zvno0,39,42,1|898m7z,39,42,1|898m80,36,41,0|8ilqbz,36,41,0|8ilqc0,39,42,1|8ryovz,39,42,1|8ryow0,36,41,0|908wzz,36,41,0|908x00,39,42,1|9aorjz,39,42,1|9aork0,36,41,0|9iyznz,36,41,0|9iyzo0,39,42,1|9trsvz,39,42,1|9trsw0,36,41,0|a1p2bz,36,41,0|a1p2c0,39,42,1|achvjz,39,42,1|achvk0,36,41,0|akf4zz,36,41,0|akf500,39,42,1|av7y7z,39,42,1|av7y80,36,41,0|b3i6bz,36,41,0|b3i6c0,39,42,1|bdy0vz,39,42,1|bdy0w0,36,41,0|bm88zz,36,41,0|bm8900,39,42,1|bwo3jz,39,42,1|bwo3k0,36,41,0|c4ybnz,36,41,0|c4ybo0,39,42,1|cfr4vz,39,42,1|cfr4w0,36,41,0|cnoebz,36,41,0|cnoec0,39,42,1|cyh7jz,39,42,1|cyh7k0,36,41,0|d6egzz,36,41,0|d6eh00,39,42,1|dh7a7z,39,42,1|dh7a80,36,41,0|dphibz,36,41,0|dphic0,39,42,1|dzxcvz,39,42,1|dzxcw0,36,41,0|e87kzz,36,41,0|e87l00,39,42,1|einfjz,39,42,1|einfk0,36,41,0|eqxnnz,36,41,0|eqxno0,39,42,1|f1di7z,39,42,1|f1di80,36,41,0|f9nqbz,36,41,0|f9nqc0,39,42,1|fkgjjz,39,42,1|fkgjk0,36,41,0|fsdszz,36,41,0|fsdt00,39,42,1|g36m7z,39,42,1|g36m80,36,41,0|gb3vnz,36,41,0|gb3vo0,39,42,1|glwovz,39,42,1|glwow0,36,41,0|gu6wzz,36,41,0|gu6x00,39,42,1|h4mrjz,39,42,1|h4mrk0,36,41,0|hcwznz,36,41,0|hcwzo0,39,42,1|hncu7z,39,42,1|hncu80,36,41,0|hvn2bz,36,41,0|hvn2c0,39,42,1|i6fvjz,39,42,1|i6fvk0,36,41,0|ied4zz,36,41,0|ied500,39,42,1|ip5y7z,39,42,1|ip5y80,36,41,0|ix37nz,36,41,0|ix37o0,39,42,1|j7w0vz,39,42,1|j7w0w0,36,41,0|jeqebz,36,41,0|jeqec0,39,42,1|jqz27z,39,42,1|jqz280,36,41,0|jxggzz,36,41,0|jxgh00,39,42,1|k9p4vz,39,42,1|k9p4w0,36,41,0|kg6jnz,36,41,0|kg6jo0,39,42,1|ksf7jz,39,42,1|ksf7k0,36,41,0|kz9kzz,36,41,0|kz9l00,39,42,1|lbi8vz,39,42,1|lbi8w0,36,41,0|lhznnz,36,41,0|lhzno0,39,42,1|lu8bjz,39,42,1|lu8bk0,36,41,0|m0pqbz,36,41,0|m0pqc0,39,42,1|mcye7z,39,42,1|mcye80,36,41,0|mjfszz,36,41,0|mjft00,39,42,1|mvogvz,39,42,1|mvogw0,36,41,0|n25vnz,36,41,0|n25vo0,39,42,1|neejjz,39,42,1|neejk0,36,41,0|nkvybz,36,41,0|nkvyc0,39,42,1|nx4m7z,39,42,1|nx4m80,36,41,0|o3yznz,36,41,0|o3yzo0,39,42,1|og7njz,39,42,1|og7nk0,36,41,0|omp2bz,36,41,0|omp2c0,39,42,1|oyxq7z,39,42,1|oyxq80,36,41,0|p5f4zz,36,41,0|p5f500,39,42,1|phnsvz,39,42,1|phnsw0,36,41,0|po57nz,36,41,0|po57o0,39,42,1|q0dvjz,39,42,1|q0dvk0,36,41,0|q6vabz,36,41,0|q6vac0,39,42,1|qj3y7z,39,42,1|qj3y80,36,41,0|qpybnz,36,41,0|qpybo0,39,42,1|r26zjz,39,42,1|r26zk0,36,41,0|r8oebz,36,41,0|r8oec0,39,42,1|rkx27z,39,42,1|rkx280,36,41,0|rregzz,36,41,0|rreh00,39,42,1|s3n4vz,39,42,1|s3n4w0,36,41,0|sa4jnz,36,41,0|sa4jo0,39,42,1|smd7jz,39,42,1|smd7k0,36,41,0|ssumbz,36,41,0|ssumc0,39,42,1|t53a7z,39,42,1|t53a80,36,41,0|tbkozz,36,41,0|tbkp00,39,42,1|tntcvz,39,42,1|tntcw0,36,41,0|tunqbz,36,41,0|tunqc0,39,42,1|u6we7z,39,42,1|u6we80,36,41,0|uddszz,36,41,0|uddt00,39,42,1|upmgvz,39,42,1|upmgw0,36,41,0|uw3vnz,36,41,0|uw3vo0,39,42,1|v8cjjz,39,42,1|v8cjk0,36,41,0|vetybz,36,41,0|vetyc0,39,42,1|vr2m7z,39,42,1|vr2m80,36,41,0|vxk0zz,36,41,0|vxk100,39,42,1|w9sovz,39,42,1|w9sow0,36,41,0|wgn2bz,36,41,0|wgn2c0,39,42,1|wsvq7z,39,42,1|wsvq80,36,41,0|wzd4zz,36,41,0|wzd500,39,42,1|xblsvz,39,42,1|xblsw0,36,41,0|xi37nz,36,41,0|xi37o0,39,42,1|xubvjz,39,42,1|xubvk0,36,41,0|y0tabz,36,41,0|y0tac0,39,42,1|yd1y7z,39,42,1|yd1y80,36,41,0|yjjczz,36,41,0|yjjd00,39,42,1|yvs0vz,39,42,1|yvs0w0,36,41,0|z29fnz,36,41,0|z29fo0,39,42,1|zei3jz,39,42,1|zei3k0,36,41,0","America/Detroit|,0,65,0|-xx8dyd,37,42,0|-sih341,37,42,0|-sih340,50,43,0|-ek24k1,50,43,0|-ek24k0,57,38,1|-cq2tg1,57,38,1|-cq2tg0,58,38,1|-cnp3c1,58,38,1|-cnp3c0,50,43,0|-bbfz81,50,43,0|-bbfz80,51,38,1|-b3ivc1,51,38,1|-b3ivc0,50,43,0|-1bxjed,50,43,0|-1bxjec,51,38,1|-14vrc1,51,38,1|-14vrc0,50,43,0|-vin81,50,43,0|-vin80,51,38,1|-m5oo1,51,38,1|-m5oo0,50,43,0|1qgorz,50,43,0|1qgos0,51,38,1|1ztnbz,51,38,1|1ztnc0,50,43,0|23fcrz,50,43,0|23fcs0,51,38,1|2ijpzz,51,38,1|2ijq00,50,43,0|2rwu3z,50,43,0|2rwu40,51,38,1|319snz,51,38,1|319so0,50,43,0|3amwrz,50,43,0|3amws0,51,38,1|3kctzz,51,38,1|3kcu00,50,43,0|3tczfz,50,43,0|3tczg0,51,38,1|432wnz,51,38,1|432wo0,50,43,0|4cg0rz,50,43,0|4cg0s0,51,38,1|4lszbz,51,38,1|4lszc0,50,43,0|4v63fz,50,43,0|4v63g0,51,38,1|54j1zz,51,38,1|54j200,50,43,0|5dw63z,50,43,0|5dw640,51,38,1|5n94nz,51,38,1|5n94o0,50,43,0|5wm8rz,50,43,0|5wm8s0,51,38,1|65z7bz,51,38,1|65z7c0,50,43,0|6fcbfz,50,43,0|6fcbg0,51,38,1|6p28nz,51,38,1|6p28o0,50,43,0|6y2e3z,50,43,0|6y2e40,51,38,1|77sbbz,51,38,1|77sbc0,50,43,0|7h5ffz,50,43,0|7h5fg0,51,38,1|7qidzz,51,38,1|7qie00,50,43,0|7zvi3z,50,43,0|7zvi40,51,38,1|898gnz,51,38,1|898go0,50,43,0|8ilkrz,50,43,0|8ilks0,51,38,1|8ryjbz,51,38,1|8ryjc0,50,43,0|908rfz,50,43,0|908rg0,51,38,1|9aolzz,51,38,1|9aom00,50,43,0|9iyu3z,50,43,0|9iyu40,51,38,1|9trnbz,51,38,1|9trnc0,50,43,0|a1owrz,50,43,0|a1ows0,51,38,1|achpzz,51,38,1|achq00,50,43,0|akezfz,50,43,0|akezg0,51,38,1|av7snz,51,38,1|av7so0,50,43,0|b3i0rz,50,43,0|b3i0s0,51,38,1|bdxvbz,51,38,1|bdxvc0,50,43,0|bm83fz,50,43,0|bm83g0,51,38,1|bwnxzz,51,38,1|bwny00,50,43,0|c4y63z,50,43,0|c4y640,51,38,1|cfqzbz,51,38,1|cfqzc0,50,43,0|cno8rz,50,43,0|cno8s0,51,38,1|cyh1zz,51,38,1|cyh200,50,43,0|d6ebfz,50,43,0|d6ebg0,51,38,1|dh74nz,51,38,1|dh74o0,50,43,0|dphcrz,50,43,0|dphcs0,51,38,1|dzx7bz,51,38,1|dzx7c0,50,43,0|e87ffz,50,43,0|e87fg0,51,38,1|ein9zz,51,38,1|eina00,50,43,0|eqxi3z,50,43,0|eqxi40,51,38,1|f1dcnz,51,38,1|f1dco0,50,43,0|f9nkrz,50,43,0|f9nks0,51,38,1|fkgdzz,51,38,1|fkge00,50,43,0|fsdnfz,50,43,0|fsdng0,51,38,1|g36gnz,51,38,1|g36go0,50,43,0|gb3q3z,50,43,0|gb3q40,51,38,1|glwjbz,51,38,1|glwjc0,50,43,0|gu6rfz,50,43,0|gu6rg0,51,38,1|h4mlzz,51,38,1|h4mm00,50,43,0|hcwu3z,50,43,0|hcwu40,51,38,1|hnconz,51,38,1|hncoo0,50,43,0|hvmwrz,50,43,0|hvmws0,51,38,1|i6fpzz,51,38,1|i6fq00,50,43,0|ieczfz,50,43,0|ieczg0,51,38,1|ip5snz,51,38,1|ip5so0,50,43,0|ix323z,50,43,0|ix3240,51,38,1|j7vvbz,51,38,1|j7vvc0,50,43,0|jeq8rz,50,43,0|jeq8s0,51,38,1|jqywnz,51,38,1|jqywo0,50,43,0|jxgbfz,50,43,0|jxgbg0,51,38,1|k9ozbz,51,38,1|k9ozc0,50,43,0|kg6e3z,50,43,0|kg6e40,51,38,1|ksf1zz,51,38,1|ksf200,50,43,0|kz9ffz,50,43,0|kz9fg0,51,38,1|lbi3bz,51,38,1|lbi3c0,50,43,0|lhzi3z,50,43,0|lhzi40,51,38,1|lu85zz,51,38,1|lu8600,50,43,0|m0pkrz,50,43,0|m0pks0,51,38,1|mcy8nz,51,38,1|mcy8o0,50,43,0|mjfnfz,50,43,0|mjfng0,51,38,1|mvobbz,51,38,1|mvobc0,50,43,0|n25q3z,50,43,0|n25q40,51,38,1|needzz,51,38,1|neee00,50,43,0|nkvsrz,50,43,0|nkvss0,51,38,1|nx4gnz,51,38,1|nx4go0,50,43,0|o3yu3z,50,43,0|o3yu40,51,38,1|og7hzz,51,38,1|og7i00,50,43,0|omowrz,50,43,0|omows0,51,38,1|oyxknz,51,38,1|oyxko0,50,43,0|p5ezfz,50,43,0|p5ezg0,51,38,1|phnnbz,51,38,1|phnnc0,50,43,0|po523z,50,43,0|po5240,51,38,1|q0dpzz,51,38,1|q0dq00,50,43,0|q6v4rz,50,43,0|q6v4s0,51,38,1|qj3snz,51,38,1|qj3so0,50,43,0|qpy63z,50,43,0|qpy640,51,38,1|r26tzz,51,38,1|r26u00,50,43,0|r8o8rz,50,43,0|r8o8s0,51,38,1|rkwwnz,51,38,1|rkwwo0,50,43,0|rrebfz,50,43,0|rrebg0,51,38,1|s3mzbz,51,38,1|s3mzc0,50,43,0|sa4e3z,50,43,0|sa4e40,51,38,1|smd1zz,51,38,1|smd200,50,43,0|ssugrz,50,43,0|ssugs0,51,38,1|t534nz,51,38,1|t534o0,50,43,0|tbkjfz,50,43,0|tbkjg0,51,38,1|tnt7bz,51,38,1|tnt7c0,50,43,0|tunkrz,50,43,0|tunks0,51,38,1|u6w8nz,51,38,1|u6w8o0,50,43,0|uddnfz,50,43,0|uddng0,51,38,1|upmbbz,51,38,1|upmbc0,50,43,0|uw3q3z,50,43,0|uw3q40,51,38,1|v8cdzz,51,38,1|v8ce00,50,43,0|vetsrz,50,43,0|vetss0,51,38,1|vr2gnz,51,38,1|vr2go0,50,43,0|vxjvfz,50,43,0|vxjvg0,51,38,1|w9sjbz,51,38,1|w9sjc0,50,43,0|wgmwrz,50,43,0|wgmws0,51,38,1|wsvknz,51,38,1|wsvko0,50,43,0|wzczfz,50,43,0|wzczg0,51,38,1|xblnbz,51,38,1|xblnc0,50,43,0|xi323z,50,43,0|xi3240,51,38,1|xubpzz,51,38,1|xubq00,50,43,0|y0t4rz,50,43,0|y0t4s0,51,38,1|yd1snz,51,38,1|yd1so0,50,43,0|yjj7fz,50,43,0|yjj7g0,51,38,1|yvrvbz,51,38,1|yvrvc0,50,43,0|z29a3z,50,43,0|z29a40,51,38,1|zehxzz,51,38,1|zehy00,50,43,0","America/Edmonton|,0,66,0|-x1yazk,36,41,0|-qzosc1,36,41,0|-qzosc0,39,42,1|-qplwg1,39,42,1|-qplwg0,36,41,0|-qgypo1,36,41,0|-qgypo0,39,42,1|-qepb41,39,42,1|-qepb40,36,41,0|-pxipo1,36,41,0|-pxipo0,39,42,1|-pnssg1,39,42,1|-pnssg0,36,41,0|-pesn01,36,41,0|-pesn00,39,42,1|-p6vj41,39,42,1|-p6vj40,36,41,0|-ovplo1,36,41,0|-ovplo0,39,42,1|-oo5gg1,39,42,1|-oo5gg0,36,41,0|-oczj01,36,41,0|-oczj00,39,42,1|-o52f41,39,42,1|-o52f40,36,41,0|-ek1z01,36,41,0|-ek1z00,48,42,1|-cq2tg1,48,42,1|-cq2tg0,49,42,1|-cnoxs1,49,42,1|-cnoxs0,36,41,0|-bu5wc1,36,41,0|-bu5wc0,39,42,1|-bm8sg1,39,42,1|-bm8sg0,36,41,0|17qrnz,36,41,0|17qro0,39,42,1|1h3q7z,39,42,1|1h3q80,36,41,0|1qgubz,36,41,0|1qguc0,39,42,1|1ztsvz,39,42,1|1ztsw0,36,41,0|296wzz,36,41,0|296x00,39,42,1|2ijvjz,39,42,1|2ijvk0,36,41,0|2rwznz,36,41,0|2rwzo0,39,42,1|319y7z,39,42,1|319y80,36,41,0|3an2bz,36,41,0|3an2c0,39,42,1|3kczjz,39,42,1|3kczk0,36,41,0|3td4zz,36,41,0|3td500,39,42,1|43327z,39,42,1|433280,36,41,0|4cg6bz,36,41,0|4cg6c0,39,42,1|4lt4vz,39,42,1|4lt4w0,36,41,0|4v68zz,36,41,0|4v6900,39,42,1|54j7jz,39,42,1|54j7k0,36,41,0|5dwbnz,36,41,0|5dwbo0,39,42,1|5n9a7z,39,42,1|5n9a80,36,41,0|5wmebz,36,41,0|5wmec0,39,42,1|65zcvz,39,42,1|65zcw0,36,41,0|6fcgzz,36,41,0|6fch00,39,42,1|6p2e7z,39,42,1|6p2e80,36,41,0|6y2jnz,36,41,0|6y2jo0,39,42,1|77sgvz,39,42,1|77sgw0,36,41,0|7h5kzz,36,41,0|7h5l00,39,42,1|7qijjz,39,42,1|7qijk0,36,41,0|7zvnnz,36,41,0|7zvno0,39,42,1|898m7z,39,42,1|898m80,36,41,0|8ilqbz,36,41,0|8ilqc0,39,42,1|8ryovz,39,42,1|8ryow0,36,41,0|908wzz,36,41,0|908x00,39,42,1|9aorjz,39,42,1|9aork0,36,41,0|9iyznz,36,41,0|9iyzo0,39,42,1|9trsvz,39,42,1|9trsw0,36,41,0|a1p2bz,36,41,0|a1p2c0,39,42,1|achvjz,39,42,1|achvk0,36,41,0|akf4zz,36,41,0|akf500,39,42,1|av7y7z,39,42,1|av7y80,36,41,0|b3i6bz,36,41,0|b3i6c0,39,42,1|bdy0vz,39,42,1|bdy0w0,36,41,0|bm88zz,36,41,0|bm8900,39,42,1|bwo3jz,39,42,1|bwo3k0,36,41,0|c4ybnz,36,41,0|c4ybo0,39,42,1|cfr4vz,39,42,1|cfr4w0,36,41,0|cnoebz,36,41,0|cnoec0,39,42,1|cyh7jz,39,42,1|cyh7k0,36,41,0|d6egzz,36,41,0|d6eh00,39,42,1|dh7a7z,39,42,1|dh7a80,36,41,0|dphibz,36,41,0|dphic0,39,42,1|dzxcvz,39,42,1|dzxcw0,36,41,0|e87kzz,36,41,0|e87l00,39,42,1|einfjz,39,42,1|einfk0,36,41,0|eqxnnz,36,41,0|eqxno0,39,42,1|f1di7z,39,42,1|f1di80,36,41,0|f9nqbz,36,41,0|f9nqc0,39,42,1|fkgjjz,39,42,1|fkgjk0,36,41,0|fsdszz,36,41,0|fsdt00,39,42,1|g36m7z,39,42,1|g36m80,36,41,0|gb3vnz,36,41,0|gb3vo0,39,42,1|glwovz,39,42,1|glwow0,36,41,0|gu6wzz,36,41,0|gu6x00,39,42,1|h4mrjz,39,42,1|h4mrk0,36,41,0|hcwznz,36,41,0|hcwzo0,39,42,1|hncu7z,39,42,1|hncu80,36,41,0|hvn2bz,36,41,0|hvn2c0,39,42,1|i6fvjz,39,42,1|i6fvk0,36,41,0|ied4zz,36,41,0|ied500,39,42,1|ip5y7z,39,42,1|ip5y80,36,41,0|ix37nz,36,41,0|ix37o0,39,42,1|j7w0vz,39,42,1|j7w0w0,36,41,0|jeqebz,36,41,0|jeqec0,39,42,1|jqz27z,39,42,1|jqz280,36,41,0|jxggzz,36,41,0|jxgh00,39,42,1|k9p4vz,39,42,1|k9p4w0,36,41,0|kg6jnz,36,41,0|kg6jo0,39,42,1|ksf7jz,39,42,1|ksf7k0,36,41,0|kz9kzz,36,41,0|kz9l00,39,42,1|lbi8vz,39,42,1|lbi8w0,36,41,0|lhznnz,36,41,0|lhzno0,39,42,1|lu8bjz,39,42,1|lu8bk0,36,41,0|m0pqbz,36,41,0|m0pqc0,39,42,1|mcye7z,39,42,1|mcye80,36,41,0|mjfszz,36,41,0|mjft00,39,42,1|mvogvz,39,42,1|mvogw0,36,41,0|n25vnz,36,41,0|n25vo0,39,42,1|neejjz,39,42,1|neejk0,36,41,0|nkvybz,36,41,0|nkvyc0,39,42,1|nx4m7z,39,42,1|nx4m80,36,41,0|o3yznz,36,41,0|o3yzo0,39,42,1|og7njz,39,42,1|og7nk0,36,41,0|omp2bz,36,41,0|omp2c0,39,42,1|oyxq7z,39,42,1|oyxq80,36,41,0|p5f4zz,36,41,0|p5f500,39,42,1|phnsvz,39,42,1|phnsw0,36,41,0|po57nz,36,41,0|po57o0,39,42,1|q0dvjz,39,42,1|q0dvk0,36,41,0|q6vabz,36,41,0|q6vac0,39,42,1|qj3y7z,39,42,1|qj3y80,36,41,0|qpybnz,36,41,0|qpybo0,39,42,1|r26zjz,39,42,1|r26zk0,36,41,0|r8oebz,36,41,0|r8oec0,39,42,1|rkx27z,39,42,1|rkx280,36,41,0|rregzz,36,41,0|rreh00,39,42,1|s3n4vz,39,42,1|s3n4w0,36,41,0|sa4jnz,36,41,0|sa4jo0,39,42,1|smd7jz,39,42,1|smd7k0,36,41,0|ssumbz,36,41,0|ssumc0,39,42,1|t53a7z,39,42,1|t53a80,36,41,0|tbkozz,36,41,0|tbkp00,39,42,1|tntcvz,39,42,1|tntcw0,36,41,0|tunqbz,36,41,0|tunqc0,39,42,1|u6we7z,39,42,1|u6we80,36,41,0|uddszz,36,41,0|uddt00,39,42,1|upmgvz,39,42,1|upmgw0,36,41,0|uw3vnz,36,41,0|uw3vo0,39,42,1|v8cjjz,39,42,1|v8cjk0,36,41,0|vetybz,36,41,0|vetyc0,39,42,1|vr2m7z,39,42,1|vr2m80,36,41,0|vxk0zz,36,41,0|vxk100,39,42,1|w9sovz,39,42,1|w9sow0,36,41,0|wgn2bz,36,41,0|wgn2c0,39,42,1|wsvq7z,39,42,1|wsvq80,36,41,0|wzd4zz,36,41,0|wzd500,39,42,1|xblsvz,39,42,1|xblsw0,36,41,0|xi37nz,36,41,0|xi37o0,39,42,1|xubvjz,39,42,1|xubvk0,36,41,0|y0tabz,36,41,0|y0tac0,39,42,1|yd1y7z,39,42,1|yd1y80,36,41,0|yjjczz,36,41,0|yjjd00,39,42,1|yvs0vz,39,42,1|yvs0w0,36,41,0|z29fnz,36,41,0|z29fo0,39,42,1|zei3jz,39,42,1|zei3k0,36,41,0","America/Eirunepe|,0,67,0|-t85f28,46,43,0|-jyl4w1,46,43,0|-jyl4w0,35,38,1|-jpavk1,35,38,1|-jpavk0,46,43,0|-jfs7g1,46,43,0|-jfs7g0,35,38,1|-j6iy81,35,38,1|-j6iy80,46,43,0|-ahcss1,46,43,0|-ahcss0,35,38,1|-aacy41,35,38,1|-aacy40,46,43,0|-9ykvg1,46,43,0|-9ykvg0,35,38,1|-9scvk1,35,38,1|-9scvk0,46,43,0|-9fsy41,46,43,0|-9fsy40,35,38,1|-99j3k1,35,38,1|-99j3k0,46,43,0|-8wz641,46,43,0|-8wz640,35,38,1|-8sckw1,35,38,1|-8sckw0,46,43,0|-35xgs1,46,43,0|-35xgs0,35,38,1|-31nu81,35,38,1|-31nu80,46,43,0|-2kdjg1,46,43,0|-2kdjg0,35,38,1|-2hccw1,35,38,1|-2hccw0,46,43,0|-24qks1,46,43,0|-24qks0,35,38,1|-203zk1,35,38,1|-203zk0,46,43,0|-1ni7g1,46,43,0|-1ni7g0,35,38,1|-1hc281,35,38,1|-1hc280,46,43,0|-14qa41,46,43,0|-14qa40,35,38,1|-yia81,35,38,1|-yia80,46,43,0|89jhvz,46,43,0|89jhw0,35,38,1|8gdprz,35,38,1|8gdps0,46,43,0|8rwlvz,46,43,0|8rwlw0,35,38,1|8xnxrz,35,38,1|8xnxs0,46,43,0|9aoj7z,46,43,0|9aoj80,35,38,1|9g2wfz,35,38,1|9g2wg0,46,43,0|cf0z7z,46,43,0|cf0z80,35,38,1|cli8fz,35,38,1|cli8g0,46,43,0|k2yb7z,46,43,0|k2yb80,35,38,0|mw14fz,35,38,0|mw14g0,46,43,0","America/El_Salvador|,0,68,0|-pkm4tc,37,42,0|91ojbz,37,42,0|91ojc0,40,43,1|998ojz,40,43,1|998ok0,37,42,0|9kelzz,37,42,0|9kem00,40,43,1|9ryr7z,40,43,1|9ryr80,37,42,0","America/Fortaleza|,0,69,0|-t85kvc,32,35,0|-jylag1,32,35,0|-jylag0,33,36,1|-jpb141,33,36,1|-jpb140,32,35,0|-jfsd01,32,35,0|-jfsd00,33,36,1|-j6j3s1,33,36,1|-j6j3s0,32,35,0|-ahcyc1,32,35,0|-ahcyc0,33,36,1|-aad3o1,33,36,1|-aad3o0,32,35,0|-9yl101,32,35,0|-9yl100,33,36,1|-9sd141,33,36,1|-9sd140,32,35,0|-9ft3o1,32,35,0|-9ft3o0,33,36,1|-99j941,33,36,1|-99j940,32,35,0|-8wzbo1,32,35,0|-8wzbo0,33,36,1|-8scqg1,33,36,1|-8scqg0,32,35,0|-35xmc1,32,35,0|-35xmc0,33,36,1|-31nzs1,33,36,1|-31nzs0,32,35,0|-2kdp01,32,35,0|-2kdp00,33,36,1|-2hcig1,33,36,1|-2hcig0,32,35,0|-24qqc1,32,35,0|-24qqc0,33,36,1|-204541,33,36,1|-204540,32,35,0|-1nid01,32,35,0|-1nid00,33,36,1|-1hc7s1,33,36,1|-1hc7s0,32,35,0|-14qfo1,32,35,0|-14qfo0,33,36,1|-yifs1,33,36,1|-yifs0,32,35,0|89jcbz,32,35,0|89jcc0,33,36,1|8gdk7z,33,36,1|8gdk80,32,35,0|8rwgbz,32,35,0|8rwgc0,33,36,1|8xns7z,33,36,1|8xns80,32,35,0|9aodnz,32,35,0|9aodo0,33,36,1|9g2qvz,33,36,1|9g2qw0,32,35,0|9t1hnz,32,35,0|9t1ho0,33,36,1|9yfuvz,33,36,1|9yfuw0,32,35,0|abrkbz,32,35,0|abrkc0,33,36,1|ahvuvz,33,36,1|ahvuw0,32,35,0|fj0azz,32,35,0|fj0b00,33,36,1|fqkg7z,33,36,1|fqkg80,32,35,0|g23cbz,32,35,0|g23cc0,33,36,1|g2t6vz,33,36,1|g2t6w0,32,35,0|gl6dnz,32,35,0|gl6do0,33,36,1|grnmvz,33,36,1|grnmw0,32,35,0","America/Glace_Bay|,0,70,0|-z94kwc,24,38,0|-qzp0o1,24,38,0|-qzp0o0,42,35,1|-qpm4s1,42,35,1|-qpm4s0,24,38,0|-ek27c1,24,38,0|-ek27c0,25,35,1|-cq2tg1,25,35,1|-cq2tg0,26,35,1|-cnp641,26,35,1|-cnp640,24,38,0|-8pgq01,24,38,0|-8pgq00,42,35,1|-8hjm41,42,35,1|-8hjm40,24,38,0|17qjbz,24,38,0|17qjc0,42,35,1|1h3hvz,42,35,1|1h3hw0,24,38,0|1qglzz,24,38,0|1qgm00,42,35,1|1ztkjz,42,35,1|1ztkk0,24,38,0|296onz,24,38,0|296oo0,42,35,1|2ijn7z,42,35,1|2ijn80,24,38,0|2rwrbz,24,38,0|2rwrc0,42,35,1|319pvz,42,35,1|319pw0,24,38,0|3amtzz,24,38,0|3amu00,42,35,1|3kcr7z,42,35,1|3kcr80,24,38,0|3tcwnz,24,38,0|3tcwo0,42,35,1|432tvz,42,35,1|432tw0,24,38,0|4cfxzz,24,38,0|4cfy00,42,35,1|4lswjz,42,35,1|4lswk0,24,38,0|4v60nz,24,38,0|4v60o0,42,35,1|54iz7z,42,35,1|54iz80,24,38,0|5dw3bz,24,38,0|5dw3c0,42,35,1|5n91vz,42,35,1|5n91w0,24,38,0|5wm5zz,24,38,0|5wm600,42,35,1|65z4jz,42,35,1|65z4k0,24,38,0|6fc8nz,24,38,0|6fc8o0,42,35,1|6p25vz,42,35,1|6p25w0,24,38,0|6y2bbz,24,38,0|6y2bc0,42,35,1|77s8jz,42,35,1|77s8k0,24,38,0|7h5cnz,24,38,0|7h5co0,42,35,1|7qib7z,42,35,1|7qib80,24,38,0|7zvfbz,24,38,0|7zvfc0,42,35,1|898dvz,42,35,1|898dw0,24,38,0|8ilhzz,24,38,0|8ili00,42,35,1|8rygjz,42,35,1|8rygk0,24,38,0|908onz,24,38,0|908oo0,42,35,1|9aoj7z,42,35,1|9aoj80,24,38,0|9iyrbz,24,38,0|9iyrc0,42,35,1|9trkjz,42,35,1|9trkk0,24,38,0|a1otzz,24,38,0|a1ou00,42,35,1|achn7z,42,35,1|achn80,24,38,0|akewnz,24,38,0|akewo0,42,35,1|av7pvz,42,35,1|av7pw0,24,38,0|b3hxzz,24,38,0|b3hy00,42,35,1|bdxsjz,42,35,1|bdxsk0,24,38,0|bm80nz,24,38,0|bm80o0,42,35,1|bwnv7z,42,35,1|bwnv80,24,38,0|c4y3bz,24,38,0|c4y3c0,42,35,1|cfqwjz,42,35,1|cfqwk0,24,38,0|cno5zz,24,38,0|cno600,42,35,1|cygz7z,42,35,1|cygz80,24,38,0|d6e8nz,24,38,0|d6e8o0,42,35,1|dh71vz,42,35,1|dh71w0,24,38,0|dph9zz,24,38,0|dpha00,42,35,1|dzx4jz,42,35,1|dzx4k0,24,38,0|e87cnz,24,38,0|e87co0,42,35,1|ein77z,42,35,1|ein780,24,38,0|eqxfbz,24,38,0|eqxfc0,42,35,1|f1d9vz,42,35,1|f1d9w0,24,38,0|f9nhzz,24,38,0|f9ni00,42,35,1|fkgb7z,42,35,1|fkgb80,24,38,0|fsdknz,24,38,0|fsdko0,42,35,1|g36dvz,42,35,1|g36dw0,24,38,0|gb3nbz,24,38,0|gb3nc0,42,35,1|glwgjz,42,35,1|glwgk0,24,38,0|gu6onz,24,38,0|gu6oo0,42,35,1|h4mj7z,42,35,1|h4mj80,24,38,0|hcwrbz,24,38,0|hcwrc0,42,35,1|hnclvz,42,35,1|hnclw0,24,38,0|hvmtzz,24,38,0|hvmu00,42,35,1|i6fn7z,42,35,1|i6fn80,24,38,0|iecwnz,24,38,0|iecwo0,42,35,1|ip5pvz,42,35,1|ip5pw0,24,38,0|ix2zbz,24,38,0|ix2zc0,42,35,1|j7vsjz,42,35,1|j7vsk0,24,38,0|jeq5zz,24,38,0|jeq600,42,35,1|jqytvz,42,35,1|jqytw0,24,38,0|jxg8nz,24,38,0|jxg8o0,42,35,1|k9owjz,42,35,1|k9owk0,24,38,0|kg6bbz,24,38,0|kg6bc0,42,35,1|ksez7z,42,35,1|ksez80,24,38,0|kz9cnz,24,38,0|kz9co0,42,35,1|lbi0jz,42,35,1|lbi0k0,24,38,0|lhzfbz,24,38,0|lhzfc0,42,35,1|lu837z,42,35,1|lu8380,24,38,0|m0phzz,24,38,0|m0pi00,42,35,1|mcy5vz,42,35,1|mcy5w0,24,38,0|mjfknz,24,38,0|mjfko0,42,35,1|mvo8jz,42,35,1|mvo8k0,24,38,0|n25nbz,24,38,0|n25nc0,42,35,1|neeb7z,42,35,1|neeb80,24,38,0|nkvpzz,24,38,0|nkvq00,42,35,1|nx4dvz,42,35,1|nx4dw0,24,38,0|o3yrbz,24,38,0|o3yrc0,42,35,1|og7f7z,42,35,1|og7f80,24,38,0|omotzz,24,38,0|omou00,42,35,1|oyxhvz,42,35,1|oyxhw0,24,38,0|p5ewnz,24,38,0|p5ewo0,42,35,1|phnkjz,42,35,1|phnkk0,24,38,0|po4zbz,24,38,0|po4zc0,42,35,1|q0dn7z,42,35,1|q0dn80,24,38,0|q6v1zz,24,38,0|q6v200,42,35,1|qj3pvz,42,35,1|qj3pw0,24,38,0|qpy3bz,24,38,0|qpy3c0,42,35,1|r26r7z,42,35,1|r26r80,24,38,0|r8o5zz,24,38,0|r8o600,42,35,1|rkwtvz,42,35,1|rkwtw0,24,38,0|rre8nz,24,38,0|rre8o0,42,35,1|s3mwjz,42,35,1|s3mwk0,24,38,0|sa4bbz,24,38,0|sa4bc0,42,35,1|smcz7z,42,35,1|smcz80,24,38,0|ssudzz,24,38,0|ssue00,42,35,1|t531vz,42,35,1|t531w0,24,38,0|tbkgnz,24,38,0|tbkgo0,42,35,1|tnt4jz,42,35,1|tnt4k0,24,38,0|tunhzz,24,38,0|tuni00,42,35,1|u6w5vz,42,35,1|u6w5w0,24,38,0|uddknz,24,38,0|uddko0,42,35,1|upm8jz,42,35,1|upm8k0,24,38,0|uw3nbz,24,38,0|uw3nc0,42,35,1|v8cb7z,42,35,1|v8cb80,24,38,0|vetpzz,24,38,0|vetq00,42,35,1|vr2dvz,42,35,1|vr2dw0,24,38,0|vxjsnz,24,38,0|vxjso0,42,35,1|w9sgjz,42,35,1|w9sgk0,24,38,0|wgmtzz,24,38,0|wgmu00,42,35,1|wsvhvz,42,35,1|wsvhw0,24,38,0|wzcwnz,24,38,0|wzcwo0,42,35,1|xblkjz,42,35,1|xblkk0,24,38,0|xi2zbz,24,38,0|xi2zc0,42,35,1|xubn7z,42,35,1|xubn80,24,38,0|y0t1zz,24,38,0|y0t200,42,35,1|yd1pvz,42,35,1|yd1pw0,24,38,0|yjj4nz,24,38,0|yjj4o0,42,35,1|yvrsjz,42,35,1|yvrsk0,24,38,0|z297bz,24,38,0|z297c0,42,35,1|zehv7z,42,35,1|zehv80,24,38,0","America/Guatemala|,0,71,0|-qqqskk,37,42,0|219hzz,37,42,0|219i00,40,43,1|25xxvz,40,43,1|25xxw0,37,42,0|6zgbbz,37,42,0|6zgbc0,40,43,1|75tv7z,40,43,1|75tv80,37,42,0|b2q5zz,37,42,0|b2q600,40,43,1|bbd77z,40,43,1|bbd780,37,42,0|iyitzz,37,42,0|iyiu00,40,43,1|j6fxvz,40,43,1|j6fxw0,37,42,0","America/Guayaquil|,0,72,0|-15r0ujs,59,73,0|-kcr84p,59,73,0|-kcr84o,46,43,0|byetvz,46,43,0|byetw0,35,38,1|c1yj3z,35,38,1|c1yj40,46,43,0","America/Guyana|,0,74,0|-smcak8,60,75,0|2wsiez,60,75,0|2wsif0,32,35,0|ayjxnz,32,35,0|ayjxo0,35,38,0","America/Halifax|,0,76,0|-z94k80,24,38,0|-s1x3k1,24,38,0|-s1x3k0,42,35,1|-rsiac1,42,35,1|-rsiac0,24,38,0|-qzp0o1,24,38,0|-qzp0o0,42,35,1|-qpm4s1,42,35,1|-qpm4s0,24,38,0|-pwt681,24,38,0|-pwt680,42,35,1|-pr1uc1,42,35,1|-pr1uc0,24,38,0|-pe6sw1,24,38,0|-pe6sw0,42,35,1|-p7wyc1,42,35,1|-p7wyc0,24,38,0|-ovpzk1,24,38,0|-ovpzk0,42,35,1|-op5101,42,35,1|-op5100,24,38,0|-ocmy81,24,38,0|-ocmy80,42,35,1|-o6eyc1,42,35,1|-o6eyc0,24,38,0|-ntwvk1,24,38,0|-ntwvk0,42,35,1|-nn0t01,42,35,1|-nn0t00,24,38,0|-nb6sw1,24,38,0|-nb6sw0,42,35,1|-n3kt01,42,35,1|-n3kt00,24,38,0|-mrqsw1,24,38,0|-mrqsw0,42,35,1|-mlkno1,42,35,1|-mlkno0,24,38,0|-m9qnk1,24,38,0|-m9qnk0,42,35,1|-m24no1,42,35,1|-m24no0,24,38,0|-lqank1,24,38,0|-lqank0,42,35,1|-lk6d01,42,35,1|-lk6d00,24,38,0|-l7kkw1,24,38,0|-l7kkw0,42,35,1|-l1pjo1,42,35,1|-l1pjo0,24,38,0|-koui81,24,38,0|-koui80,42,35,1|-kibec1,42,35,1|-kibec0,24,38,0|-k64fk1,24,38,0|-k64fk0,42,35,1|-jyvec1,42,35,1|-jyvec0,24,38,0|-jnrbk1,24,38,0|-jnrbk0,42,35,1|-jg5bo1,42,35,1|-jg5bo0,24,38,0|-j518w1,24,38,0|-j518w0,42,35,1|-ix2ac1,42,35,1|-ix2ac0,24,38,0|-il8a81,24,38,0|-il8a80,42,35,1|-if3zo1,42,35,1|-if3zo0,24,38,0|-i1sa81,24,38,0|-i1sa80,42,35,1|-hvm501,42,35,1|-hvm500,24,38,0|-hj0cw1,24,38,0|-hj0cw0,42,35,1|-hdlzo1,42,35,1|-hdlzo0,24,38,0|-h1rzk1,24,38,0|-h1rzk0,42,35,1|-gu5zo1,42,35,1|-gu5zo0,24,38,0|-gj1ww1,24,38,0|-gj1ww0,42,35,1|-gbfx01,42,35,1|-gbfx00,24,38,0|-fyvzk1,24,38,0|-fyvzk0,42,35,1|-fspuc1,42,35,1|-fspuc0,24,38,0|-fh8sw1,24,38,0|-fh8sw0,42,35,1|-f9mt01,42,35,1|-f9mt00,24,38,0|-eyiq81,24,38,0|-eyiq80,42,35,1|-eqwqc1,42,35,1|-eqwqc0,24,38,0|-ek27c1,24,38,0|-ek27c0,25,35,1|-cq2tg1,25,35,1|-cq2tg0,26,35,1|-cnp641,26,35,1|-cnp640,24,38,0|-ccw7c1,24,38,0|-ccw7c0,42,35,1|-c4z3g1,42,35,1|-c4z3g0,24,38,0|-bu64o1,24,38,0|-bu64o0,42,35,1|-bm90s1,42,35,1|-bm90s0,24,38,0|-bbg201,24,38,0|-bbg200,42,35,1|-b3iy41,42,35,1|-b3iy40,24,38,0|-aspzc1,24,38,0|-aspzc0,42,35,1|-aksvg1,42,35,1|-aksvg0,24,38,0|-9qwvc1,24,38,0|-9qwvc0,42,35,1|-9izrg1,42,35,1|-9izrg0,24,38,0|-986so1,24,38,0|-986so0,42,35,1|-909os1,42,35,1|-909os0,24,38,0|-8pgq01,24,38,0|-8pgq00,42,35,1|-8hjm41,42,35,1|-8hjm40,24,38,0|-86qnc1,24,38,0|-86qnc0,42,35,1|-7ytjg1,42,35,1|-7ytjg0,24,38,0|-74xjc1,24,38,0|-74xjc0,42,35,1|-6x0fg1,42,35,1|-6x0fg0,24,38,0|-6m7go1,24,38,0|-6m7go0,42,35,1|-6eacs1,42,35,1|-6eacs0,24,38,0|-63he01,24,38,0|-63he00,42,35,1|-5vka41,42,35,1|-5vka40,24,38,0|-5krbc1,24,38,0|-5krbc0,42,35,1|-5cu7g1,42,35,1|-5cu7g0,24,38,0|-4084o1,24,38,0|-4084o0,42,35,1|-3qv641,42,35,1|-3qv640,24,38,0|-3hi201,24,38,0|-3hi200,42,35,1|-3853g1,42,35,1|-3853g0,24,38,0|-2yrzc1,24,38,0|-2yrzc0,42,35,1|-2pf0s1,42,35,1|-2pf0s0,24,38,0|-2g1wo1,24,38,0|-2g1wo0,42,35,1|-26bzg1,42,35,1|-26bzg0,24,38,0|-1xbu01,24,38,0|-1xbu00,42,35,1|-1nlws1,42,35,1|-1nlws0,24,38,0|-1e8so1,24,38,0|-1e8so0,42,35,1|-14vu41,42,35,1|-14vu40,24,38,0|-viq01,24,38,0|-viq00,42,35,1|-m5rg1,42,35,1|-m5rg0,24,38,0|-csnc1,24,38,0|-csnc0,42,35,1|-3fos1,42,35,1|-3fos0,24,38,0|5xfbz,24,38,0|5xfc0,42,35,1|fadvz,42,35,1|fadw0,24,38,0|onhzz,24,38,0|oni00,42,35,1|ydf7z,42,35,1|ydf80,24,38,0|17qjbz,24,38,0|17qjc0,42,35,1|1h3hvz,42,35,1|1h3hw0,24,38,0|1qglzz,24,38,0|1qgm00,42,35,1|1ztkjz,42,35,1|1ztkk0,24,38,0|296onz,24,38,0|296oo0,42,35,1|2ijn7z,42,35,1|2ijn80,24,38,0|2rwrbz,24,38,0|2rwrc0,42,35,1|319pvz,42,35,1|319pw0,24,38,0|3amtzz,24,38,0|3amu00,42,35,1|3kcr7z,42,35,1|3kcr80,24,38,0|3tcwnz,24,38,0|3tcwo0,42,35,1|432tvz,42,35,1|432tw0,24,38,0|4cfxzz,24,38,0|4cfy00,42,35,1|4lswjz,42,35,1|4lswk0,24,38,0|4v60nz,24,38,0|4v60o0,42,35,1|54iz7z,42,35,1|54iz80,24,38,0|5dw3bz,24,38,0|5dw3c0,42,35,1|5n91vz,42,35,1|5n91w0,24,38,0|5wm5zz,24,38,0|5wm600,42,35,1|65z4jz,42,35,1|65z4k0,24,38,0|6fc8nz,24,38,0|6fc8o0,42,35,1|6p25vz,42,35,1|6p25w0,24,38,0|6y2bbz,24,38,0|6y2bc0,42,35,1|77s8jz,42,35,1|77s8k0,24,38,0|7h5cnz,24,38,0|7h5co0,42,35,1|7qib7z,42,35,1|7qib80,24,38,0|7zvfbz,24,38,0|7zvfc0,42,35,1|898dvz,42,35,1|898dw0,24,38,0|8ilhzz,24,38,0|8ili00,42,35,1|8rygjz,42,35,1|8rygk0,24,38,0|908onz,24,38,0|908oo0,42,35,1|9aoj7z,42,35,1|9aoj80,24,38,0|9iyrbz,24,38,0|9iyrc0,42,35,1|9trkjz,42,35,1|9trkk0,24,38,0|a1otzz,24,38,0|a1ou00,42,35,1|achn7z,42,35,1|achn80,24,38,0|akewnz,24,38,0|akewo0,42,35,1|av7pvz,42,35,1|av7pw0,24,38,0|b3hxzz,24,38,0|b3hy00,42,35,1|bdxsjz,42,35,1|bdxsk0,24,38,0|bm80nz,24,38,0|bm80o0,42,35,1|bwnv7z,42,35,1|bwnv80,24,38,0|c4y3bz,24,38,0|c4y3c0,42,35,1|cfqwjz,42,35,1|cfqwk0,24,38,0|cno5zz,24,38,0|cno600,42,35,1|cygz7z,42,35,1|cygz80,24,38,0|d6e8nz,24,38,0|d6e8o0,42,35,1|dh71vz,42,35,1|dh71w0,24,38,0|dph9zz,24,38,0|dpha00,42,35,1|dzx4jz,42,35,1|dzx4k0,24,38,0|e87cnz,24,38,0|e87co0,42,35,1|ein77z,42,35,1|ein780,24,38,0|eqxfbz,24,38,0|eqxfc0,42,35,1|f1d9vz,42,35,1|f1d9w0,24,38,0|f9nhzz,24,38,0|f9ni00,42,35,1|fkgb7z,42,35,1|fkgb80,24,38,0|fsdknz,24,38,0|fsdko0,42,35,1|g36dvz,42,35,1|g36dw0,24,38,0|gb3nbz,24,38,0|gb3nc0,42,35,1|glwgjz,42,35,1|glwgk0,24,38,0|gu6onz,24,38,0|gu6oo0,42,35,1|h4mj7z,42,35,1|h4mj80,24,38,0|hcwrbz,24,38,0|hcwrc0,42,35,1|hnclvz,42,35,1|hnclw0,24,38,0|hvmtzz,24,38,0|hvmu00,42,35,1|i6fn7z,42,35,1|i6fn80,24,38,0|iecwnz,24,38,0|iecwo0,42,35,1|ip5pvz,42,35,1|ip5pw0,24,38,0|ix2zbz,24,38,0|ix2zc0,42,35,1|j7vsjz,42,35,1|j7vsk0,24,38,0|jeq5zz,24,38,0|jeq600,42,35,1|jqytvz,42,35,1|jqytw0,24,38,0|jxg8nz,24,38,0|jxg8o0,42,35,1|k9owjz,42,35,1|k9owk0,24,38,0|kg6bbz,24,38,0|kg6bc0,42,35,1|ksez7z,42,35,1|ksez80,24,38,0|kz9cnz,24,38,0|kz9co0,42,35,1|lbi0jz,42,35,1|lbi0k0,24,38,0|lhzfbz,24,38,0|lhzfc0,42,35,1|lu837z,42,35,1|lu8380,24,38,0|m0phzz,24,38,0|m0pi00,42,35,1|mcy5vz,42,35,1|mcy5w0,24,38,0|mjfknz,24,38,0|mjfko0,42,35,1|mvo8jz,42,35,1|mvo8k0,24,38,0|n25nbz,24,38,0|n25nc0,42,35,1|neeb7z,42,35,1|neeb80,24,38,0|nkvpzz,24,38,0|nkvq00,42,35,1|nx4dvz,42,35,1|nx4dw0,24,38,0|o3yrbz,24,38,0|o3yrc0,42,35,1|og7f7z,42,35,1|og7f80,24,38,0|omotzz,24,38,0|omou00,42,35,1|oyxhvz,42,35,1|oyxhw0,24,38,0|p5ewnz,24,38,0|p5ewo0,42,35,1|phnkjz,42,35,1|phnkk0,24,38,0|po4zbz,24,38,0|po4zc0,42,35,1|q0dn7z,42,35,1|q0dn80,24,38,0|q6v1zz,24,38,0|q6v200,42,35,1|qj3pvz,42,35,1|qj3pw0,24,38,0|qpy3bz,24,38,0|qpy3c0,42,35,1|r26r7z,42,35,1|r26r80,24,38,0|r8o5zz,24,38,0|r8o600,42,35,1|rkwtvz,42,35,1|rkwtw0,24,38,0|rre8nz,24,38,0|rre8o0,42,35,1|s3mwjz,42,35,1|s3mwk0,24,38,0|sa4bbz,24,38,0|sa4bc0,42,35,1|smcz7z,42,35,1|smcz80,24,38,0|ssudzz,24,38,0|ssue00,42,35,1|t531vz,42,35,1|t531w0,24,38,0|tbkgnz,24,38,0|tbkgo0,42,35,1|tnt4jz,42,35,1|tnt4k0,24,38,0|tunhzz,24,38,0|tuni00,42,35,1|u6w5vz,42,35,1|u6w5w0,24,38,0|uddknz,24,38,0|uddko0,42,35,1|upm8jz,42,35,1|upm8k0,24,38,0|uw3nbz,24,38,0|uw3nc0,42,35,1|v8cb7z,42,35,1|v8cb80,24,38,0|vetpzz,24,38,0|vetq00,42,35,1|vr2dvz,42,35,1|vr2dw0,24,38,0|vxjsnz,24,38,0|vxjso0,42,35,1|w9sgjz,42,35,1|w9sgk0,24,38,0|wgmtzz,24,38,0|wgmu00,42,35,1|wsvhvz,42,35,1|wsvhw0,24,38,0|wzcwnz,24,38,0|wzcwo0,42,35,1|xblkjz,42,35,1|xblkk0,24,38,0|xi2zbz,24,38,0|xi2zc0,42,35,1|xubn7z,42,35,1|xubn80,24,38,0|y0t1zz,24,38,0|y0t200,42,35,1|yd1pvz,42,35,1|yd1pw0,24,38,0|yjj4nz,24,38,0|yjj4o0,42,35,1|yvrsjz,42,35,1|yvrsk0,24,38,0|z297bz,24,38,0|z297c0,42,35,1|zehv7z,42,35,1|zehv80,24,38,0","America/Havana|,0,77,0|-15r0u2w,61,78,0|-n7762p,61,78,0|-n7762o,37,43,0|-louq41,37,43,0|-louq40,40,38,1|-likvk1,40,38,1|-likvk0,37,43,0|-ffsvg1,37,43,0|-ffsvg0,40,38,1|-fb4fk1,40,38,1|-fb4fk0,37,43,0|-ex2ss1,37,43,0|-ex2ss0,40,38,1|-es1e81,40,38,1|-es1e80,37,43,0|-edzrg1,37,43,0|-edzrg0,40,38,1|-e9bbk1,40,38,1|-e9bbk0,37,43,0|-cttjg1,37,43,0|-cttjg0,40,38,1|-cp53k1,40,38,1|-cp53k0,37,43,0|-cb3gs1,37,43,0|-cb3gs0,40,38,1|-c6f0w1,40,38,1|-c6f0w0,37,43,0|-2e5gs1,37,43,0|-2e5gs0,40,38,1|-27xgw1,40,38,1|-27xgw0,37,43,0|-1vj3g1,37,43,0|-1vj3g0,40,38,1|-1p1u81,40,38,1|-1p1u80,37,43,0|-1fdm41,37,43,0|-1fdm40,40,38,1|-17enk1,40,38,1|-17enk0,37,43,0|-w8q41,37,43,0|-w8q40,40,38,1|-ookw1,40,38,1|-ookw0,37,43,0|-csq41,37,43,0|-csq40,40,38,1|-3frk1,40,38,1|-3frk0,37,43,0|5xcjz,37,43,0|5xck0,40,38,1|fab3z,40,38,1|fab40,37,43,0|onf7z,37,43,0|onf80,40,38,1|ydcfz,40,38,1|ydcg0,37,43,0|17qgjz,37,43,0|17qgk0,40,38,1|1g0j3z,40,38,1|1g0j40,37,43,0|1qgj7z,37,43,0|1qgj80,40,38,1|1ysgfz,40,38,1|1ysgg0,37,43,0|296lvz,37,43,0|296lw0,40,38,1|2hkdrz,40,38,1|2hkds0,37,43,0|2rwojz,37,43,0|2rwok0,40,38,1|319n3z,40,38,1|319n40,37,43,0|3amr7z,37,43,0|3amr80,40,38,1|3kcofz,40,38,1|3kcog0,37,43,0|3tctvz,37,43,0|3tctw0,40,38,1|432r3z,40,38,1|432r40,37,43,0|4cstvz,37,43,0|4cstw0,40,38,1|4kpxrz,40,38,1|4kpxs0,37,43,0|4t05vz,37,43,0|4t05w0,40,38,1|53sz3z,40,38,1|53sz40,37,43,0|5bq8jz,37,43,0|5bq8k0,40,38,1|5mj1rz,40,38,1|5mj1s0,37,43,0|5xc0jz,37,43,0|5xc0k0,40,38,1|6594fz,40,38,1|6594g0,37,43,0|6g237z,37,43,0|6g2380,40,38,1|6nz73z,40,38,1|6nz740,37,43,0|6ys5vz,37,43,0|6ys5w0,40,38,1|76p9rz,40,38,1|76p9s0,37,43,0|7hi8jz,37,43,0|7hi8k0,40,38,1|7psb3z,40,38,1|7psb40,37,43,0|808b7z,37,43,0|808b80,40,38,1|88idrz,40,38,1|88ids0,37,43,0|8gfn7z,37,43,0|8gfn80,40,38,1|8r8gfz,40,38,1|8r8gg0,37,43,0|8z5pvz,37,43,0|8z5pw0,40,38,1|99yj3z,40,38,1|99yj40,37,43,0|9i8r7z,37,43,0|9i8r80,40,38,1|9solrz,40,38,1|9sols0,37,43,0|a0ytvz,37,43,0|a0ytw0,40,38,1|abeofz,40,38,1|abeog0,37,43,0|aketvz,37,43,0|aketw0,40,38,1|auhprz,40,38,1|auhps0,37,43,0|b3hv7z,37,43,0|b3hv80,40,38,1|bd7v7z,40,38,1|bd7v80,37,43,0|bm7xvz,37,43,0|bm7xw0,40,38,1|bvxxvz,40,38,1|bvxxw0,37,43,0|c4y0jz,37,43,0|c4y0k0,40,38,1|ceo0jz,40,38,1|ceo0k0,37,43,0|cno37z,37,43,0|cno380,40,38,1|cxe37z,40,38,1|cxe380,37,43,0|d6e5vz,37,43,0|d6e5w0,40,38,1|dg45vz,40,38,1|dg45w0,37,43,0|dph77z,37,43,0|dph780,40,38,1|dyu8jz,40,38,1|dyu8k0,37,43,0|e879vz,37,43,0|e879w0,40,38,1|ehx9vz,40,38,1|ehx9w0,37,43,0|eqkdvz,37,43,0|eqkdw0,40,38,1|f1d9vz,40,38,1|f1d9w0,37,43,0|f9agjz,37,43,0|f9agk0,40,38,1|fkgb7z,40,38,1|fkgb80,37,43,0|fsdhvz,37,43,0|fsdhw0,40,38,1|g36dvz,40,38,1|g36dw0,37,43,0|gb3kjz,37,43,0|gb3kk0,40,38,1|glwgjz,40,38,1|glwgk0,37,43,0|gu6lvz,37,43,0|gu6lw0,40,38,1|h4mj7z,40,38,1|h4mj80,37,43,0|hcwojz,37,43,0|hcwok0,40,38,1|hnclvz,40,38,1|hnclw0,37,43,0|hv9sjz,37,43,0|hv9sk0,40,38,1|j7vsjz,40,38,1|j7vsk0,37,43,0|jeq37z,37,43,0|jeq380,40,38,1|jqlv7z,40,38,1|jqlv80,37,43,0|jxt4jz,37,43,0|jxt4k0,40,38,1|k9bxvz,40,38,1|k9bxw0,37,43,0|kg68jz,37,43,0|kg68k0,40,38,1|ks20jz,40,38,1|ks20k0,37,43,0|kz99vz,37,43,0|kz99w0,40,38,1|lb51vz,40,38,1|lb51w0,37,43,0|licb7z,37,43,0|licb80,40,38,1|lul1vz,40,38,1|lul1w0,37,43,0|m1sb7z,37,43,0|m1sb80,40,38,1|mcy5vz,40,38,1|mcy5w0,37,43,0|mjfhvz,37,43,0|mjfhw0,40,38,1|mvo8jz,40,38,1|mvo8k0,37,43,0|n25kjz,37,43,0|n25kk0,40,38,1|neeb7z,40,38,1|neeb80,37,43,0|nkvn7z,37,43,0|nkvn80,40,38,1|nx4dvz,40,38,1|nx4dw0,37,43,0|o3yojz,37,43,0|o3yok0,40,38,1|og7f7z,40,38,1|og7f80,37,43,0|omor7z,37,43,0|omor80,40,38,1|oyxhvz,40,38,1|oyxhw0,37,43,0|p5etvz,37,43,0|p5etw0,40,38,1|phnkjz,40,38,1|phnkk0,37,43,0|po4wjz,37,43,0|po4wk0,40,38,1|q0dn7z,40,38,1|q0dn80,37,43,0|q6uz7z,37,43,0|q6uz80,40,38,1|qj3pvz,40,38,1|qj3pw0,37,43,0|qpy0jz,37,43,0|qpy0k0,40,38,1|r26r7z,40,38,1|r26r80,37,43,0|r8o37z,37,43,0|r8o380,40,38,1|rkwtvz,40,38,1|rkwtw0,37,43,0|rre5vz,37,43,0|rre5w0,40,38,1|s3mwjz,40,38,1|s3mwk0,37,43,0|sa48jz,37,43,0|sa48k0,40,38,1|smcz7z,40,38,1|smcz80,37,43,0|ssub7z,37,43,0|ssub80,40,38,1|t531vz,40,38,1|t531w0,37,43,0|tbkdvz,37,43,0|tbkdw0,40,38,1|tnt4jz,40,38,1|tnt4k0,37,43,0|tunf7z,37,43,0|tunf80,40,38,1|u6w5vz,40,38,1|u6w5w0,37,43,0|uddhvz,37,43,0|uddhw0,40,38,1|upm8jz,40,38,1|upm8k0,37,43,0|uw3kjz,37,43,0|uw3kk0,40,38,1|v8cb7z,40,38,1|v8cb80,37,43,0|vetn7z,37,43,0|vetn80,40,38,1|vr2dvz,40,38,1|vr2dw0,37,43,0|vxjpvz,37,43,0|vxjpw0,40,38,1|w9sgjz,40,38,1|w9sgk0,37,43,0|wgmr7z,37,43,0|wgmr80,40,38,1|wsvhvz,40,38,1|wsvhw0,37,43,0|wzctvz,37,43,0|wzctw0,40,38,1|xblkjz,40,38,1|xblkk0,37,43,0|xi2wjz,37,43,0|xi2wk0,40,38,1|xubn7z,40,38,1|xubn80,37,43,0|y0sz7z,37,43,0|y0sz80,40,38,1|yd1pvz,40,38,1|yd1pw0,37,43,0|yjj1vz,37,43,0|yjj1w0,40,38,1|yvrsjz,40,38,1|yvrsk0,37,43,0|z294jz,37,43,0|z294k0,40,38,1|zehv7z,40,38,1|zehv80,37,43,0","America/Hermosillo|,0,79,0|-p1u4k0,36,41,0|-m7mko1,36,41,0|-m7mko0,37,42,0|-kf67c1,37,42,0|-kf67c0,36,41,0|-k6j3c1,36,41,0|-k6j3c0,37,42,0|-jypm01,37,42,0|-jypm00,36,41,0|-jpan81,36,41,0|-jpan80,37,42,0|-eg9601,37,42,0|-eg9600,36,41,0|-axv381,36,41,0|-axv380,38,33,0|m7z,38,33,0|m80,36,41,0|dphibz,36,41,0|dphic0,39,42,1|dzxcvz,39,42,1|dzxcw0,36,41,0|e87kzz,36,41,0|e87l00,39,42,1|einfjz,39,42,1|einfk0,36,41,0|eqxnnz,36,41,0|eqxno0,39,42,1|f1di7z,39,42,1|f1di80,36,41,0","America/Jamaica|,0,80,0|-15r0v42,62,80,0|-u85og3,62,80,0|-u85og2,50,43,0|23fcrz,50,43,0|23fcs0,51,38,1|2ijpzz,51,38,1|2ijq00,50,43,0|2oo63z,50,43,0|2oo640,51,38,1|319snz,51,38,1|319so0,50,43,0|3amwrz,50,43,0|3amws0,51,38,1|3kctzz,51,38,1|3kcu00,50,43,0|3tczfz,50,43,0|3tczg0,51,38,1|432wnz,51,38,1|432wo0,50,43,0|4cg0rz,50,43,0|4cg0s0,51,38,1|4lszbz,51,38,1|4lszc0,50,43,0|4v63fz,50,43,0|4v63g0,51,38,1|54j1zz,51,38,1|54j200,50,43,0|5dw63z,50,43,0|5dw640,51,38,1|5n94nz,51,38,1|5n94o0,50,43,0|5wm8rz,50,43,0|5wm8s0,51,38,1|65z7bz,51,38,1|65z7c0,50,43,0|6fcbfz,50,43,0|6fcbg0,51,38,1|6p28nz,51,38,1|6p28o0,50,43,0|6y2e3z,50,43,0|6y2e40,51,38,1|77sbbz,51,38,1|77sbc0,50,43,0","America/Juneau|,0,81,0|-1hc7qjz,0,82,0|-1078wfw,0,82,0|-1078wfv,38,33,0|-ek1w81,38,33,0|-ek1w80,55,41,1|-cq2tg1,55,41,1|-cq2tg0,56,41,1|-cnov01,56,41,1|-cnov00,38,33,0|-csc81,38,33,0|-csc80,47,41,1|-3fdo1,47,41,1|-3fdo0,38,33,0|5xqfz,38,33,0|5xqg0,47,41,1|faozz,47,41,1|fap00,38,33,0|ont3z,38,33,0|ont40,47,41,1|ydqbz,47,41,1|ydqc0,38,33,0|17qufz,38,33,0|17qug0,47,41,1|1h3szz,47,41,1|1h3t00,38,33,0|1qgx3z,38,33,0|1qgx40,47,41,1|1ztvnz,47,41,1|1ztvo0,38,33,0|23fl3z,38,33,0|23fl40,47,41,1|2ijybz,47,41,1|2ijyc0,38,33,0|2ooefz,38,33,0|2ooeg0,47,41,1|31a0zz,47,41,1|31a100,38,33,0|3an53z,38,33,0|3an540,47,41,1|3kd2bz,47,41,1|3kd2c0,38,33,0|3td7rz,38,33,0|3td7s0,47,41,1|4334zz,47,41,1|433500,38,33,0|4cg93z,38,33,0|4cg940,47,41,1|4lt7nz,47,41,1|4lt7o0,38,33,0|4v6brz,38,33,0|4v6bs0,47,41,1|54jabz,47,41,1|54jac0,38,33,0|5dwefz,38,33,0|5dweg0,63,33,1|5n9frz,63,33,1|5n9fs0,38,33,0|5wmh3z,38,33,0|5wmh40,47,41,1|65zfnz,47,41,1|65zfo0,38,33,0|6fcjrz,38,33,0|6fcjs0,47,41,1|6p2gzz,47,41,1|6p2h00,38,33,0|6y2mfz,38,33,0|6y2mg0,47,41,1|77sjnz,47,41,1|77sjo0,29,32,0|79dybz,29,32,0|79dyc0,30,32,0|7h5qjz,30,32,0|7h5qk0,31,33,1|7qip3z,31,33,1|7qip40,30,32,0|7zvt7z,30,32,0|7zvt80,31,33,1|898rrz,31,33,1|898rs0,30,32,0|8ilvvz,30,32,0|8ilvw0,31,33,1|8ryufz,31,33,1|8ryug0,30,32,0|9092jz,30,32,0|9092k0,31,33,1|9aox3z,31,33,1|9aox40,30,32,0|9iz57z,30,32,0|9iz580,31,33,1|9tryfz,31,33,1|9tryg0,30,32,0|a1p7vz,30,32,0|a1p7w0,31,33,1|aci13z,31,33,1|aci140,30,32,0|akfajz,30,32,0|akfak0,31,33,1|av83rz,31,33,1|av83s0,30,32,0|b3ibvz,30,32,0|b3ibw0,31,33,1|bdy6fz,31,33,1|bdy6g0,30,32,0|bm8ejz,30,32,0|bm8ek0,31,33,1|bwo93z,31,33,1|bwo940,30,32,0|c4yh7z,30,32,0|c4yh80,31,33,1|cfrafz,31,33,1|cfrag0,30,32,0|cnojvz,30,32,0|cnojw0,31,33,1|cyhd3z,31,33,1|cyhd40,30,32,0|d6emjz,30,32,0|d6emk0,31,33,1|dh7frz,31,33,1|dh7fs0,30,32,0|dphnvz,30,32,0|dphnw0,31,33,1|dzxifz,31,33,1|dzxig0,30,32,0|e87qjz,30,32,0|e87qk0,31,33,1|einl3z,31,33,1|einl40,30,32,0|eqxt7z,30,32,0|eqxt80,31,33,1|f1dnrz,31,33,1|f1dns0,30,32,0|f9nvvz,30,32,0|f9nvw0,31,33,1|fkgp3z,31,33,1|fkgp40,30,32,0|fsdyjz,30,32,0|fsdyk0,31,33,1|g36rrz,31,33,1|g36rs0,30,32,0|gb417z,30,32,0|gb4180,31,33,1|glwufz,31,33,1|glwug0,30,32,0|gu72jz,30,32,0|gu72k0,31,33,1|h4mx3z,31,33,1|h4mx40,30,32,0|hcx57z,30,32,0|hcx580,31,33,1|hnczrz,31,33,1|hnczs0,30,32,0|hvn7vz,30,32,0|hvn7w0,31,33,1|i6g13z,31,33,1|i6g140,30,32,0|iedajz,30,32,0|iedak0,31,33,1|ip63rz,31,33,1|ip63s0,30,32,0|ix3d7z,30,32,0|ix3d80,31,33,1|j7w6fz,31,33,1|j7w6g0,30,32,0|jeqjvz,30,32,0|jeqjw0,31,33,1|jqz7rz,31,33,1|jqz7s0,30,32,0|jxgmjz,30,32,0|jxgmk0,31,33,1|k9pafz,31,33,1|k9pag0,30,32,0|kg6p7z,30,32,0|kg6p80,31,33,1|ksfd3z,31,33,1|ksfd40,30,32,0|kz9qjz,30,32,0|kz9qk0,31,33,1|lbiefz,31,33,1|lbieg0,30,32,0|lhzt7z,30,32,0|lhzt80,31,33,1|lu8h3z,31,33,1|lu8h40,30,32,0|m0pvvz,30,32,0|m0pvw0,31,33,1|mcyjrz,31,33,1|mcyjs0,30,32,0|mjfyjz,30,32,0|mjfyk0,31,33,1|mvomfz,31,33,1|mvomg0,30,32,0|n2617z,30,32,0|n26180,31,33,1|neep3z,31,33,1|neep40,30,32,0|nkw3vz,30,32,0|nkw3w0,31,33,1|nx4rrz,31,33,1|nx4rs0,30,32,0|o3z57z,30,32,0|o3z580,31,33,1|og7t3z,31,33,1|og7t40,30,32,0|omp7vz,30,32,0|omp7w0,31,33,1|oyxvrz,31,33,1|oyxvs0,30,32,0|p5fajz,30,32,0|p5fak0,31,33,1|phnyfz,31,33,1|phnyg0,30,32,0|po5d7z,30,32,0|po5d80,31,33,1|q0e13z,31,33,1|q0e140,30,32,0|q6vfvz,30,32,0|q6vfw0,31,33,1|qj43rz,31,33,1|qj43s0,30,32,0|qpyh7z,30,32,0|qpyh80,31,33,1|r2753z,31,33,1|r27540,30,32,0|r8ojvz,30,32,0|r8ojw0,31,33,1|rkx7rz,31,33,1|rkx7s0,30,32,0|rremjz,30,32,0|rremk0,31,33,1|s3nafz,31,33,1|s3nag0,30,32,0|sa4p7z,30,32,0|sa4p80,31,33,1|smdd3z,31,33,1|smdd40,30,32,0|ssurvz,30,32,0|ssurw0,31,33,1|t53frz,31,33,1|t53fs0,30,32,0|tbkujz,30,32,0|tbkuk0,31,33,1|tntifz,31,33,1|tntig0,30,32,0|tunvvz,30,32,0|tunvw0,31,33,1|u6wjrz,31,33,1|u6wjs0,30,32,0|uddyjz,30,32,0|uddyk0,31,33,1|upmmfz,31,33,1|upmmg0,30,32,0|uw417z,30,32,0|uw4180,31,33,1|v8cp3z,31,33,1|v8cp40,30,32,0|veu3vz,30,32,0|veu3w0,31,33,1|vr2rrz,31,33,1|vr2rs0,30,32,0|vxk6jz,30,32,0|vxk6k0,31,33,1|w9sufz,31,33,1|w9sug0,30,32,0|wgn7vz,30,32,0|wgn7w0,31,33,1|wsvvrz,31,33,1|wsvvs0,30,32,0|wzdajz,30,32,0|wzdak0,31,33,1|xblyfz,31,33,1|xblyg0,30,32,0|xi3d7z,30,32,0|xi3d80,31,33,1|xuc13z,31,33,1|xuc140,30,32,0|y0tfvz,30,32,0|y0tfw0,31,33,1|yd23rz,31,33,1|yd23s0,30,32,0|yjjijz,30,32,0|yjjik0,31,33,1|yvs6fz,31,33,1|yvs6g0,30,32,0|z29l7z,30,32,0|z29l80,31,33,1|zei93z,31,33,1|zei940,30,32,0","America/La_Paz|,0,83,0|-15r0wpo,52,83,0|-jxzspp,52,83,0|-jxzspo,64,84,1|-jpva5p,64,84,1|-jpva5o,35,38,0","America/Lima|,0,85,0|-15r0v2c,0,86,0|-w25lpp,0,86,0|-w25lpo,46,43,0|-gp8241,46,43,0|-gp8240,35,38,1|-gklgw1,35,38,1|-gklgw0,46,43,0|-gbhm41,46,43,0|-gbhm40,35,38,1|-g24nk1,35,38,1|-g24nk0,46,43,0|-fsrjg1,46,43,0|-fsrjg0,35,38,1|-fjekw1,35,38,1|-fjekw0,46,43,0|8cmlvz,46,43,0|8cmlw0,35,38,1|8h973z,35,38,1|8h9740,46,43,0|8vej7z,46,43,0|8vej80,35,38,1|9014fz,35,38,1|9014g0,46,43,0|afs5vz,46,43,0|afs5w0,35,38,1|aker3z,35,38,1|aker40,46,43,0|cixpvz,46,43,0|cixpw0,35,38,1|cnkb3z,35,38,1|cnkb40,46,43,0","America/Los_Angeles|,0,87,0|-18y0gg0,38,33,0|-r0emw1,38,33,0|-r0emw0,47,41,1|-qplto1,47,41,1|-qplto0,38,33,0|-qhok81,38,33,0|-qhok80,47,41,1|-q6vr01,47,41,1|-q6vr00,38,33,0|-ek1w81,38,33,0|-ek1w80,55,41,1|-cq2tg1,55,41,1|-cq2tg0,56,41,1|-cnov01,56,41,1|-cnov00,38,33,0|-bdliud,38,33,0|-bdliuc,47,41,1|-ayj0c1,47,41,1|-ayj0c0,38,33,0|-a9mpo1,38,33,0|-a9mpo0,47,41,1|-a22ho1,47,41,1|-a22ho0,38,33,0|-9qwn01,38,33,0|-9qwn00,47,41,1|-9izgc1,47,41,1|-9izgc0,38,33,0|-986kc1,38,33,0|-986kc0,47,41,1|-909do1,47,41,1|-909do0,38,33,0|-8pgho1,38,33,0|-8pgho0,47,41,1|-8hjb01,47,41,1|-8hjb00,38,33,0|-86qf01,38,33,0|-86qf00,47,41,1|-7yt8c1,47,41,1|-7yt8c0,38,33,0|-7o0cc1,38,33,0|-7o0cc0,47,41,1|-7g35o1,47,41,1|-7g35o0,38,33,0|-74xb01,38,33,0|-74xb00,47,41,1|-6x04c1,47,41,1|-6x04c0,38,33,0|-6m78c1,38,33,0|-6m78c0,47,41,1|-6ea1o1,47,41,1|-6ea1o0,38,33,0|-63h5o1,38,33,0|-63h5o0,47,41,1|-5vjz01,47,41,1|-5vjz00,38,33,0|-5kr301,38,33,0|-5kr300,47,41,1|-5ctwc1,47,41,1|-5ctwc0,38,33,0|-5210c1,38,33,0|-5210c0,47,41,1|-4u3to1,47,41,1|-4u3to0,38,33,0|-4ixz01,38,33,0|-4ixz00,47,41,1|-4bdr01,47,41,1|-4bdr00,38,33,0|-407wc1,38,33,0|-407wc0,47,41,1|-3quv01,47,41,1|-3quv00,38,33,0|-3hhto1,38,33,0|-3hhto0,47,41,1|-384sc1,47,41,1|-384sc0,38,33,0|-2yrr01,38,33,0|-2yrr00,47,41,1|-2pepo1,47,41,1|-2pepo0,38,33,0|-2g1oc1,38,33,0|-2g1oc0,47,41,1|-26boc1,47,41,1|-26boc0,38,33,0|-1xblo1,38,33,0|-1xblo0,47,41,1|-1nllo1,47,41,1|-1nllo0,38,33,0|-1e8hk1,38,33,0|-1e8hk0,47,41,1|-14vj01,47,41,1|-14vj00,38,33,0|-view1,38,33,0|-view0,47,41,1|-m5gc1,47,41,1|-m5gc0,38,33,0|-csc81,38,33,0|-csc80,47,41,1|-3fdo1,47,41,1|-3fdo0,38,33,0|5xqfz,38,33,0|5xqg0,47,41,1|faozz,47,41,1|fap00,38,33,0|ont3z,38,33,0|ont40,47,41,1|ydqbz,47,41,1|ydqc0,38,33,0|17qufz,38,33,0|17qug0,47,41,1|1h3szz,47,41,1|1h3t00,38,33,0|1qgx3z,38,33,0|1qgx40,47,41,1|1ztvnz,47,41,1|1ztvo0,38,33,0|23fl3z,38,33,0|23fl40,47,41,1|2ijybz,47,41,1|2ijyc0,38,33,0|2ooefz,38,33,0|2ooeg0,47,41,1|31a0zz,47,41,1|31a100,38,33,0|3an53z,38,33,0|3an540,47,41,1|3kd2bz,47,41,1|3kd2c0,38,33,0|3td7rz,38,33,0|3td7s0,47,41,1|4334zz,47,41,1|433500,38,33,0|4cg93z,38,33,0|4cg940,47,41,1|4lt7nz,47,41,1|4lt7o0,38,33,0|4v6brz,38,33,0|4v6bs0,47,41,1|54jabz,47,41,1|54jac0,38,33,0|5dwefz,38,33,0|5dweg0,47,41,1|5n9czz,47,41,1|5n9d00,38,33,0|5wmh3z,38,33,0|5wmh40,47,41,1|65zfnz,47,41,1|65zfo0,38,33,0|6fcjrz,38,33,0|6fcjs0,47,41,1|6p2gzz,47,41,1|6p2h00,38,33,0|6y2mfz,38,33,0|6y2mg0,47,41,1|77sjnz,47,41,1|77sjo0,38,33,0|7h5nrz,38,33,0|7h5ns0,47,41,1|7qimbz,47,41,1|7qimc0,38,33,0|7zvqfz,38,33,0|7zvqg0,47,41,1|898ozz,47,41,1|898p00,38,33,0|8ilt3z,38,33,0|8ilt40,47,41,1|8ryrnz,47,41,1|8ryro0,38,33,0|908zrz,38,33,0|908zs0,47,41,1|9aoubz,47,41,1|9aouc0,38,33,0|9iz2fz,38,33,0|9iz2g0,47,41,1|9trvnz,47,41,1|9trvo0,38,33,0|a1p53z,38,33,0|a1p540,47,41,1|achybz,47,41,1|achyc0,38,33,0|akf7rz,38,33,0|akf7s0,47,41,1|av80zz,47,41,1|av8100,38,33,0|b3i93z,38,33,0|b3i940,47,41,1|bdy3nz,47,41,1|bdy3o0,38,33,0|bm8brz,38,33,0|bm8bs0,47,41,1|bwo6bz,47,41,1|bwo6c0,38,33,0|c4yefz,38,33,0|c4yeg0,47,41,1|cfr7nz,47,41,1|cfr7o0,38,33,0|cnoh3z,38,33,0|cnoh40,47,41,1|cyhabz,47,41,1|cyhac0,38,33,0|d6ejrz,38,33,0|d6ejs0,47,41,1|dh7czz,47,41,1|dh7d00,38,33,0|dphl3z,38,33,0|dphl40,47,41,1|dzxfnz,47,41,1|dzxfo0,38,33,0|e87nrz,38,33,0|e87ns0,47,41,1|einibz,47,41,1|einic0,38,33,0|eqxqfz,38,33,0|eqxqg0,47,41,1|f1dkzz,47,41,1|f1dl00,38,33,0|f9nt3z,38,33,0|f9nt40,47,41,1|fkgmbz,47,41,1|fkgmc0,38,33,0|fsdvrz,38,33,0|fsdvs0,47,41,1|g36ozz,47,41,1|g36p00,38,33,0|gb3yfz,38,33,0|gb3yg0,47,41,1|glwrnz,47,41,1|glwro0,38,33,0|gu6zrz,38,33,0|gu6zs0,47,41,1|h4mubz,47,41,1|h4muc0,38,33,0|hcx2fz,38,33,0|hcx2g0,47,41,1|hncwzz,47,41,1|hncx00,38,33,0|hvn53z,38,33,0|hvn540,47,41,1|i6fybz,47,41,1|i6fyc0,38,33,0|ied7rz,38,33,0|ied7s0,47,41,1|ip60zz,47,41,1|ip6100,38,33,0|ix3afz,38,33,0|ix3ag0,47,41,1|j7w3nz,47,41,1|j7w3o0,38,33,0|jeqh3z,38,33,0|jeqh40,47,41,1|jqz4zz,47,41,1|jqz500,38,33,0|jxgjrz,38,33,0|jxgjs0,47,41,1|k9p7nz,47,41,1|k9p7o0,38,33,0|kg6mfz,38,33,0|kg6mg0,47,41,1|ksfabz,47,41,1|ksfac0,38,33,0|kz9nrz,38,33,0|kz9ns0,47,41,1|lbibnz,47,41,1|lbibo0,38,33,0|lhzqfz,38,33,0|lhzqg0,47,41,1|lu8ebz,47,41,1|lu8ec0,38,33,0|m0pt3z,38,33,0|m0pt40,47,41,1|mcygzz,47,41,1|mcyh00,38,33,0|mjfvrz,38,33,0|mjfvs0,47,41,1|mvojnz,47,41,1|mvojo0,38,33,0|n25yfz,38,33,0|n25yg0,47,41,1|neembz,47,41,1|neemc0,38,33,0|nkw13z,38,33,0|nkw140,47,41,1|nx4ozz,47,41,1|nx4p00,38,33,0|o3z2fz,38,33,0|o3z2g0,47,41,1|og7qbz,47,41,1|og7qc0,38,33,0|omp53z,38,33,0|omp540,47,41,1|oyxszz,47,41,1|oyxt00,38,33,0|p5f7rz,38,33,0|p5f7s0,47,41,1|phnvnz,47,41,1|phnvo0,38,33,0|po5afz,38,33,0|po5ag0,47,41,1|q0dybz,47,41,1|q0dyc0,38,33,0|q6vd3z,38,33,0|q6vd40,47,41,1|qj40zz,47,41,1|qj4100,38,33,0|qpyefz,38,33,0|qpyeg0,47,41,1|r272bz,47,41,1|r272c0,38,33,0|r8oh3z,38,33,0|r8oh40,47,41,1|rkx4zz,47,41,1|rkx500,38,33,0|rrejrz,38,33,0|rrejs0,47,41,1|s3n7nz,47,41,1|s3n7o0,38,33,0|sa4mfz,38,33,0|sa4mg0,47,41,1|smdabz,47,41,1|smdac0,38,33,0|ssup3z,38,33,0|ssup40,47,41,1|t53czz,47,41,1|t53d00,38,33,0|tbkrrz,38,33,0|tbkrs0,47,41,1|tntfnz,47,41,1|tntfo0,38,33,0|tunt3z,38,33,0|tunt40,47,41,1|u6wgzz,47,41,1|u6wh00,38,33,0|uddvrz,38,33,0|uddvs0,47,41,1|upmjnz,47,41,1|upmjo0,38,33,0|uw3yfz,38,33,0|uw3yg0,47,41,1|v8cmbz,47,41,1|v8cmc0,38,33,0|veu13z,38,33,0|veu140,47,41,1|vr2ozz,47,41,1|vr2p00,38,33,0|vxk3rz,38,33,0|vxk3s0,47,41,1|w9srnz,47,41,1|w9sro0,38,33,0|wgn53z,38,33,0|wgn540,47,41,1|wsvszz,47,41,1|wsvt00,38,33,0|wzd7rz,38,33,0|wzd7s0,47,41,1|xblvnz,47,41,1|xblvo0,38,33,0|xi3afz,38,33,0|xi3ag0,47,41,1|xubybz,47,41,1|xubyc0,38,33,0|y0td3z,38,33,0|y0td40,47,41,1|yd20zz,47,41,1|yd2100,38,33,0|yjjfrz,38,33,0|yjjfs0,47,41,1|yvs3nz,47,41,1|yvs3o0,38,33,0|z29ifz,38,33,0|z29ig0,47,41,1|zei6bz,47,41,1|zei6c0,38,33,0","America/Maceio|,0,88,0|-t85ldw,32,35,0|-jylag1,32,35,0|-jylag0,33,36,1|-jpb141,33,36,1|-jpb140,32,35,0|-jfsd01,32,35,0|-jfsd00,33,36,1|-j6j3s1,33,36,1|-j6j3s0,32,35,0|-ahcyc1,32,35,0|-ahcyc0,33,36,1|-aad3o1,33,36,1|-aad3o0,32,35,0|-9yl101,32,35,0|-9yl100,33,36,1|-9sd141,33,36,1|-9sd140,32,35,0|-9ft3o1,32,35,0|-9ft3o0,33,36,1|-99j941,33,36,1|-99j940,32,35,0|-8wzbo1,32,35,0|-8wzbo0,33,36,1|-8scqg1,33,36,1|-8scqg0,32,35,0|-35xmc1,32,35,0|-35xmc0,33,36,1|-31nzs1,33,36,1|-31nzs0,32,35,0|-2kdp01,32,35,0|-2kdp00,33,36,1|-2hcig1,33,36,1|-2hcig0,32,35,0|-24qqc1,32,35,0|-24qqc0,33,36,1|-204541,33,36,1|-204540,32,35,0|-1nid01,32,35,0|-1nid00,33,36,1|-1hc7s1,33,36,1|-1hc7s0,32,35,0|-14qfo1,32,35,0|-14qfo0,33,36,1|-yifs1,33,36,1|-yifs0,32,35,0|89jcbz,32,35,0|89jcc0,33,36,1|8gdk7z,33,36,1|8gdk80,32,35,0|8rwgbz,32,35,0|8rwgc0,33,36,1|8xns7z,33,36,1|8xns80,32,35,0|9aodnz,32,35,0|9aodo0,33,36,1|9g2qvz,33,36,1|9g2qw0,32,35,0|9t1hnz,32,35,0|9t1ho0,33,36,1|9yfuvz,33,36,1|9yfuw0,32,35,0|abrkbz,32,35,0|abrkc0,33,36,1|ahvuvz,33,36,1|ahvuw0,32,35,0|dggyzz,32,35,0|dggz00,33,36,1|dml9jz,33,36,1|dml9k0,32,35,0|fj0azz,32,35,0|fj0b00,33,36,1|fqkg7z,33,36,1|fqkg80,32,35,0|g23cbz,32,35,0|g23cc0,33,36,1|g2t6vz,33,36,1|g2t6w0,32,35,0|gl6dnz,32,35,0|gl6do0,33,36,1|grnmvz,33,36,1|grnmw0,32,35,0","America/Managua|,0,89,0|-15r0tcs,19,90,0|-ijh6op,19,90,0|-ijh6oo,37,42,0|1qkbbz,37,42,0|1qkbc0,50,43,0|2ob1vz,50,43,0|2ob1w0,37,42,0|4t08nz,37,42,0|4t08o0,40,43,1|4y3hvz,40,43,1|4y3hw0,37,42,0|5bqbbz,37,42,0|5bqbc0,40,43,1|5gtkjz,40,43,1|5gtkk0,37,42,0|bhcefz,37,42,0|bhceg0,50,43,0|bv2gjz,50,43,0|bv2gk0,37,42,0|c05vbz,37,42,0|c05vc0,50,43,0|e3bcjz,50,43,0|e3bck0,37,42,0|iepvbz,37,42,0|iepvc0,40,43,1|inpv7z,40,43,1|inpv80,37,42,0|iyizjz,37,42,0|iyizk0,40,43,1|j6g0nz,40,43,1|j6g0o0,37,42,0","America/Manaus|,0,91,0|-t85gvw,35,38,0|-jyl7o1,35,38,0|-jyl7o0,32,35,1|-jpayc1,32,35,1|-jpayc0,35,38,0|-jfsa81,35,38,0|-jfsa80,32,35,1|-j6j101,32,35,1|-j6j100,35,38,0|-ahcvk1,35,38,0|-ahcvk0,32,35,1|-aad0w1,32,35,1|-aad0w0,35,38,0|-9yky81,35,38,0|-9yky80,32,35,1|-9scyc1,32,35,1|-9scyc0,35,38,0|-9ft0w1,35,38,0|-9ft0w0,32,35,1|-99j6c1,32,35,1|-99j6c0,35,38,0|-8wz8w1,35,38,0|-8wz8w0,32,35,1|-8scno1,32,35,1|-8scno0,35,38,0|-35xjk1,35,38,0|-35xjk0,32,35,1|-31nx01,32,35,1|-31nx00,35,38,0|-2kdm81,35,38,0|-2kdm80,32,35,1|-2hcfo1,32,35,1|-2hcfo0,35,38,0|-24qnk1,35,38,0|-24qnk0,32,35,1|-2042c1,32,35,1|-2042c0,35,38,0|-1nia81,35,38,0|-1nia80,32,35,1|-1hc501,32,35,1|-1hc500,35,38,0|-14qcw1,35,38,0|-14qcw0,32,35,1|-yid01,32,35,1|-yid00,35,38,0|89jf3z,35,38,0|89jf40,32,35,1|8gdmzz,32,35,1|8gdn00,35,38,0|8rwj3z,35,38,0|8rwj40,32,35,1|8xnuzz,32,35,1|8xnv00,35,38,0|9aogfz,35,38,0|9aogg0,32,35,1|9g2tnz,32,35,1|9g2to0,35,38,0|cf0wfz,35,38,0|cf0wg0,32,35,1|cli5nz,32,35,1|cli5o0,35,38,0","America/Martinique|,0,92,0|-15r0y0s,65,92,0|-umcvct,65,92,0|-umcvcs,24,38,0|5ct1rz,24,38,0|5ct1s0,42,35,1|5lt1nz,42,35,1|5lt1o0,24,38,0","America/Matamoros|,0,93,0|-p1u7c0,37,42,0|9iywvz,37,42,0|9iyww0,40,43,1|9trq3z,40,43,1|9trq40,37,42,0|dphfjz,37,42,0|dphfk0,40,43,1|dzxa3z,40,43,1|dzxa40,37,42,0|e87i7z,37,42,0|e87i80,40,43,1|eincrz,40,43,1|eincs0,37,42,0|eqxkvz,37,42,0|eqxkw0,40,43,1|f1dffz,40,43,1|f1dfg0,37,42,0|f9nnjz,37,42,0|f9nnk0,40,43,1|fkggrz,40,43,1|fkggs0,37,42,0|fsdq7z,37,42,0|fsdq80,40,43,1|g36jfz,40,43,1|g36jg0,37,42,0|gcwm7z,37,42,0|gcwm80,40,43,1|gkgrfz,40,43,1|gkgrg0,37,42,0|gu6u7z,37,42,0|gu6u80,40,43,1|h4morz,40,43,1|h4mos0,37,42,0|hcwwvz,37,42,0|hcwww0,40,43,1|hncrfz,40,43,1|hncrg0,37,42,0|hvmzjz,37,42,0|hvmzk0,40,43,1|i6fsrz,40,43,1|i6fss0,37,42,0|ied27z,37,42,0|ied280,40,43,1|ip5vfz,40,43,1|ip5vg0,37,42,0|ix34vz,37,42,0|ix34w0,40,43,1|j7vy3z,40,43,1|j7vy40,37,42,0|jft7jz,37,42,0|jft7k0,40,43,1|jqm0rz,40,43,1|jqm0s0,37,42,0|jyw8vz,37,42,0|jyw8w0,40,43,1|k9c3fz,40,43,1|k9c3g0,37,42,0|khmbjz,37,42,0|khmbk0,40,43,1|ks263z,40,43,1|ks2640,37,42,0|kz9i7z,37,42,0|kz9i80,40,43,1|lbi63z,40,43,1|lbi640,37,42,0|lhzkvz,37,42,0|lhzkw0,40,43,1|lu88rz,40,43,1|lu88s0,37,42,0|m0pnjz,37,42,0|m0pnk0,40,43,1|mcybfz,40,43,1|mcybg0,37,42,0|mjfq7z,37,42,0|mjfq80,40,43,1|mvoe3z,40,43,1|mvoe40,37,42,0|n25svz,37,42,0|n25sw0,40,43,1|neegrz,40,43,1|neegs0,37,42,0|nkvvjz,37,42,0|nkvvk0,40,43,1|nx4jfz,40,43,1|nx4jg0,37,42,0|o3ywvz,37,42,0|o3yww0,40,43,1|og7krz,40,43,1|og7ks0,37,42,0|omozjz,37,42,0|omozk0,40,43,1|oyxnfz,40,43,1|oyxng0,37,42,0|p5f27z,37,42,0|p5f280,40,43,1|phnq3z,40,43,1|phnq40,37,42,0|po54vz,37,42,0|po54w0,40,43,1|q0dsrz,40,43,1|q0dss0,37,42,0|q6v7jz,37,42,0|q6v7k0,40,43,1|qj3vfz,40,43,1|qj3vg0,37,42,0|qpy8vz,37,42,0|qpy8w0,40,43,1|r26wrz,40,43,1|r26ws0,37,42,0|r8objz,37,42,0|r8obk0,40,43,1|rkwzfz,40,43,1|rkwzg0,37,42,0|rree7z,37,42,0|rree80,40,43,1|s3n23z,40,43,1|s3n240,37,42,0|sa4gvz,37,42,0|sa4gw0,40,43,1|smd4rz,40,43,1|smd4s0,37,42,0|ssujjz,37,42,0|ssujk0,40,43,1|t537fz,40,43,1|t537g0,37,42,0|tbkm7z,37,42,0|tbkm80,40,43,1|tnta3z,40,43,1|tnta40,37,42,0|tunnjz,37,42,0|tunnk0,40,43,1|u6wbfz,40,43,1|u6wbg0,37,42,0|uddq7z,37,42,0|uddq80,40,43,1|upme3z,40,43,1|upme40,37,42,0|uw3svz,37,42,0|uw3sw0,40,43,1|v8cgrz,40,43,1|v8cgs0,37,42,0|vetvjz,37,42,0|vetvk0,40,43,1|vr2jfz,40,43,1|vr2jg0,37,42,0|vxjy7z,37,42,0|vxjy80,40,43,1|w9sm3z,40,43,1|w9sm40,37,42,0|wgmzjz,37,42,0|wgmzk0,40,43,1|wsvnfz,40,43,1|wsvng0,37,42,0|wzd27z,37,42,0|wzd280,40,43,1|xblq3z,40,43,1|xblq40,37,42,0|xi34vz,37,42,0|xi34w0,40,43,1|xubsrz,40,43,1|xubss0,37,42,0|y0t7jz,37,42,0|y0t7k0,40,43,1|yd1vfz,40,43,1|yd1vg0,37,42,0|yjja7z,37,42,0|yjja80,40,43,1|yvry3z,40,43,1|yvry40,37,42,0|z29cvz,37,42,0|z29cw0,40,43,1|zei0rz,40,43,1|zei0s0,37,42,0","America/Mazatlan|,0,94,0|-p1u4k0,36,41,0|-m7mko1,36,41,0|-m7mko0,37,42,0|-kf67c1,37,42,0|-kf67c0,36,41,0|-k6j3c1,36,41,0|-k6j3c0,37,42,0|-jypm01,37,42,0|-jypm00,36,41,0|-jpan81,36,41,0|-jpan80,37,42,0|-eg9601,37,42,0|-eg9600,36,41,0|-axv381,36,41,0|-axv380,38,33,0|m7z,38,33,0|m80,36,41,0|dphibz,36,41,0|dphic0,39,42,1|dzxcvz,39,42,1|dzxcw0,36,41,0|e87kzz,36,41,0|e87l00,39,42,1|einfjz,39,42,1|einfk0,36,41,0|eqxnnz,36,41,0|eqxno0,39,42,1|f1di7z,39,42,1|f1di80,36,41,0|f9nqbz,36,41,0|f9nqc0,39,42,1|fkgjjz,39,42,1|fkgjk0,36,41,0|fsdszz,36,41,0|fsdt00,39,42,1|g36m7z,39,42,1|g36m80,36,41,0|gcwozz,36,41,0|gcwp00,39,42,1|gkgu7z,39,42,1|gkgu80,36,41,0|gu6wzz,36,41,0|gu6x00,39,42,1|h4mrjz,39,42,1|h4mrk0,36,41,0|hcwznz,36,41,0|hcwzo0,39,42,1|hncu7z,39,42,1|hncu80,36,41,0|hvn2bz,36,41,0|hvn2c0,39,42,1|i6fvjz,39,42,1|i6fvk0,36,41,0|ied4zz,36,41,0|ied500,39,42,1|ip5y7z,39,42,1|ip5y80,36,41,0|ix37nz,36,41,0|ix37o0,39,42,1|j7w0vz,39,42,1|j7w0w0,36,41,0|jftabz,36,41,0|jftac0,39,42,1|jqm3jz,39,42,1|jqm3k0,36,41,0|jywbnz,36,41,0|jywbo0,39,42,1|k9c67z,39,42,1|k9c680,36,41,0|khmebz,36,41,0|khmec0,39,42,1|ks28vz,39,42,1|ks28w0,36,41,0|l0cgzz,36,41,0|l0ch00,39,42,1|lb5a7z,39,42,1|lb5a80,36,41,0|lj2jnz,36,41,0|lj2jo0,39,42,1|ltvcvz,39,42,1|ltvcw0,36,41,0|m1smbz,36,41,0|m1smc0,39,42,1|mclfjz,39,42,1|mclfk0,36,41,0|mkvnnz,36,41,0|mkvno0,39,42,1|mvbi7z,39,42,1|mvbi80,36,41,0|n3lqbz,36,41,0|n3lqc0,39,42,1|ne1kvz,39,42,1|ne1kw0,36,41,0|nmbszz,36,41,0|nmbt00,39,42,1|nwrnjz,39,42,1|nwrnk0,36,41,0|o51vnz,36,41,0|o51vo0,39,42,1|ofuovz,39,42,1|ofuow0,36,41,0|onrybz,36,41,0|onryc0,39,42,1|oykrjz,39,42,1|oykrk0,36,41,0|p6i0zz,36,41,0|p6i100,39,42,1|phau7z,39,42,1|phau80,36,41,0|ppl2bz,36,41,0|ppl2c0,39,42,1|q00wvz,39,42,1|q00ww0,36,41,0|q8b4zz,36,41,0|q8b500,39,42,1|qiqzjz,39,42,1|qiqzk0,36,41,0|qr17nz,36,41,0|qr17o0,39,42,1|r1u0vz,39,42,1|r1u0w0,36,41,0|r9rabz,36,41,0|r9rac0,39,42,1|rkk3jz,39,42,1|rkk3k0,36,41,0|rshczz,36,41,0|rshd00,39,42,1|s3a67z,39,42,1|s3a680,36,41,0|sbkebz,36,41,0|sbkec0,39,42,1|sm08vz,39,42,1|sm08w0,36,41,0|suagzz,36,41,0|suah00,39,42,1|t4qbjz,39,42,1|t4qbk0,36,41,0|td0jnz,36,41,0|td0jo0,39,42,1|tnge7z,39,42,1|tnge80,36,41,0|tvqmbz,36,41,0|tvqmc0,39,42,1|u6jfjz,39,42,1|u6jfk0,36,41,0|uegozz,36,41,0|uegp00,39,42,1|up9i7z,39,42,1|up9i80,36,41,0|ux6rnz,36,41,0|ux6ro0,39,42,1|v7zkvz,39,42,1|v7zkw0,36,41,0|vg9szz,36,41,0|vg9t00,39,42,1|vqpnjz,39,42,1|vqpnk0,36,41,0|vyzvnz,36,41,0|vyzvo0,39,42,1|w9fq7z,39,42,1|w9fq80,36,41,0|whpybz,36,41,0|whpyc0,39,42,1|wsirjz,39,42,1|wsirk0,36,41,0|x0g0zz,36,41,0|x0g100,39,42,1|xb8u7z,39,42,1|xb8u80,36,41,0|xj63nz,36,41,0|xj63o0,39,42,1|xtywvz,39,42,1|xtyww0,36,41,0|y1w6bz,36,41,0|y1w6c0,39,42,1|ycozjz,39,42,1|ycozk0,36,41,0|ykz7nz,36,41,0|ykz7o0,39,42,1|yvf27z,39,42,1|yvf280,36,41,0|z3pabz,36,41,0|z3pac0,39,42,1|ze54vz,39,42,1|ze54w0,36,41,0","America/Merida|,0,95,0|-p1u7c0,37,42,0|690gnz,37,42,0|690go0,50,43,0|6qpf7z,50,43,0|6qpf80,37,42,0|dphfjz,37,42,0|dphfk0,40,43,1|dzxa3z,40,43,1|dzxa40,37,42,0|e87i7z,37,42,0|e87i80,40,43,1|eincrz,40,43,1|eincs0,37,42,0|eqxkvz,37,42,0|eqxkw0,40,43,1|f1dffz,40,43,1|f1dfg0,37,42,0|f9nnjz,37,42,0|f9nnk0,40,43,1|fkggrz,40,43,1|fkggs0,37,42,0|fsdq7z,37,42,0|fsdq80,40,43,1|g36jfz,40,43,1|g36jg0,37,42,0|gcwm7z,37,42,0|gcwm80,40,43,1|gkgrfz,40,43,1|gkgrg0,37,42,0|gu6u7z,37,42,0|gu6u80,40,43,1|h4morz,40,43,1|h4mos0,37,42,0|hcwwvz,37,42,0|hcwww0,40,43,1|hncrfz,40,43,1|hncrg0,37,42,0|hvmzjz,37,42,0|hvmzk0,40,43,1|i6fsrz,40,43,1|i6fss0,37,42,0|ied27z,37,42,0|ied280,40,43,1|ip5vfz,40,43,1|ip5vg0,37,42,0|ix34vz,37,42,0|ix34w0,40,43,1|j7vy3z,40,43,1|j7vy40,37,42,0|jft7jz,37,42,0|jft7k0,40,43,1|jqm0rz,40,43,1|jqm0s0,37,42,0|jyw8vz,37,42,0|jyw8w0,40,43,1|k9c3fz,40,43,1|k9c3g0,37,42,0|khmbjz,37,42,0|khmbk0,40,43,1|ks263z,40,43,1|ks2640,37,42,0|l0ce7z,37,42,0|l0ce80,40,43,1|lb57fz,40,43,1|lb57g0,37,42,0|lj2gvz,37,42,0|lj2gw0,40,43,1|ltva3z,40,43,1|ltva40,37,42,0|m1sjjz,37,42,0|m1sjk0,40,43,1|mclcrz,40,43,1|mclcs0,37,42,0|mkvkvz,37,42,0|mkvkw0,40,43,1|mvbffz,40,43,1|mvbfg0,37,42,0|n3lnjz,37,42,0|n3lnk0,40,43,1|ne1i3z,40,43,1|ne1i40,37,42,0|nmbq7z,37,42,0|nmbq80,40,43,1|nwrkrz,40,43,1|nwrks0,37,42,0|o51svz,37,42,0|o51sw0,40,43,1|ofum3z,40,43,1|ofum40,37,42,0|onrvjz,37,42,0|onrvk0,40,43,1|oykorz,40,43,1|oykos0,37,42,0|p6hy7z,37,42,0|p6hy80,40,43,1|pharfz,40,43,1|pharg0,37,42,0|ppkzjz,37,42,0|ppkzk0,40,43,1|q00u3z,40,43,1|q00u40,37,42,0|q8b27z,37,42,0|q8b280,40,43,1|qiqwrz,40,43,1|qiqws0,37,42,0|qr14vz,37,42,0|qr14w0,40,43,1|r1ty3z,40,43,1|r1ty40,37,42,0|r9r7jz,37,42,0|r9r7k0,40,43,1|rkk0rz,40,43,1|rkk0s0,37,42,0|rsha7z,37,42,0|rsha80,40,43,1|s3a3fz,40,43,1|s3a3g0,37,42,0|sbkbjz,37,42,0|sbkbk0,40,43,1|sm063z,40,43,1|sm0640,37,42,0|suae7z,37,42,0|suae80,40,43,1|t4q8rz,40,43,1|t4q8s0,37,42,0|td0gvz,37,42,0|td0gw0,40,43,1|tngbfz,40,43,1|tngbg0,37,42,0|tvqjjz,37,42,0|tvqjk0,40,43,1|u6jcrz,40,43,1|u6jcs0,37,42,0|uegm7z,37,42,0|uegm80,40,43,1|up9ffz,40,43,1|up9fg0,37,42,0|ux6ovz,37,42,0|ux6ow0,40,43,1|v7zi3z,40,43,1|v7zi40,37,42,0|vg9q7z,37,42,0|vg9q80,40,43,1|vqpkrz,40,43,1|vqpks0,37,42,0|vyzsvz,37,42,0|vyzsw0,40,43,1|w9fnfz,40,43,1|w9fng0,37,42,0|whpvjz,37,42,0|whpvk0,40,43,1|wsiorz,40,43,1|wsios0,37,42,0|x0fy7z,37,42,0|x0fy80,40,43,1|xb8rfz,40,43,1|xb8rg0,37,42,0|xj60vz,37,42,0|xj60w0,40,43,1|xtyu3z,40,43,1|xtyu40,37,42,0|y1w3jz,37,42,0|y1w3k0,40,43,1|ycowrz,40,43,1|ycows0,37,42,0|ykz4vz,37,42,0|ykz4w0,40,43,1|yvezfz,40,43,1|yvezg0,37,42,0|z3p7jz,37,42,0|z3p7k0,40,43,1|ze523z,40,43,1|ze5240,37,42,0","America/Mexico_City|,0,96,0|-p1u4k0,36,41,0|-m7mko1,36,41,0|-m7mko0,37,42,0|-kf67c1,37,42,0|-kf67c0,36,41,0|-k6j3c1,36,41,0|-k6j3c0,37,42,0|-jypm01,37,42,0|-jypm00,36,41,0|-jpan81,36,41,0|-jpan80,37,42,0|-g4n8o1,37,42,0|-g4n8o0,40,43,1|-fxg241,40,43,1|-fxg240,37,42,0|-f60y01,37,42,0|-f60y00,40,43,1|-f07rg1,40,43,1|-f07rg0,37,42,0|-dlc7c1,37,42,0|-dlc7c0,44,43,1|-deaks1,44,43,1|-deaks0,37,42,0|-adljc1,37,42,0|-adljc0,40,43,1|-a4yi41,40,43,1|-a4yi40,37,42,0|dphfjz,37,42,0|dphfk0,40,43,1|dzxa3z,40,43,1|dzxa40,37,42,0|e87i7z,37,42,0|e87i80,40,43,1|eincrz,40,43,1|eincs0,37,42,0|eqxkvz,37,42,0|eqxkw0,40,43,1|f1dffz,40,43,1|f1dfg0,37,42,0|f9nnjz,37,42,0|f9nnk0,40,43,1|fkggrz,40,43,1|fkggs0,37,42,0|fsdq7z,37,42,0|fsdq80,40,43,1|g36jfz,40,43,1|g36jg0,37,42,0|gcwm7z,37,42,0|gcwm80,40,43,1|gkgrfz,40,43,1|gkgrg0,37,42,0|gu6u7z,37,42,0|gu6u80,40,43,1|h4morz,40,43,1|h4mos0,37,42,0|hcwwvz,37,42,0|hcwww0,40,43,1|hncrfz,40,43,1|hncrg0,37,42,0|hvmzjz,37,42,0|hvmzk0,40,43,1|i6fsrz,40,43,1|i6fss0,37,42,0|ied27z,37,42,0|ied280,40,43,1|ip5vfz,40,43,1|ip5vg0,37,42,0|ix34vz,37,42,0|ix34w0,40,43,1|j7vy3z,40,43,1|j7vy40,37,42,0|jft7jz,37,42,0|jft7k0,40,43,1|jqm0rz,40,43,1|jqm0s0,37,42,0|jyw8vz,37,42,0|jyw8w0,40,43,1|k9c3fz,40,43,1|k9c3g0,37,42,0|khmbjz,37,42,0|khmbk0,40,43,1|ks263z,40,43,1|ks2640,37,42,0|l0ce7z,37,42,0|l0ce80,40,43,1|lb57fz,40,43,1|lb57g0,37,42,0|lj2gvz,37,42,0|lj2gw0,40,43,1|ltva3z,40,43,1|ltva40,37,42,0|m1sjjz,37,42,0|m1sjk0,40,43,1|mclcrz,40,43,1|mclcs0,37,42,0|mkvkvz,37,42,0|mkvkw0,40,43,1|mvbffz,40,43,1|mvbfg0,37,42,0|n3lnjz,37,42,0|n3lnk0,40,43,1|ne1i3z,40,43,1|ne1i40,37,42,0|nmbq7z,37,42,0|nmbq80,40,43,1|nwrkrz,40,43,1|nwrks0,37,42,0|o51svz,37,42,0|o51sw0,40,43,1|ofum3z,40,43,1|ofum40,37,42,0|onrvjz,37,42,0|onrvk0,40,43,1|oykorz,40,43,1|oykos0,37,42,0|p6hy7z,37,42,0|p6hy80,40,43,1|pharfz,40,43,1|pharg0,37,42,0|ppkzjz,37,42,0|ppkzk0,40,43,1|q00u3z,40,43,1|q00u40,37,42,0|q8b27z,37,42,0|q8b280,40,43,1|qiqwrz,40,43,1|qiqws0,37,42,0|qr14vz,37,42,0|qr14w0,40,43,1|r1ty3z,40,43,1|r1ty40,37,42,0|r9r7jz,37,42,0|r9r7k0,40,43,1|rkk0rz,40,43,1|rkk0s0,37,42,0|rsha7z,37,42,0|rsha80,40,43,1|s3a3fz,40,43,1|s3a3g0,37,42,0|sbkbjz,37,42,0|sbkbk0,40,43,1|sm063z,40,43,1|sm0640,37,42,0|suae7z,37,42,0|suae80,40,43,1|t4q8rz,40,43,1|t4q8s0,37,42,0|td0gvz,37,42,0|td0gw0,40,43,1|tngbfz,40,43,1|tngbg0,37,42,0|tvqjjz,37,42,0|tvqjk0,40,43,1|u6jcrz,40,43,1|u6jcs0,37,42,0|uegm7z,37,42,0|uegm80,40,43,1|up9ffz,40,43,1|up9fg0,37,42,0|ux6ovz,37,42,0|ux6ow0,40,43,1|v7zi3z,40,43,1|v7zi40,37,42,0|vg9q7z,37,42,0|vg9q80,40,43,1|vqpkrz,40,43,1|vqpks0,37,42,0|vyzsvz,37,42,0|vyzsw0,40,43,1|w9fnfz,40,43,1|w9fng0,37,42,0|whpvjz,37,42,0|whpvk0,40,43,1|wsiorz,40,43,1|wsios0,37,42,0|x0fy7z,37,42,0|x0fy80,40,43,1|xb8rfz,40,43,1|xb8rg0,37,42,0|xj60vz,37,42,0|xj60w0,40,43,1|xtyu3z,40,43,1|xtyu40,37,42,0|y1w3jz,37,42,0|y1w3k0,40,43,1|ycowrz,40,43,1|ycows0,37,42,0|ykz4vz,37,42,0|ykz4w0,40,43,1|yvezfz,40,43,1|yvezg0,37,42,0|z3p7jz,37,42,0|z3p7k0,40,43,1|ze523z,40,43,1|ze5240,37,42,0","America/Moncton|,0,97,0|-18wys04,50,43,0|-z94i41,50,43,0|-z94i40,24,38,0|-qzp0o1,24,38,0|-qzp0o0,42,35,1|-qpm4s1,42,35,1|-qpm4s0,24,38,0|-j2ve41,24,38,0|-j2ve40,42,35,1|-iy6y81,42,35,1|-iy6y80,24,38,0|-ik5bg1,24,38,0|-ik5bg0,42,35,1|-ifgvk1,42,35,1|-ifgvk0,24,38,0|-i1f8s1,24,38,0|-i1f8s0,42,35,1|-hwqsw1,42,35,1|-hwqsw0,24,38,0|-hip641,24,38,0|-hip640,42,35,1|-he0q81,42,35,1|-he0q80,24,38,0|-gzz3g1,24,38,0|-gzz3g0,42,35,1|-gvank1,42,35,1|-gvank0,24,38,0|-gh90s1,24,38,0|-gh90s0,42,35,1|-gckkw1,42,35,1|-gckkw0,24,38,0|-fyxrg1,24,38,0|-fyxrg0,42,35,1|-fstgw1,42,35,1|-fstgw0,24,38,0|-fgiss1,24,38,0|-fgiss0,42,35,1|-fa3e81,42,35,1|-fa3e80,24,38,0|-eying1,24,38,0|-eying0,42,35,1|-er0cw1,42,35,1|-er0cw0,24,38,0|-ek27c1,24,38,0|-ek27c0,25,35,1|-cq2tg1,25,35,1|-cq2tg0,26,35,1|-cnp641,26,35,1|-cnp640,24,38,0|-ccw7c1,24,38,0|-ccw7c0,42,35,1|-c4z3g1,42,35,1|-c4z3g0,24,38,0|-bu64o1,24,38,0|-bu64o0,42,35,1|-bm90s1,42,35,1|-bm90s0,24,38,0|-bbg201,24,38,0|-bbg200,42,35,1|-b3iy41,42,35,1|-b3iy40,24,38,0|-aspzc1,24,38,0|-aspzc0,42,35,1|-aksvg1,42,35,1|-aksvg0,24,38,0|-a9my01,24,38,0|-a9my00,42,35,1|-a22ss1,42,35,1|-a22ss0,24,38,0|-9qwvc1,24,38,0|-9qwvc0,42,35,1|-9izrg1,42,35,1|-9izrg0,24,38,0|-986so1,24,38,0|-986so0,42,35,1|-909os1,42,35,1|-909os0,24,38,0|-8pgq01,24,38,0|-8pgq00,42,35,1|-8hjm41,42,35,1|-8hjm40,24,38,0|-86qnc1,24,38,0|-86qnc0,42,35,1|-7ytjg1,42,35,1|-7ytjg0,24,38,0|-7o0ko1,24,38,0|-7o0ko0,42,35,1|-7g3gs1,42,35,1|-7g3gs0,24,38,0|-74xjc1,24,38,0|-74xjc0,42,35,1|-6x0fg1,42,35,1|-6x0fg0,24,38,0|-6m7go1,24,38,0|-6m7go0,42,35,1|-6cui41,42,35,1|-6cui40,24,38,0|-63he01,24,38,0|-63he00,42,35,1|-5u4fg1,42,35,1|-5u4fg0,24,38,0|-5krbc1,24,38,0|-5krbc0,42,35,1|-5becs1,42,35,1|-5becs0,24,38,0|-5218o1,24,38,0|-5218o0,42,35,1|-4sbbg1,42,35,1|-4sbbg0,24,38,0|-4iy7c1,24,38,0|-4iy7c0,42,35,1|-49l8s1,42,35,1|-49l8s0,24,38,0|-4084o1,24,38,0|-4084o0,42,35,1|-3qv641,42,35,1|-3qv640,24,38,0|-3hi201,24,38,0|-3hi200,42,35,1|-3853g1,42,35,1|-3853g0,24,38,0|-2yrzc1,24,38,0|-2yrzc0,42,35,1|-2pf0s1,42,35,1|-2pf0s0,24,38,0|-2g1wo1,24,38,0|-2g1wo0,42,35,1|-26bzg1,42,35,1|-26bzg0,24,38,0|-1xbu01,24,38,0|-1xbu00,42,35,1|-1nlws1,42,35,1|-1nlws0,24,38,0|-1e8so1,24,38,0|-1e8so0,42,35,1|-14vu41,42,35,1|-14vu40,24,38,0|-viq01,24,38,0|-viq00,42,35,1|-m5rg1,42,35,1|-m5rg0,24,38,0|-csnc1,24,38,0|-csnc0,42,35,1|-3fos1,42,35,1|-3fos0,24,38,0|5xfbz,24,38,0|5xfc0,42,35,1|fadvz,42,35,1|fadw0,24,38,0|onhzz,24,38,0|oni00,42,35,1|ydf7z,42,35,1|ydf80,24,38,0|17qjbz,24,38,0|17qjc0,42,35,1|1h3hvz,42,35,1|1h3hw0,24,38,0|296onz,24,38,0|296oo0,42,35,1|2ijn7z,42,35,1|2ijn80,24,38,0|2rwrbz,24,38,0|2rwrc0,42,35,1|319pvz,42,35,1|319pw0,24,38,0|3amtzz,24,38,0|3amu00,42,35,1|3kcr7z,42,35,1|3kcr80,24,38,0|3tcwnz,24,38,0|3tcwo0,42,35,1|432tvz,42,35,1|432tw0,24,38,0|4cfxzz,24,38,0|4cfy00,42,35,1|4lswjz,42,35,1|4lswk0,24,38,0|4v60nz,24,38,0|4v60o0,42,35,1|54iz7z,42,35,1|54iz80,24,38,0|5dw3bz,24,38,0|5dw3c0,42,35,1|5n91vz,42,35,1|5n91w0,24,38,0|5wm5zz,24,38,0|5wm600,42,35,1|65z4jz,42,35,1|65z4k0,24,38,0|6fc8nz,24,38,0|6fc8o0,42,35,1|6p25vz,42,35,1|6p25w0,24,38,0|6y2bbz,24,38,0|6y2bc0,42,35,1|77s8jz,42,35,1|77s8k0,24,38,0|7h5cnz,24,38,0|7h5co0,42,35,1|7qib7z,42,35,1|7qib80,24,38,0|7zvfbz,24,38,0|7zvfc0,42,35,1|898dvz,42,35,1|898dw0,24,38,0|8ilhzz,24,38,0|8ili00,42,35,1|8rygjz,42,35,1|8rygk0,24,38,0|908onz,24,38,0|908oo0,42,35,1|9aoj7z,42,35,1|9aoj80,24,38,0|9iyrbz,24,38,0|9iyrc0,42,35,1|9trkjz,42,35,1|9trkk0,24,38,0|a1otzz,24,38,0|a1ou00,42,35,1|achn7z,42,35,1|achn80,24,38,0|akewnz,24,38,0|akewo0,42,35,1|av7pvz,42,35,1|av7pw0,24,38,0|b3hxzz,24,38,0|b3hy00,42,35,1|bdxsjz,42,35,1|bdxsk0,24,38,0|bm80nz,24,38,0|bm80o0,42,35,1|bwnv7z,42,35,1|bwnv80,24,38,0|c4xxtn,24,38,0|c4xxto,42,35,1|cfqr1n,42,35,1|cfqr1o,24,38,0|cno0hn,24,38,0|cno0ho,42,35,1|cygtpn,42,35,1|cygtpo,24,38,0|d6e35n,24,38,0|d6e35o,42,35,1|dh6wdn,42,35,1|dh6wdo,24,38,0|dph4hn,24,38,0|dph4ho,42,35,1|dzwz1n,42,35,1|dzwz1o,24,38,0|e8775n,24,38,0|e8775o,42,35,1|ein1pn,42,35,1|ein1po,24,38,0|eqx9tn,24,38,0|eqx9to,42,35,1|f1d4dn,42,35,1|f1d4do,24,38,0|f9nchn,24,38,0|f9ncho,42,35,1|fkg5pn,42,35,1|fkg5po,24,38,0|fsdf5n,24,38,0|fsdf5o,42,35,1|g368dn,42,35,1|g368do,24,38,0|gb3htn,24,38,0|gb3hto,42,35,1|glwb1n,42,35,1|glwb1o,24,38,0|gu6j5n,24,38,0|gu6j5o,42,35,1|h4mdpn,42,35,1|h4mdpo,24,38,0|hcwltn,24,38,0|hcwlto,42,35,1|hncgdn,42,35,1|hncgdo,24,38,0|hvmohn,24,38,0|hvmoho,42,35,1|i6fhpn,42,35,1|i6fhpo,24,38,0|iecr5n,24,38,0|iecr5o,42,35,1|ip5kdn,42,35,1|ip5kdo,24,38,0|ix2ttn,24,38,0|ix2tto,42,35,1|j7vn1n,42,35,1|j7vn1o,24,38,0|jeq5zz,24,38,0|jeq600,42,35,1|jqytvz,42,35,1|jqytw0,24,38,0|jxg8nz,24,38,0|jxg8o0,42,35,1|k9owjz,42,35,1|k9owk0,24,38,0|kg6bbz,24,38,0|kg6bc0,42,35,1|ksez7z,42,35,1|ksez80,24,38,0|kz9cnz,24,38,0|kz9co0,42,35,1|lbi0jz,42,35,1|lbi0k0,24,38,0|lhzfbz,24,38,0|lhzfc0,42,35,1|lu837z,42,35,1|lu8380,24,38,0|m0phzz,24,38,0|m0pi00,42,35,1|mcy5vz,42,35,1|mcy5w0,24,38,0|mjfknz,24,38,0|mjfko0,42,35,1|mvo8jz,42,35,1|mvo8k0,24,38,0|n25nbz,24,38,0|n25nc0,42,35,1|neeb7z,42,35,1|neeb80,24,38,0|nkvpzz,24,38,0|nkvq00,42,35,1|nx4dvz,42,35,1|nx4dw0,24,38,0|o3yrbz,24,38,0|o3yrc0,42,35,1|og7f7z,42,35,1|og7f80,24,38,0|omotzz,24,38,0|omou00,42,35,1|oyxhvz,42,35,1|oyxhw0,24,38,0|p5ewnz,24,38,0|p5ewo0,42,35,1|phnkjz,42,35,1|phnkk0,24,38,0|po4zbz,24,38,0|po4zc0,42,35,1|q0dn7z,42,35,1|q0dn80,24,38,0|q6v1zz,24,38,0|q6v200,42,35,1|qj3pvz,42,35,1|qj3pw0,24,38,0|qpy3bz,24,38,0|qpy3c0,42,35,1|r26r7z,42,35,1|r26r80,24,38,0|r8o5zz,24,38,0|r8o600,42,35,1|rkwtvz,42,35,1|rkwtw0,24,38,0|rre8nz,24,38,0|rre8o0,42,35,1|s3mwjz,42,35,1|s3mwk0,24,38,0|sa4bbz,24,38,0|sa4bc0,42,35,1|smcz7z,42,35,1|smcz80,24,38,0|ssudzz,24,38,0|ssue00,42,35,1|t531vz,42,35,1|t531w0,24,38,0|tbkgnz,24,38,0|tbkgo0,42,35,1|tnt4jz,42,35,1|tnt4k0,24,38,0|tunhzz,24,38,0|tuni00,42,35,1|u6w5vz,42,35,1|u6w5w0,24,38,0|uddknz,24,38,0|uddko0,42,35,1|upm8jz,42,35,1|upm8k0,24,38,0|uw3nbz,24,38,0|uw3nc0,42,35,1|v8cb7z,42,35,1|v8cb80,24,38,0|vetpzz,24,38,0|vetq00,42,35,1|vr2dvz,42,35,1|vr2dw0,24,38,0|vxjsnz,24,38,0|vxjso0,42,35,1|w9sgjz,42,35,1|w9sgk0,24,38,0|wgmtzz,24,38,0|wgmu00,42,35,1|wsvhvz,42,35,1|wsvhw0,24,38,0|wzcwnz,24,38,0|wzcwo0,42,35,1|xblkjz,42,35,1|xblkk0,24,38,0|xi2zbz,24,38,0|xi2zc0,42,35,1|xubn7z,42,35,1|xubn80,24,38,0|y0t1zz,24,38,0|y0t200,42,35,1|yd1pvz,42,35,1|yd1pw0,24,38,0|yjj4nz,24,38,0|yjj4o0,42,35,1|yvrsjz,42,35,1|yvrsk0,24,38,0|z297bz,24,38,0|z297c0,42,35,1|zehv7z,42,35,1|zehv80,24,38,0","America/Monterrey|,0,98,0|-p1u7c0,37,42,0|9iywvz,37,42,0|9iyww0,40,43,1|9trq3z,40,43,1|9trq40,37,42,0|dphfjz,37,42,0|dphfk0,40,43,1|dzxa3z,40,43,1|dzxa40,37,42,0|e87i7z,37,42,0|e87i80,40,43,1|eincrz,40,43,1|eincs0,37,42,0|eqxkvz,37,42,0|eqxkw0,40,43,1|f1dffz,40,43,1|f1dfg0,37,42,0|f9nnjz,37,42,0|f9nnk0,40,43,1|fkggrz,40,43,1|fkggs0,37,42,0|fsdq7z,37,42,0|fsdq80,40,43,1|g36jfz,40,43,1|g36jg0,37,42,0|gcwm7z,37,42,0|gcwm80,40,43,1|gkgrfz,40,43,1|gkgrg0,37,42,0|gu6u7z,37,42,0|gu6u80,40,43,1|h4morz,40,43,1|h4mos0,37,42,0|hcwwvz,37,42,0|hcwww0,40,43,1|hncrfz,40,43,1|hncrg0,37,42,0|hvmzjz,37,42,0|hvmzk0,40,43,1|i6fsrz,40,43,1|i6fss0,37,42,0|ied27z,37,42,0|ied280,40,43,1|ip5vfz,40,43,1|ip5vg0,37,42,0|ix34vz,37,42,0|ix34w0,40,43,1|j7vy3z,40,43,1|j7vy40,37,42,0|jft7jz,37,42,0|jft7k0,40,43,1|jqm0rz,40,43,1|jqm0s0,37,42,0|jyw8vz,37,42,0|jyw8w0,40,43,1|k9c3fz,40,43,1|k9c3g0,37,42,0|khmbjz,37,42,0|khmbk0,40,43,1|ks263z,40,43,1|ks2640,37,42,0|l0ce7z,37,42,0|l0ce80,40,43,1|lb57fz,40,43,1|lb57g0,37,42,0|lj2gvz,37,42,0|lj2gw0,40,43,1|ltva3z,40,43,1|ltva40,37,42,0|m1sjjz,37,42,0|m1sjk0,40,43,1|mclcrz,40,43,1|mclcs0,37,42,0|mkvkvz,37,42,0|mkvkw0,40,43,1|mvbffz,40,43,1|mvbfg0,37,42,0|n3lnjz,37,42,0|n3lnk0,40,43,1|ne1i3z,40,43,1|ne1i40,37,42,0|nmbq7z,37,42,0|nmbq80,40,43,1|nwrkrz,40,43,1|nwrks0,37,42,0|o51svz,37,42,0|o51sw0,40,43,1|ofum3z,40,43,1|ofum40,37,42,0|onrvjz,37,42,0|onrvk0,40,43,1|oykorz,40,43,1|oykos0,37,42,0|p6hy7z,37,42,0|p6hy80,40,43,1|pharfz,40,43,1|pharg0,37,42,0|ppkzjz,37,42,0|ppkzk0,40,43,1|q00u3z,40,43,1|q00u40,37,42,0|q8b27z,37,42,0|q8b280,40,43,1|qiqwrz,40,43,1|qiqws0,37,42,0|qr14vz,37,42,0|qr14w0,40,43,1|r1ty3z,40,43,1|r1ty40,37,42,0|r9r7jz,37,42,0|r9r7k0,40,43,1|rkk0rz,40,43,1|rkk0s0,37,42,0|rsha7z,37,42,0|rsha80,40,43,1|s3a3fz,40,43,1|s3a3g0,37,42,0|sbkbjz,37,42,0|sbkbk0,40,43,1|sm063z,40,43,1|sm0640,37,42,0|suae7z,37,42,0|suae80,40,43,1|t4q8rz,40,43,1|t4q8s0,37,42,0|td0gvz,37,42,0|td0gw0,40,43,1|tngbfz,40,43,1|tngbg0,37,42,0|tvqjjz,37,42,0|tvqjk0,40,43,1|u6jcrz,40,43,1|u6jcs0,37,42,0|uegm7z,37,42,0|uegm80,40,43,1|up9ffz,40,43,1|up9fg0,37,42,0|ux6ovz,37,42,0|ux6ow0,40,43,1|v7zi3z,40,43,1|v7zi40,37,42,0|vg9q7z,37,42,0|vg9q80,40,43,1|vqpkrz,40,43,1|vqpks0,37,42,0|vyzsvz,37,42,0|vyzsw0,40,43,1|w9fnfz,40,43,1|w9fng0,37,42,0|whpvjz,37,42,0|whpvk0,40,43,1|wsiorz,40,43,1|wsios0,37,42,0|x0fy7z,37,42,0|x0fy80,40,43,1|xb8rfz,40,43,1|xb8rg0,37,42,0|xj60vz,37,42,0|xj60w0,40,43,1|xtyu3z,40,43,1|xtyu40,37,42,0|y1w3jz,37,42,0|y1w3k0,40,43,1|ycowrz,40,43,1|ycows0,37,42,0|ykz4vz,37,42,0|ykz4w0,40,43,1|yvezfz,40,43,1|yvezg0,37,42,0|z3p7jz,37,42,0|z3p7k0,40,43,1|ze523z,40,43,1|ze5240,37,42,0","America/Montevideo|,0,99,0|-w4mll9,19,99,0|-px809a,19,99,0|-px8099,35,38,0|-o50vk1,35,38,0|-o50vk0,32,35,1|-nvm2c1,32,35,1|-nvm2c0,66,100,0|-nm74y1,66,100,0|-nm74y0,32,35,1|-ncu501,32,35,1|-ncu500,66,100,0|-n3f7m1,66,100,0|-n3f7m0,32,35,1|-mu27o1,32,35,1|-mu27o0,66,100,0|-ivo8y1,66,100,0|-ivo8y0,32,35,1|-inr3o1,32,35,1|-inr3o0,66,100,0|-icy6a1,66,100,0|-icy6a0,32,35,1|-i51101,32,35,1|-i51100,66,100,0|-hu83m1,66,100,0|-hu83m0,32,35,1|-hmayc1,32,35,1|-hmayc0,66,100,0|-hbi0y1,66,100,0|-hbi0y0,32,35,1|-h3kvo1,32,35,1|-h3kvo0,66,100,0|-gsezm1,66,100,0|-gsezm0,32,35,1|-gkut01,32,35,1|-gkut00,66,100,0|-g9owy1,66,100,0|-g9owy0,32,35,1|-g24qc1,32,35,1|-g24qc0,66,100,0|-fseoy1,66,100,0|-fseoy0,32,35,1|-fj1p01,32,35,1|-fj1p00,66,100,0|-f88rm1,66,100,0|-f88rm0,32,35,1|-f0bmc1,32,35,1|-f0bmc0,66,100,0|-etxya1,66,100,0|-etxya0,32,35,1|-e482c1,32,35,1|-e482c0,67,101,1|-dzlfq1,67,101,1|-dzlfq0,32,35,0|-5jbp01,32,35,0|-5jbp00,67,101,1|-5abnq1,67,101,1|-5abnq0,32,35,0|-572yc1,32,35,0|-572yc0,33,36,1|-54kag1,33,36,1|-54kag0,32,35,0|-2h5101,32,35,0|-2h5100,33,36,1|-285141,33,36,1|-285140,32,35,0|-u1901,32,35,0|-u1900,67,101,1|-kd521,67,101,1|-kd520,32,35,0|5vcbz,32,35,0|5vcc0,33,36,1|8fuvz,33,36,1|8fuw0,32,35,0|17dcbz,32,35,0|17dcc0,33,36,1|1botjz,33,36,1|1botk0,32,35,0|23s0bz,32,35,0|23s0c0,68,102,1|26nlhz,68,102,1|26nli0,67,101,1|2fnqxz,67,101,1|2fnqy0,32,35,0|2lf6zz,32,35,0|2lf700,33,36,1|2qgljz,33,36,1|2qglk0,32,35,0|3mvcbz,32,35,0|3mvcc0,33,36,1|3qtuvz,33,36,1|3qtuw0,32,35,0|44vhnz,32,35,0|44vho0,33,36,1|49jxjz,33,36,1|49jxk0,32,35,0|4obhnz,32,35,0|4obho0,33,36,1|4sa07z,33,36,1|4sa080,32,35,0|4v5sbz,32,35,0|4v5sc0,33,36,1|5bq07z,33,36,1|5bq080,32,35,0|9d8yzz,32,35,0|9d8z00,33,36,1|9h5mvz,33,36,1|9h5mw0,32,35,0|9vx6zz,32,35,0|9vx700,33,36,1|a08o7z,33,36,1|a08o80,32,35,0|achhnz,32,35,0|achho0,33,36,1|ails7z,33,36,1|ails80,32,35,0|auulnz,32,35,0|auulo0,33,36,1|b1otjz,33,36,1|b1otk0,32,35,0|bdxmzz,32,35,0|bdxn00,33,36,1|bkew7z,33,36,1|bkew80,32,35,0|bwaqzz,32,35,0|bwar00,33,36,1|c34yvz,33,36,1|c34yw0,32,35,0|i49pnz,32,35,0|i49po0,33,36,1|idzsfz,33,36,1|idzsg0,32,35,0|io2tvz,32,35,0|io2tw0,33,36,1|ivzxrz,33,36,1|ivzxs0,32,35,0|j6fxvz,32,35,0|j6fxw0,33,36,1|jeq0fz,33,36,1|jeq0g0,32,35,0|jpiz7z,32,35,0|jpiz80,33,36,1|jxg33z,33,36,1|jxg340,32,35,0|k891vz,32,35,0|k891w0,33,36,1|kg65rz,33,36,1|kg65s0,32,35,0|kqz4jz,32,35,0|kqz4k0,33,36,1|kz973z,33,36,1|kz9740,32,35,0|l9p77z,32,35,0|l9p780,33,36,1|lhz9rz,33,36,1|lhz9s0,32,35,0|lsf9vz,32,35,0|lsf9w0,33,36,1|m0pcfz,33,36,1|m0pcg0,32,35,0|mbib7z,32,35,0|mbib80,33,36,1|mjff3z,33,36,1|mjff40,32,35,0|mu8dvz,32,35,0|mu8dw0,33,36,1|n25hrz,33,36,1|n25hs0,32,35,0|ncygjz,32,35,0|ncygk0,33,36,1|nkvkfz,33,36,1|nkvkg0,32,35,0","America/Nassau|,0,103,0|-u6m4c6,50,43,0|-efufg1,50,43,0|-efufg0,57,38,1|-d1oy81,57,38,1|-d1oy80,50,43,0|-d03gs1,50,43,0|-d03gs0,57,38,1|-cq2tg1,57,38,1|-cq2tg0,58,38,1|-cmrww1,58,38,1|-cmrww0,50,43,0|-2yrwk1,50,43,0|-2yrwk0,51,38,1|-2pey01,51,38,1|-2pey00,50,43,0|-2g1tw1,50,43,0|-2g1tw0,51,38,1|-26bwo1,51,38,1|-26bwo0,50,43,0|-1xbr81,50,43,0|-1xbr80,51,38,1|-1nlu01,51,38,1|-1nlu00,50,43,0|-1e8pw1,50,43,0|-1e8pw0,51,38,1|-14vrc1,51,38,1|-14vrc0,50,43,0|-vin81,50,43,0|-vin80,51,38,1|-m5oo1,51,38,1|-m5oo0,50,43,0|-cskk1,50,43,0|-cskk0,51,38,1|-3fm01,51,38,1|-3fm00,50,43,0|5xi3z,50,43,0|5xi40,51,38,1|fagnz,51,38,1|fago0,50,43,0|onkrz,50,43,0|onks0,51,38,1|ydhzz,51,38,1|ydi00,50,43,0|17qm3z,50,43,0|17qm40,51,38,1|1h3knz,51,38,1|1h3ko0,50,43,0|1qgorz,50,43,0|1qgos0,51,38,1|1ztnbz,51,38,1|1ztnc0,50,43,0|296rfz,50,43,0|296rg0,51,38,1|2ijpzz,51,38,1|2ijq00,50,43,0|2rwu3z,50,43,0|2rwu40,51,38,1|319snz,51,38,1|319so0,50,43,0|3amwrz,50,43,0|3amws0,51,38,1|3kctzz,51,38,1|3kcu00,50,43,0|3tczfz,50,43,0|3tczg0,51,38,1|432wnz,51,38,1|432wo0,50,43,0|4cg0rz,50,43,0|4cg0s0,51,38,1|4lszbz,51,38,1|4lszc0,50,43,0|4v63fz,50,43,0|4v63g0,51,38,1|54j1zz,51,38,1|54j200,50,43,0|5dw63z,50,43,0|5dw640,51,38,1|5n94nz,51,38,1|5n94o0,50,43,0|5wm8rz,50,43,0|5wm8s0,51,38,1|65z7bz,51,38,1|65z7c0,50,43,0|6fcbfz,50,43,0|6fcbg0,51,38,1|6p28nz,51,38,1|6p28o0,50,43,0|6y2e3z,50,43,0|6y2e40,51,38,1|77sbbz,51,38,1|77sbc0,50,43,0|7h5ffz,50,43,0|7h5fg0,51,38,1|7qidzz,51,38,1|7qie00,50,43,0|7zvi3z,50,43,0|7zvi40,51,38,1|898gnz,51,38,1|898go0,50,43,0|8ilkrz,50,43,0|8ilks0,51,38,1|8ryjbz,51,38,1|8ryjc0,50,43,0|908rfz,50,43,0|908rg0,51,38,1|9aolzz,51,38,1|9aom00,50,43,0|9iyu3z,50,43,0|9iyu40,51,38,1|9trnbz,51,38,1|9trnc0,50,43,0|a1owrz,50,43,0|a1ows0,51,38,1|achpzz,51,38,1|achq00,50,43,0|akezfz,50,43,0|akezg0,51,38,1|av7snz,51,38,1|av7so0,50,43,0|b3i0rz,50,43,0|b3i0s0,51,38,1|bdxvbz,51,38,1|bdxvc0,50,43,0|bm83fz,50,43,0|bm83g0,51,38,1|bwnxzz,51,38,1|bwny00,50,43,0|c4y63z,50,43,0|c4y640,51,38,1|cfqzbz,51,38,1|cfqzc0,50,43,0|cno8rz,50,43,0|cno8s0,51,38,1|cyh1zz,51,38,1|cyh200,50,43,0|d6ebfz,50,43,0|d6ebg0,51,38,1|dh74nz,51,38,1|dh74o0,50,43,0|dphcrz,50,43,0|dphcs0,51,38,1|dzx7bz,51,38,1|dzx7c0,50,43,0|e87ffz,50,43,0|e87fg0,51,38,1|ein9zz,51,38,1|eina00,50,43,0|eqxi3z,50,43,0|eqxi40,51,38,1|f1dcnz,51,38,1|f1dco0,50,43,0|f9nkrz,50,43,0|f9nks0,51,38,1|fkgdzz,51,38,1|fkge00,50,43,0|fsdnfz,50,43,0|fsdng0,51,38,1|g36gnz,51,38,1|g36go0,50,43,0|gb3q3z,50,43,0|gb3q40,51,38,1|glwjbz,51,38,1|glwjc0,50,43,0|gu6rfz,50,43,0|gu6rg0,51,38,1|h4mlzz,51,38,1|h4mm00,50,43,0|hcwu3z,50,43,0|hcwu40,51,38,1|hnconz,51,38,1|hncoo0,50,43,0|hvmwrz,50,43,0|hvmws0,51,38,1|i6fpzz,51,38,1|i6fq00,50,43,0|ieczfz,50,43,0|ieczg0,51,38,1|ip5snz,51,38,1|ip5so0,50,43,0|ix323z,50,43,0|ix3240,51,38,1|j7vvbz,51,38,1|j7vvc0,50,43,0|jeq8rz,50,43,0|jeq8s0,51,38,1|jqywnz,51,38,1|jqywo0,50,43,0|jxgbfz,50,43,0|jxgbg0,51,38,1|k9ozbz,51,38,1|k9ozc0,50,43,0|kg6e3z,50,43,0|kg6e40,51,38,1|ksf1zz,51,38,1|ksf200,50,43,0|kz9ffz,50,43,0|kz9fg0,51,38,1|lbi3bz,51,38,1|lbi3c0,50,43,0|lhzi3z,50,43,0|lhzi40,51,38,1|lu85zz,51,38,1|lu8600,50,43,0|m0pkrz,50,43,0|m0pks0,51,38,1|mcy8nz,51,38,1|mcy8o0,50,43,0|mjfnfz,50,43,0|mjfng0,51,38,1|mvobbz,51,38,1|mvobc0,50,43,0|n25q3z,50,43,0|n25q40,51,38,1|needzz,51,38,1|neee00,50,43,0|nkvsrz,50,43,0|nkvss0,51,38,1|nx4gnz,51,38,1|nx4go0,50,43,0|o3yu3z,50,43,0|o3yu40,51,38,1|og7hzz,51,38,1|og7i00,50,43,0|omowrz,50,43,0|omows0,51,38,1|oyxknz,51,38,1|oyxko0,50,43,0|p5ezfz,50,43,0|p5ezg0,51,38,1|phnnbz,51,38,1|phnnc0,50,43,0|po523z,50,43,0|po5240,51,38,1|q0dpzz,51,38,1|q0dq00,50,43,0|q6v4rz,50,43,0|q6v4s0,51,38,1|qj3snz,51,38,1|qj3so0,50,43,0|qpy63z,50,43,0|qpy640,51,38,1|r26tzz,51,38,1|r26u00,50,43,0|r8o8rz,50,43,0|r8o8s0,51,38,1|rkwwnz,51,38,1|rkwwo0,50,43,0|rrebfz,50,43,0|rrebg0,51,38,1|s3mzbz,51,38,1|s3mzc0,50,43,0|sa4e3z,50,43,0|sa4e40,51,38,1|smd1zz,51,38,1|smd200,50,43,0|ssugrz,50,43,0|ssugs0,51,38,1|t534nz,51,38,1|t534o0,50,43,0|tbkjfz,50,43,0|tbkjg0,51,38,1|tnt7bz,51,38,1|tnt7c0,50,43,0|tunkrz,50,43,0|tunks0,51,38,1|u6w8nz,51,38,1|u6w8o0,50,43,0|uddnfz,50,43,0|uddng0,51,38,1|upmbbz,51,38,1|upmbc0,50,43,0|uw3q3z,50,43,0|uw3q40,51,38,1|v8cdzz,51,38,1|v8ce00,50,43,0|vetsrz,50,43,0|vetss0,51,38,1|vr2gnz,51,38,1|vr2go0,50,43,0|vxjvfz,50,43,0|vxjvg0,51,38,1|w9sjbz,51,38,1|w9sjc0,50,43,0|wgmwrz,50,43,0|wgmws0,51,38,1|wsvknz,51,38,1|wsvko0,50,43,0|wzczfz,50,43,0|wzczg0,51,38,1|xblnbz,51,38,1|xblnc0,50,43,0|xi323z,50,43,0|xi3240,51,38,1|xubpzz,51,38,1|xubq00,50,43,0|y0t4rz,50,43,0|y0t4s0,51,38,1|yd1snz,51,38,1|yd1so0,50,43,0|yjj7fz,50,43,0|yjj7g0,51,38,1|yvrvbz,51,38,1|yvrvc0,50,43,0|z29a3z,50,43,0|z29a40,51,38,1|zehxzz,51,38,1|zehy00,50,43,0","America/New_York|,0,104,0|-18y0os0,50,43,0|-r0ev81,50,43,0|-r0ev80,51,38,1|-qpm201,51,38,1|-qpm200,50,43,0|-qhosk1,50,43,0|-qhosk0,51,38,1|-q6vzc1,51,38,1|-q6vzc0,50,43,0|-pyypw1,50,43,0|-pyypw0,51,38,1|-pnsy01,51,38,1|-pnsy00,50,43,0|-pessk1,50,43,0|-pessk0,51,38,1|-p6voo1,51,38,1|-p6voo0,50,43,0|-ovpr81,50,43,0|-ovpr80,51,38,1|-oo5m01,51,38,1|-oo5m00,50,43,0|-oczok1,50,43,0|-oczok0,51,38,1|-o52ko1,51,38,1|-o52ko0,50,43,0|-nu9lw1,50,43,0|-nu9lw0,51,38,1|-nmci01,51,38,1|-nmci00,50,43,0|-nbjj81,50,43,0|-nbjj80,51,38,1|-n3mfc1,51,38,1|-n3mfc0,50,43,0|-mstgk1,50,43,0|-mstgk0,51,38,1|-mkwco1,51,38,1|-mkwco0,50,43,0|-ma3dw1,50,43,0|-ma3dw0,51,38,1|-m26a01,51,38,1|-m26a00,50,43,0|-lr0ck1,50,43,0|-lr0ck0,51,38,1|-lj38o1,51,38,1|-lj38o0,50,43,0|-l8a9w1,50,43,0|-l8a9w0,51,38,1|-l0d601,51,38,1|-l0d600,50,43,0|-kpk781,50,43,0|-kpk780,51,38,1|-khn3c1,51,38,1|-khn3c0,50,43,0|-k6u4k1,50,43,0|-k6u4k0,51,38,1|-jyx0o1,51,38,1|-jyx0o0,50,43,0|-jo41w1,50,43,0|-jo41w0,51,38,1|-jg6y01,51,38,1|-jg6y00,50,43,0|-j510k1,50,43,0|-j510k0,51,38,1|-ixgvc1,51,38,1|-ixgvc0,50,43,0|-imaxw1,50,43,0|-imaxw0,51,38,1|-iedu01,51,38,1|-iedu00,50,43,0|-i3kv81,50,43,0|-i3kv80,51,38,1|-hvnrc1,51,38,1|-hvnrc0,50,43,0|-hkusk1,50,43,0|-hkusk0,51,38,1|-hcxoo1,51,38,1|-hcxoo0,50,43,0|-h24pw1,50,43,0|-h24pw0,51,38,1|-gu7m01,51,38,1|-gu7m00,50,43,0|-gjen81,50,43,0|-gjen80,51,38,1|-gbhjc1,51,38,1|-gbhjc0,50,43,0|-g0blw1,50,43,0|-g0blw0,51,38,1|-fsrgo1,51,38,1|-fsrgo0,50,43,0|-fhlj81,50,43,0|-fhlj80,51,38,1|-f9ofc1,51,38,1|-f9ofc0,50,43,0|-eyvgk1,50,43,0|-eyvgk0,51,38,1|-eqyco1,51,38,1|-eqyco0,50,43,0|-ek24k1,50,43,0|-ek24k0,57,38,1|-cq2tg1,57,38,1|-cq2tg0,58,38,1|-cnp3c1,58,38,1|-cnp3c0,50,43,0|-ccw4k1,50,43,0|-ccw4k0,51,38,1|-c4z0o1,51,38,1|-c4z0o0,50,43,0|-bu61w1,50,43,0|-bu61w0,51,38,1|-bm8y01,51,38,1|-bm8y00,50,43,0|-bbfz81,50,43,0|-bbfz80,51,38,1|-b3ivc1,51,38,1|-b3ivc0,50,43,0|-aspwk1,50,43,0|-aspwk0,51,38,1|-aksso1,51,38,1|-aksso0,50,43,0|-a9mv81,50,43,0|-a9mv80,51,38,1|-a22q01,51,38,1|-a22q00,50,43,0|-9qwsk1,50,43,0|-9qwsk0,51,38,1|-9izoo1,51,38,1|-9izoo0,50,43,0|-986pw1,50,43,0|-986pw0,51,38,1|-909m01,51,38,1|-909m00,50,43,0|-8pgn81,50,43,0|-8pgn80,51,38,1|-8hjjc1,51,38,1|-8hjjc0,50,43,0|-86qkk1,50,43,0|-86qkk0,51,38,1|-7ytgo1,51,38,1|-7ytgo0,50,43,0|-7o0hw1,50,43,0|-7o0hw0,51,38,1|-7eako1,51,38,1|-7eako0,50,43,0|-74xgk1,50,43,0|-74xgk0,51,38,1|-6vki01,51,38,1|-6vki00,50,43,0|-6m7dw1,50,43,0|-6m7dw0,51,38,1|-6cufc1,51,38,1|-6cufc0,50,43,0|-63hb81,50,43,0|-63hb80,51,38,1|-5u4co1,51,38,1|-5u4co0,50,43,0|-5kr8k1,50,43,0|-5kr8k0,51,38,1|-5bea01,51,38,1|-5bea00,50,43,0|-5215w1,50,43,0|-5215w0,51,38,1|-4sb8o1,51,38,1|-4sb8o0,50,43,0|-4iy4k1,50,43,0|-4iy4k0,51,38,1|-49l601,51,38,1|-49l600,50,43,0|-4081w1,50,43,0|-4081w0,51,38,1|-3qv3c1,51,38,1|-3qv3c0,50,43,0|-3hhz81,50,43,0|-3hhz80,51,38,1|-3850o1,51,38,1|-3850o0,50,43,0|-2yrwk1,50,43,0|-2yrwk0,51,38,1|-2pey01,51,38,1|-2pey00,50,43,0|-2g1tw1,50,43,0|-2g1tw0,51,38,1|-26bwo1,51,38,1|-26bwo0,50,43,0|-1xbr81,50,43,0|-1xbr80,51,38,1|-1nlu01,51,38,1|-1nlu00,50,43,0|-1e8pw1,50,43,0|-1e8pw0,51,38,1|-14vrc1,51,38,1|-14vrc0,50,43,0|-vin81,50,43,0|-vin80,51,38,1|-m5oo1,51,38,1|-m5oo0,50,43,0|-cskk1,50,43,0|-cskk0,51,38,1|-3fm01,51,38,1|-3fm00,50,43,0|5xi3z,50,43,0|5xi40,51,38,1|fagnz,51,38,1|fago0,50,43,0|onkrz,50,43,0|onks0,51,38,1|ydhzz,51,38,1|ydi00,50,43,0|17qm3z,50,43,0|17qm40,51,38,1|1h3knz,51,38,1|1h3ko0,50,43,0|1qgorz,50,43,0|1qgos0,51,38,1|1ztnbz,51,38,1|1ztnc0,50,43,0|23fcrz,50,43,0|23fcs0,51,38,1|2ijpzz,51,38,1|2ijq00,50,43,0|2oo63z,50,43,0|2oo640,51,38,1|319snz,51,38,1|319so0,50,43,0|3amwrz,50,43,0|3amws0,51,38,1|3kctzz,51,38,1|3kcu00,50,43,0|3tczfz,50,43,0|3tczg0,51,38,1|432wnz,51,38,1|432wo0,50,43,0|4cg0rz,50,43,0|4cg0s0,51,38,1|4lszbz,51,38,1|4lszc0,50,43,0|4v63fz,50,43,0|4v63g0,51,38,1|54j1zz,51,38,1|54j200,50,43,0|5dw63z,50,43,0|5dw640,51,38,1|5n94nz,51,38,1|5n94o0,50,43,0|5wm8rz,50,43,0|5wm8s0,51,38,1|65z7bz,51,38,1|65z7c0,50,43,0|6fcbfz,50,43,0|6fcbg0,51,38,1|6p28nz,51,38,1|6p28o0,50,43,0|6y2e3z,50,43,0|6y2e40,51,38,1|77sbbz,51,38,1|77sbc0,50,43,0|7h5ffz,50,43,0|7h5fg0,51,38,1|7qidzz,51,38,1|7qie00,50,43,0|7zvi3z,50,43,0|7zvi40,51,38,1|898gnz,51,38,1|898go0,50,43,0|8ilkrz,50,43,0|8ilks0,51,38,1|8ryjbz,51,38,1|8ryjc0,50,43,0|908rfz,50,43,0|908rg0,51,38,1|9aolzz,51,38,1|9aom00,50,43,0|9iyu3z,50,43,0|9iyu40,51,38,1|9trnbz,51,38,1|9trnc0,50,43,0|a1owrz,50,43,0|a1ows0,51,38,1|achpzz,51,38,1|achq00,50,43,0|akezfz,50,43,0|akezg0,51,38,1|av7snz,51,38,1|av7so0,50,43,0|b3i0rz,50,43,0|b3i0s0,51,38,1|bdxvbz,51,38,1|bdxvc0,50,43,0|bm83fz,50,43,0|bm83g0,51,38,1|bwnxzz,51,38,1|bwny00,50,43,0|c4y63z,50,43,0|c4y640,51,38,1|cfqzbz,51,38,1|cfqzc0,50,43,0|cno8rz,50,43,0|cno8s0,51,38,1|cyh1zz,51,38,1|cyh200,50,43,0|d6ebfz,50,43,0|d6ebg0,51,38,1|dh74nz,51,38,1|dh74o0,50,43,0|dphcrz,50,43,0|dphcs0,51,38,1|dzx7bz,51,38,1|dzx7c0,50,43,0|e87ffz,50,43,0|e87fg0,51,38,1|ein9zz,51,38,1|eina00,50,43,0|eqxi3z,50,43,0|eqxi40,51,38,1|f1dcnz,51,38,1|f1dco0,50,43,0|f9nkrz,50,43,0|f9nks0,51,38,1|fkgdzz,51,38,1|fkge00,50,43,0|fsdnfz,50,43,0|fsdng0,51,38,1|g36gnz,51,38,1|g36go0,50,43,0|gb3q3z,50,43,0|gb3q40,51,38,1|glwjbz,51,38,1|glwjc0,50,43,0|gu6rfz,50,43,0|gu6rg0,51,38,1|h4mlzz,51,38,1|h4mm00,50,43,0|hcwu3z,50,43,0|hcwu40,51,38,1|hnconz,51,38,1|hncoo0,50,43,0|hvmwrz,50,43,0|hvmws0,51,38,1|i6fpzz,51,38,1|i6fq00,50,43,0|ieczfz,50,43,0|ieczg0,51,38,1|ip5snz,51,38,1|ip5so0,50,43,0|ix323z,50,43,0|ix3240,51,38,1|j7vvbz,51,38,1|j7vvc0,50,43,0|jeq8rz,50,43,0|jeq8s0,51,38,1|jqywnz,51,38,1|jqywo0,50,43,0|jxgbfz,50,43,0|jxgbg0,51,38,1|k9ozbz,51,38,1|k9ozc0,50,43,0|kg6e3z,50,43,0|kg6e40,51,38,1|ksf1zz,51,38,1|ksf200,50,43,0|kz9ffz,50,43,0|kz9fg0,51,38,1|lbi3bz,51,38,1|lbi3c0,50,43,0|lhzi3z,50,43,0|lhzi40,51,38,1|lu85zz,51,38,1|lu8600,50,43,0|m0pkrz,50,43,0|m0pks0,51,38,1|mcy8nz,51,38,1|mcy8o0,50,43,0|mjfnfz,50,43,0|mjfng0,51,38,1|mvobbz,51,38,1|mvobc0,50,43,0|n25q3z,50,43,0|n25q40,51,38,1|needzz,51,38,1|neee00,50,43,0|nkvsrz,50,43,0|nkvss0,51,38,1|nx4gnz,51,38,1|nx4go0,50,43,0|o3yu3z,50,43,0|o3yu40,51,38,1|og7hzz,51,38,1|og7i00,50,43,0|omowrz,50,43,0|omows0,51,38,1|oyxknz,51,38,1|oyxko0,50,43,0|p5ezfz,50,43,0|p5ezg0,51,38,1|phnnbz,51,38,1|phnnc0,50,43,0|po523z,50,43,0|po5240,51,38,1|q0dpzz,51,38,1|q0dq00,50,43,0|q6v4rz,50,43,0|q6v4s0,51,38,1|qj3snz,51,38,1|qj3so0,50,43,0|qpy63z,50,43,0|qpy640,51,38,1|r26tzz,51,38,1|r26u00,50,43,0|r8o8rz,50,43,0|r8o8s0,51,38,1|rkwwnz,51,38,1|rkwwo0,50,43,0|rrebfz,50,43,0|rrebg0,51,38,1|s3mzbz,51,38,1|s3mzc0,50,43,0|sa4e3z,50,43,0|sa4e40,51,38,1|smd1zz,51,38,1|smd200,50,43,0|ssugrz,50,43,0|ssugs0,51,38,1|t534nz,51,38,1|t534o0,50,43,0|tbkjfz,50,43,0|tbkjg0,51,38,1|tnt7bz,51,38,1|tnt7c0,50,43,0|tunkrz,50,43,0|tunks0,51,38,1|u6w8nz,51,38,1|u6w8o0,50,43,0|uddnfz,50,43,0|uddng0,51,38,1|upmbbz,51,38,1|upmbc0,50,43,0|uw3q3z,50,43,0|uw3q40,51,38,1|v8cdzz,51,38,1|v8ce00,50,43,0|vetsrz,50,43,0|vetss0,51,38,1|vr2gnz,51,38,1|vr2go0,50,43,0|vxjvfz,50,43,0|vxjvg0,51,38,1|w9sjbz,51,38,1|w9sjc0,50,43,0|wgmwrz,50,43,0|wgmws0,51,38,1|wsvknz,51,38,1|wsvko0,50,43,0|wzczfz,50,43,0|wzczg0,51,38,1|xblnbz,51,38,1|xblnc0,50,43,0|xi323z,50,43,0|xi3240,51,38,1|xubpzz,51,38,1|xubq00,50,43,0|y0t4rz,50,43,0|y0t4s0,51,38,1|yd1snz,51,38,1|yd1so0,50,43,0|yjj7fz,50,43,0|yjj7g0,51,38,1|yvrvbz,51,38,1|yvrvc0,50,43,0|z29a3z,50,43,0|z29a40,51,38,1|zehxzz,51,38,1|zehy00,50,43,0","America/Ojinaga|,0,105,0|-p1u4k0,36,41,0|-m7mko1,36,41,0|-m7mko0,37,42,0|-kf67c1,37,42,0|-kf67c0,36,41,0|-k6j3c1,36,41,0|-k6j3c0,37,42,0|-jypm01,37,42,0|-jypm00,36,41,0|-jpan81,36,41,0|-jpan80,37,42,0|dphfjz,37,42,0|dphfk0,40,43,1|dzxa3z,40,43,1|dzxa40,37,42,0|e87i7z,37,42,0|e87i80,40,43,1|eincrz,40,43,1|eincs0,37,42,0|eqxnnz,37,42,0|eqxno0,39,42,1|f1di7z,39,42,1|f1di80,36,41,0|f9nqbz,36,41,0|f9nqc0,39,42,1|fkgjjz,39,42,1|fkgjk0,36,41,0|fsdszz,36,41,0|fsdt00,39,42,1|g36m7z,39,42,1|g36m80,36,41,0|gcwozz,36,41,0|gcwp00,39,42,1|gkgu7z,39,42,1|gkgu80,36,41,0|gu6wzz,36,41,0|gu6x00,39,42,1|h4mrjz,39,42,1|h4mrk0,36,41,0|hcwznz,36,41,0|hcwzo0,39,42,1|hncu7z,39,42,1|hncu80,36,41,0|hvn2bz,36,41,0|hvn2c0,39,42,1|i6fvjz,39,42,1|i6fvk0,36,41,0|ied4zz,36,41,0|ied500,39,42,1|ip5y7z,39,42,1|ip5y80,36,41,0|ix37nz,36,41,0|ix37o0,39,42,1|j7w0vz,39,42,1|j7w0w0,36,41,0|jftabz,36,41,0|jftac0,39,42,1|jqm3jz,39,42,1|jqm3k0,36,41,0|jywbnz,36,41,0|jywbo0,39,42,1|k9c67z,39,42,1|k9c680,36,41,0|khmebz,36,41,0|khmec0,39,42,1|ks28vz,39,42,1|ks28w0,36,41,0|kz9kzz,36,41,0|kz9l00,39,42,1|lbi8vz,39,42,1|lbi8w0,36,41,0|lhznnz,36,41,0|lhzno0,39,42,1|lu8bjz,39,42,1|lu8bk0,36,41,0|m0pqbz,36,41,0|m0pqc0,39,42,1|mcye7z,39,42,1|mcye80,36,41,0|mjfszz,36,41,0|mjft00,39,42,1|mvogvz,39,42,1|mvogw0,36,41,0|n25vnz,36,41,0|n25vo0,39,42,1|neejjz,39,42,1|neejk0,36,41,0|nkvybz,36,41,0|nkvyc0,39,42,1|nx4m7z,39,42,1|nx4m80,36,41,0|o3yznz,36,41,0|o3yzo0,39,42,1|og7njz,39,42,1|og7nk0,36,41,0|omp2bz,36,41,0|omp2c0,39,42,1|oyxq7z,39,42,1|oyxq80,36,41,0|p5f4zz,36,41,0|p5f500,39,42,1|phnsvz,39,42,1|phnsw0,36,41,0|po57nz,36,41,0|po57o0,39,42,1|q0dvjz,39,42,1|q0dvk0,36,41,0|q6vabz,36,41,0|q6vac0,39,42,1|qj3y7z,39,42,1|qj3y80,36,41,0|qpybnz,36,41,0|qpybo0,39,42,1|r26zjz,39,42,1|r26zk0,36,41,0|r8oebz,36,41,0|r8oec0,39,42,1|rkx27z,39,42,1|rkx280,36,41,0|rregzz,36,41,0|rreh00,39,42,1|s3n4vz,39,42,1|s3n4w0,36,41,0|sa4jnz,36,41,0|sa4jo0,39,42,1|smd7jz,39,42,1|smd7k0,36,41,0|ssumbz,36,41,0|ssumc0,39,42,1|t53a7z,39,42,1|t53a80,36,41,0|tbkozz,36,41,0|tbkp00,39,42,1|tntcvz,39,42,1|tntcw0,36,41,0|tunqbz,36,41,0|tunqc0,39,42,1|u6we7z,39,42,1|u6we80,36,41,0|uddszz,36,41,0|uddt00,39,42,1|upmgvz,39,42,1|upmgw0,36,41,0|uw3vnz,36,41,0|uw3vo0,39,42,1|v8cjjz,39,42,1|v8cjk0,36,41,0|vetybz,36,41,0|vetyc0,39,42,1|vr2m7z,39,42,1|vr2m80,36,41,0|vxk0zz,36,41,0|vxk100,39,42,1|w9sovz,39,42,1|w9sow0,36,41,0|wgn2bz,36,41,0|wgn2c0,39,42,1|wsvq7z,39,42,1|wsvq80,36,41,0|wzd4zz,36,41,0|wzd500,39,42,1|xblsvz,39,42,1|xblsw0,36,41,0|xi37nz,36,41,0|xi37o0,39,42,1|xubvjz,39,42,1|xubvk0,36,41,0|y0tabz,36,41,0|y0tac0,39,42,1|yd1y7z,39,42,1|yd1y80,36,41,0|yjjczz,36,41,0|yjjd00,39,42,1|yvs0vz,39,42,1|yvs0w0,36,41,0|z29fnz,36,41,0|z29fo0,39,42,1|zei3jz,39,42,1|zei3k0,36,41,0","America/Panama|,0,56,0|-15r0uls,52,57,0|-w757vd,52,57,0|-w757vc,50,43,0","America/Paramaribo|,0,106,0|-usj4g8,4,107,0|-i9lsfx,4,107,0|-i9lsfw,4,108,0|-cnnf4d,4,108,0|-cnnf4c,66,100,0|7p471z,66,100,0|7p4720,32,35,0","America/Phoenix|,0,109,0|-18y0j80,36,41,0|-r0epo1,36,41,0|-r0epo0,39,42,1|-qplwg1,39,42,1|-qplwg0,36,41,0|-qhon01,36,41,0|-qhon00,39,42,1|-q6vts1,39,42,1|-q6vts0,36,41,0|-ek1z01,36,41,0|-ek1z00,48,42,1|-dkikmd,48,42,1|-dkikmc,36,41,0|-dftz6d,36,41,0|-dftz6c,48,42,1|-d6f5yd,48,42,1|-d6f5yc,36,41,0|-1e8kc1,36,41,0|-1e8kc0,39,42,1|-14vls1,39,42,1|-14vls0,36,41,0","America/Port-au-Prince|,0,110,0|-15r0vxs,69,111,0|-rmk9ad,69,111,0|-rmk9ac,50,43,0|6ys5vz,50,43,0|6ys5w0,51,38,1|77s5rz,51,38,1|77s5s0,50,43,0|7h59vz,50,43,0|7h59w0,51,38,1|7qi8fz,51,38,1|7qi8g0,50,43,0|7zvcjz,50,43,0|7zvck0,51,38,1|898b3z,51,38,1|898b40,50,43,0|8ilf7z,50,43,0|8ilf80,51,38,1|8rydrz,51,38,1|8ryds0,50,43,0|91bhvz,50,43,0|91bhw0,51,38,1|9aogfz,51,38,1|9aogg0,50,43,0|9iyrbz,50,43,0|9iyrc0,51,38,1|9trnbz,51,38,1|9trnc0,50,43,0|a1otzz,50,43,0|a1ou00,51,38,1|achpzz,51,38,1|achq00,50,43,0|akewnz,50,43,0|akewo0,51,38,1|av7snz,51,38,1|av7so0,50,43,0|b3hxzz,50,43,0|b3hy00,51,38,1|bdxvbz,51,38,1|bdxvc0,50,43,0|bm80nz,50,43,0|bm80o0,51,38,1|bwnxzz,51,38,1|bwny00,50,43,0|c4y3bz,50,43,0|c4y3c0,51,38,1|cfqzbz,51,38,1|cfqzc0,50,43,0|cno5zz,50,43,0|cno600,51,38,1|cyh1zz,51,38,1|cyh200,50,43,0|d6e8nz,50,43,0|d6e8o0,51,38,1|dh74nz,51,38,1|dh74o0,50,43,0|dph9zz,50,43,0|dpha00,51,38,1|dzx7bz,51,38,1|dzx7c0,50,43,0|e87cnz,50,43,0|e87co0,51,38,1|ein9zz,51,38,1|eina00,50,43,0|iectvz,50,43,0|iectw0,51,38,1|ip5n3z,51,38,1|ip5n40,50,43,0|ix2wjz,50,43,0|ix2wk0,51,38,1|j7vprz,51,38,1|j7vps0,50,43,0|m0pkrz,50,43,0|m0pks0,51,38,1|mcy8nz,51,38,1|mcy8o0,50,43,0|mjfnfz,50,43,0|mjfng0,51,38,1|mvobbz,51,38,1|mvobc0,50,43,0|n25q3z,50,43,0|n25q40,51,38,1|needzz,51,38,1|neee00,50,43,0|nkvsrz,50,43,0|nkvss0,51,38,1|nx4gnz,51,38,1|nx4go0,50,43,0|omowrz,50,43,0|omows0,51,38,1|oyxknz,51,38,1|oyxko0,50,43,0|p5ezfz,50,43,0|p5ezg0,51,38,1|phnnbz,51,38,1|phnnc0,50,43,0|po523z,50,43,0|po5240,51,38,1|q0dpzz,51,38,1|q0dq00,50,43,0|q6v4rz,50,43,0|q6v4s0,51,38,1|qj3snz,51,38,1|qj3so0,50,43,0|qpy63z,50,43,0|qpy640,51,38,1|r26tzz,51,38,1|r26u00,50,43,0|r8o8rz,50,43,0|r8o8s0,51,38,1|rkwwnz,51,38,1|rkwwo0,50,43,0|rrebfz,50,43,0|rrebg0,51,38,1|s3mzbz,51,38,1|s3mzc0,50,43,0|sa4e3z,50,43,0|sa4e40,51,38,1|smd1zz,51,38,1|smd200,50,43,0|ssugrz,50,43,0|ssugs0,51,38,1|t534nz,51,38,1|t534o0,50,43,0|tbkjfz,50,43,0|tbkjg0,51,38,1|tnt7bz,51,38,1|tnt7c0,50,43,0|tunkrz,50,43,0|tunks0,51,38,1|u6w8nz,51,38,1|u6w8o0,50,43,0|uddnfz,50,43,0|uddng0,51,38,1|upmbbz,51,38,1|upmbc0,50,43,0|uw3q3z,50,43,0|uw3q40,51,38,1|v8cdzz,51,38,1|v8ce00,50,43,0|vetsrz,50,43,0|vetss0,51,38,1|vr2gnz,51,38,1|vr2go0,50,43,0|vxjvfz,50,43,0|vxjvg0,51,38,1|w9sjbz,51,38,1|w9sjc0,50,43,0|wgmwrz,50,43,0|wgmws0,51,38,1|wsvknz,51,38,1|wsvko0,50,43,0|wzczfz,50,43,0|wzczg0,51,38,1|xblnbz,51,38,1|xblnc0,50,43,0|xi323z,50,43,0|xi3240,51,38,1|xubpzz,51,38,1|xubq00,50,43,0|y0t4rz,50,43,0|y0t4s0,51,38,1|yd1snz,51,38,1|yd1so0,50,43,0|yjj7fz,50,43,0|yjj7g0,51,38,1|yvrvbz,51,38,1|yvrvc0,50,43,0|z29a3z,50,43,0|z29a40,51,38,1|zehxzz,51,38,1|zehy00,50,43,0","America/Port_of_Spain|,0,112,0|-u6m79w,24,38,0","America/Porto_Velho|,0,113,0|-t85g60,35,38,0|-jyl7o1,35,38,0|-jyl7o0,32,35,1|-jpayc1,32,35,1|-jpayc0,35,38,0|-jfsa81,35,38,0|-jfsa80,32,35,1|-j6j101,32,35,1|-j6j100,35,38,0|-ahcvk1,35,38,0|-ahcvk0,32,35,1|-aad0w1,32,35,1|-aad0w0,35,38,0|-9yky81,35,38,0|-9yky80,32,35,1|-9scyc1,32,35,1|-9scyc0,35,38,0|-9ft0w1,35,38,0|-9ft0w0,32,35,1|-99j6c1,32,35,1|-99j6c0,35,38,0|-8wz8w1,35,38,0|-8wz8w0,32,35,1|-8scno1,32,35,1|-8scno0,35,38,0|-35xjk1,35,38,0|-35xjk0,32,35,1|-31nx01,32,35,1|-31nx00,35,38,0|-2kdm81,35,38,0|-2kdm80,32,35,1|-2hcfo1,32,35,1|-2hcfo0,35,38,0|-24qnk1,35,38,0|-24qnk0,32,35,1|-2042c1,32,35,1|-2042c0,35,38,0|-1nia81,35,38,0|-1nia80,32,35,1|-1hc501,32,35,1|-1hc500,35,38,0|-14qcw1,35,38,0|-14qcw0,32,35,1|-yid01,32,35,1|-yid00,35,38,0|89jf3z,35,38,0|89jf40,32,35,1|8gdmzz,32,35,1|8gdn00,35,38,0|8rwj3z,35,38,0|8rwj40,32,35,1|8xnuzz,32,35,1|8xnv00,35,38,0|9aogfz,35,38,0|9aogg0,32,35,1|9g2tnz,32,35,1|9g2to0,35,38,0","America/Puerto_Rico|,0,114,0|-10xhp3b,24,38,0|-efsnk1,24,38,0|-efsnk0,25,35,1|-cq2tg1,25,35,1|-cq2tg0,26,35,1|-cnp641,26,35,1|-cnp640,24,38,0","America/Recife|,0,115,0|-t85ljc,32,35,0|-jylag1,32,35,0|-jylag0,33,36,1|-jpb141,33,36,1|-jpb140,32,35,0|-jfsd01,32,35,0|-jfsd00,33,36,1|-j6j3s1,33,36,1|-j6j3s0,32,35,0|-ahcyc1,32,35,0|-ahcyc0,33,36,1|-aad3o1,33,36,1|-aad3o0,32,35,0|-9yl101,32,35,0|-9yl100,33,36,1|-9sd141,33,36,1|-9sd140,32,35,0|-9ft3o1,32,35,0|-9ft3o0,33,36,1|-99j941,33,36,1|-99j940,32,35,0|-8wzbo1,32,35,0|-8wzbo0,33,36,1|-8scqg1,33,36,1|-8scqg0,32,35,0|-35xmc1,32,35,0|-35xmc0,33,36,1|-31nzs1,33,36,1|-31nzs0,32,35,0|-2kdp01,32,35,0|-2kdp00,33,36,1|-2hcig1,33,36,1|-2hcig0,32,35,0|-24qqc1,32,35,0|-24qqc0,33,36,1|-204541,33,36,1|-204540,32,35,0|-1nid01,32,35,0|-1nid00,33,36,1|-1hc7s1,33,36,1|-1hc7s0,32,35,0|-14qfo1,32,35,0|-14qfo0,33,36,1|-yifs1,33,36,1|-yifs0,32,35,0|89jcbz,32,35,0|89jcc0,33,36,1|8gdk7z,33,36,1|8gdk80,32,35,0|8rwgbz,32,35,0|8rwgc0,33,36,1|8xns7z,33,36,1|8xns80,32,35,0|9aodnz,32,35,0|9aodo0,33,36,1|9g2qvz,33,36,1|9g2qw0,32,35,0|9t1hnz,32,35,0|9t1ho0,33,36,1|9yfuvz,33,36,1|9yfuw0,32,35,0|abrkbz,32,35,0|abrkc0,33,36,1|ahvuvz,33,36,1|ahvuw0,32,35,0|fj0azz,32,35,0|fj0b00,33,36,1|fqkg7z,33,36,1|fqkg80,32,35,0|g23cbz,32,35,0|g23cc0,33,36,1|g2g87z,33,36,1|g2g880,32,35,0|gl6dnz,32,35,0|gl6do0,33,36,1|grnmvz,33,36,1|grnmw0,32,35,0","America/Regina|,0,116,0|-xkq9yc,36,41,0|-qzosc1,36,41,0|-qzosc0,39,42,1|-qplwg1,39,42,1|-qplwg0,36,41,0|-kp78k1,36,41,0|-kp78k0,39,42,1|-kha4o1,39,42,1|-kha4o0,36,41,0|-k6h5w1,36,41,0|-k6h5w0,39,42,1|-jyk201,39,42,1|-jyk200,36,41,0|-jnr381,36,41,0|-jnr380,39,42,1|-jftzc1,39,42,1|-jftzc0,36,41,0|-j4o1w1,36,41,0|-j4o1w0,39,42,1|-ix3wo1,39,42,1|-ix3wo0,36,41,0|-ilxz81,36,41,0|-ilxz80,39,42,1|-ie0vc1,39,42,1|-ie0vc0,36,41,0|-h2un81,36,41,0|-h2un80,39,42,1|-gthoo1,39,42,1|-gthoo0,36,41,0|-gk4kk1,36,41,0|-gk4kk0,39,42,1|-gb4ko1,39,42,1|-gb4ko0,36,41,0|-g1ehw1,36,41,0|-g1ehw0,39,42,1|-fs1jc1,39,42,1|-fs1jc0,36,41,0|-fibgk1,36,41,0|-fibgk0,39,42,1|-f8yi01,39,42,1|-f8yi00,36,41,0|-ezldw1,36,41,0|-ezldw0,39,42,1|-eq8fc1,39,42,1|-eq8fc0,36,41,0|-ek1z01,36,41,0|-ek1z00,48,42,1|-cq2tg1,48,42,1|-cq2tg0,49,42,1|-cnoxs1,49,42,1|-cnoxs0,36,41,0|-cdlwc1,36,41,0|-cdlwc0,39,42,1|-c48xs1,39,42,1|-c48xs0,36,41,0|-bu5wc1,36,41,0|-bu5wc0,39,42,1|-bm8sg1,39,42,1|-bm8sg0,36,41,0|-bbfto1,36,41,0|-bbfto0,39,42,1|-b3ips1,39,42,1|-b3ips0,36,41,0|-aspr01,36,41,0|-aspr00,39,42,1|-aksn41,39,42,1|-aksn40,36,41,0|-a9mpo1,36,41,0|-a9mpo0,39,42,1|-a22kg1,39,42,1|-a22kg0,36,41,0|-9qwn01,36,41,0|-9qwn00,39,42,1|-9izj41,39,42,1|-9izj40,36,41,0|-986kc1,36,41,0|-986kc0,39,42,1|-909gg1,39,42,1|-909gg0,36,41,0|-8pgho1,36,41,0|-8pgho0,39,42,1|-8hjds1,39,42,1|-8hjds0,36,41,0|-86qf01,36,41,0|-86qf00,39,42,1|-7ytb41,39,42,1|-7ytb40,36,41,0|-7o0cc1,36,41,0|-7o0cc0,39,42,1|-7g38g1,39,42,1|-7g38g0,36,41,0|-74xb01,36,41,0|-74xb00,39,42,1|-6x0741,39,42,1|-6x0740,36,41,0|-6m78c1,36,41,0|-6m78c0,39,42,1|-6ea4g1,39,42,1|-6ea4g0,36,41,0|-5kr301,36,41,0|-5kr300,39,42,1|-5be4g1,39,42,1|-5be4g0,36,41,0|-5210c1,36,41,0|-5210c0,37,42,0","America/Rio_Branco|,0,117,0|-t85fg0,46,43,0|-jyl4w1,46,43,0|-jyl4w0,35,38,1|-jpavk1,35,38,1|-jpavk0,46,43,0|-jfs7g1,46,43,0|-jfs7g0,35,38,1|-j6iy81,35,38,1|-j6iy80,46,43,0|-ahcss1,46,43,0|-ahcss0,35,38,1|-aacy41,35,38,1|-aacy40,46,43,0|-9ykvg1,46,43,0|-9ykvg0,35,38,1|-9scvk1,35,38,1|-9scvk0,46,43,0|-9fsy41,46,43,0|-9fsy40,35,38,1|-99j3k1,35,38,1|-99j3k0,46,43,0|-8wz641,46,43,0|-8wz640,35,38,1|-8sckw1,35,38,1|-8sckw0,46,43,0|-35xgs1,46,43,0|-35xgs0,35,38,1|-31nu81,35,38,1|-31nu80,46,43,0|-2kdjg1,46,43,0|-2kdjg0,35,38,1|-2hccw1,35,38,1|-2hccw0,46,43,0|-24qks1,46,43,0|-24qks0,35,38,1|-203zk1,35,38,1|-203zk0,46,43,0|-1ni7g1,46,43,0|-1ni7g0,35,38,1|-1hc281,35,38,1|-1hc280,46,43,0|-14qa41,46,43,0|-14qa40,35,38,1|-yia81,35,38,1|-yia80,46,43,0|89jhvz,46,43,0|89jhw0,35,38,1|8gdprz,35,38,1|8gdps0,46,43,0|8rwlvz,46,43,0|8rwlw0,35,38,1|8xnxrz,35,38,1|8xnxs0,46,43,0|9aoj7z,46,43,0|9aoj80,35,38,1|9g2wfz,35,38,1|9g2wg0,46,43,0|k2yb7z,46,43,0|k2yb80,35,38,0|mw14fz,35,38,0|mw14g0,46,43,0","America/Santarem|,0,118,0|-t85hvc,35,38,0|-jyl7o1,35,38,0|-jyl7o0,32,35,1|-jpayc1,32,35,1|-jpayc0,35,38,0|-jfsa81,35,38,0|-jfsa80,32,35,1|-j6j101,32,35,1|-j6j100,35,38,0|-ahcvk1,35,38,0|-ahcvk0,32,35,1|-aad0w1,32,35,1|-aad0w0,35,38,0|-9yky81,35,38,0|-9yky80,32,35,1|-9scyc1,32,35,1|-9scyc0,35,38,0|-9ft0w1,35,38,0|-9ft0w0,32,35,1|-99j6c1,32,35,1|-99j6c0,35,38,0|-8wz8w1,35,38,0|-8wz8w0,32,35,1|-8scno1,32,35,1|-8scno0,35,38,0|-35xjk1,35,38,0|-35xjk0,32,35,1|-31nx01,32,35,1|-31nx00,35,38,0|-2kdm81,35,38,0|-2kdm80,32,35,1|-2hcfo1,32,35,1|-2hcfo0,35,38,0|-24qnk1,35,38,0|-24qnk0,32,35,1|-2042c1,32,35,1|-2042c0,35,38,0|-1nia81,35,38,0|-1nia80,32,35,1|-1hc501,32,35,1|-1hc500,35,38,0|-14qcw1,35,38,0|-14qcw0,32,35,1|-yid01,32,35,1|-yid00,35,38,0|89jf3z,35,38,0|89jf40,32,35,1|8gdmzz,32,35,1|8gdn00,35,38,0|8rwj3z,35,38,0|8rwj40,32,35,1|8xnuzz,32,35,1|8xnv00,35,38,0|9aogfz,35,38,0|9aogg0,32,35,1|9g2tnz,32,35,1|9g2to0,35,38,0|k2y8fz,35,38,0|k2y8g0,32,35,0","America/Santiago|,0,119,0|-15r0w8q,70,119,0|-vauawr,70,119,0|-vauawq,46,43,0|-rx8i41,46,43,0|-rx8i40,70,119,0|-qs16wr,70,119,0|-qs16wq,35,38,0|-qcwsw1,35,38,0|-qcwsw0,70,119,0|-m3etkr,70,119,0|-m3etkq,35,38,1|-lsgfk1,35,38,1|-lsgfk0,46,43,0|-lkl0s1,46,43,0|-lkl0s0,35,38,1|-l9oi81,35,38,1|-l9oi80,46,43,0|-l1t3g1,46,43,0|-l1t3g0,35,38,1|-kqwkw1,35,38,1|-kqwkw0,46,43,0|-kj1641,46,43,0|-kj1640,35,38,1|-k84nk1,35,38,1|-k84nk0,46,43,0|-k098s1,46,43,0|-k098s0,35,38,1|-jpavk1,35,38,1|-jpavk0,46,43,0|-jhfgs1,46,43,0|-jhfgs0,35,38,0|-eeay81,35,38,0|-eeay80,46,43,0|-eb5ws1,46,43,0|-eb5ws0,35,38,0|-c8vww1,35,38,0|-c8vww0,32,35,1|-c6f3o1,32,35,1|-c6f3o0,35,38,0|-bvifk1,35,38,0|-bvifk0,46,43,0|-bsvzk1,46,43,0|-bsvzk0,35,38,0|-lsvk1,35,38,0|-lsvk0,32,35,1|-e8qc1,32,35,1|-e8qc0,35,38,0|-1zww1,35,38,0|-1zww0,32,35,1|4hcbz,32,35,1|4hcc0,35,38,0|ekdrz,35,38,0|ekds0,32,35,1|mhhnz,32,35,1|mhho0,35,38,0|xagfz,35,38,0|xagg0,32,35,1|157kbz,32,35,1|157kc0,35,38,0|1gdhrz,35,38,0|1gdhs0,32,35,1|1nxmzz,32,35,1|1nxn00,35,38,0|1ydn3z,35,38,0|1ydn40,32,35,1|26npnz,32,35,1|26npo0,35,38,0|2htn3z,35,38,0|2htn40,32,35,1|2pdsbz,32,35,1|2pdsc0,35,38,0|30jprz,35,38,0|30jps0,32,35,1|38gtnz,32,35,1|38gto0,35,38,0|3j9sfz,35,38,0|3j9sg0,32,35,1|3r6wbz,32,35,1|3r6wc0,35,38,0|41zv3z,35,38,0|41zv40,32,35,1|49wyzz,32,35,1|49wz00,35,38,0|4l2wfz,35,38,0|4l2wg0,32,35,1|4sn1nz,32,35,1|4sn1o0,35,38,0|53sz3z,35,38,0|53sz40,32,35,1|5bd4bz,32,35,1|5bd4c0,35,38,0|5mj1rz,35,38,0|5mj1s0,32,35,1|5ug5nz,32,35,1|5ug5o0,35,38,0|6594fz,35,38,0|6594g0,32,35,1|6d68bz,32,35,1|6d68c0,35,38,0|6nz73z,35,38,0|6nz740,32,35,1|6vwazz,32,35,1|6vwb00,35,38,0|76p9rz,35,38,0|76p9s0,32,35,1|7emdnz,32,35,1|7emdo0,35,38,0|7psb3z,35,38,0|7psb40,32,35,1|7xcgbz,32,35,1|7xcgc0,35,38,0|88idrz,35,38,0|88ids0,32,35,1|8g2izz,32,35,1|8g2j00,35,38,0|8r8gfz,35,38,0|8r8gg0,32,35,1|90lezz,32,35,1|90lf00,35,38,0|99yj3z,35,38,0|99yj40,32,35,1|9hvmzz,32,35,1|9hvn00,35,38,0|9solrz,35,38,0|9sols0,32,35,1|a0lpnz,32,35,1|a0lpo0,35,38,0|abrn3z,35,38,0|abrn40,32,35,1|ajbsbz,32,35,1|ajbsc0,35,38,0|at1v3z,35,38,0|at1v40,32,35,1|b21uzz,32,35,1|b21v00,35,38,0|bd7sfz,35,38,0|bd7sg0,32,35,1|bl4wbz,32,35,1|bl4wc0,35,38,0|bvxv3z,35,38,0|bvxv40,32,35,1|c3uyzz,32,35,1|c3uz00,35,38,0|cenxrz,35,38,0|cenxs0,32,35,1|cml1nz,32,35,1|cml1o0,35,38,0|cxe0fz,35,38,0|cxe0g0,32,35,1|d5b4bz,32,35,1|d5b4c0,35,38,0|dgh1rz,35,38,0|dgh1s0,32,35,1|do16zz,32,35,1|do1700,35,38,0|dz74fz,35,38,0|dz74g0,32,35,1|e7u5nz,32,35,1|e7u5o0,35,38,0|ehx73z,35,38,0|ehx740,32,35,1|epuazz,32,35,1|epub00,35,38,0|ezxcfz,35,38,0|ezxcg0,32,35,1|f9n9nz,32,35,1|f9n9o0,35,38,0|fjdcfz,35,38,0|fjdcg0,32,35,1|fragbz,32,35,1|fragc0,35,38,0|g2gdrz,35,38,0|g2gds0,32,35,1|ga0izz,32,35,1|ga0j00,35,38,0|gl6gfz,35,38,0|gl6gg0,32,35,1|gsqlnz,32,35,1|gsqlo0,35,38,0|h3wj3z,35,38,0|h3wj40,32,35,1|hbgobz,32,35,1|hbgoc0,35,38,0|hmmlrz,35,38,0|hmmls0,32,35,1|hujpnz,32,35,1|hujpo0,35,38,0|i5cofz,35,38,0|i5cog0,32,35,1|id9sbz,32,35,1|id9sc0,35,38,0|io2r3z,35,38,0|io2r40,32,35,1|ivzuzz,32,35,1|ivzv00,35,38,0|j75sfz,35,38,0|j75sg0,32,35,1|jepxnz,32,35,1|jepxo0,35,38,0|jpvv3z,35,38,0|jpvv40,32,35,1|jyiwbz,32,35,1|jyiwc0,35,38,0|k8lxrz,35,38,0|k8lxs0,32,35,1|kgj1nz,32,35,1|kgj1o0,35,38,0|krc0fz,35,38,0|krc0g0,32,35,1|l0c0bz,32,35,1|l0c0c0,35,38,0|la233z,35,38,0|la2340,32,35,1|lkuwbz,32,35,1|lkuwc0,35,38,0|lq9f3z,35,38,0|lq9f40,32,35,1|m380bz,32,35,1|m380c0,35,38,0|m9pf3z,35,38,0|m9pf40,32,35,1|mly2zz,32,35,1|mly300,35,38,0|mssgfz,35,38,0|mssgg0,32,35,1|n4o5nz,32,35,1|n4o5o0,35,38,0|nbij3z,35,38,0|nbij40,32,35,1|o776zz,32,35,1|o77700,35,38,0|obvsfz,35,38,0|obvsg0,32,35,1|opx9nz,32,35,1|opx9o0,35,38,0|oulv3z,35,38,0|oulv40,32,35,1|p8ncbz,32,35,1|p8ncc0,35,38,0|pdbxrz,35,38,0|pdbxs0,32,35,1|ppklnz,32,35,1|ppklo0,35,38,0|pxhv3z,35,38,0|pxhv40,32,35,1|q8aobz,32,35,1|q8aoc0,35,38,0|qg7xrz,35,38,0|qg7xs0,32,35,1|qr0qzz,32,35,1|qr0r00,35,38,0|qyy0fz,35,38,0|qyy0g0,32,35,1|r9qtnz,32,35,1|r9qto0,35,38,0|rho33z,35,38,0|rho340,32,35,1|rsgwbz,32,35,1|rsgwc0,35,38,0|s0e5rz,35,38,0|s0e5s0,32,35,1|sbjxnz,32,35,1|sbjxo0,35,38,0|sjh73z,35,38,0|sjh740,32,35,1|sua0bz,32,35,1|sua0c0,35,38,0|t279rz,35,38,0|t279s0,32,35,1|td02zz,32,35,1|td0300,35,38,0|tkxcfz,35,38,0|tkxcg0,32,35,1|tvq5nz,32,35,1|tvq5o0,35,38,0|u3nf3z,35,38,0|u3nf40,32,35,1|ueg8bz,32,35,1|ueg8c0,35,38,0|umdhrz,35,38,0|umdhs0,32,35,1|uxj9nz,32,35,1|uxj9o0,35,38,0|v53kfz,35,38,0|v53kg0,32,35,1|vg9cbz,32,35,1|vg9cc0,35,38,0|vo6lrz,35,38,0|vo6ls0,32,35,1|vyzezz,32,35,1|vyzf00,35,38,0|w6wofz,35,38,0|w6wog0,32,35,1|whphnz,32,35,1|whpho0,35,38,0|wpmr3z,35,38,0|wpmr40,32,35,1|x0fkbz,32,35,1|x0fkc0,35,38,0|x8ctrz,35,38,0|x8cts0,32,35,1|xj5mzz,32,35,1|xj5n00,35,38,0|xr2wfz,35,38,0|xr2wg0,32,35,1|y28obz,32,35,1|y28oc0,35,38,0|y9sz3z,35,38,0|y9sz40,32,35,1|ykyqzz,32,35,1|ykyr00,35,38,0|ysw0fz,35,38,0|ysw0g0,32,35,1|z3otnz,32,35,1|z3oto0,35,38,0|zbm33z,35,38,0|zbm340,32,35,1","America/Santo_Domingo|,0,120,0|-15r0we0,71,121,0|-j6hz1d,71,121,0|-j6hz1c,50,43,0|-1nlws1,50,43,0|-1nlws0,51,38,1|-1hdww1,51,38,1|-1hdww0,50,43,0|-3fos1,50,43,0|-3fos0,53,54,1|2mshz,53,54,1|2msi0,50,43,0|fadvz,50,43,0|fadw0,53,54,1|jrghz,53,54,1|jrgi0,50,43,0|ydf7z,50,43,0|ydf80,53,54,1|12l8hz,53,54,1|12l8i0,50,43,0|1h3hvz,50,43,0|1h3hw0,53,54,1|1lf0hz,53,54,1|1lf0i0,50,43,0|1ztkjz,50,43,0|1ztkk0,53,54,1|246xtz,53,54,1|246xu0,50,43,0|2ijn7z,50,43,0|2ijn80,24,38,0|g36gnz,24,38,0|g36go0,50,43,0|g4z9zz,50,43,0|g4za00,24,38,0","America/Sao_Paulo|,0,122,0|-t85jd8,32,35,0|-jylag1,32,35,0|-jylag0,33,36,1|-jpb141,33,36,1|-jpb140,32,35,0|-jfsd01,32,35,0|-jfsd00,33,36,1|-j6j3s1,33,36,1|-j6j3s0,32,35,0|-ahcyc1,32,35,0|-ahcyc0,33,36,1|-aad3o1,33,36,1|-aad3o0,32,35,0|-9yl101,32,35,0|-9yl100,33,36,1|-9sd141,33,36,1|-9sd140,32,35,0|-9ft3o1,32,35,0|-9ft3o0,33,36,1|-99j941,33,36,1|-99j940,32,35,0|-8wzbo1,32,35,0|-8wzbo0,33,36,1|-8scqg1,33,36,1|-8scqg0,32,35,0|-38cno1,32,35,0|-38cno0,33,36,1|-31nzs1,33,36,1|-31nzs0,32,35,0|-2kdp01,32,35,0|-2kdp00,33,36,1|-2hcig1,33,36,1|-2hcig0,32,35,0|-24qqc1,32,35,0|-24qqc0,33,36,1|-204541,33,36,1|-204540,32,35,0|-1nid01,32,35,0|-1nid00,33,36,1|-1hc7s1,33,36,1|-1hc7s0,32,35,0|-14qfo1,32,35,0|-14qfo0,33,36,1|-yifs1,33,36,1|-yifs0,32,35,0|89jcbz,32,35,0|89jcc0,33,36,1|8gdk7z,33,36,1|8gdk80,32,35,0|8rwgbz,32,35,0|8rwgc0,33,36,1|8xns7z,33,36,1|8xns80,32,35,0|9aodnz,32,35,0|9aodo0,33,36,1|9g2qvz,33,36,1|9g2qw0,32,35,0|9t1hnz,32,35,0|9t1ho0,33,36,1|9yfuvz,33,36,1|9yfuw0,32,35,0|abrkbz,32,35,0|abrkc0,33,36,1|ahvuvz,33,36,1|ahvuw0,32,35,0|auulnz,32,35,0|auulo0,33,36,1|b0yw7z,33,36,1|b0yw80,32,35,0|bdkobz,32,35,0|bdkoc0,33,36,1|bjc07z,33,36,1|bjc080,32,35,0|bwnpnz,32,35,0|bwnpo0,33,36,1|c1p47z,33,36,1|c1p480,32,35,0|cf0tnz,32,35,0|cf0to0,33,36,1|cli2vz,33,36,1|cli2w0,32,35,0|cxqwbz,32,35,0|cxqwc0,33,36,1|d485jz,33,36,1|d485k0,32,35,0|dggyzz,32,35,0|dggz00,33,36,1|dml9jz,33,36,1|dml9k0,32,35,0|dyu2zz,32,35,0|dyu300,33,36,1|e5oavz,33,36,1|e5oaw0,32,35,0|ehm0bz,32,35,0|ehm0c0,33,36,1|ep4avz,33,36,1|ep4aw0,32,35,0|f0n6zz,32,35,0|f0n700,33,36,1|f7hevz,33,36,1|f7hew0,32,35,0|fj0azz,32,35,0|fj0b00,33,36,1|fqkg7z,33,36,1|fqkg80,32,35,0|g23cbz,32,35,0|g23cc0,33,36,1|g8xk7z,33,36,1|g8xk80,32,35,0|gl6dnz,32,35,0|gl6do0,33,36,1|grnmvz,33,36,1|grnmw0,32,35,0|h4zcbz,32,35,0|h4zcc0,33,36,1|hadpjz,33,36,1|hadpk0,32,35,0|hmzhnz,32,35,0|hmzho0,33,36,1|ht3s7z,33,36,1|ht3s80,32,35,0|i6j6zz,32,35,0|i6j700,33,36,1|ic6tjz,33,36,1|ic6tk0,32,35,0|iofmzz,32,35,0|iofn00,33,36,1|iuww7z,33,36,1|iuww80,32,35,0|j88lnz,32,35,0|j88lo0,33,36,1|jdzxjz,33,36,1|jdzxk0,32,35,0|jpvsbz,32,35,0|jpvsc0,33,36,1|jwd1jz,33,36,1|jwd1k0,32,35,0|k8ytnz,32,35,0|k8yto0,33,36,1|kf347z,33,36,1|kf3480,32,35,0|krowbz,32,35,0|krowc0,33,36,1|ky65jz,33,36,1|ky65k0,32,35,0|laeyzz,32,35,0|laez00,33,36,1|lgw87z,33,36,1|lgw880,32,35,0|lt51nz,32,35,0|lt51o0,33,36,1|lzz9jz,33,36,1|lzz9k0,32,35,0|mc82zz,32,35,0|mc8300,33,36,1|micdjz,33,36,1|micdk0,32,35,0|muy5nz,32,35,0|muy5o0,33,36,1|n12g7z,33,36,1|n12g80,32,35,0|ndo8bz,32,35,0|ndo8c0,33,36,1|nk5hjz,33,36,1|nk5hk0,32,35,0|nweazz,32,35,0|nweb00,33,36,1|o2vk7z,33,36,1|o2vk80,32,35,0|of4dnz,32,35,0|of4do0,33,36,1|ollmvz,33,36,1|ollmw0,32,35,0|oxugbz,32,35,0|oxugc0,33,36,1|p4bpjz,33,36,1|p4bpk0,32,35,0|phnezz,32,35,0|phnf00,33,36,1|pn1s7z,33,36,1|pn1s80,32,35,0","America/St_Johns|,0,123,0|-18vs8wk,72,123,0|-ris3cl,72,123,0|-ris3ck,73,124,1|-rag64l,73,124,1|-rag64k,72,123,0|-qzp20l,72,123,0|-qzp20k,73,124,1|-qpm64l,73,124,1|-qpm64k,72,123,0|-qfsmcl,72,123,0|-qfsmck,73,124,1|-qapd4l,73,124,1|-qapd4k,72,123,0|-px4ecl,72,123,0|-px4eck,73,124,1|-pnrfsl,73,124,1|-pnrfsk,72,123,0|-peebol,72,123,0|-peebok,73,124,1|-p51d4l,73,124,1|-p51d4k,72,123,0|-ovbacl,72,123,0|-ovback,73,124,1|-ombagl,73,124,1|-ombagk,72,123,0|-ocl7ol,72,123,0|-ocl7ok,73,124,1|-o3l7sl,73,124,1|-o3l7sk,72,123,0|-ntv50l,72,123,0|-ntv50k,73,124,1|-nkv54l,73,124,1|-nkv54k,72,123,0|-nb52cl,72,123,0|-nb52ck,73,124,1|-n252gl,73,124,1|-n252gk,72,123,0|-msezol,72,123,0|-msezok,73,124,1|-mj214l,73,124,1|-mj214k,72,123,0|-m9ox0l,72,123,0|-m9ox0k,73,124,1|-m0bygl,73,124,1|-m0bygk,72,123,0|-lqlvol,72,123,0|-lqlvok,73,124,1|-lhlvsl,73,124,1|-lhlvsk,72,123,0|-l7vt0l,72,123,0|-l7vt0k,73,124,1|-kyvt4l,73,124,1|-kyvt4k,72,123,0|-kp5qcl,72,123,0|-kp5qck,73,124,1|-kg5qgl,73,124,1|-kg5qgk,72,123,0|-k6fnol,72,123,0|-k6fnok,73,124,1|-jxfnsl,73,124,1|-jxfnsk,72,123,0|-jnpl0l,72,123,0|-jnpl0k,73,124,1|-jecmgl,73,124,1|-jecmgk,72,123,0|-j4mjol,72,123,0|-j4mjok,73,124,1|-ivmjsl,73,124,1|-ivmjsk,72,123,0|-ilwh0l,72,123,0|-ilwh0k,73,124,1|-icwh4l,73,124,1|-icwh4k,72,123,0|-i52u8l,72,123,0|-i52u8k,72,100,0|-i36ee1,72,100,0|-i36ee0,73,101,1|-hu6ei1,73,101,1|-hu6ei0,72,100,0|-hk3aa1,72,100,0|-hk3aa0,73,101,1|-hcj521,73,101,1|-hcj520,72,100,0|-h1d7m1,72,100,0|-h1d7m0,73,101,1|-gtt2e1,73,101,1|-gtt2e0,72,100,0|-gin4y1,72,100,0|-gin4y0,73,101,1|-gb2zq1,73,101,1|-gb2zq0,72,100,0|-fzk3m1,72,100,0|-fzk3m0,73,101,1|-fscx21,73,101,1|-fscx20,72,100,0|-fgu0y1,72,100,0|-fgu0y0,73,101,1|-f99vq1,73,101,1|-f99vq0,72,100,0|-ey3ya1,72,100,0|-ey3ya0,73,101,1|-eqjt21,73,101,1|-eqjt20,72,100,0|-efdvm1,72,100,0|-efdvm0,74,101,1|-cq2tg1,74,101,1|-cq2tg0,75,101,1|-cnp7i1,75,101,1|-cnp7i0,72,100,0|-cc6be1,72,100,0|-cc6be0,73,101,1|-c4m661,73,101,1|-c4m660,72,100,0|-btg8q1,72,100,0|-btg8q0,73,101,1|-blw3i1,73,101,1|-blw3i0,72,100,0|-baq621,72,100,0|-baq620,73,101,1|-b360u1,73,101,1|-b360u0,72,100,0|-as03e1,72,100,0|-as03e0,73,101,1|-akfy61,73,101,1|-akfy60,72,100,0|-a8x221,72,100,0|-a8x220,73,101,1|-a1cwu1,73,101,1|-a1cwu0,72,100,0|-9qwwq1,72,100,0|-9qwwq0,73,101,1|-9izsu1,73,101,1|-9izsu0,72,100,0|-986u21,72,100,0|-986u20,73,101,1|-909q61,73,101,1|-909q60,72,100,0|-8pgre1,72,100,0|-8pgre0,73,101,1|-8hjni1,73,101,1|-8hjni0,72,100,0|-86qoq1,72,100,0|-86qoq0,73,101,1|-7ytku1,73,101,1|-7ytku0,72,100,0|-7o0m21,72,100,0|-7o0m20,73,101,1|-7g3i61,73,101,1|-7g3i60,72,100,0|-74xkq1,72,100,0|-74xkq0,73,101,1|-6x0gu1,73,101,1|-6x0gu0,72,100,0|-6m7i21,72,100,0|-6m7i20,73,101,1|-6eae61,73,101,1|-6eae60,72,100,0|-63hfe1,72,100,0|-63hfe0,73,101,1|-5vkbi1,73,101,1|-5vkbi0,72,100,0|-5krcq1,72,100,0|-5krcq0,73,101,1|-5cu8u1,73,101,1|-5cu8u0,72,100,0|-521a21,72,100,0|-521a20,73,101,1|-4sbcu1,73,101,1|-4sbcu0,72,100,0|-4iy8q1,72,100,0|-4iy8q0,73,101,1|-49la61,73,101,1|-49la60,72,100,0|-408621,72,100,0|-408620,73,101,1|-3qv7i1,73,101,1|-3qv7i0,72,100,0|-3hi3e1,72,100,0|-3hi3e0,73,101,1|-3854u1,73,101,1|-3854u0,72,100,0|-2ys0q1,72,100,0|-2ys0q0,73,101,1|-2pf261,73,101,1|-2pf260,72,100,0|-2g1y21,72,100,0|-2g1y20,73,101,1|-26c0u1,73,101,1|-26c0u0,72,100,0|-1xbve1,72,100,0|-1xbve0,73,101,1|-1nly61,73,101,1|-1nly60,72,100,0|-1e8u21,72,100,0|-1e8u20,73,101,1|-14vvi1,73,101,1|-14vvi0,72,100,0|-vire1,72,100,0|-vire0,73,101,1|-m5su1,73,101,1|-m5su0,72,100,0|-csoq1,72,100,0|-csoq0,73,101,1|-3fq61,73,101,1|-3fq60,72,100,0|5xdxz,72,100,0|5xdy0,73,101,1|fachz,73,101,1|faci0,72,100,0|onglz,72,100,0|ongm0,73,101,1|yddtz,73,101,1|yddu0,72,100,0|17qhxz,72,100,0|17qhy0,73,101,1|1h3ghz,73,101,1|1h3gi0,72,100,0|1qgklz,72,100,0|1qgkm0,73,101,1|1ztj5z,73,101,1|1ztj60,72,100,0|296n9z,72,100,0|296na0,73,101,1|2ijltz,73,101,1|2ijlu0,72,100,0|2rwpxz,72,100,0|2rwpy0,73,101,1|319ohz,73,101,1|319oi0,72,100,0|3amslz,72,100,0|3amsm0,73,101,1|3kcptz,73,101,1|3kcpu0,72,100,0|3tcv9z,72,100,0|3tcva0,73,101,1|432shz,73,101,1|432si0,72,100,0|4cfwlz,72,100,0|4cfwm0,73,101,1|4lsv5z,73,101,1|4lsv60,72,100,0|4v5z9z,72,100,0|4v5za0,73,101,1|54ixtz,73,101,1|54ixu0,72,100,0|5dw1xz,72,100,0|5dw1y0,73,101,1|5n90hz,73,101,1|5n90i0,72,100,0|5wm4lz,72,100,0|5wm4m0,73,101,1|65z35z,73,101,1|65z360,72,100,0|6fc79z,72,100,0|6fc7a0,73,101,1|6p24hz,73,101,1|6p24i0,72,100,0|6y29xz,72,100,0|6y29y0,73,101,1|77s75z,73,101,1|77s760,72,100,0|7h5b9z,72,100,0|7h5ba0,73,101,1|7qi9tz,73,101,1|7qi9u0,72,100,0|7zvdxz,72,100,0|7zvdy0,73,101,1|898chz,73,101,1|898ci0,72,100,0|8ilglz,72,100,0|8ilgm0,73,101,1|8ryf5z,73,101,1|8ryf60,72,100,0|908hrn,72,100,0|908hro,73,101,1|9aocbn,73,101,1|9aocbo,72,100,0|9iykfn,72,100,0|9iykfo,76,102,1|9travn,76,102,1|9travo,72,100,0|a1on3n,72,100,0|a1on3o,73,101,1|achgbn,73,101,1|achgbo,72,100,0|akeprn,72,100,0|akepro,73,101,1|av7izn,73,101,1|av7izo,72,100,0|b3hr3n,72,100,0|b3hr3o,73,101,1|bdxlnn,73,101,1|bdxlno,72,100,0|bm7trn,72,100,0|bm7tro,73,101,1|bwnobn,73,101,1|bwnobo,72,100,0|c4xwfn,72,100,0|c4xwfo,73,101,1|cfqpnn,73,101,1|cfqpno,72,100,0|cnnz3n,72,100,0|cnnz3o,73,101,1|cygsbn,73,101,1|cygsbo,72,100,0|d6e1rn,72,100,0|d6e1ro,73,101,1|dh6uzn,73,101,1|dh6uzo,72,100,0|dph33n,72,100,0|dph33o,73,101,1|dzwxnn,73,101,1|dzwxno,72,100,0|e875rn,72,100,0|e875ro,73,101,1|ein0bn,73,101,1|ein0bo,72,100,0|eqx8fn,72,100,0|eqx8fo,73,101,1|f1d2zn,73,101,1|f1d2zo,72,100,0|f9nb3n,72,100,0|f9nb3o,73,101,1|fkg4bn,73,101,1|fkg4bo,72,100,0|fsddrn,72,100,0|fsddro,73,101,1|g366zn,73,101,1|g366zo,72,100,0|gb3gfn,72,100,0|gb3gfo,73,101,1|glw9nn,73,101,1|glw9no,72,100,0|gu6hrn,72,100,0|gu6hro,73,101,1|h4mcbn,73,101,1|h4mcbo,72,100,0|hcwkfn,72,100,0|hcwkfo,73,101,1|hncezn,73,101,1|hncezo,72,100,0|hvmn3n,72,100,0|hvmn3o,73,101,1|i6fgbn,73,101,1|i6fgbo,72,100,0|iecprn,72,100,0|iecpro,73,101,1|ip5izn,73,101,1|ip5izo,72,100,0|ix2sfn,72,100,0|ix2sfo,73,101,1|j7vlnn,73,101,1|j7vlno,72,100,0|jepz3n,72,100,0|jepz3o,73,101,1|jqymzn,73,101,1|jqymzo,72,100,0|jxg1rn,72,100,0|jxg1ro,73,101,1|k9opnn,73,101,1|k9opno,72,100,0|kg64fn,72,100,0|kg64fo,73,101,1|ksesbn,73,101,1|ksesbo,72,100,0|kz95rn,72,100,0|kz95ro,73,101,1|lbhtnn,73,101,1|lbhtno,72,100,0|lhz8fn,72,100,0|lhz8fo,73,101,1|lu81tz,73,101,1|lu81u0,72,100,0|m0pglz,72,100,0|m0pgm0,73,101,1|mcy4hz,73,101,1|mcy4i0,72,100,0|mjfj9z,72,100,0|mjfja0,73,101,1|mvo75z,73,101,1|mvo760,72,100,0|n25lxz,72,100,0|n25ly0,73,101,1|nee9tz,73,101,1|nee9u0,72,100,0|nkvolz,72,100,0|nkvom0,73,101,1|nx4chz,73,101,1|nx4ci0,72,100,0|o3ypxz,72,100,0|o3ypy0,73,101,1|og7dtz,73,101,1|og7du0,72,100,0|omoslz,72,100,0|omosm0,73,101,1|oyxghz,73,101,1|oyxgi0,72,100,0|p5ev9z,72,100,0|p5eva0,73,101,1|phnj5z,73,101,1|phnj60,72,100,0|po4xxz,72,100,0|po4xy0,73,101,1|q0dltz,73,101,1|q0dlu0,72,100,0|q6v0lz,72,100,0|q6v0m0,73,101,1|qj3ohz,73,101,1|qj3oi0,72,100,0|qpy1xz,72,100,0|qpy1y0,73,101,1|r26ptz,73,101,1|r26pu0,72,100,0|r8o4lz,72,100,0|r8o4m0,73,101,1|rkwshz,73,101,1|rkwsi0,72,100,0|rre79z,72,100,0|rre7a0,73,101,1|s3mv5z,73,101,1|s3mv60,72,100,0|sa49xz,72,100,0|sa49y0,73,101,1|smcxtz,73,101,1|smcxu0,72,100,0|ssuclz,72,100,0|ssucm0,73,101,1|t530hz,73,101,1|t530i0,72,100,0|tbkf9z,72,100,0|tbkfa0,73,101,1|tnt35z,73,101,1|tnt360,72,100,0|tunglz,72,100,0|tungm0,73,101,1|u6w4hz,73,101,1|u6w4i0,72,100,0|uddj9z,72,100,0|uddja0,73,101,1|upm75z,73,101,1|upm760,72,100,0|uw3lxz,72,100,0|uw3ly0,73,101,1|v8c9tz,73,101,1|v8c9u0,72,100,0|vetolz,72,100,0|vetom0,73,101,1|vr2chz,73,101,1|vr2ci0,72,100,0|vxjr9z,72,100,0|vxjra0,73,101,1|w9sf5z,73,101,1|w9sf60,72,100,0|wgmslz,72,100,0|wgmsm0,73,101,1|wsvghz,73,101,1|wsvgi0,72,100,0|wzcv9z,72,100,0|wzcva0,73,101,1|xblj5z,73,101,1|xblj60,72,100,0|xi2xxz,72,100,0|xi2xy0,73,101,1|xubltz,73,101,1|xublu0,72,100,0|y0t0lz,72,100,0|y0t0m0,73,101,1|yd1ohz,73,101,1|yd1oi0,72,100,0|yjj39z,72,100,0|yjj3a0,73,101,1|yvrr5z,73,101,1|yvrr60,72,100,0|z295xz,72,100,0|z295y0,73,101,1|zehttz,73,101,1|zehtu0,72,100,0","America/Swift_Current|,0,125,0|-xkq9d4,36,41,0|-qzosc1,36,41,0|-qzosc0,39,42,1|-qplwg1,39,42,1|-qplwg0,36,41,0|-ek1z01,36,41,0|-ek1z00,48,42,1|-cq2tg1,48,42,1|-cq2tg0,49,42,1|-cnoxs1,49,42,1|-cnoxs0,36,41,0|-ccvz01,36,41,0|-ccvz00,39,42,1|-c48xs1,39,42,1|-c48xs0,36,41,0|-bu5wc1,36,41,0|-bu5wc0,39,42,1|-bm8sg1,39,42,1|-bm8sg0,36,41,0|-bbfto1,36,41,0|-bbfto0,39,42,1|-b3ips1,39,42,1|-b3ips0,36,41,0|-aspr01,36,41,0|-aspr00,39,42,1|-aksn41,39,42,1|-aksn40,36,41,0|-6m78c1,36,41,0|-6m78c0,39,42,1|-6cu9s1,39,42,1|-6cu9s0,36,41,0|-5kr301,36,41,0|-5kr300,39,42,1|-5be4g1,39,42,1|-5be4g0,36,41,0|-5210c1,36,41,0|-5210c0,39,42,1|-4u3wg1,39,42,1|-4u3wg0,36,41,0|-4ixz01,36,41,0|-4ixz00,39,42,1|-4bdts1,39,42,1|-4bdts0,36,41,0|17qrnz,36,41,0|17qro0,37,42,0","America/Tegucigalpa|,0,126,0|-pfzh6k,37,42,0|91ojbz,37,42,0|91ojc0,40,43,1|998ojz,40,43,1|998ok0,37,42,0|9kelzz,37,42,0|9kem00,40,43,1|9ryr7z,40,43,1|9ryr80,37,42,0|iyvsnz,37,42,0|iyvso0,40,43,1|j3m37z,40,43,1|j3m380,37,42,0","America/Thunder_Bay|,0,127,0|-1353bh0,37,42,0|-vbavc1,37,42,0|-vbavc0,50,43,0|-ek24k1,50,43,0|-ek24k0,57,38,1|-cq2tg1,57,38,1|-cq2tg0,58,38,1|-cnp3c1,58,38,1|-cnp3c0,50,43,0|5xi3z,50,43,0|5xi40,51,38,1|fagnz,51,38,1|fago0,50,43,0|onkrz,50,43,0|onks0,51,38,1|ydhzz,51,38,1|ydi00,50,43,0|17qm3z,50,43,0|17qm40,51,38,1|1h3knz,51,38,1|1h3ko0,50,43,0|296rfz,50,43,0|296rg0,51,38,1|2ijpzz,51,38,1|2ijq00,50,43,0|2rwu3z,50,43,0|2rwu40,51,38,1|319snz,51,38,1|319so0,50,43,0|3amwrz,50,43,0|3amws0,51,38,1|3kctzz,51,38,1|3kcu00,50,43,0|3tczfz,50,43,0|3tczg0,51,38,1|432wnz,51,38,1|432wo0,50,43,0|4cg0rz,50,43,0|4cg0s0,51,38,1|4lszbz,51,38,1|4lszc0,50,43,0|4v63fz,50,43,0|4v63g0,51,38,1|54j1zz,51,38,1|54j200,50,43,0|5dw63z,50,43,0|5dw640,51,38,1|5n94nz,51,38,1|5n94o0,50,43,0|5wm8rz,50,43,0|5wm8s0,51,38,1|65z7bz,51,38,1|65z7c0,50,43,0|6fcbfz,50,43,0|6fcbg0,51,38,1|6p28nz,51,38,1|6p28o0,50,43,0|6y2e3z,50,43,0|6y2e40,51,38,1|77sbbz,51,38,1|77sbc0,50,43,0|7h5ffz,50,43,0|7h5fg0,51,38,1|7qidzz,51,38,1|7qie00,50,43,0|7zvi3z,50,43,0|7zvi40,51,38,1|898gnz,51,38,1|898go0,50,43,0|8ilkrz,50,43,0|8ilks0,51,38,1|8ryjbz,51,38,1|8ryjc0,50,43,0|908rfz,50,43,0|908rg0,51,38,1|9aolzz,51,38,1|9aom00,50,43,0|9iyu3z,50,43,0|9iyu40,51,38,1|9trnbz,51,38,1|9trnc0,50,43,0|a1owrz,50,43,0|a1ows0,51,38,1|achpzz,51,38,1|achq00,50,43,0|akezfz,50,43,0|akezg0,51,38,1|av7snz,51,38,1|av7so0,50,43,0|b3i0rz,50,43,0|b3i0s0,51,38,1|bdxvbz,51,38,1|bdxvc0,50,43,0|bm83fz,50,43,0|bm83g0,51,38,1|bwnxzz,51,38,1|bwny00,50,43,0|c4y63z,50,43,0|c4y640,51,38,1|cfqzbz,51,38,1|cfqzc0,50,43,0|cno8rz,50,43,0|cno8s0,51,38,1|cyh1zz,51,38,1|cyh200,50,43,0|d6ebfz,50,43,0|d6ebg0,51,38,1|dh74nz,51,38,1|dh74o0,50,43,0|dphcrz,50,43,0|dphcs0,51,38,1|dzx7bz,51,38,1|dzx7c0,50,43,0|e87ffz,50,43,0|e87fg0,51,38,1|ein9zz,51,38,1|eina00,50,43,0|eqxi3z,50,43,0|eqxi40,51,38,1|f1dcnz,51,38,1|f1dco0,50,43,0|f9nkrz,50,43,0|f9nks0,51,38,1|fkgdzz,51,38,1|fkge00,50,43,0|fsdnfz,50,43,0|fsdng0,51,38,1|g36gnz,51,38,1|g36go0,50,43,0|gb3q3z,50,43,0|gb3q40,51,38,1|glwjbz,51,38,1|glwjc0,50,43,0|gu6rfz,50,43,0|gu6rg0,51,38,1|h4mlzz,51,38,1|h4mm00,50,43,0|hcwu3z,50,43,0|hcwu40,51,38,1|hnconz,51,38,1|hncoo0,50,43,0|hvmwrz,50,43,0|hvmws0,51,38,1|i6fpzz,51,38,1|i6fq00,50,43,0|ieczfz,50,43,0|ieczg0,51,38,1|ip5snz,51,38,1|ip5so0,50,43,0|ix323z,50,43,0|ix3240,51,38,1|j7vvbz,51,38,1|j7vvc0,50,43,0|jeq8rz,50,43,0|jeq8s0,51,38,1|jqywnz,51,38,1|jqywo0,50,43,0|jxgbfz,50,43,0|jxgbg0,51,38,1|k9ozbz,51,38,1|k9ozc0,50,43,0|kg6e3z,50,43,0|kg6e40,51,38,1|ksf1zz,51,38,1|ksf200,50,43,0|kz9ffz,50,43,0|kz9fg0,51,38,1|lbi3bz,51,38,1|lbi3c0,50,43,0|lhzi3z,50,43,0|lhzi40,51,38,1|lu85zz,51,38,1|lu8600,50,43,0|m0pkrz,50,43,0|m0pks0,51,38,1|mcy8nz,51,38,1|mcy8o0,50,43,0|mjfnfz,50,43,0|mjfng0,51,38,1|mvobbz,51,38,1|mvobc0,50,43,0|n25q3z,50,43,0|n25q40,51,38,1|needzz,51,38,1|neee00,50,43,0|nkvsrz,50,43,0|nkvss0,51,38,1|nx4gnz,51,38,1|nx4go0,50,43,0|o3yu3z,50,43,0|o3yu40,51,38,1|og7hzz,51,38,1|og7i00,50,43,0|omowrz,50,43,0|omows0,51,38,1|oyxknz,51,38,1|oyxko0,50,43,0|p5ezfz,50,43,0|p5ezg0,51,38,1|phnnbz,51,38,1|phnnc0,50,43,0|po523z,50,43,0|po5240,51,38,1|q0dpzz,51,38,1|q0dq00,50,43,0|q6v4rz,50,43,0|q6v4s0,51,38,1|qj3snz,51,38,1|qj3so0,50,43,0|qpy63z,50,43,0|qpy640,51,38,1|r26tzz,51,38,1|r26u00,50,43,0|r8o8rz,50,43,0|r8o8s0,51,38,1|rkwwnz,51,38,1|rkwwo0,50,43,0|rrebfz,50,43,0|rrebg0,51,38,1|s3mzbz,51,38,1|s3mzc0,50,43,0|sa4e3z,50,43,0|sa4e40,51,38,1|smd1zz,51,38,1|smd200,50,43,0|ssugrz,50,43,0|ssugs0,51,38,1|t534nz,51,38,1|t534o0,50,43,0|tbkjfz,50,43,0|tbkjg0,51,38,1|tnt7bz,51,38,1|tnt7c0,50,43,0|tunkrz,50,43,0|tunks0,51,38,1|u6w8nz,51,38,1|u6w8o0,50,43,0|uddnfz,50,43,0|uddng0,51,38,1|upmbbz,51,38,1|upmbc0,50,43,0|uw3q3z,50,43,0|uw3q40,51,38,1|v8cdzz,51,38,1|v8ce00,50,43,0|vetsrz,50,43,0|vetss0,51,38,1|vr2gnz,51,38,1|vr2go0,50,43,0|vxjvfz,50,43,0|vxjvg0,51,38,1|w9sjbz,51,38,1|w9sjc0,50,43,0|wgmwrz,50,43,0|wgmws0,51,38,1|wsvknz,51,38,1|wsvko0,50,43,0|wzczfz,50,43,0|wzczg0,51,38,1|xblnbz,51,38,1|xblnc0,50,43,0|xi323z,50,43,0|xi3240,51,38,1|xubpzz,51,38,1|xubq00,50,43,0|y0t4rz,50,43,0|y0t4s0,51,38,1|yd1snz,51,38,1|yd1so0,50,43,0|yjj7fz,50,43,0|yjj7g0,51,38,1|yvrvbz,51,38,1|yvrvc0,50,43,0|z29a3z,50,43,0|z29a40,51,38,1|zehxzz,51,38,1|zehy00,50,43,0","America/Tijuana|,0,128,0|-p1u1s0,36,41,0|-o0a9w1,36,41,0|-o0a9w0,38,33,0|-m7mhw1,38,33,0|-m7mhw0,36,41,0|-kf64k1,36,41,0|-kf64k0,38,33,0|-k84cg1,38,33,0|-k84cg0,47,41,1|-jyrdw1,47,41,1|-jyrdw0,38,33,0|-eg90g1,38,33,0|-eg90g0,55,41,1|-cq2tg1,55,41,1|-cq2tg0,56,41,1|-clhdw1,56,41,1|-clhdw0,38,33,0|-bcgxs1,38,33,0|-bcgxs0,47,41,1|-axv381,47,41,1|-axv380,38,33,0|-86qf01,38,33,0|-86qf00,47,41,1|-7yt8c1,47,41,1|-7yt8c0,38,33,0|-7o0cc1,38,33,0|-7o0cc0,47,41,1|-7g35o1,47,41,1|-7g35o0,38,33,0|-74xb01,38,33,0|-74xb00,47,41,1|-6x04c1,47,41,1|-6x04c0,38,33,0|-6m78c1,38,33,0|-6m78c0,47,41,1|-6ea1o1,47,41,1|-6ea1o0,38,33,0|-63h5o1,38,33,0|-63h5o0,47,41,1|-5vjz01,47,41,1|-5vjz00,38,33,0|-5kr301,38,33,0|-5kr300,47,41,1|-5ctwc1,47,41,1|-5ctwc0,38,33,0|-5210c1,38,33,0|-5210c0,47,41,1|-4u3to1,47,41,1|-4u3to0,38,33,0|3an53z,38,33,0|3an540,47,41,1|3kd2bz,47,41,1|3kd2c0,38,33,0|3td7rz,38,33,0|3td7s0,47,41,1|4334zz,47,41,1|433500,38,33,0|4cg93z,38,33,0|4cg940,47,41,1|4lt7nz,47,41,1|4lt7o0,38,33,0|4v6brz,38,33,0|4v6bs0,47,41,1|54jabz,47,41,1|54jac0,38,33,0|5dwefz,38,33,0|5dweg0,47,41,1|5n9czz,47,41,1|5n9d00,38,33,0|5wmh3z,38,33,0|5wmh40,47,41,1|65zfnz,47,41,1|65zfo0,38,33,0|6fcjrz,38,33,0|6fcjs0,47,41,1|6p2gzz,47,41,1|6p2h00,38,33,0|6y2mfz,38,33,0|6y2mg0,47,41,1|77sjnz,47,41,1|77sjo0,38,33,0|7h5nrz,38,33,0|7h5ns0,47,41,1|7qimbz,47,41,1|7qimc0,38,33,0|7zvqfz,38,33,0|7zvqg0,47,41,1|898ozz,47,41,1|898p00,38,33,0|8ilt3z,38,33,0|8ilt40,47,41,1|8ryrnz,47,41,1|8ryro0,38,33,0|908zrz,38,33,0|908zs0,47,41,1|9aoubz,47,41,1|9aouc0,38,33,0|9iz2fz,38,33,0|9iz2g0,47,41,1|9trvnz,47,41,1|9trvo0,38,33,0|a1p53z,38,33,0|a1p540,47,41,1|achybz,47,41,1|achyc0,38,33,0|akf7rz,38,33,0|akf7s0,47,41,1|av80zz,47,41,1|av8100,38,33,0|b3i93z,38,33,0|b3i940,47,41,1|bdy3nz,47,41,1|bdy3o0,38,33,0|bm8brz,38,33,0|bm8bs0,47,41,1|bwo6bz,47,41,1|bwo6c0,38,33,0|c4yefz,38,33,0|c4yeg0,47,41,1|cfr7nz,47,41,1|cfr7o0,38,33,0|cnoh3z,38,33,0|cnoh40,47,41,1|cyhabz,47,41,1|cyhac0,38,33,0|d6ejrz,38,33,0|d6ejs0,47,41,1|dh7czz,47,41,1|dh7d00,38,33,0|dphl3z,38,33,0|dphl40,47,41,1|dzxfnz,47,41,1|dzxfo0,38,33,0|e87nrz,38,33,0|e87ns0,47,41,1|einibz,47,41,1|einic0,38,33,0|eqxqfz,38,33,0|eqxqg0,47,41,1|f1dkzz,47,41,1|f1dl00,38,33,0|f9nt3z,38,33,0|f9nt40,47,41,1|fkgmbz,47,41,1|fkgmc0,38,33,0|fsdvrz,38,33,0|fsdvs0,47,41,1|g36ozz,47,41,1|g36p00,38,33,0|gb3yfz,38,33,0|gb3yg0,47,41,1|glwrnz,47,41,1|glwro0,38,33,0|gu6zrz,38,33,0|gu6zs0,47,41,1|h4mubz,47,41,1|h4muc0,38,33,0|hcx2fz,38,33,0|hcx2g0,47,41,1|hncwzz,47,41,1|hncx00,38,33,0|hvn53z,38,33,0|hvn540,47,41,1|i6fybz,47,41,1|i6fyc0,38,33,0|ied7rz,38,33,0|ied7s0,47,41,1|ip60zz,47,41,1|ip6100,38,33,0|ix3afz,38,33,0|ix3ag0,47,41,1|j7w3nz,47,41,1|j7w3o0,38,33,0|jftd3z,38,33,0|jftd40,47,41,1|jqm6bz,47,41,1|jqm6c0,38,33,0|jywefz,38,33,0|jyweg0,47,41,1|k9c8zz,47,41,1|k9c900,38,33,0|khmh3z,38,33,0|khmh40,47,41,1|ks2bnz,47,41,1|ks2bo0,38,33,0|kz9nrz,38,33,0|kz9ns0,47,41,1|lbibnz,47,41,1|lbibo0,38,33,0|lhzqfz,38,33,0|lhzqg0,47,41,1|lu8ebz,47,41,1|lu8ec0,38,33,0|m0pt3z,38,33,0|m0pt40,47,41,1|mcygzz,47,41,1|mcyh00,38,33,0|mjfvrz,38,33,0|mjfvs0,47,41,1|mvojnz,47,41,1|mvojo0,38,33,0|n25yfz,38,33,0|n25yg0,47,41,1|neembz,47,41,1|neemc0,38,33,0|nkw13z,38,33,0|nkw140,47,41,1|nx4ozz,47,41,1|nx4p00,38,33,0|o3z2fz,38,33,0|o3z2g0,47,41,1|og7qbz,47,41,1|og7qc0,38,33,0|omp53z,38,33,0|omp540,47,41,1|oyxszz,47,41,1|oyxt00,38,33,0|p5f7rz,38,33,0|p5f7s0,47,41,1|phnvnz,47,41,1|phnvo0,38,33,0|po5afz,38,33,0|po5ag0,47,41,1|q0dybz,47,41,1|q0dyc0,38,33,0|q6vd3z,38,33,0|q6vd40,47,41,1|qj40zz,47,41,1|qj4100,38,33,0|qpyefz,38,33,0|qpyeg0,47,41,1|r272bz,47,41,1|r272c0,38,33,0|r8oh3z,38,33,0|r8oh40,47,41,1|rkx4zz,47,41,1|rkx500,38,33,0|rrejrz,38,33,0|rrejs0,47,41,1|s3n7nz,47,41,1|s3n7o0,38,33,0|sa4mfz,38,33,0|sa4mg0,47,41,1|smdabz,47,41,1|smdac0,38,33,0|ssup3z,38,33,0|ssup40,47,41,1|t53czz,47,41,1|t53d00,38,33,0|tbkrrz,38,33,0|tbkrs0,47,41,1|tntfnz,47,41,1|tntfo0,38,33,0|tunt3z,38,33,0|tunt40,47,41,1|u6wgzz,47,41,1|u6wh00,38,33,0|uddvrz,38,33,0|uddvs0,47,41,1|upmjnz,47,41,1|upmjo0,38,33,0|uw3yfz,38,33,0|uw3yg0,47,41,1|v8cmbz,47,41,1|v8cmc0,38,33,0|veu13z,38,33,0|veu140,47,41,1|vr2ozz,47,41,1|vr2p00,38,33,0|vxk3rz,38,33,0|vxk3s0,47,41,1|w9srnz,47,41,1|w9sro0,38,33,0|wgn53z,38,33,0|wgn540,47,41,1|wsvszz,47,41,1|wsvt00,38,33,0|wzd7rz,38,33,0|wzd7s0,47,41,1|xblvnz,47,41,1|xblvo0,38,33,0|xi3afz,38,33,0|xi3ag0,47,41,1|xubybz,47,41,1|xubyc0,38,33,0|y0td3z,38,33,0|y0td40,47,41,1|yd20zz,47,41,1|yd2100,38,33,0|yjjfrz,38,33,0|yjjfs0,47,41,1|yvs3nz,47,41,1|yvs3o0,38,33,0|z29ifz,38,33,0|z29ig0,47,41,1|zei6bz,47,41,1|zei6c0,38,33,0","America/Toronto|,0,129,0|-1353das,50,43,0|-qzoxw1,50,43,0|-qzoxw0,51,38,1|-qpm201,51,38,1|-qpm200,50,43,0|-qhn4u1,50,43,0|-qhn4u0,51,38,1|-q6w4w1,51,38,1|-q6w4w0,50,43,0|-px5wk1,50,43,0|-px5wk0,51,38,1|-pplww1,51,38,1|-pplww0,50,43,0|-pdpwk1,50,43,0|-pdpwk0,51,38,1|-p7e7c1,51,38,1|-p7e7c0,50,43,0|-ouztw1,50,43,0|-ouztw0,51,38,1|-ooiko1,51,38,1|-ooiko0,50,43,0|-oc9r81,50,43,0|-oc9r80,51,38,1|-o5si01,51,38,1|-o5si00,50,43,0|-ntwn81,50,43,0|-ntwn80,51,38,1|-nmpgo1,51,38,1|-nmpgo0,50,43,0|-nb6kk1,50,43,0|-nb6kk0,51,38,1|-n3ze01,51,38,1|-n3ze00,50,43,0|-msghw1,50,43,0|-msghw0,51,38,1|-ml9bc1,51,38,1|-ml9bc0,50,43,0|-m9qf81,50,43,0|-m9qf80,51,38,1|-m26a01,51,38,1|-m26a00,50,43,0|-lr0ck1,50,43,0|-lr0ck0,51,38,1|-lj38o1,51,38,1|-lj38o0,50,43,0|-l8a9w1,50,43,0|-l8a9w0,51,38,1|-l0d601,51,38,1|-l0d600,50,43,0|-kpk781,50,43,0|-kpk780,51,38,1|-khn3c1,51,38,1|-khn3c0,50,43,0|-k6u4k1,50,43,0|-k6u4k0,51,38,1|-jyx0o1,51,38,1|-jyx0o0,50,43,0|-jnr381,50,43,0|-jnr380,51,38,1|-jg6y01,51,38,1|-jg6y00,50,43,0|-j510k1,50,43,0|-j510k0,51,38,1|-ix3wo1,51,38,1|-ix3wo0,50,43,0|-imaxw1,50,43,0|-imaxw0,51,38,1|-iedu01,51,38,1|-iedu00,50,43,0|-i3kv81,50,43,0|-i3kv80,51,38,1|-hvnrc1,51,38,1|-hvnrc0,50,43,0|-hkusk1,50,43,0|-hkusk0,51,38,1|-hcxoo1,51,38,1|-hcxoo0,50,43,0|-h24pw1,50,43,0|-h24pw0,51,38,1|-gu7m01,51,38,1|-gu7m00,50,43,0|-gjen81,50,43,0|-gjen80,51,38,1|-gbhjc1,51,38,1|-gbhjc0,50,43,0|-g0blw1,50,43,0|-g0blw0,51,38,1|-fsrgo1,51,38,1|-fsrgo0,50,43,0|-fhlj81,50,43,0|-fhlj80,51,38,1|-ek24k1,51,38,1|-ek24k0,57,38,1|-cq2tg1,57,38,1|-cq2tg0,58,38,1|-cnp3c1,58,38,1|-cnp3c0,50,43,0|-ccw4k1,50,43,0|-ccw4k0,51,38,1|-c4z0o1,51,38,1|-c4z0o0,50,43,0|-bu67g1,50,43,0|-bu67g0,51,38,1|-bm93k1,51,38,1|-bm93k0,50,43,0|-bbg4s1,50,43,0|-bbg4s0,51,38,1|-b3j0w1,51,38,1|-b3j0w0,50,43,0|-asq241,50,43,0|-asq240,51,38,1|-ahka81,51,38,1|-ahka80,50,43,0|-a9mv81,50,43,0|-a9mv80,51,38,1|-9yu201,51,38,1|-9yu200,50,43,0|-9qwsk1,50,43,0|-9qwsk0,51,38,1|-9izoo1,51,38,1|-9izoo0,50,43,0|-986pw1,50,43,0|-986pw0,51,38,1|-909m01,51,38,1|-909m00,50,43,0|-8pgn81,50,43,0|-8pgn80,51,38,1|-8hjjc1,51,38,1|-8hjjc0,50,43,0|-86qkk1,50,43,0|-86qkk0,51,38,1|-7ytgo1,51,38,1|-7ytgo0,50,43,0|-7o0hw1,50,43,0|-7o0hw0,51,38,1|-7g3e01,51,38,1|-7g3e00,50,43,0|-74xgk1,50,43,0|-74xgk0,51,38,1|-6x0co1,51,38,1|-6x0co0,50,43,0|-6m7dw1,50,43,0|-6m7dw0,51,38,1|-6cufc1,51,38,1|-6cufc0,50,43,0|-63hb81,50,43,0|-63hb80,51,38,1|-5u4co1,51,38,1|-5u4co0,50,43,0|-5kr8k1,50,43,0|-5kr8k0,51,38,1|-5bea01,51,38,1|-5bea00,50,43,0|-5215w1,50,43,0|-5215w0,51,38,1|-4sb8o1,51,38,1|-4sb8o0,50,43,0|-4iy4k1,50,43,0|-4iy4k0,51,38,1|-49l601,51,38,1|-49l600,50,43,0|-4081w1,50,43,0|-4081w0,51,38,1|-3qv3c1,51,38,1|-3qv3c0,50,43,0|-3hhz81,50,43,0|-3hhz80,51,38,1|-3850o1,51,38,1|-3850o0,50,43,0|-2yrwk1,50,43,0|-2yrwk0,51,38,1|-2pey01,51,38,1|-2pey00,50,43,0|-2g1tw1,50,43,0|-2g1tw0,51,38,1|-26bwo1,51,38,1|-26bwo0,50,43,0|-1xbr81,50,43,0|-1xbr80,51,38,1|-1nlu01,51,38,1|-1nlu00,50,43,0|-1e8pw1,50,43,0|-1e8pw0,51,38,1|-14vrc1,51,38,1|-14vrc0,50,43,0|-vin81,50,43,0|-vin80,51,38,1|-m5oo1,51,38,1|-m5oo0,50,43,0|-cskk1,50,43,0|-cskk0,51,38,1|-3fm01,51,38,1|-3fm00,50,43,0|5xi3z,50,43,0|5xi40,51,38,1|fagnz,51,38,1|fago0,50,43,0|onkrz,50,43,0|onks0,51,38,1|ydhzz,51,38,1|ydi00,50,43,0|17qm3z,50,43,0|17qm40,51,38,1|1h3knz,51,38,1|1h3ko0,50,43,0|1qgorz,50,43,0|1qgos0,51,38,1|1ztnbz,51,38,1|1ztnc0,50,43,0|296rfz,50,43,0|296rg0,51,38,1|2ijpzz,51,38,1|2ijq00,50,43,0|2rwu3z,50,43,0|2rwu40,51,38,1|319snz,51,38,1|319so0,50,43,0|3amwrz,50,43,0|3amws0,51,38,1|3kctzz,51,38,1|3kcu00,50,43,0|3tczfz,50,43,0|3tczg0,51,38,1|432wnz,51,38,1|432wo0,50,43,0|4cg0rz,50,43,0|4cg0s0,51,38,1|4lszbz,51,38,1|4lszc0,50,43,0|4v63fz,50,43,0|4v63g0,51,38,1|54j1zz,51,38,1|54j200,50,43,0|5dw63z,50,43,0|5dw640,51,38,1|5n94nz,51,38,1|5n94o0,50,43,0|5wm8rz,50,43,0|5wm8s0,51,38,1|65z7bz,51,38,1|65z7c0,50,43,0|6fcbfz,50,43,0|6fcbg0,51,38,1|6p28nz,51,38,1|6p28o0,50,43,0|6y2e3z,50,43,0|6y2e40,51,38,1|77sbbz,51,38,1|77sbc0,50,43,0|7h5ffz,50,43,0|7h5fg0,51,38,1|7qidzz,51,38,1|7qie00,50,43,0|7zvi3z,50,43,0|7zvi40,51,38,1|898gnz,51,38,1|898go0,50,43,0|8ilkrz,50,43,0|8ilks0,51,38,1|8ryjbz,51,38,1|8ryjc0,50,43,0|908rfz,50,43,0|908rg0,51,38,1|9aolzz,51,38,1|9aom00,50,43,0|9iyu3z,50,43,0|9iyu40,51,38,1|9trnbz,51,38,1|9trnc0,50,43,0|a1owrz,50,43,0|a1ows0,51,38,1|achpzz,51,38,1|achq00,50,43,0|akezfz,50,43,0|akezg0,51,38,1|av7snz,51,38,1|av7so0,50,43,0|b3i0rz,50,43,0|b3i0s0,51,38,1|bdxvbz,51,38,1|bdxvc0,50,43,0|bm83fz,50,43,0|bm83g0,51,38,1|bwnxzz,51,38,1|bwny00,50,43,0|c4y63z,50,43,0|c4y640,51,38,1|cfqzbz,51,38,1|cfqzc0,50,43,0|cno8rz,50,43,0|cno8s0,51,38,1|cyh1zz,51,38,1|cyh200,50,43,0|d6ebfz,50,43,0|d6ebg0,51,38,1|dh74nz,51,38,1|dh74o0,50,43,0|dphcrz,50,43,0|dphcs0,51,38,1|dzx7bz,51,38,1|dzx7c0,50,43,0|e87ffz,50,43,0|e87fg0,51,38,1|ein9zz,51,38,1|eina00,50,43,0|eqxi3z,50,43,0|eqxi40,51,38,1|f1dcnz,51,38,1|f1dco0,50,43,0|f9nkrz,50,43,0|f9nks0,51,38,1|fkgdzz,51,38,1|fkge00,50,43,0|fsdnfz,50,43,0|fsdng0,51,38,1|g36gnz,51,38,1|g36go0,50,43,0|gb3q3z,50,43,0|gb3q40,51,38,1|glwjbz,51,38,1|glwjc0,50,43,0|gu6rfz,50,43,0|gu6rg0,51,38,1|h4mlzz,51,38,1|h4mm00,50,43,0|hcwu3z,50,43,0|hcwu40,51,38,1|hnconz,51,38,1|hncoo0,50,43,0|hvmwrz,50,43,0|hvmws0,51,38,1|i6fpzz,51,38,1|i6fq00,50,43,0|ieczfz,50,43,0|ieczg0,51,38,1|ip5snz,51,38,1|ip5so0,50,43,0|ix323z,50,43,0|ix3240,51,38,1|j7vvbz,51,38,1|j7vvc0,50,43,0|jeq8rz,50,43,0|jeq8s0,51,38,1|jqywnz,51,38,1|jqywo0,50,43,0|jxgbfz,50,43,0|jxgbg0,51,38,1|k9ozbz,51,38,1|k9ozc0,50,43,0|kg6e3z,50,43,0|kg6e40,51,38,1|ksf1zz,51,38,1|ksf200,50,43,0|kz9ffz,50,43,0|kz9fg0,51,38,1|lbi3bz,51,38,1|lbi3c0,50,43,0|lhzi3z,50,43,0|lhzi40,51,38,1|lu85zz,51,38,1|lu8600,50,43,0|m0pkrz,50,43,0|m0pks0,51,38,1|mcy8nz,51,38,1|mcy8o0,50,43,0|mjfnfz,50,43,0|mjfng0,51,38,1|mvobbz,51,38,1|mvobc0,50,43,0|n25q3z,50,43,0|n25q40,51,38,1|needzz,51,38,1|neee00,50,43,0|nkvsrz,50,43,0|nkvss0,51,38,1|nx4gnz,51,38,1|nx4go0,50,43,0|o3yu3z,50,43,0|o3yu40,51,38,1|og7hzz,51,38,1|og7i00,50,43,0|omowrz,50,43,0|omows0,51,38,1|oyxknz,51,38,1|oyxko0,50,43,0|p5ezfz,50,43,0|p5ezg0,51,38,1|phnnbz,51,38,1|phnnc0,50,43,0|po523z,50,43,0|po5240,51,38,1|q0dpzz,51,38,1|q0dq00,50,43,0|q6v4rz,50,43,0|q6v4s0,51,38,1|qj3snz,51,38,1|qj3so0,50,43,0|qpy63z,50,43,0|qpy640,51,38,1|r26tzz,51,38,1|r26u00,50,43,0|r8o8rz,50,43,0|r8o8s0,51,38,1|rkwwnz,51,38,1|rkwwo0,50,43,0|rrebfz,50,43,0|rrebg0,51,38,1|s3mzbz,51,38,1|s3mzc0,50,43,0|sa4e3z,50,43,0|sa4e40,51,38,1|smd1zz,51,38,1|smd200,50,43,0|ssugrz,50,43,0|ssugs0,51,38,1|t534nz,51,38,1|t534o0,50,43,0|tbkjfz,50,43,0|tbkjg0,51,38,1|tnt7bz,51,38,1|tnt7c0,50,43,0|tunkrz,50,43,0|tunks0,51,38,1|u6w8nz,51,38,1|u6w8o0,50,43,0|uddnfz,50,43,0|uddng0,51,38,1|upmbbz,51,38,1|upmbc0,50,43,0|uw3q3z,50,43,0|uw3q40,51,38,1|v8cdzz,51,38,1|v8ce00,50,43,0|vetsrz,50,43,0|vetss0,51,38,1|vr2gnz,51,38,1|vr2go0,50,43,0|vxjvfz,50,43,0|vxjvg0,51,38,1|w9sjbz,51,38,1|w9sjc0,50,43,0|wgmwrz,50,43,0|wgmws0,51,38,1|wsvknz,51,38,1|wsvko0,50,43,0|wzczfz,50,43,0|wzczg0,51,38,1|xblnbz,51,38,1|xblnc0,50,43,0|xi323z,50,43,0|xi3240,51,38,1|xubpzz,51,38,1|xubq00,50,43,0|y0t4rz,50,43,0|y0t4s0,51,38,1|yd1snz,51,38,1|yd1so0,50,43,0|yjj7fz,50,43,0|yjj7g0,51,38,1|yvrvbz,51,38,1|yvrvc0,50,43,0|z29a3z,50,43,0|z29a40,51,38,1|zehxzz,51,38,1|zehy00,50,43,0","America/Vancouver|,0,130,0|-18vrvv8,38,33,0|-qzopk1,38,33,0|-qzopk0,47,41,1|-qplto1,47,41,1|-qplto0,38,33,0|-ek1w81,38,33,0|-ek1w80,55,41,1|-cq2tg1,55,41,1|-cq2tg0,56,41,1|-cnov01,56,41,1|-cnov00,38,33,0|-ccvw81,38,33,0|-ccvw80,47,41,1|-c4ysc1,47,41,1|-c4ysc0,38,33,0|-bu5tk1,38,33,0|-bu5tk0,47,41,1|-bm8po1,47,41,1|-bm8po0,38,33,0|-bbfqw1,38,33,0|-bbfqw0,47,41,1|-b3in01,47,41,1|-b3in00,38,33,0|-aspo81,38,33,0|-aspo80,47,41,1|-akskc1,47,41,1|-akskc0,38,33,0|-a9mmw1,38,33,0|-a9mmw0,47,41,1|-a22ho1,47,41,1|-a22ho0,38,33,0|-9qwk81,38,33,0|-9qwk80,47,41,1|-9izgc1,47,41,1|-9izgc0,38,33,0|-986hk1,38,33,0|-986hk0,47,41,1|-909do1,47,41,1|-909do0,38,33,0|-8pgew1,38,33,0|-8pgew0,47,41,1|-8hjb01,47,41,1|-8hjb00,38,33,0|-86qc81,38,33,0|-86qc80,47,41,1|-7yt8c1,47,41,1|-7yt8c0,38,33,0|-7o09k1,38,33,0|-7o09k0,47,41,1|-7g35o1,47,41,1|-7g35o0,38,33,0|-74x881,38,33,0|-74x880,47,41,1|-6x04c1,47,41,1|-6x04c0,38,33,0|-6m75k1,38,33,0|-6m75k0,47,41,1|-6ea1o1,47,41,1|-6ea1o0,38,33,0|-63h2w1,38,33,0|-63h2w0,47,41,1|-5vjz01,47,41,1|-5vjz00,38,33,0|-5kr081,38,33,0|-5kr080,47,41,1|-5ctwc1,47,41,1|-5ctwc0,38,33,0|-520xk1,38,33,0|-520xk0,47,41,1|-4u3to1,47,41,1|-4u3to0,38,33,0|-4ixw81,38,33,0|-4ixw80,47,41,1|-4bdr01,47,41,1|-4bdr00,38,33,0|-407tk1,38,33,0|-407tk0,47,41,1|-3quv01,47,41,1|-3quv00,38,33,0|-3hhqw1,38,33,0|-3hhqw0,47,41,1|-384sc1,47,41,1|-384sc0,38,33,0|-2yro81,38,33,0|-2yro80,47,41,1|-2pepo1,47,41,1|-2pepo0,38,33,0|-2g1lk1,38,33,0|-2g1lk0,47,41,1|-26boc1,47,41,1|-26boc0,38,33,0|-1xbiw1,38,33,0|-1xbiw0,47,41,1|-1nllo1,47,41,1|-1nllo0,38,33,0|-1e8hk1,38,33,0|-1e8hk0,47,41,1|-14vj01,47,41,1|-14vj00,38,33,0|-view1,38,33,0|-view0,47,41,1|-m5gc1,47,41,1|-m5gc0,38,33,0|-csc81,38,33,0|-csc80,47,41,1|-3fdo1,47,41,1|-3fdo0,38,33,0|5xqfz,38,33,0|5xqg0,47,41,1|faozz,47,41,1|fap00,38,33,0|ont3z,38,33,0|ont40,47,41,1|ydqbz,47,41,1|ydqc0,38,33,0|17qufz,38,33,0|17qug0,47,41,1|1h3szz,47,41,1|1h3t00,38,33,0|1qgx3z,38,33,0|1qgx40,47,41,1|1ztvnz,47,41,1|1ztvo0,38,33,0|296zrz,38,33,0|296zs0,47,41,1|2ijybz,47,41,1|2ijyc0,38,33,0|2rx2fz,38,33,0|2rx2g0,47,41,1|31a0zz,47,41,1|31a100,38,33,0|3an53z,38,33,0|3an540,47,41,1|3kd2bz,47,41,1|3kd2c0,38,33,0|3td7rz,38,33,0|3td7s0,47,41,1|4334zz,47,41,1|433500,38,33,0|4cg93z,38,33,0|4cg940,47,41,1|4lt7nz,47,41,1|4lt7o0,38,33,0|4v6brz,38,33,0|4v6bs0,47,41,1|54jabz,47,41,1|54jac0,38,33,0|5dwefz,38,33,0|5dweg0,47,41,1|5n9czz,47,41,1|5n9d00,38,33,0|5wmh3z,38,33,0|5wmh40,47,41,1|65zfnz,47,41,1|65zfo0,38,33,0|6fcjrz,38,33,0|6fcjs0,47,41,1|6p2gzz,47,41,1|6p2h00,38,33,0|6y2mfz,38,33,0|6y2mg0,47,41,1|77sjnz,47,41,1|77sjo0,38,33,0|7h5nrz,38,33,0|7h5ns0,47,41,1|7qimbz,47,41,1|7qimc0,38,33,0|7zvqfz,38,33,0|7zvqg0,47,41,1|898ozz,47,41,1|898p00,38,33,0|8ilt3z,38,33,0|8ilt40,47,41,1|8ryrnz,47,41,1|8ryro0,38,33,0|908zrz,38,33,0|908zs0,47,41,1|9aoubz,47,41,1|9aouc0,38,33,0|9iz2fz,38,33,0|9iz2g0,47,41,1|9trvnz,47,41,1|9trvo0,38,33,0|a1p53z,38,33,0|a1p540,47,41,1|achybz,47,41,1|achyc0,38,33,0|akf7rz,38,33,0|akf7s0,47,41,1|av80zz,47,41,1|av8100,38,33,0|b3i93z,38,33,0|b3i940,47,41,1|bdy3nz,47,41,1|bdy3o0,38,33,0|bm8brz,38,33,0|bm8bs0,47,41,1|bwo6bz,47,41,1|bwo6c0,38,33,0|c4yefz,38,33,0|c4yeg0,47,41,1|cfr7nz,47,41,1|cfr7o0,38,33,0|cnoh3z,38,33,0|cnoh40,47,41,1|cyhabz,47,41,1|cyhac0,38,33,0|d6ejrz,38,33,0|d6ejs0,47,41,1|dh7czz,47,41,1|dh7d00,38,33,0|dphl3z,38,33,0|dphl40,47,41,1|dzxfnz,47,41,1|dzxfo0,38,33,0|e87nrz,38,33,0|e87ns0,47,41,1|einibz,47,41,1|einic0,38,33,0|eqxqfz,38,33,0|eqxqg0,47,41,1|f1dkzz,47,41,1|f1dl00,38,33,0|f9nt3z,38,33,0|f9nt40,47,41,1|fkgmbz,47,41,1|fkgmc0,38,33,0|fsdvrz,38,33,0|fsdvs0,47,41,1|g36ozz,47,41,1|g36p00,38,33,0|gb3yfz,38,33,0|gb3yg0,47,41,1|glwrnz,47,41,1|glwro0,38,33,0|gu6zrz,38,33,0|gu6zs0,47,41,1|h4mubz,47,41,1|h4muc0,38,33,0|hcx2fz,38,33,0|hcx2g0,47,41,1|hncwzz,47,41,1|hncx00,38,33,0|hvn53z,38,33,0|hvn540,47,41,1|i6fybz,47,41,1|i6fyc0,38,33,0|ied7rz,38,33,0|ied7s0,47,41,1|ip60zz,47,41,1|ip6100,38,33,0|ix3afz,38,33,0|ix3ag0,47,41,1|j7w3nz,47,41,1|j7w3o0,38,33,0|jeqh3z,38,33,0|jeqh40,47,41,1|jqz4zz,47,41,1|jqz500,38,33,0|jxgjrz,38,33,0|jxgjs0,47,41,1|k9p7nz,47,41,1|k9p7o0,38,33,0|kg6mfz,38,33,0|kg6mg0,47,41,1|ksfabz,47,41,1|ksfac0,38,33,0|kz9nrz,38,33,0|kz9ns0,47,41,1|lbibnz,47,41,1|lbibo0,38,33,0|lhzqfz,38,33,0|lhzqg0,47,41,1|lu8ebz,47,41,1|lu8ec0,38,33,0|m0pt3z,38,33,0|m0pt40,47,41,1|mcygzz,47,41,1|mcyh00,38,33,0|mjfvrz,38,33,0|mjfvs0,47,41,1|mvojnz,47,41,1|mvojo0,38,33,0|n25yfz,38,33,0|n25yg0,47,41,1|neembz,47,41,1|neemc0,38,33,0|nkw13z,38,33,0|nkw140,47,41,1|nx4ozz,47,41,1|nx4p00,38,33,0|o3z2fz,38,33,0|o3z2g0,47,41,1|og7qbz,47,41,1|og7qc0,38,33,0|omp53z,38,33,0|omp540,47,41,1|oyxszz,47,41,1|oyxt00,38,33,0|p5f7rz,38,33,0|p5f7s0,47,41,1|phnvnz,47,41,1|phnvo0,38,33,0|po5afz,38,33,0|po5ag0,47,41,1|q0dybz,47,41,1|q0dyc0,38,33,0|q6vd3z,38,33,0|q6vd40,47,41,1|qj40zz,47,41,1|qj4100,38,33,0|qpyefz,38,33,0|qpyeg0,47,41,1|r272bz,47,41,1|r272c0,38,33,0|r8oh3z,38,33,0|r8oh40,47,41,1|rkx4zz,47,41,1|rkx500,38,33,0|rrejrz,38,33,0|rrejs0,47,41,1|s3n7nz,47,41,1|s3n7o0,38,33,0|sa4mfz,38,33,0|sa4mg0,47,41,1|smdabz,47,41,1|smdac0,38,33,0|ssup3z,38,33,0|ssup40,47,41,1|t53czz,47,41,1|t53d00,38,33,0|tbkrrz,38,33,0|tbkrs0,47,41,1|tntfnz,47,41,1|tntfo0,38,33,0|tunt3z,38,33,0|tunt40,47,41,1|u6wgzz,47,41,1|u6wh00,38,33,0|uddvrz,38,33,0|uddvs0,47,41,1|upmjnz,47,41,1|upmjo0,38,33,0|uw3yfz,38,33,0|uw3yg0,47,41,1|v8cmbz,47,41,1|v8cmc0,38,33,0|veu13z,38,33,0|veu140,47,41,1|vr2ozz,47,41,1|vr2p00,38,33,0|vxk3rz,38,33,0|vxk3s0,47,41,1|w9srnz,47,41,1|w9sro0,38,33,0|wgn53z,38,33,0|wgn540,47,41,1|wsvszz,47,41,1|wsvt00,38,33,0|wzd7rz,38,33,0|wzd7s0,47,41,1|xblvnz,47,41,1|xblvo0,38,33,0|xi3afz,38,33,0|xi3ag0,47,41,1|xubybz,47,41,1|xubyc0,38,33,0|y0td3z,38,33,0|y0td40,47,41,1|yd20zz,47,41,1|yd2100,38,33,0|yjjfrz,38,33,0|yjjfs0,47,41,1|yvs3nz,47,41,1|yvs3o0,38,33,0|z29ifz,38,33,0|z29ig0,47,41,1|zei6bz,47,41,1|zei6c0,38,33,0","America/Whitehorse|,0,131,0|-1079tno,29,32,0|-qzoms1,29,32,0|-qzoms0,63,33,1|-qplqw1,63,33,1|-qplqw0,29,32,0|-qess41,29,32,0|-qess40,63,33,1|-q6kps1,63,33,1|-q6kps0,29,32,0|-ek1tg1,29,32,0|-ek1tg0,77,33,1|-cq2tg1,77,33,1|-cq2tg0,78,33,1|-cnos81,78,33,1|-cnos80,29,32,0|-2g1oc1,29,32,0|-2g1oc0,79,41,1|-26boc1,79,41,1|-26boc0,29,32,0|-1cspo1,29,32,0|-1cspo0,38,33,0|5dwefz,38,33,0|5dweg0,47,41,1|5n9czz,47,41,1|5n9d00,38,33,0|5wmh3z,38,33,0|5wmh40,47,41,1|65zfnz,47,41,1|65zfo0,38,33,0|6fcjrz,38,33,0|6fcjs0,47,41,1|6p2gzz,47,41,1|6p2h00,38,33,0|6y2mfz,38,33,0|6y2mg0,47,41,1|77sjnz,47,41,1|77sjo0,38,33,0|7h5nrz,38,33,0|7h5ns0,47,41,1|7qimbz,47,41,1|7qimc0,38,33,0|7zvqfz,38,33,0|7zvqg0,47,41,1|898ozz,47,41,1|898p00,38,33,0|8ilt3z,38,33,0|8ilt40,47,41,1|8ryrnz,47,41,1|8ryro0,38,33,0|908zrz,38,33,0|908zs0,47,41,1|9aoubz,47,41,1|9aouc0,38,33,0|9iz2fz,38,33,0|9iz2g0,47,41,1|9trvnz,47,41,1|9trvo0,38,33,0|a1p53z,38,33,0|a1p540,47,41,1|achybz,47,41,1|achyc0,38,33,0|akf7rz,38,33,0|akf7s0,47,41,1|av80zz,47,41,1|av8100,38,33,0|b3i93z,38,33,0|b3i940,47,41,1|bdy3nz,47,41,1|bdy3o0,38,33,0|bm8brz,38,33,0|bm8bs0,47,41,1|bwo6bz,47,41,1|bwo6c0,38,33,0|c4yefz,38,33,0|c4yeg0,47,41,1|cfr7nz,47,41,1|cfr7o0,38,33,0|cnoh3z,38,33,0|cnoh40,47,41,1|cyhabz,47,41,1|cyhac0,38,33,0|d6ejrz,38,33,0|d6ejs0,47,41,1|dh7czz,47,41,1|dh7d00,38,33,0|dphl3z,38,33,0|dphl40,47,41,1|dzxfnz,47,41,1|dzxfo0,38,33,0|e87nrz,38,33,0|e87ns0,47,41,1|einibz,47,41,1|einic0,38,33,0|eqxqfz,38,33,0|eqxqg0,47,41,1|f1dkzz,47,41,1|f1dl00,38,33,0|f9nt3z,38,33,0|f9nt40,47,41,1|fkgmbz,47,41,1|fkgmc0,38,33,0|fsdvrz,38,33,0|fsdvs0,47,41,1|g36ozz,47,41,1|g36p00,38,33,0|gb3yfz,38,33,0|gb3yg0,47,41,1|glwrnz,47,41,1|glwro0,38,33,0|gu6zrz,38,33,0|gu6zs0,47,41,1|h4mubz,47,41,1|h4muc0,38,33,0|hcx2fz,38,33,0|hcx2g0,47,41,1|hncwzz,47,41,1|hncx00,38,33,0|hvn53z,38,33,0|hvn540,47,41,1|i6fybz,47,41,1|i6fyc0,38,33,0|ied7rz,38,33,0|ied7s0,47,41,1|ip60zz,47,41,1|ip6100,38,33,0|ix3afz,38,33,0|ix3ag0,47,41,1|j7w3nz,47,41,1|j7w3o0,38,33,0|jeqh3z,38,33,0|jeqh40,47,41,1|jqz4zz,47,41,1|jqz500,38,33,0|jxgjrz,38,33,0|jxgjs0,47,41,1|k9p7nz,47,41,1|k9p7o0,38,33,0|kg6mfz,38,33,0|kg6mg0,47,41,1|ksfabz,47,41,1|ksfac0,38,33,0|kz9nrz,38,33,0|kz9ns0,47,41,1|lbibnz,47,41,1|lbibo0,38,33,0|lhzqfz,38,33,0|lhzqg0,47,41,1|lu8ebz,47,41,1|lu8ec0,38,33,0|m0pt3z,38,33,0|m0pt40,47,41,1|mcygzz,47,41,1|mcyh00,38,33,0|mjfvrz,38,33,0|mjfvs0,47,41,1|mvojnz,47,41,1|mvojo0,38,33,0|n25yfz,38,33,0|n25yg0,47,41,1|neembz,47,41,1|neemc0,38,33,0|nkw13z,38,33,0|nkw140,47,41,1|nx4ozz,47,41,1|nx4p00,38,33,0|o3z2fz,38,33,0|o3z2g0,47,41,1|og7qbz,47,41,1|og7qc0,38,33,0|omp53z,38,33,0|omp540,47,41,1|oyxszz,47,41,1|oyxt00,38,33,0|p5f7rz,38,33,0|p5f7s0,47,41,1|phnvnz,47,41,1|phnvo0,38,33,0|po5afz,38,33,0|po5ag0,47,41,1|q0dybz,47,41,1|q0dyc0,38,33,0|q6vd3z,38,33,0|q6vd40,47,41,1|qj3vfz,47,41,1|qj3vg0,36,41,0","America/Winnipeg|,0,132,0|-171bfcc,37,42,0|-s0s7c1,37,42,0|-s0s7c0,40,43,1|-rt8241,40,43,1|-rt8240,37,42,0|-qzov41,37,42,0|-qzov40,40,43,1|-qplz81,40,43,1|-qplz80,37,42,0|-h11r41,37,42,0|-h11r40,40,43,1|-gu7j81,40,43,1|-gu7j80,37,42,0|-ek21s1,37,42,0|-ek21s0,44,43,1|-cq2tg1,44,43,1|-cq2tg0,45,43,1|-cnp0k1,45,43,1|-cnp0k0,37,42,0|-cc64g1,37,42,0|-cc64g0,40,43,1|-c490k1,40,43,1|-c490k0,37,42,0|-bu5z41,37,42,0|-bu5z40,40,43,1|-bm8v81,40,43,1|-bm8v80,37,42,0|-bbfwg1,37,42,0|-bbfwg0,40,43,1|-b3isk1,40,43,1|-b3isk0,37,42,0|-aspts1,37,42,0|-aspts0,40,43,1|-akspw1,40,43,1|-akspw0,37,42,0|-a9kxs1,37,42,0|-a9kxs0,40,43,1|-a1rj81,40,43,1|-a1rj80,37,42,0|-9qwps1,37,42,0|-9qwps0,40,43,1|-9izlw1,40,43,1|-9izlw0,37,42,0|-986n41,37,42,0|-986n40,40,43,1|-909j81,40,43,1|-909j80,37,42,0|-8pgkg1,37,42,0|-8pgkg0,40,43,1|-8hjgk1,40,43,1|-8hjgk0,37,42,0|-86qhs1,37,42,0|-86qhs0,40,43,1|-7ytdw1,40,43,1|-7ytdw0,37,42,0|-7o0f41,37,42,0|-7o0f40,40,43,1|-7g3b81,40,43,1|-7g3b80,37,42,0|-74xds1,37,42,0|-74xds0,40,43,1|-6x09w1,40,43,1|-6x09w0,37,42,0|-6m7b41,37,42,0|-6m7b40,40,43,1|-6ea781,40,43,1|-6ea780,37,42,0|-63h8g1,37,42,0|-63h8g0,40,43,1|-5vk4k1,40,43,1|-5vk4k0,37,42,0|-5kr5s1,37,42,0|-5kr5s0,40,43,1|-5be781,40,43,1|-5be780,37,42,0|-521341,37,42,0|-521340,40,43,1|-4u3z81,40,43,1|-4u3z80,37,42,0|-3hhwg1,37,42,0|-3hhwg0,40,43,1|-39xr81,40,43,1|-39xr80,37,42,0|-1xbog1,37,42,0|-1xbog0,40,43,1|-1nlog1,40,43,1|-1nlog0,37,42,0|-1e8n41,37,42,0|-1e8n40,40,43,1|-14vls1,40,43,1|-14vls0,37,42,0|-vikg1,37,42,0|-vikg0,40,43,1|-m5j41,40,43,1|-m5j40,37,42,0|-cshs1,37,42,0|-cshs0,40,43,1|-3fgg1,40,43,1|-3fgg0,37,42,0|5xkvz,37,42,0|5xkw0,40,43,1|fam7z,40,43,1|fam80,37,42,0|onnjz,37,42,0|onnk0,40,43,1|ydnjz,40,43,1|ydnk0,37,42,0|17qovz,37,42,0|17qow0,40,43,1|1h3q7z,40,43,1|1h3q80,37,42,0|1qgrjz,37,42,0|1qgrk0,40,43,1|1ztsvz,40,43,1|1ztsw0,37,42,0|296u7z,37,42,0|296u80,40,43,1|2ijvjz,40,43,1|2ijvk0,37,42,0|2rwwvz,37,42,0|2rwww0,40,43,1|319y7z,40,43,1|319y80,37,42,0|3amzjz,37,42,0|3amzk0,40,43,1|3kczjz,40,43,1|3kczk0,37,42,0|3td27z,37,42,0|3td280,40,43,1|43327z,40,43,1|433280,37,42,0|4cg3jz,37,42,0|4cg3k0,40,43,1|4lt4vz,40,43,1|4lt4w0,37,42,0|4v667z,37,42,0|4v6680,40,43,1|54j7jz,40,43,1|54j7k0,37,42,0|5dw8vz,37,42,0|5dw8w0,40,43,1|5n9a7z,40,43,1|5n9a80,37,42,0|5wmbjz,37,42,0|5wmbk0,40,43,1|65zcvz,40,43,1|65zcw0,37,42,0|6fce7z,37,42,0|6fce80,40,43,1|6p2e7z,40,43,1|6p2e80,37,42,0|6y2gvz,37,42,0|6y2gw0,40,43,1|77sgvz,40,43,1|77sgw0,37,42,0|7h5i7z,37,42,0|7h5i80,40,43,1|7qijjz,40,43,1|7qijk0,37,42,0|7zvkvz,37,42,0|7zvkw0,40,43,1|898m7z,40,43,1|898m80,37,42,0|8ilnjz,37,42,0|8ilnk0,40,43,1|8ryovz,40,43,1|8ryow0,37,42,0|908u7z,37,42,0|908u80,40,43,1|9aorjz,40,43,1|9aork0,37,42,0|9iywvz,37,42,0|9iyww0,40,43,1|9trsvz,40,43,1|9trsw0,37,42,0|a1ozjz,37,42,0|a1ozk0,40,43,1|achvjz,40,43,1|achvk0,37,42,0|akf27z,37,42,0|akf280,40,43,1|av7y7z,40,43,1|av7y80,37,42,0|b3i3jz,37,42,0|b3i3k0,40,43,1|bdy0vz,40,43,1|bdy0w0,37,42,0|bm867z,37,42,0|bm8680,40,43,1|bwo3jz,40,43,1|bwo3k0,37,42,0|c4y8vz,37,42,0|c4y8w0,40,43,1|cfr4vz,40,43,1|cfr4w0,37,42,0|cnobjz,37,42,0|cnobk0,40,43,1|cyh7jz,40,43,1|cyh7k0,37,42,0|d6ee7z,37,42,0|d6ee80,40,43,1|dh7a7z,40,43,1|dh7a80,37,42,0|dphfjz,37,42,0|dphfk0,40,43,1|dzxcvz,40,43,1|dzxcw0,37,42,0|e87i7z,37,42,0|e87i80,40,43,1|einfjz,40,43,1|einfk0,37,42,0|eqxkvz,37,42,0|eqxkw0,40,43,1|f1di7z,40,43,1|f1di80,37,42,0|f9nnjz,37,42,0|f9nnk0,40,43,1|fkgjjz,40,43,1|fkgjk0,37,42,0|fsdq7z,37,42,0|fsdq80,40,43,1|g36m7z,40,43,1|g36m80,37,42,0|gb3svz,37,42,0|gb3sw0,40,43,1|glwovz,40,43,1|glwow0,37,42,0|gu6u7z,37,42,0|gu6u80,40,43,1|h4mrjz,40,43,1|h4mrk0,37,42,0|hcwwvz,37,42,0|hcwww0,40,43,1|hncu7z,40,43,1|hncu80,37,42,0|hvmzjz,37,42,0|hvmzk0,40,43,1|i6fvjz,40,43,1|i6fvk0,37,42,0|ied27z,37,42,0|ied280,40,43,1|ip5y7z,40,43,1|ip5y80,37,42,0|ix34vz,37,42,0|ix34w0,40,43,1|j7vy3z,40,43,1|j7vy40,37,42,0|jeqbjz,37,42,0|jeqbk0,40,43,1|jqyzfz,40,43,1|jqyzg0,37,42,0|jxge7z,37,42,0|jxge80,40,43,1|k9p23z,40,43,1|k9p240,37,42,0|kg6gvz,37,42,0|kg6gw0,40,43,1|ksf4rz,40,43,1|ksf4s0,37,42,0|kz9i7z,37,42,0|kz9i80,40,43,1|lbi63z,40,43,1|lbi640,37,42,0|lhzkvz,37,42,0|lhzkw0,40,43,1|lu88rz,40,43,1|lu88s0,37,42,0|m0pnjz,37,42,0|m0pnk0,40,43,1|mcybfz,40,43,1|mcybg0,37,42,0|mjfq7z,37,42,0|mjfq80,40,43,1|mvoe3z,40,43,1|mvoe40,37,42,0|n25svz,37,42,0|n25sw0,40,43,1|neegrz,40,43,1|neegs0,37,42,0|nkvvjz,37,42,0|nkvvk0,40,43,1|nx4jfz,40,43,1|nx4jg0,37,42,0|o3ywvz,37,42,0|o3yww0,40,43,1|og7krz,40,43,1|og7ks0,37,42,0|omozjz,37,42,0|omozk0,40,43,1|oyxnfz,40,43,1|oyxng0,37,42,0|p5f27z,37,42,0|p5f280,40,43,1|phnq3z,40,43,1|phnq40,37,42,0|po54vz,37,42,0|po54w0,40,43,1|q0dsrz,40,43,1|q0dss0,37,42,0|q6v7jz,37,42,0|q6v7k0,40,43,1|qj3vfz,40,43,1|qj3vg0,37,42,0|qpy8vz,37,42,0|qpy8w0,40,43,1|r26wrz,40,43,1|r26ws0,37,42,0|r8objz,37,42,0|r8obk0,40,43,1|rkwzfz,40,43,1|rkwzg0,37,42,0|rree7z,37,42,0|rree80,40,43,1|s3n23z,40,43,1|s3n240,37,42,0|sa4gvz,37,42,0|sa4gw0,40,43,1|smd4rz,40,43,1|smd4s0,37,42,0|ssujjz,37,42,0|ssujk0,40,43,1|t537fz,40,43,1|t537g0,37,42,0|tbkm7z,37,42,0|tbkm80,40,43,1|tnta3z,40,43,1|tnta40,37,42,0|tunnjz,37,42,0|tunnk0,40,43,1|u6wbfz,40,43,1|u6wbg0,37,42,0|uddq7z,37,42,0|uddq80,40,43,1|upme3z,40,43,1|upme40,37,42,0|uw3svz,37,42,0|uw3sw0,40,43,1|v8cgrz,40,43,1|v8cgs0,37,42,0|vetvjz,37,42,0|vetvk0,40,43,1|vr2jfz,40,43,1|vr2jg0,37,42,0|vxjy7z,37,42,0|vxjy80,40,43,1|w9sm3z,40,43,1|w9sm40,37,42,0|wgmzjz,37,42,0|wgmzk0,40,43,1|wsvnfz,40,43,1|wsvng0,37,42,0|wzd27z,37,42,0|wzd280,40,43,1|xblq3z,40,43,1|xblq40,37,42,0|xi34vz,37,42,0|xi34w0,40,43,1|xubsrz,40,43,1|xubss0,37,42,0|y0t7jz,37,42,0|y0t7k0,40,43,1|yd1vfz,40,43,1|yd1vg0,37,42,0|yjja7z,37,42,0|yjja80,40,43,1|yvry3z,40,43,1|yvry40,37,42,0|z29cvz,37,42,0|z29cw0,40,43,1|zei0rz,40,43,1|zei0s0,37,42,0","America/Yellowknife|,80,1,0|-i9m2o0,36,41,0|-ek1z01,36,41,0|-ek1z00,48,42,1|-cq2tg1,48,42,1|-cq2tg0,49,42,1|-cnoxs1,49,42,1|-cnoxs0,36,41,0|-2g1tw1,36,41,0|-2g1tw0,81,43,1|-26btw1,81,43,1|-26btw0,36,41,0|5dwbnz,36,41,0|5dwbo0,39,42,1|5n9a7z,39,42,1|5n9a80,36,41,0|5wmebz,36,41,0|5wmec0,39,42,1|65zcvz,39,42,1|65zcw0,36,41,0|6fcgzz,36,41,0|6fch00,39,42,1|6p2e7z,39,42,1|6p2e80,36,41,0|6y2jnz,36,41,0|6y2jo0,39,42,1|77sgvz,39,42,1|77sgw0,36,41,0|7h5kzz,36,41,0|7h5l00,39,42,1|7qijjz,39,42,1|7qijk0,36,41,0|7zvnnz,36,41,0|7zvno0,39,42,1|898m7z,39,42,1|898m80,36,41,0|8ilqbz,36,41,0|8ilqc0,39,42,1|8ryovz,39,42,1|8ryow0,36,41,0|908wzz,36,41,0|908x00,39,42,1|9aorjz,39,42,1|9aork0,36,41,0|9iyznz,36,41,0|9iyzo0,39,42,1|9trsvz,39,42,1|9trsw0,36,41,0|a1p2bz,36,41,0|a1p2c0,39,42,1|achvjz,39,42,1|achvk0,36,41,0|akf4zz,36,41,0|akf500,39,42,1|av7y7z,39,42,1|av7y80,36,41,0|b3i6bz,36,41,0|b3i6c0,39,42,1|bdy0vz,39,42,1|bdy0w0,36,41,0|bm88zz,36,41,0|bm8900,39,42,1|bwo3jz,39,42,1|bwo3k0,36,41,0|c4ybnz,36,41,0|c4ybo0,39,42,1|cfr4vz,39,42,1|cfr4w0,36,41,0|cnoebz,36,41,0|cnoec0,39,42,1|cyh7jz,39,42,1|cyh7k0,36,41,0|d6egzz,36,41,0|d6eh00,39,42,1|dh7a7z,39,42,1|dh7a80,36,41,0|dphibz,36,41,0|dphic0,39,42,1|dzxcvz,39,42,1|dzxcw0,36,41,0|e87kzz,36,41,0|e87l00,39,42,1|einfjz,39,42,1|einfk0,36,41,0|eqxnnz,36,41,0|eqxno0,39,42,1|f1di7z,39,42,1|f1di80,36,41,0|f9nqbz,36,41,0|f9nqc0,39,42,1|fkgjjz,39,42,1|fkgjk0,36,41,0|fsdszz,36,41,0|fsdt00,39,42,1|g36m7z,39,42,1|g36m80,36,41,0|gb3vnz,36,41,0|gb3vo0,39,42,1|glwovz,39,42,1|glwow0,36,41,0|gu6wzz,36,41,0|gu6x00,39,42,1|h4mrjz,39,42,1|h4mrk0,36,41,0|hcwznz,36,41,0|hcwzo0,39,42,1|hncu7z,39,42,1|hncu80,36,41,0|hvn2bz,36,41,0|hvn2c0,39,42,1|i6fvjz,39,42,1|i6fvk0,36,41,0|ied4zz,36,41,0|ied500,39,42,1|ip5y7z,39,42,1|ip5y80,36,41,0|ix37nz,36,41,0|ix37o0,39,42,1|j7w0vz,39,42,1|j7w0w0,36,41,0|jeqebz,36,41,0|jeqec0,39,42,1|jqz27z,39,42,1|jqz280,36,41,0|jxggzz,36,41,0|jxgh00,39,42,1|k9p4vz,39,42,1|k9p4w0,36,41,0|kg6jnz,36,41,0|kg6jo0,39,42,1|ksf7jz,39,42,1|ksf7k0,36,41,0|kz9kzz,36,41,0|kz9l00,39,42,1|lbi8vz,39,42,1|lbi8w0,36,41,0|lhznnz,36,41,0|lhzno0,39,42,1|lu8bjz,39,42,1|lu8bk0,36,41,0|m0pqbz,36,41,0|m0pqc0,39,42,1|mcye7z,39,42,1|mcye80,36,41,0|mjfszz,36,41,0|mjft00,39,42,1|mvogvz,39,42,1|mvogw0,36,41,0|n25vnz,36,41,0|n25vo0,39,42,1|neejjz,39,42,1|neejk0,36,41,0|nkvybz,36,41,0|nkvyc0,39,42,1|nx4m7z,39,42,1|nx4m80,36,41,0|o3yznz,36,41,0|o3yzo0,39,42,1|og7njz,39,42,1|og7nk0,36,41,0|omp2bz,36,41,0|omp2c0,39,42,1|oyxq7z,39,42,1|oyxq80,36,41,0|p5f4zz,36,41,0|p5f500,39,42,1|phnsvz,39,42,1|phnsw0,36,41,0|po57nz,36,41,0|po57o0,39,42,1|q0dvjz,39,42,1|q0dvk0,36,41,0|q6vabz,36,41,0|q6vac0,39,42,1|qj3y7z,39,42,1|qj3y80,36,41,0|qpybnz,36,41,0|qpybo0,39,42,1|r26zjz,39,42,1|r26zk0,36,41,0|r8oebz,36,41,0|r8oec0,39,42,1|rkx27z,39,42,1|rkx280,36,41,0|rregzz,36,41,0|rreh00,39,42,1|s3n4vz,39,42,1|s3n4w0,36,41,0|sa4jnz,36,41,0|sa4jo0,39,42,1|smd7jz,39,42,1|smd7k0,36,41,0|ssumbz,36,41,0|ssumc0,39,42,1|t53a7z,39,42,1|t53a80,36,41,0|tbkozz,36,41,0|tbkp00,39,42,1|tntcvz,39,42,1|tntcw0,36,41,0|tunqbz,36,41,0|tunqc0,39,42,1|u6we7z,39,42,1|u6we80,36,41,0|uddszz,36,41,0|uddt00,39,42,1|upmgvz,39,42,1|upmgw0,36,41,0|uw3vnz,36,41,0|uw3vo0,39,42,1|v8cjjz,39,42,1|v8cjk0,36,41,0|vetybz,36,41,0|vetyc0,39,42,1|vr2m7z,39,42,1|vr2m80,36,41,0|vxk0zz,36,41,0|vxk100,39,42,1|w9sovz,39,42,1|w9sow0,36,41,0|wgn2bz,36,41,0|wgn2c0,39,42,1|wsvq7z,39,42,1|wsvq80,36,41,0|wzd4zz,36,41,0|wzd500,39,42,1|xblsvz,39,42,1|xblsw0,36,41,0|xi37nz,36,41,0|xi37o0,39,42,1|xubvjz,39,42,1|xubvk0,36,41,0|y0tabz,36,41,0|y0tac0,39,42,1|yd1y7z,39,42,1|yd1y80,36,41,0|yjjczz,36,41,0|yjjd00,39,42,1|yvs0vz,39,42,1|yvs0w0,36,41,0|z29fnz,36,41,0|z29fo0,39,42,1|zei3jz,39,42,1|zei3k0,36,41,0","Asia/Almaty|,0,133,0|-nu1a90,82,134,0|-kmr9w1,82,134,0|-kmr9w0,83,135,0|5vaxzz,83,135,0|5vay00,84,136,1|64pr7z,84,136,1|64pr80,83,135,0|6e2vbz,83,135,0|6e2vc0,84,136,1|6nhojz,84,136,1|6nhok0,83,135,0|6wusnz,83,135,0|6wuso0,84,136,1|769lvz,84,136,1|769lw0,83,135,0|7foknz,83,135,0|7foko0,84,136,1|7p1rjz,84,136,1|7p1rk0,83,135,0|7yesvz,83,135,0|7yesw0,84,136,1|87ru7z,84,136,1|87ru80,83,135,0|8h4vjz,83,135,0|8h4vk0,84,136,1|8qhwvz,84,136,1|8qhww0,83,135,0|8zuy7z,83,135,0|8zuy80,84,136,1|997zjz,84,136,1|997zk0,83,135,0|9il0vz,83,135,0|9il0w0,84,136,1|9ry27z,84,136,1|9ry280,83,135,0|a1b3jz,83,135,0|a1b3k0,84,136,1|aao4vz,84,136,1|aao4w0,83,135,0|ak167z,83,135,0|ak1680,84,136,1|atr67z,84,136,1|atr680,83,135,0|b347jz,83,135,0|b347k0,83,135,1|bchbnz,83,135,1|bchbo0,82,134,0|bi8qbz,82,134,0|bi8qc0,83,135,0|blua7z,83,135,0|blua80,84,136,1|bv7bjz,84,136,1|bv7bk0,83,135,0|c4kcvz,83,135,0|c4kcw0,84,136,1|cdxe7z,84,136,1|cdxe80,83,135,0|cnafjz,83,135,0|cnafk0,84,136,1|cwngvz,84,136,1|cwngw0,83,135,0|d60i7z,83,135,0|d60i80,84,136,1|dfdjjz,84,136,1|dfdjk0,83,135,0|dp3jjz,83,135,0|dp3jk0,84,136,1|dzwfjz,84,136,1|dzwfk0,83,135,0|e7tm7z,83,135,0|e7tm80,84,136,1|eimi7z,84,136,1|eimi80,83,135,0|eqjovz,83,135,0|eqjow0,84,136,1|f1ckvz,84,136,1|f1ckw0,83,135,0|f99rjz,83,135,0|f99rk0,84,136,1|fkfm7z,84,136,1|fkfm80,83,135,0|frzu7z,83,135,0|frzu80,84,136,1|g35ovz,84,136,1|g35ow0,83,135,0|gapwvz,83,135,0|gapww0,84,136,1|glvrjz,84,136,1|glvrk0,83,135,0|gtsy7z,83,135,0|gtsy80,84,136,1|h4lu7z,84,136,1|h4lu80,83,135,0|hcj0vz,83,135,0|hcj0w0,84,136,1|hnbwvz,84,136,1|hnbww0,83,135,0|hv93jz,83,135,0|hv93k0,84,136,1|i6ey7z,84,136,1|i6ey80,83,135,0","Asia/Amman|,0,137,0|-kcrtbk,10,7,0|1sed3z,10,7,0|1sed40,11,11,1|1yeybz,11,11,1|1yeyc0,10,7,0|29bmfz,10,7,0|29bmg0,11,11,1|2h6vnz,11,11,1|2h6vo0,10,7,0|2s3jrz,10,7,0|2s3js0,11,11,1|2zyszz,11,11,1|2zyt00,10,7,0|3axbrz,10,7,0|3axbs0,11,11,1|3kdznz,11,11,1|3kdzo0,10,7,0|3tp93z,10,7,0|3tp940,11,11,1|41kibz,11,11,1|41kic0,10,7,0|4cfbrz,10,7,0|4cfbs0,11,11,1|4kakzz,11,11,1|4kal00,10,7,0|7ygt3z,10,7,0|7ygt40,11,11,1|87vmbz,11,11,1|87vmc0,10,7,0|8heafz,10,7,0|8heag0,11,11,1|8qr8zz,11,11,1|8qr900,10,7,0|904d3z,10,7,0|904d40,11,11,1|99hbnz,11,11,1|99hbo0,10,7,0|9iufrz,10,7,0|9iufs0,11,11,1|9skczz,11,11,1|9skd00,10,7,0|a3ivrz,10,7,0|a3ivs0,11,11,1|abafnz,11,11,1|abafo0,10,7,0|alqfrz,10,7,0|alqfs0,11,11,1|au0ibz,11,11,1|au0ic0,10,7,0|b3zufz,10,7,0|b3zug0,11,11,1|bcdmbz,11,11,1|bcdmc0,10,7,0|bmgnrz,10,7,0|bmgns0,11,11,1|bvgnnz,11,11,1|bvgno0,10,7,0|c4trrz,10,7,0|c4trs0,11,11,1|ce6qbz,11,11,1|ce6qc0,10,7,0|cnjufz,10,7,0|cnjug0,11,11,1|cw6vnz,11,11,1|cw6vo0,10,7,0|d6mvrz,10,7,0|d6mvs0,11,11,1|dex13z,11,11,1|dex140,10,7,0|dpcyfz,10,7,0|dpcyg0,11,11,1|dy02fz,11,11,1|dy02g0,10,7,0|e8313z,10,7,0|e83140,11,11,1|egq53z,11,11,1|egq540,10,7,0|eqt3rz,10,7,0|eqt3s0,11,11,1|ezg7rz,11,11,1|ezg7s0,10,7,0|fe5ufz,10,7,0|fe5ug0,11,11,1|fij93z,11,11,1|fij940,10,7,0|fs7efz,10,7,0|fs7eg0,11,11,1|g1mafz,11,11,1|g1mag0,10,7,0|gaxh3z,10,7,0|gaxh40,11,11,1|gkcd3z,11,11,1|gkcd40,10,7,0|gtpefz,10,7,0|gtpeg0,11,11,1|h32frz,11,11,1|h32fs0,10,7,0|hcfh3z,10,7,0|hcfh40,11,11,1|hn8d3z,11,11,1|hn8d40,10,7,0|hv5jrz,10,7,0|hv5js0,11,11,1|i5lh3z,11,11,1|i5lh40,10,7,0|ie8l3z,10,7,0|ie8l40,11,11,1|inlmfz,11,11,1|inlmg0,10,7,0|iwynrz,10,7,0|iwyns0,11,11,1|j7rjrz,11,11,1|j7rjs0,10,7,0|jfoqfz,10,7,0|jfoqg0,11,11,1|jqhmfz,11,11,1|jqhmg0,10,7,0|jyet3z,10,7,0|jyet40,11,11,1|k9knrz,11,11,1|k9kns0,10,7,0|kh4vrz,10,7,0|kh4vs0,11,11,1|ksaqfz,11,11,1|ksaqg0,10,7,0|kzuyfz,10,7,0|kzuyg0,11,11,1|lb0t3z,11,11,1|lb0t40,10,7,0|lixzrz,10,7,0|lixzs0,11,11,1|ltqvrz,11,11,1|ltqvs0,10,7,0|m1o2fz,10,7,0|m1o2g0,11,11,1|my2nnz,11,11,1|my2no0,10,7,0|n347rz,10,7,0|n347s0,11,11,1|nea2fz,11,11,1|nea2g0,10,7,0|nluafz,10,7,0|nluag0,11,11,1|nx053z,11,11,1|nx0540,10,7,0|o4xbrz,10,7,0|o4xbs0,11,11,1|ofq7rz,11,11,1|ofq7s0,10,7,0|onnefz,10,7,0|onneg0,11,11,1|oygafz,11,11,1|oygag0,10,7,0|p6dh3z,10,7,0|p6dh40,11,11,1|ph6d3z,11,11,1|ph6d40,10,7,0|pp3jrz,10,7,0|pp3js0,11,11,1|pzwfrz,11,11,1|pzwfs0,10,7,0|q7tmfz,10,7,0|q7tmg0,11,11,1|qizh3z,11,11,1|qizh40,10,7,0|qqjp3z,10,7,0|qqjp40,11,11,1|r1pjrz,11,11,1|r1pjs0,10,7,0|r9mqfz,10,7,0|r9mqg0,11,11,1|rkfmfz,11,11,1|rkfmg0,10,7,0|rsct3z,10,7,0|rsct40,11,11,1|s35p3z,11,11,1|s35p40,10,7,0|sb2vrz,10,7,0|sb2vs0,11,11,1|slvrrz,11,11,1|slvrs0,10,7,0|stsyfz,10,7,0|stsyg0,11,11,1|t4yt3z,11,11,1|t4yt40,10,7,0|tcj13z,10,7,0|tcj140,11,11,1|tnovrz,11,11,1|tnovs0,10,7,0|tv93rz,10,7,0|tv93s0,11,11,1|u6eyfz,11,11,1|u6eyg0,10,7,0|uec53z,10,7,0|uec540,11,11,1|up513z,11,11,1|up5140,10,7,0|ux27rz,10,7,0|ux27s0,11,11,1|v7v3rz,11,11,1|v7v3s0,10,7,0|vfsafz,10,7,0|vfsag0,11,11,1|vql6fz,11,11,1|vql6g0,10,7,0|vyid3z,10,7,0|vyid40,11,11,1|w9o7rz,11,11,1|w9o7s0,10,7,0|wh8frz,10,7,0|wh8fs0,11,11,1|wseafz,11,11,1|wseag0,10,7,0|x0bh3z,10,7,0|x0bh40,11,11,1|xb4d3z,11,11,1|xb4d40,10,7,0|xj1jrz,10,7,0|xj1js0,11,11,1|xtufrz,11,11,1|xtufs0,10,7,0|y1rmfz,10,7,0|y1rmg0,11,11,1|yckifz,11,11,1|yckig0,10,7,0|ykhp3z,10,7,0|ykhp40,11,11,1|yvnjrz,11,11,1|yvnjs0,10,7,0|z37rrz,10,7,0|z37rs0,11,11,1|zedmfz,11,11,1|zedmg0,10,7,0","Asia/Anadyr|,0,138,0|-nu1sv8,85,139,0|-kmrtc1,85,139,0|-kmrtc0,86,140,0|5vaejz,86,140,0|5vaek0,87,141,1|64p7rz,87,141,1|64p7s0,86,140,0|6e2bvz,86,140,0|6e2bw0,86,140,1|6nh7vz,86,140,1|6nh7w0,85,139,0|6wubzz,85,139,0|6wuc00,86,140,1|76957z,86,140,1|769580,85,139,0|7fo3zz,85,139,0|7fo400,86,140,1|7p1avz,86,140,1|7p1aw0,85,139,0|7yec7z,85,139,0|7yec80,86,140,1|87rdjz,86,140,1|87rdk0,85,139,0|8h4evz,85,139,0|8h4ew0,86,140,1|8qhg7z,86,140,1|8qhg80,85,139,0|8zuhjz,85,139,0|8zuhk0,86,140,1|997ivz,86,140,1|997iw0,85,139,0|9ikk7z,85,139,0|9ikk80,86,140,1|9rxljz,86,140,1|9rxlk0,85,139,0|a1amvz,85,139,0|a1amw0,86,140,1|aano7z,86,140,1|aano80,85,139,0|ak0pjz,85,139,0|ak0pk0,86,140,1|atqpjz,86,140,1|atqpk0,85,139,0|b33qvz,85,139,0|b33qw0,85,139,1|bcguzz,85,139,1|bcgv00,88,142,0|bi89nz,88,142,0|bi89o0,85,139,0|blttjz,85,139,0|blttk0,86,140,1|bv6uvz,86,140,1|bv6uw0,85,139,0|c4jw7z,85,139,0|c4jw80,86,140,1|cdwxjz,86,140,1|cdwxk0,85,139,0|cn9yvz,85,139,0|cn9yw0,86,140,1|cwn07z,86,140,1|cwn080,85,139,0|d601jz,85,139,0|d601k0,86,140,1|dfd2vz,86,140,1|dfd2w0,85,139,0|dp32vz,85,139,0|dp32w0,86,140,1|dzvyvz,86,140,1|dzvyw0,85,139,0|e7t5jz,85,139,0|e7t5k0,86,140,1|eim1jz,86,140,1|eim1k0,85,139,0|eqj87z,85,139,0|eqj880,86,140,1|f1c47z,86,140,1|f1c480,85,139,0|f99avz,85,139,0|f99aw0,86,140,1|fkf5jz,86,140,1|fkf5k0,85,139,0|frzdjz,85,139,0|frzdk0,86,140,1|g3587z,86,140,1|g35880,85,139,0|gapg7z,85,139,0|gapg80,86,140,1|glvavz,86,140,1|glvaw0,85,139,0|gtshjz,85,139,0|gtshk0,86,140,1|h4ldjz,86,140,1|h4ldk0,85,139,0|hcik7z,85,139,0|hcik80,86,140,1|hnbg7z,86,140,1|hnbg80,85,139,0|hv8mvz,85,139,0|hv8mw0,86,140,1|i6ehjz,86,140,1|i6ehk0,85,139,0|idypjz,85,139,0|idypk0,86,140,1|ip4k7z,86,140,1|ip4k80,85,139,0|iwos7z,85,139,0|iwos80,86,140,1|j7umvz,86,140,1|j7umw0,85,139,0|jfeuvz,85,139,0|jfeuw0,86,140,1|jqkpjz,86,140,1|jqkpk0,85,139,0|jyhw7z,85,139,0|jyhw80,86,140,1|k9as7z,86,140,1|k9as80,85,139,0|kh7yvz,85,139,0|kh7yw0,86,140,1|ks0uvz,86,140,1|ks0uw0,85,139,0|kzy1jz,85,139,0|kzy1k0,85,139,1|lb3yzz,85,139,1|lb3z00,88,142,0|lio6zz,88,142,0|lio700,85,139,0","Asia/Aqtau|,0,143,0|-nu15b4,89,144,0|-kmr741,89,144,0|-kmr740,82,134,0|64pwrz,82,134,0|64pws0,83,135,0|6e2vbz,83,135,0|6e2vc0,83,135,1|6nhrbz,83,135,1|6nhrc0,82,134,0|6wuvfz,82,134,0|6wuvg0,83,135,1|769onz,83,135,1|769oo0,82,134,0|7fonfz,82,134,0|7fong0,83,135,1|7p1ubz,83,135,1|7p1uc0,82,134,0|7yevnz,82,134,0|7yevo0,83,135,1|87rwzz,83,135,1|87rx00,82,134,0|8h4ybz,82,134,0|8h4yc0,83,135,1|8qhznz,83,135,1|8qhzo0,82,134,0|8zv0zz,82,134,0|8zv100,83,135,1|9982bz,83,135,1|9982c0,82,134,0|9il3nz,82,134,0|9il3o0,83,135,1|9ry4zz,83,135,1|9ry500,82,134,0|a1b6bz,82,134,0|a1b6c0,83,135,1|aao7nz,83,135,1|aao7o0,82,134,0|ak18zz,82,134,0|ak1900,83,135,1|atr8zz,83,135,1|atr900,82,134,0|b34abz,82,134,0|b34ac0,82,134,1|bchefz,82,134,1|bcheg0,89,144,0|bi8t3z,89,144,0|bi8t40,82,134,0|bluczz,82,134,0|blud00,83,135,1|bv7ebz,83,135,1|bv7ec0,82,134,0|c4kfnz,82,134,0|c4kfo0,83,135,1|cdxgzz,83,135,1|cdxh00,82,134,0|cnaibz,82,134,0|cnaic0,83,135,1|cwnjnz,83,135,1|cwnjo0,89,144,0|d60nrz,89,144,0|d60ns0,82,134,1|dfdp3z,82,134,1|dfdp40,89,144,0|dp3p3z,89,144,0|dp3p40,82,134,1|dzwl3z,82,134,1|dzwl40,89,144,0|e7trrz,89,144,0|e7trs0,82,134,1|eimnrz,82,134,1|eimns0,89,144,0|eqjufz,89,144,0|eqjug0,82,134,1|f1cqfz,82,134,1|f1cqg0,89,144,0|f99x3z,89,144,0|f99x40,82,134,1|fkfrrz,82,134,1|fkfrs0,89,144,0|frzzrz,89,144,0|frzzs0,82,134,1|g35ufz,82,134,1|g35ug0,89,144,0|gaq2fz,89,144,0|gaq2g0,82,134,1|glvx3z,82,134,1|glvx40,89,144,0|gtt3rz,89,144,0|gtt3s0,82,134,1|h4lzrz,82,134,1|h4lzs0,89,144,0|hcj6fz,89,144,0|hcj6g0,82,134,1|hnc2fz,82,134,1|hnc2g0,89,144,0|hv993z,89,144,0|hv9940,82,134,1|i6f3rz,82,134,1|i6f3s0,82,134,0","Asia/Aqtobe|,0,145,0|-nu16l4,89,144,0|-kmr741,89,144,0|-kmr740,82,134,0|5vb0rz,82,134,0|5vb0s0,83,135,1|64ptzz,83,135,1|64pu00,83,135,0|6e2vbz,83,135,0|6e2vc0,83,135,1|6nhrbz,83,135,1|6nhrc0,82,134,0|6wuvfz,82,134,0|6wuvg0,83,135,1|769onz,83,135,1|769oo0,82,134,0|7fonfz,82,134,0|7fong0,83,135,1|7p1ubz,83,135,1|7p1uc0,82,134,0|7yevnz,82,134,0|7yevo0,83,135,1|87rwzz,83,135,1|87rx00,82,134,0|8h4ybz,82,134,0|8h4yc0,83,135,1|8qhznz,83,135,1|8qhzo0,82,134,0|8zv0zz,82,134,0|8zv100,83,135,1|9982bz,83,135,1|9982c0,82,134,0|9il3nz,82,134,0|9il3o0,83,135,1|9ry4zz,83,135,1|9ry500,82,134,0|a1b6bz,82,134,0|a1b6c0,83,135,1|aao7nz,83,135,1|aao7o0,82,134,0|ak18zz,82,134,0|ak1900,83,135,1|atr8zz,83,135,1|atr900,82,134,0|b34abz,82,134,0|b34ac0,82,134,1|bchefz,82,134,1|bcheg0,89,144,0|bi8t3z,89,144,0|bi8t40,82,134,0|bluczz,82,134,0|blud00,83,135,1|bv7ebz,83,135,1|bv7ec0,82,134,0|c4kfnz,82,134,0|c4kfo0,83,135,1|cdxgzz,83,135,1|cdxh00,82,134,0|cnaibz,82,134,0|cnaic0,83,135,1|cwnjnz,83,135,1|cwnjo0,82,134,0|d60kzz,82,134,0|d60l00,83,135,1|dfdmbz,83,135,1|dfdmc0,82,134,0|dp3mbz,82,134,0|dp3mc0,83,135,1|dzwibz,83,135,1|dzwic0,82,134,0|e7tozz,82,134,0|e7tp00,83,135,1|eimkzz,83,135,1|eiml00,82,134,0|eqjrnz,82,134,0|eqjro0,83,135,1|f1cnnz,83,135,1|f1cno0,82,134,0|f99ubz,82,134,0|f99uc0,83,135,1|fkfozz,83,135,1|fkfp00,82,134,0|frzwzz,82,134,0|frzx00,83,135,1|g35rnz,83,135,1|g35ro0,82,134,0|gapznz,82,134,0|gapzo0,83,135,1|glvubz,83,135,1|glvuc0,82,134,0|gtt0zz,82,134,0|gtt100,83,135,1|h4lwzz,83,135,1|h4lx00,82,134,0|hcj3nz,82,134,0|hcj3o0,83,135,1|hnbznz,83,135,1|hnbzo0,82,134,0|hv96bz,82,134,0|hv96c0,83,135,1|i6f0zz,83,135,1|i6f100,82,134,0","Asia/Ashgabat|,0,146,0|-nu16t8,89,144,0|-kmr741,89,144,0|-kmr740,82,134,0|5vb0rz,82,134,0|5vb0s0,83,135,1|64ptzz,83,135,1|64pu00,82,134,0|6e2y3z,82,134,0|6e2y40,83,135,1|6nhrbz,83,135,1|6nhrc0,82,134,0|6wuvfz,82,134,0|6wuvg0,83,135,1|769onz,83,135,1|769oo0,82,134,0|7fonfz,82,134,0|7fong0,83,135,1|7p1ubz,83,135,1|7p1uc0,82,134,0|7yevnz,82,134,0|7yevo0,83,135,1|87rwzz,83,135,1|87rx00,82,134,0|8h4ybz,82,134,0|8h4yc0,83,135,1|8qhznz,83,135,1|8qhzo0,82,134,0|8zv0zz,82,134,0|8zv100,83,135,1|9982bz,83,135,1|9982c0,82,134,0|9il3nz,82,134,0|9il3o0,83,135,1|9ry4zz,83,135,1|9ry500,82,134,0|a1b6bz,82,134,0|a1b6c0,83,135,1|aao7nz,83,135,1|aao7o0,82,134,0|ak18zz,82,134,0|ak1900,83,135,1|atr8zz,83,135,1|atr900,82,134,0|b34abz,82,134,0|b34ac0,82,134,1|bchefz,82,134,1|bcheg0,89,144,0|bi8t3z,89,144,0|bi8t40,82,134,0","Asia/Baghdad|,0,147,0|-15r1hk4,41,148,0|-r50g81,41,148,0|-r50g80,90,11,0|6fmnnz,90,11,0|6fmno0,89,144,1|6nhwvz,89,144,1|6nhww0,90,11,0|6wt6bz,90,11,0|6wt6c0,89,144,1|769u7z,89,144,1|769u80,90,11,0|7foszz,90,11,0|7fot00,89,144,1|7p3m7z,89,144,1|7p3m80,90,11,0|7ygqbz,90,11,0|7ygqc0,89,144,1|87rzrz,89,144,1|87rzs0,90,11,0|8h513z,90,11,0|8h5140,89,144,1|8qi2fz,89,144,1|8qi2g0,90,11,0|8zv3rz,90,11,0|8zv3s0,89,144,1|99853z,89,144,1|998540,90,11,0|9il6fz,90,11,0|9il6g0,89,144,1|9ry7rz,89,144,1|9ry7s0,90,11,0|a1b93z,90,11,0|a1b940,89,144,1|aaoafz,89,144,1|aaoag0,90,11,0|ak1brz,90,11,0|ak1bs0,89,144,1|atrbrz,89,144,1|atrbs0,90,11,0|b36dbz,90,11,0|b36dc0,89,144,1|bcl9bz,89,144,1|bcl9c0,90,11,0|bm05bz,90,11,0|bm05c0,89,144,1|bvf1bz,89,144,1|bvf1c0,90,11,0|c4s2nz,90,11,0|c4s2o0,89,144,1|ce6ynz,89,144,1|ce6yo0,90,11,0|cnjzzz,90,11,0|cnk000,89,144,1|cwyvzz,89,144,1|cwyw00,90,11,0|d6bxbz,90,11,0|d6bxc0,89,144,1|dfqtbz,89,144,1|dfqtc0,90,11,0|dp5pbz,90,11,0|dp5pc0,89,144,1|dyklbz,89,144,1|dyklc0,90,11,0|e7xmnz,90,11,0|e7xmo0,89,144,1|ehcinz,89,144,1|ehcio0,90,11,0|eqpjzz,90,11,0|eqpk00,89,144,1|f04fzz,89,144,1|f04g00,90,11,0|f9hhbz,90,11,0|f9hhc0,89,144,1|fiwdbz,89,144,1|fiwdc0,90,11,0|fsb9bz,90,11,0|fsb9c0,89,144,1|g1q5bz,89,144,1|g1q5c0,90,11,0|gb36nz,90,11,0|gb36o0,89,144,1|gki2nz,89,144,1|gki2o0,90,11,0|gtv3zz,90,11,0|gtv400,89,144,1|h39zzz,89,144,1|h3a000,90,11,0|hcn1bz,90,11,0|hcn1c0,89,144,1|hm1xbz,89,144,1|hm1xc0,90,11,0|hvgtbz,90,11,0|hvgtc0,89,144,1|i4vpbz,89,144,1|i4vpc0,90,11,0|ie8qnz,90,11,0|ie8qo0,89,144,1|innmnz,89,144,1|innmo0,90,11,0|ix0nzz,90,11,0|ix0o00,89,144,1|j6fjzz,89,144,1|j6fk00,90,11,0|jfslbz,90,11,0|jfslc0,89,144,1|jp7hbz,89,144,1|jp7hc0,90,11,0","Asia/Baku|,0,149,0|-nu158c,90,11,0|-6p7kc1,90,11,0|-6p7kc0,89,144,0|5vb3jz,89,144,0|5vb3k0,82,134,1|64pwrz,82,134,1|64pws0,89,144,0|6e30vz,89,144,0|6e30w0,82,134,1|6nhu3z,82,134,1|6nhu40,89,144,0|6wuy7z,89,144,0|6wuy80,82,134,1|769rfz,82,134,1|769rg0,89,144,0|7foq7z,89,144,0|7foq80,82,134,1|7p1x3z,82,134,1|7p1x40,89,144,0|7yeyfz,89,144,0|7yeyg0,82,134,1|87rzrz,82,134,1|87rzs0,89,144,0|8h513z,89,144,0|8h5140,82,134,1|8qi2fz,82,134,1|8qi2g0,89,144,0|8zv3rz,89,144,0|8zv3s0,82,134,1|99853z,82,134,1|998540,89,144,0|9il6fz,89,144,0|9il6g0,82,134,1|9ry7rz,82,134,1|9ry7s0,89,144,0|a1b93z,89,144,0|a1b940,82,134,1|aaoafz,82,134,1|aaoag0,89,144,0|ak1brz,89,144,0|ak1bs0,82,134,1|atrbrz,82,134,1|atrbs0,89,144,0|b34d3z,89,144,0|b34d40,89,144,1|bchh7z,89,144,1|bchh80,90,11,0|bluijz,90,11,0|bluik0,89,144,1|bv7jvz,89,144,1|bv7jw0,89,144,0|dp3xfz,89,144,0|dp3xg0,82,134,1|dzwtfz,82,134,1|dzwtg0,89,144,0|e7txbz,89,144,0|e7txc0,82,134,1|eimtbz,82,134,1|eimtc0,89,144,0|eqjzzz,89,144,0|eqk000,82,134,1|f1cvzz,82,134,1|f1cw00,89,144,0|f9a2nz,89,144,0|f9a2o0,82,134,1|fkfxbz,82,134,1|fkfxc0,89,144,0|fs05bz,89,144,0|fs05c0,82,134,1|g35zzz,82,134,1|g36000,89,144,0|gaq7zz,89,144,0|gaq800,82,134,1|glw2nz,82,134,1|glw2o0,89,144,0|gtt9bz,89,144,0|gtt9c0,82,134,1|h4m5bz,82,134,1|h4m5c0,89,144,0|hcjbzz,89,144,0|hcjc00,82,134,1|hnc7zz,82,134,1|hnc800,89,144,0|hv9enz,89,144,0|hv9eo0,82,134,1|i6f9bz,82,134,1|i6f9c0,89,144,0|idzhbz,89,144,0|idzhc0,82,134,1|ip5bzz,82,134,1|ip5c00,89,144,0|iwpjzz,89,144,0|iwpk00,82,134,1|j7venz,82,134,1|j7veo0,89,144,0|jffmnz,89,144,0|jffmo0,82,134,1|jqlhbz,82,134,1|jqlhc0,89,144,0|jyinzz,89,144,0|jyio00,82,134,1|k9bjzz,82,134,1|k9bk00,89,144,0|kh8qnz,89,144,0|kh8qo0,82,134,1|ks1mnz,82,134,1|ks1mo0,89,144,0|kzytbz,89,144,0|kzytc0,82,134,1|lb4nzz,82,134,1|lb4o00,89,144,0|liovzz,89,144,0|liow00,82,134,1|ltuqnz,82,134,1|ltuqo0,89,144,0|m1eynz,89,144,0|m1eyo0,82,134,1|mcktbz,82,134,1|mcktc0,89,144,0|mkhzzz,89,144,0|mki000,82,134,1|mvavzz,82,134,1|mvaw00,89,144,0|n382nz,89,144,0|n382o0,82,134,1|ne0ynz,82,134,1|ne0yo0,89,144,0|nly5bz,89,144,0|nly5c0,82,134,1|nwr1bz,82,134,1|nwr1c0,89,144,0","Asia/Bangkok|,0,150,0|-1ayyla4,41,150,0|-pysda5,41,150,0|-pysda4,84,136,0","Asia/Beirut|,0,151,0|-1ayy98o,10,7,0|-pyzew1,10,7,0|-pyzew0,11,11,1|-po4r01,11,11,1|-po4r00,10,7,0|-pfwdk1,10,7,0|-pfwdk0,11,11,1|-p6hkc1,11,11,1|-p6hkc0,10,7,0|-oxj9k1,10,7,0|-oxj9k0,11,11,1|-ongdo1,11,11,1|-ongdo0,10,7,0|-oddc81,10,7,0|-oddc80,11,11,1|-o5t701,11,11,1|-o5t700,10,7,0|-6m2iw1,10,7,0|-6m2iw0,11,11,1|-6e79o1,11,11,1|-6e79o0,10,7,0|-63alk1,10,7,0|-63alk0,11,11,1|-5vfcc1,11,11,1|-5vfcc0,10,7,0|-5kio81,10,7,0|-5kio80,11,11,1|-5cnf01,11,11,1|-5cnf00,10,7,0|-51ow81,10,7,0|-51ow80,11,11,1|-4ttn01,11,11,1|-4ttn00,10,7,0|-4iwyw1,10,7,0|-4iwyw0,11,11,1|-4b1po1,11,11,1|-4b1po0,10,7,0|1ag2fz,10,7,0|1ag2g0,11,11,1|1fn0zz,11,11,1|1fn100,10,7,0|1qjp3z,10,7,0|1qjp40,11,11,1|1yeybz,11,11,1|1yeyc0,10,7,0|29bmfz,10,7,0|29bmg0,11,11,1|2h6vnz,11,11,1|2h6vo0,10,7,0|2s3jrz,10,7,0|2s3js0,11,11,1|2zyszz,11,11,1|2zyt00,10,7,0|3axbrz,10,7,0|3axbs0,11,11,1|3iskzz,11,11,1|3isl00,10,7,0|3tp93z,10,7,0|3tp940,11,11,1|41kibz,11,11,1|41kic0,10,7,0|4cfbrz,10,7,0|4cfbs0,11,11,1|4kakzz,11,11,1|4kal00,10,7,0|7h8frz,10,7,0|7h8fs0,11,11,1|7pvgzz,11,11,1|7pvh00,10,7,0|800d3z,10,7,0|800d40,11,11,1|88nebz,11,11,1|88nec0,10,7,0|8isafz,10,7,0|8isag0,11,11,1|8rfbnz,11,11,1|8rfbo0,10,7,0|91k7rz,10,7,0|91k7s0,11,11,1|9a78zz,11,11,1|9a7900,10,7,0|9lzefz,10,7,0|9lzeg0,11,11,1|9t10zz,11,11,1|9t1100,10,7,0|a3ml3z,10,7,0|a3ml40,11,11,1|absybz,11,11,1|absyc0,10,7,0|alxufz,10,7,0|alxug0,11,11,1|aukvnz,11,11,1|aukvo0,10,7,0|b4prrz,10,7,0|b4prs0,11,11,1|bdcszz,11,11,1|bdct00,10,7,0|bnjjrz,10,7,0|bnjjs0,11,11,1|bvkczz,11,11,1|bvkd00,10,7,0|c4kifz,10,7,0|c4kig0,11,11,1|cdxgzz,11,11,1|cdxh00,10,7,0|cnal3z,10,7,0|cnal40,11,11,1|cwnjnz,11,11,1|cwnjo0,10,7,0|d60nrz,10,7,0|d60ns0,11,11,1|dfdmbz,11,11,1|dfdmc0,10,7,0|dp3p3z,10,7,0|dp3p40,11,11,1|dygnnz,11,11,1|dygno0,10,7,0|e7trrz,10,7,0|e7trs0,11,11,1|eh6qbz,11,11,1|eh6qc0,10,7,0|eqjufz,10,7,0|eqjug0,11,11,1|ezwszz,11,11,1|ezwt00,10,7,0|f99x3z,10,7,0|f99x40,11,11,1|fkfozz,11,11,1|fkfp00,10,7,0|frzzrz,10,7,0|frzzs0,11,11,1|g35rnz,11,11,1|g35ro0,10,7,0|gaq2fz,10,7,0|gaq2g0,11,11,1|glvubz,11,11,1|glvuc0,10,7,0|gtt3rz,10,7,0|gtt3s0,11,11,1|h4lwzz,11,11,1|h4lx00,10,7,0|hcj6fz,10,7,0|hcj6g0,11,11,1|hnbznz,11,11,1|hnbzo0,10,7,0|hv993z,10,7,0|hv9940,11,11,1|i6f0zz,11,11,1|i6f100,10,7,0|idzbrz,10,7,0|idzbs0,11,11,1|ip53nz,11,11,1|ip53o0,10,7,0|iwpefz,10,7,0|iwpeg0,11,11,1|j7v6bz,11,11,1|j7v6c0,10,7,0|jffh3z,10,7,0|jffh40,11,11,1|jql8zz,11,11,1|jql900,10,7,0|jyiifz,10,7,0|jyiig0,11,11,1|k9bbnz,11,11,1|k9bbo0,10,7,0|kh8l3z,10,7,0|kh8l40,11,11,1|ks1ebz,11,11,1|ks1ec0,10,7,0|kzynrz,10,7,0|kzyns0,11,11,1|lb4fnz,11,11,1|lb4fo0,10,7,0|lioqfz,10,7,0|lioqg0,11,11,1|ltuibz,11,11,1|ltuic0,10,7,0|m1et3z,10,7,0|m1et40,11,11,1|mckkzz,11,11,1|mckl00,10,7,0|mkhufz,10,7,0|mkhug0,11,11,1|mvannz,11,11,1|mvano0,10,7,0|n37x3z,10,7,0|n37x40,11,11,1|ne0qbz,11,11,1|ne0qc0,10,7,0|nlxzrz,10,7,0|nlxzs0,11,11,1|nwqszz,11,11,1|nwqt00,10,7,0|o4o2fz,10,7,0|o4o2g0,11,11,1|oftubz,11,11,1|oftuc0,10,7,0|one53z,10,7,0|one540,11,11,1|oyjwzz,11,11,1|oyjx00,10,7,0|p647rz,10,7,0|p647s0,11,11,1|ph9znz,11,11,1|ph9zo0,10,7,0|pp793z,10,7,0|pp7940,11,11,1|q002bz,11,11,1|q002c0,10,7,0|q7xbrz,10,7,0|q7xbs0,11,11,1|qiq4zz,11,11,1|qiq500,10,7,0|qqnefz,10,7,0|qqneg0,11,11,1|r1t6bz,11,11,1|r1t6c0,10,7,0|r9dh3z,10,7,0|r9dh40,11,11,1|rkj8zz,11,11,1|rkj900,10,7,0|rs3jrz,10,7,0|rs3js0,11,11,1|s39bnz,11,11,1|s39bo0,10,7,0|sb6l3z,10,7,0|sb6l40,11,11,1|slzebz,11,11,1|slzec0,10,7,0|stwnrz,10,7,0|stwns0,11,11,1|t4pgzz,11,11,1|t4ph00,10,7,0|tcmqfz,10,7,0|tcmqg0,11,11,1|tnfjnz,11,11,1|tnfjo0,10,7,0|tvct3z,10,7,0|tvct40,11,11,1|u6ikzz,11,11,1|u6il00,10,7,0|ue2vrz,10,7,0|ue2vs0,11,11,1|up8nnz,11,11,1|up8no0,10,7,0|uwsyfz,10,7,0|uwsyg0,11,11,1|v7yqbz,11,11,1|v7yqc0,10,7,0|vfvzrz,10,7,0|vfvzs0,11,11,1|vqoszz,11,11,1|vqot00,10,7,0|vym2fz,10,7,0|vym2g0,11,11,1|w9evnz,11,11,1|w9evo0,10,7,0|whc53z,10,7,0|whc540,11,11,1|wshwzz,11,11,1|wshx00,10,7,0|x027rz,10,7,0|x027s0,11,11,1|xb7znz,11,11,1|xb7zo0,10,7,0|xisafz,10,7,0|xisag0,11,11,1|xty2bz,11,11,1|xty2c0,10,7,0|y1id3z,10,7,0|y1id40,11,11,1|yco4zz,11,11,1|yco500,10,7,0|yklefz,10,7,0|ykleg0,11,11,1|yve7nz,11,11,1|yve7o0,10,7,0|z3bh3z,10,7,0|z3bh40,11,11,1|ze4abz,11,11,1|ze4ac0,10,7,0","Asia/Bishkek|,0,152,0|-nu19tc,82,134,0|-kmr9w1,82,134,0|-kmr9w0,83,135,0|5vaxzz,83,135,0|5vay00,84,136,1|64pr7z,84,136,1|64pr80,83,135,0|6e2vbz,83,135,0|6e2vc0,84,136,1|6nhojz,84,136,1|6nhok0,83,135,0|6wusnz,83,135,0|6wuso0,84,136,1|769lvz,84,136,1|769lw0,83,135,0|7foknz,83,135,0|7foko0,84,136,1|7p1rjz,84,136,1|7p1rk0,83,135,0|7yesvz,83,135,0|7yesw0,84,136,1|87ru7z,84,136,1|87ru80,83,135,0|8h4vjz,83,135,0|8h4vk0,84,136,1|8qhwvz,84,136,1|8qhww0,83,135,0|8zuy7z,83,135,0|8zuy80,84,136,1|997zjz,84,136,1|997zk0,83,135,0|9il0vz,83,135,0|9il0w0,84,136,1|9ry27z,84,136,1|9ry280,83,135,0|a1b3jz,83,135,0|a1b3k0,84,136,1|aao4vz,84,136,1|aao4w0,83,135,0|ak167z,83,135,0|ak1680,84,136,1|atr67z,84,136,1|atr680,83,135,0|b347jz,83,135,0|b347k0,83,135,1|bazjjz,83,135,1|bazjk0,82,134,0|bmk4rz,82,134,0|bmk4s0,83,135,1|bv75zz,83,135,1|bv7600,82,134,0|c5a7fz,82,134,0|c5a7g0,83,135,1|cdx8nz,83,135,1|cdx8o0,82,134,0|co0a3z,82,134,0|co0a40,83,135,1|cwnbbz,83,135,1|cwnbc0,82,134,0|d6qcrz,82,134,0|d6qcs0,83,135,1|dfddzz,83,135,1|dfde00,82,134,0|dpgffz,82,134,0|dpgfg0,83,135,1|dygfbz,83,135,1|dygfc0,82,134,0|e7tqdz,82,134,0|e7tqe0,83,135,1|eimjlz,83,135,1|eimjm0,82,134,0|eqjt1z,82,134,0|eqjt20,83,135,1|f1cm9z,83,135,1|f1cma0,82,134,0|f99vpz,82,134,0|f99vq0,83,135,1|fkfnlz,83,135,1|fkfnm0,82,134,0|frzydz,82,134,0|frzye0,83,135,1|g35q9z,83,135,1|g35qa0,82,134,0|gaq11z,82,134,0|gaq120,83,135,1|glvsxz,83,135,1|glvsy0,82,134,0|gtt2dz,82,134,0|gtt2e0,83,135,1|h4lvlz,83,135,1|h4lvm0,82,134,0|hcj51z,82,134,0|hcj520,83,135,1|hnby9z,83,135,1|hnbya0,82,134,0|hv97pz,82,134,0|hv97q0,83,135,1|i6ezlz,83,135,1|i6ezm0,82,134,0|idzadz,82,134,0|idzae0,83,135,1|il2knz,83,135,1|il2ko0,83,135,0","Asia/Brunei|,0,153,0|-mvofy4,91,154,0|-jb6i61,91,154,0|-jb6i60,92,155,0","Asia/Chita|,0,156,0|-q4cfog,92,155,0|-kmri81,92,155,0|-kmri80,93,157,0|5vapnz,93,157,0|5vapo0,94,158,1|64pivz,94,158,1|64piw0,93,157,0|6e2mzz,93,157,0|6e2n00,94,158,1|6nhg7z,94,158,1|6nhg80,93,157,0|6wukbz,93,157,0|6wukc0,94,158,1|769djz,94,158,1|769dk0,93,157,0|7focbz,93,157,0|7focc0,94,158,1|7p1j7z,94,158,1|7p1j80,93,157,0|7yekjz,93,157,0|7yekk0,94,158,1|87rlvz,94,158,1|87rlw0,93,157,0|8h4n7z,93,157,0|8h4n80,94,158,1|8qhojz,94,158,1|8qhok0,93,157,0|8zupvz,93,157,0|8zupw0,94,158,1|997r7z,94,158,1|997r80,93,157,0|9iksjz,93,157,0|9iksk0,94,158,1|9rxtvz,94,158,1|9rxtw0,93,157,0|a1av7z,93,157,0|a1av80,94,158,1|aanwjz,94,158,1|aanwk0,93,157,0|ak0xvz,93,157,0|ak0xw0,94,158,1|atqxvz,94,158,1|atqxw0,93,157,0|b33z7z,93,157,0|b33z80,93,157,1|bch3bz,93,157,1|bch3c0,92,155,0|bi8hzz,92,155,0|bi8i00,93,157,0|blu1vz,93,157,0|blu1w0,94,158,1|bv737z,94,158,1|bv7380,93,157,0|c4k4jz,93,157,0|c4k4k0,94,158,1|cdx5vz,94,158,1|cdx5w0,93,157,0|cna77z,93,157,0|cna780,94,158,1|cwn8jz,94,158,1|cwn8k0,93,157,0|d609vz,93,157,0|d609w0,94,158,1|dfdb7z,94,158,1|dfdb80,93,157,0|dp3b7z,93,157,0|dp3b80,94,158,1|dzw77z,94,158,1|dzw780,93,157,0|e7tdvz,93,157,0|e7tdw0,94,158,1|eim9vz,94,158,1|eim9w0,93,157,0|eqjgjz,93,157,0|eqjgk0,94,158,1|f1ccjz,94,158,1|f1cck0,93,157,0|f99j7z,93,157,0|f99j80,94,158,1|fkfdvz,94,158,1|fkfdw0,93,157,0|frzlvz,93,157,0|frzlw0,94,158,1|g35gjz,94,158,1|g35gk0,93,157,0|gapojz,93,157,0|gapok0,94,158,1|glvj7z,94,158,1|glvj80,93,157,0|gtspvz,93,157,0|gtspw0,94,158,1|h4llvz,94,158,1|h4llw0,93,157,0|hcisjz,93,157,0|hcisk0,94,158,1|hnbojz,94,158,1|hnbok0,93,157,0|hv8v7z,93,157,0|hv8v80,94,158,1|i6epvz,94,158,1|i6epw0,93,157,0|idyxvz,93,157,0|idyxw0,94,158,1|ip4sjz,94,158,1|ip4sk0,93,157,0|iwp0jz,93,157,0|iwp0k0,94,158,1|j7uv7z,94,158,1|j7uv80,93,157,0|jff37z,93,157,0|jff380,94,158,1|jqkxvz,94,158,1|jqkxw0,93,157,0|jyi4jz,93,157,0|jyi4k0,94,158,1|k9b0jz,94,158,1|k9b0k0,93,157,0|kh877z,93,157,0|kh8780,94,158,1|ks137z,94,158,1|ks1380,93,157,0|kzy9vz,93,157,0|kzy9w0,94,158,1|lb44jz,94,158,1|lb44k0,93,157,0|liocjz,93,157,0|liock0,94,158,0|ne0cfz,94,158,0|ne0cg0,92,155,0|o4nrbz,92,155,0|o4nrc0,93,157,0","Asia/Choibalsan|,0,159,0|-xmct7c,84,136,0|46akjz,84,136,0|46akk0,92,155,0|6wun3z,92,155,0|6wun40,94,158,1|769djz,94,158,1|769dk0,93,157,0|7focbz,93,157,0|7focc0,94,158,1|7p1avz,94,158,1|7p1aw0,93,157,0|7yeezz,93,157,0|7yef00,94,158,1|87rdjz,94,158,1|87rdk0,93,157,0|8h4hnz,93,157,0|8h4ho0,94,158,1|8qhg7z,94,158,1|8qhg80,93,157,0|8zukbz,93,157,0|8zukc0,94,158,1|997ivz,94,158,1|997iw0,93,157,0|9ikmzz,93,157,0|9ikn00,94,158,1|9rxljz,94,158,1|9rxlk0,93,157,0|a1apnz,93,157,0|a1apo0,94,158,1|aano7z,94,158,1|aano80,93,157,0|ak0sbz,93,157,0|ak0sc0,94,158,1|atqpjz,94,158,1|atqpk0,93,157,0|b33tnz,93,157,0|b33to0,94,158,1|bcgs7z,94,158,1|bcgs80,93,157,0|bltwbz,93,157,0|bltwc0,94,158,1|bv6uvz,94,158,1|bv6uw0,93,157,0|c4jyzz,93,157,0|c4jz00,94,158,1|cdwxjz,94,158,1|cdwxk0,93,157,0|cna1nz,93,157,0|cna1o0,94,158,1|cwn07z,94,158,1|cwn080,93,157,0|d604bz,93,157,0|d604c0,94,158,1|dfd2vz,94,158,1|dfd2w0,93,157,0|dp35nz,93,157,0|dp35o0,94,158,1|dyg47z,94,158,1|dyg480,93,157,0|e7t8bz,93,157,0|e7t8c0,94,158,1|eh66vz,94,158,1|eh66w0,93,157,0|eqjazz,93,157,0|eqjb00,94,158,1|ezw9jz,94,158,1|ezw9k0,93,157,0|gcgn7z,93,157,0|gcgn80,94,158,1|gkdr3z,94,158,1|gkdr40,93,157,0|gtqv7z,93,157,0|gtqv80,94,158,1|h33trz,94,158,1|h33ts0,93,157,0|hcgxvz,93,157,0|hcgxw0,94,158,1|hltwfz,94,158,1|hltwg0,93,157,0|hv70jz,93,157,0|hv70k0,94,158,1|i4jz3z,94,158,1|i4jz40,93,157,0|idx37z,93,157,0|idx380,94,158,1|ina1rz,94,158,1|ina1s0,93,157,0|iwn5vz,93,157,0|iwn5w0,94,158,1|j6d33z,94,158,1|j6d340,93,157,0|jyjtnz,93,157,0|jyjto0,92,155,0|nlvtzz,92,155,0|nlvu00,93,157,1|nv8mzz,93,157,1|nv8n00,92,155,0|o4lwnz,92,155,0|o4lwo0,93,157,1|odypnz,93,157,1|odypo0,92,155,0","Asia/Colombo|,0,160,0|-1ayyhgc,19,161,0|-xehasl,19,161,0|-xehask,95,162,0|-elvwm1,95,162,0|-elvwm0,83,135,1|-e9lco1,83,135,1|-e9lco0,96,163,1|-cmw9u1,96,163,1|-cmw9u0,95,162,0|drxa1z,95,162,0|drxa20,96,163,0|dzufbz,96,163,0|dzufc0,83,135,0|ixq61z,83,135,0|ixq620,95,162,0","Asia/Damascus|,0,164,0|-q3gk20,10,7,0|-pxwdc1,10,7,0|-pxwdc0,11,11,1|-pp9c41,11,11,1|-pp9c40,10,7,0|-pf6ao1,10,7,0|-pf6ao0,11,11,1|-p6j9g1,11,11,1|-p6j9g0,10,7,0|-owg801,10,7,0|-owg800,11,11,1|-ont6s1,11,11,1|-ont6s0,10,7,0|-odq5c1,10,7,0|-odq5c0,11,11,1|-o4q5g1,11,11,1|-o4q5g0,10,7,0|-408lc1,10,7,0|-408lc0,11,11,1|-3s9ms1,11,11,1|-3s9ms0,10,7,0|-3hcyo1,10,7,0|-3hcyo0,11,11,1|-39jk41,11,11,1|-39jk40,10,7,0|-2yj6o1,10,7,0|-2yj6o0,11,11,1|-2qnxg1,11,11,1|-2qnxg0,10,7,0|-2fr9c1,10,7,0|-2fr9c0,11,11,1|-27xus1,11,11,1|-27xus0,10,7,0|-1xcao1,10,7,0|-1xcao0,11,11,1|-1p42s1,11,11,1|-1p42s0,10,7,0|-1e7eo1,10,7,0|-1e7eo0,11,11,1|-16c5g1,11,11,1|-16c5g0,10,7,0|-vdmo1,10,7,0|-vdmo0,11,11,1|-nidg1,11,11,1|-nidg0,10,7,0|-clpc1,10,7,0|-clpc0,11,11,1|-4qg41,11,11,1|-4qg40,10,7,0|667zz,10,7,0|66800,11,11,1|e1h7z,11,11,1|e1h80,10,7,0|oy5bz,10,7,0|oy5c0,11,11,1|wtejz,11,11,1|wtek0,10,7,0|17rxbz,10,7,0|17rxc0,11,11,1|1fn6jz,11,11,1|1fn6k0,10,7,0|1qjunz,10,7,0|1qjuo0,11,11,1|1yf3vz,11,11,1|1yf3w0,10,7,0|29brzz,10,7,0|29bs00,11,11,1|2h717z,11,11,1|2h7180,10,7,0|2s3pbz,10,7,0|2s3pc0,11,11,1|2zyyjz,11,11,1|2zyyk0,10,7,0|3axhbz,10,7,0|3axhc0,11,11,1|3isqjz,11,11,1|3isqk0,10,7,0|3tpenz,10,7,0|3tpeo0,11,11,1|4013vz,11,11,1|4013w0,10,7,0|4chbzz,10,7,0|4chc00,11,11,1|4it17z,11,11,1|4it180,10,7,0|6xa2nz,10,7,0|6xa2o0,11,11,1|76a2jz,11,11,1|76a2k0,10,7,0|7g3unz,10,7,0|7g3uo0,11,11,1|7p3ujz,11,11,1|7p3uk0,10,7,0|8ezenz,10,7,0|8ezeo0,11,11,1|8r2ijz,11,11,1|8r2ik0,10,7,0|8yfenz,10,7,0|8yfeo0,11,11,1|9az6jz,11,11,1|9az6k0,10,7,0|9hz3zz,10,7,0|9hz400,11,11,1|9tsyjz,11,11,1|9tsyk0,10,7,0|a1knzz,10,7,0|a1ko00,11,11,1|ab1bvz,11,11,1|ab1bw0,10,7,0|akefzz,10,7,0|akeg00,11,11,1|atrejz,11,11,1|atrek0,10,7,0|b367rz,10,7,0|b367s0,11,11,1|bcl0zz,11,11,1|bcl100,10,7,0|bmcyfz,10,7,0|bmcyg0,11,11,1|bveszz,11,11,1|bvet00,10,7,0|c4gt3z,10,7,0|c4gt40,11,11,1|cdvmbz,11,11,1|cdvmc0,10,7,0|cnjufz,10,7,0|cnjug0,11,11,1|cwynnz,11,11,1|cwyno0,10,7,0|d6brrz,10,7,0|d6brs0,11,11,1|dfqkzz,11,11,1|dfql00,10,7,0|dp5jrz,10,7,0|dp5js0,11,11,1|dykczz,11,11,1|dykd00,10,7,0|e7vmfz,10,7,0|e7vmg0,11,11,1|ehcabz,11,11,1|ehcac0,10,7,0|eqlp3z,10,7,0|eqlp40,11,11,1|f047nz,11,11,1|f047o0,10,7,0|f9hbrz,10,7,0|f9hbs0,11,11,1|fiw4zz,11,11,1|fiw500,10,7,0|fsb3rz,10,7,0|fsb3s0,11,11,1|g1pwzz,11,11,1|g1px00,10,7,0|gb313z,10,7,0|gb3140,11,11,1|gkhubz,11,11,1|gkhuc0,10,7,0|gtuyfz,10,7,0|gtuyg0,11,11,1|h39rnz,11,11,1|h39ro0,10,7,0|hcmvrz,10,7,0|hcmvs0,11,11,1|hm1ozz,11,11,1|hm1p00,10,7,0|hvgnrz,10,7,0|hvgns0,11,11,1|i4vgzz,11,11,1|i4vh00,10,7,0|ie8l3z,10,7,0|ie8l40,11,11,1|innebz,11,11,1|innec0,10,7,0|ix0ifz,10,7,0|ix0ig0,11,11,1|j5ynnz,11,11,1|j5yno0,10,7,0|jfoqfz,10,7,0|jfoqg0,11,11,1|jquibz,11,11,1|jquic0,10,7,0|jyrrrz,10,7,0|jyrrs0,11,11,1|k9mfnz,11,11,1|k9mfo0,10,7,0|kh4vrz,10,7,0|kh4vs0,11,11,1|ksannz,11,11,1|ksano0,10,7,0|l07x3z,10,7,0|l07x40,11,11,1|lb0qbz,11,11,1|lb0qc0,10,7,0|lixzrz,10,7,0|lixzs0,11,11,1|ltqszz,11,11,1|ltqt00,10,7,0|m1o2fz,10,7,0|m1o2g0,11,11,1|mcgvnz,11,11,1|mcgvo0,10,7,0|mke53z,10,7,0|mke540,11,11,1|mv6ybz,11,11,1|mv6yc0,10,7,0|n347rz,10,7,0|n347s0,11,11,1|ne9znz,11,11,1|ne9zo0,10,7,0|nluafz,10,7,0|nluag0,11,11,1|nx02bz,11,11,1|nx02c0,10,7,0|o4kd3z,10,7,0|o4kd40,11,11,1|ofq4zz,11,11,1|ofq500,10,7,0|onnefz,10,7,0|onneg0,11,11,1|oyg7nz,11,11,1|oyg7o0,10,7,0|p6dh3z,10,7,0|p6dh40,11,11,1|ph6abz,11,11,1|ph6ac0,10,7,0|pp3jrz,10,7,0|pp3js0,11,11,1|pzwczz,11,11,1|pzwd00,10,7,0|q7tmfz,10,7,0|q7tmg0,11,11,1|qizebz,11,11,1|qizec0,10,7,0|qqjp3z,10,7,0|qqjp40,11,11,1|r1pgzz,11,11,1|r1ph00,10,7,0|r99rrz,10,7,0|r99rs0,11,11,1|rkfjnz,11,11,1|rkfjo0,10,7,0|rsct3z,10,7,0|rsct40,11,11,1|s35mbz,11,11,1|s35mc0,10,7,0|sb2vrz,10,7,0|sb2vs0,11,11,1|slvozz,11,11,1|slvp00,10,7,0|stsyfz,10,7,0|stsyg0,11,11,1|t4yqbz,11,11,1|t4yqc0,10,7,0|tcj13z,10,7,0|tcj140,11,11,1|tnoszz,11,11,1|tnot00,10,7,0|tv93rz,10,7,0|tv93s0,11,11,1|u6evnz,11,11,1|u6evo0,10,7,0|uec53z,10,7,0|uec540,11,11,1|up4ybz,11,11,1|up4yc0,10,7,0|ux27rz,10,7,0|ux27s0,11,11,1|v7v0zz,11,11,1|v7v100,10,7,0|vfsafz,10,7,0|vfsag0,11,11,1|vql3nz,11,11,1|vql3o0,10,7,0|vyid3z,10,7,0|vyid40,11,11,1|w9o4zz,11,11,1|w9o500,10,7,0|wh8frz,10,7,0|wh8fs0,11,11,1|wse7nz,11,11,1|wse7o0,10,7,0|wzyifz,10,7,0|wzyig0,11,11,1|xb4abz,11,11,1|xb4ac0,10,7,0|xj1jrz,10,7,0|xj1js0,11,11,1|xtuczz,11,11,1|xtud00,10,7,0|y1rmfz,10,7,0|y1rmg0,11,11,1|yckfnz,11,11,1|yckfo0,10,7,0|ykhp3z,10,7,0|ykhp40,11,11,1|yvngzz,11,11,1|yvnh00,10,7,0|z37rrz,10,7,0|z37rs0,11,11,1|zedjnz,11,11,1|zedjo0,10,7,0","Asia/Dhaka|,0,165,0|-15r1q2s,61,166,0|-eqtpox,61,166,0|-eqtpow,96,163,0|-ef78q1,96,163,0|-ef78q0,95,162,0|-e9lba1,95,162,0|-e9lba0,96,163,0|-9j0ne1,96,163,0|-9j0ne0,83,135,0|klhwjz,83,135,0|klhwk0,84,136,1|kvj0jz,84,136,1|kvj0k0,83,135,0","Asia/Dili|,0,167,0|-u9s4l8,92,155,0|-ejfac1,92,155,0|-ejfac0,93,157,0|3b0hnz,93,157,0|3b0ho0,92,155,0|g0zlrz,92,155,0|g0zls0,93,157,0","Asia/Dubai|,0,168,0|-q3gnko,89,144,0","Asia/Dushanbe|,0,169,0|-nu18qo,82,134,0|-kmr9w1,82,134,0|-kmr9w0,83,135,0|5vaxzz,83,135,0|5vay00,84,136,1|64pr7z,84,136,1|64pr80,83,135,0|6e2vbz,83,135,0|6e2vc0,84,136,1|6nhojz,84,136,1|6nhok0,83,135,0|6wusnz,83,135,0|6wuso0,84,136,1|769lvz,84,136,1|769lw0,83,135,0|7foknz,83,135,0|7foko0,84,136,1|7p1rjz,84,136,1|7p1rk0,83,135,0|7yesvz,83,135,0|7yesw0,84,136,1|87ru7z,84,136,1|87ru80,83,135,0|8h4vjz,83,135,0|8h4vk0,84,136,1|8qhwvz,84,136,1|8qhww0,83,135,0|8zuy7z,83,135,0|8zuy80,84,136,1|997zjz,84,136,1|997zk0,83,135,0|9il0vz,83,135,0|9il0w0,84,136,1|9ry27z,84,136,1|9ry280,83,135,0|a1b3jz,83,135,0|a1b3k0,84,136,1|aao4vz,84,136,1|aao4w0,83,135,0|ak167z,83,135,0|ak1680,84,136,1|atr67z,84,136,1|atr680,83,135,0|b347jz,83,135,0|b347k0,83,135,1|bbgabz,83,135,1|bbgac0,82,134,0","Asia/Gaza|,0,170,0|-1054x1s,10,7,0|-ffv401,10,7,0|-ffv400,11,11,1|-f9l6o1,11,11,1|-f9l6o0,10,7,0|-f765c1,10,7,0|-f765c0,11,11,1|-e6fxc1,11,11,1|-e6fxc0,10,7,0|-dyoao1,10,7,0|-dyoao0,11,11,1|-dno001,11,11,1|-dno000,10,7,0|-dfuio1,10,7,0|-dfuio0,11,11,1|-d4u801,11,11,1|-d4u800,10,7,0|-cwatc1,10,7,0|-cwatc0,11,11,1|-cm2ao1,11,11,1|-cm2ao0,10,7,0|-cdiw01,10,7,0|-cdiw00,11,11,1|-c3adc1,11,11,1|-c3adc0,10,7,0|-6lluw1,10,7,0|-6lluw0,11,11,1|-6e79o1,11,11,1|-6e79o0,10,7,0|-63alk1,10,7,0|-63alk0,11,11,1|-5vfcc1,11,11,1|-5vfcc0,10,7,0|-5kilg1,10,7,0|-5kilg0,11,11,1|-5cp1c1,11,11,1|-5cp1c0,10,7,0|-51otg1,10,7,0|-51otg0,11,11,1|-4tv9c1,11,11,1|-4tv9c0,10,7,0|-4iww41,10,7,0|-4iww40,11,11,1|-4b3c01,11,11,1|-4b3c00,10,7,0|-404ys1,10,7,0|-404ys0,11,11,1|-3sbeo1,11,11,1|-3sbeo0,10,7,0|-3hd1g1,10,7,0|-3hd1g0,11,11,1|-39jhc1,11,11,1|-39jhc0,10,7,0|-2yj9g1,10,7,0|-2yj9g0,11,11,1|-2qppc1,11,11,1|-2qppc0,10,7,0|-2frc41,10,7,0|-2frc40,11,11,1|-27xs01,11,11,1|-27xs00,10,7,0|-1wzes1,10,7,0|-1wzes0,11,11,1|-1p4001,11,11,1|-1p4000,10,7,0|-1e7hg1,10,7,0|-1e7hg0,11,11,1|-1ceto1,11,11,1|-1ceto0,97,7,0|2crp3z,97,7,0|2crp40,98,11,1|2ht3nz,98,11,1|2ht3o0,97,7,0|2rj6fz,97,7,0|2rj6g0,98,11,1|2ydebz,98,11,1|2ydec0,97,7,0|5iwyfz,97,7,0|5iwyg0,98,11,1|5l2qfz,98,11,1|5l2qg0,97,7,0|7hhp3z,97,7,0|7hhp40,98,11,1|7n93rz,98,11,1|7n93s0,97,7,0|7z4vrz,97,7,0|7z4vs0,98,11,1|86c2bz,98,11,1|86c2c0,97,7,0|8jnrrz,97,7,0|8jnrs0,98,11,1|8pf3nz,98,11,1|8pf3o0,97,7,0|90ql3z,97,7,0|90ql40,98,11,1|98i4zz,98,11,1|98i500,97,7,0|9jb3rz,97,7,0|9jb3s0,98,11,1|9qv8zz,98,11,1|9qv900,97,7,0|a342fz,97,7,0|a342g0,98,11,1|a9lbnz,98,11,1|a9lbo0,97,7,0|ak1brz,97,7,0|ak1bs0,98,11,1|aryfnz,98,11,1|aryfo0,97,7,0|b2refz,97,7,0|b2reg0,98,11,1|bb1gzz,98,11,1|bb1h00,97,7,0|blufrz,97,7,0|blufs0,98,11,1|bu4ibz,98,11,1|bu4ic0,97,7,0|c4trrz,97,7,0|c4trs0,98,11,1|ccukzz,98,11,1|ccul00,97,7,0|cnjufz,97,7,0|cnjug0,98,11,1|cv7ozz,98,11,1|cv7p00,97,7,0|d69x3z,97,7,0|d69x40,98,11,1|deaqbz,98,11,1|deaqc0,97,7,0|dkh13z,97,7,0|dkh140,10,7,0|dpcyfz,10,7,0|dpcyg0,11,11,1|dy02fz,11,11,1|dy02g0,10,7,0|e8313z,10,7,0|e83140,11,11,1|egq53z,11,11,1|egq540,10,7,0|eqt3rz,10,7,0|eqt3s0,11,11,1|ezg7rz,11,11,1|ezg7s0,10,7,0|fa93rz,10,7,0|fa93s0,11,11,1|fjm2bz,11,11,1|fjm2c0,10,7,0|ftc53z,10,7,0|ftc540,11,11,1|g2p3nz,11,11,1|g2p3o0,10,7,0|gc27rz,10,7,0|gc27s0,11,11,1|glf6bz,11,11,1|glf6c0,10,7,0|gusafz,10,7,0|gusag0,11,11,1|h458zz,11,11,1|h45900,10,7,0|hdid3z,10,7,0|hdid40,11,11,1|hmvbnz,11,11,1|hmvbo0,10,7,0|hw8frz,10,7,0|hw8fs0,11,11,1|i4vjrz,11,11,1|i4vjs0,10,7,0|ieyifz,10,7,0|ieyig0,11,11,1|int3vz,11,11,1|int3w0,10,7,0|ix0ifz,10,7,0|ix0ig0,11,11,1|j5ynnz,11,11,1|j5yno0,10,7,0|jfsfrz,10,7,0|jfsfs0,11,11,1|joa2jz,11,11,1|joa2k0,10,7,0|jyet3z,10,7,0|jyet40,11,11,1|k6bwzz,11,11,1|k6bx00,10,7,0|kh4vrz,10,7,0|kh4vs0,11,11,1|kpf13z,11,11,1|kpf140,10,7,0|kzwt5n,10,7,0|kzwt5o,11,11,1|l6yfnz,11,11,1|l6yfo0,10,7,0|lixztn,10,7,0|lixzto,11,11,1|lp7ubz,11,11,1|lp7uc0,10,7,0|m1o2fz,10,7,0|m1o2g0,11,11,1|mao53z,11,11,1|mao540,10,7,0|mke53z,10,7,0|mke540,11,11,1|mtr3nz,11,11,1|mtr3o0,10,7,0|n347rz,10,7,0|n347s0,11,11,1|ndx0zz,11,11,1|ndx100,10,7,0|nlw53z,10,7,0|nlw540,11,11,1|nwn6fz,11,11,1|nwn6g0,10,7,0|o4majz,10,7,0|o4mak0,11,11,1|ofs2fz,11,11,1|ofs2g0,10,7,0|oncd7z,10,7,0|oncd80,11,11,1|oyi53z,11,11,1|oyi540,10,7,0|p62fvz,10,7,0|p62fw0,11,11,1|ph87rz,11,11,1|ph87s0,10,7,0|pp3jrz,10,7,0|pp3js0,11,11,1|pzy7nz,11,11,1|pzy7o0,10,7,0|q7vh3z,10,7,0|q7vh40,11,11,1|qiod3z,11,11,1|qiod40,10,7,0|qqljrz,10,7,0|qqljs0,11,11,1|r1refz,11,11,1|r1reg0,10,7,0|r9bmfz,10,7,0|r9bmg0,11,11,1|rkhh3z,11,11,1|rkhh40,10,7,0|rs1p3z,10,7,0|rs1p40,11,11,1|s37jrz,11,11,1|s37js0,10,7,0|sb4qfz,10,7,0|sb4qg0,11,11,1|slxmfz,11,11,1|slxmg0,10,7,0|stut3z,10,7,0|stut40,11,11,1|t4np3z,11,11,1|t4np40,10,7,0|tckvrz,10,7,0|tckvs0,11,11,1|tndrrz,11,11,1|tndrs0,10,7,0|tvayfz,10,7,0|tvayg0,11,11,1|u6gt3z,11,11,1|u6gt40,10,7,0|ue113z,10,7,0|ue1140,11,11,1|up6vrz,11,11,1|up6vs0,10,7,0|uwr3rz,10,7,0|uwr3s0,11,11,1|v7wyfz,11,11,1|v7wyg0,10,7,0|vfu53z,10,7,0|vfu540,11,11,1|vqn13z,11,11,1|vqn140,10,7,0|vyk7rz,10,7,0|vyk7s0,11,11,1|w9d3rz,11,11,1|w9d3s0,10,7,0|whaafz,10,7,0|whaag0,11,11,1|wsg53z,11,11,1|wsg540,10,7,0|x00d3z,10,7,0|x00d40,11,11,1|xb67rz,11,11,1|xb67s0,10,7,0|xiqfrz,10,7,0|xiqfs0,11,11,1|xtwafz,11,11,1|xtwag0,10,7,0|y1gifz,10,7,0|y1gig0,11,11,1|ycmd3z,11,11,1|ycmd40,10,7,0|ykjjrz,10,7,0|ykjjs0,11,11,1|yvcfrz,11,11,1|yvcfs0,10,7,0|z39mfz,10,7,0|z39mg0,11,11,1|ze2ifz,11,11,1|ze2ig0,10,7,0","Asia/Hebron|,0,171,0|-1054x5z,10,7,0|-ffv401,10,7,0|-ffv400,11,11,1|-f9l6o1,11,11,1|-f9l6o0,10,7,0|-f765c1,10,7,0|-f765c0,11,11,1|-e6fxc1,11,11,1|-e6fxc0,10,7,0|-dyoao1,10,7,0|-dyoao0,11,11,1|-dno001,11,11,1|-dno000,10,7,0|-dfuio1,10,7,0|-dfuio0,11,11,1|-d4u801,11,11,1|-d4u800,10,7,0|-cwatc1,10,7,0|-cwatc0,11,11,1|-cm2ao1,11,11,1|-cm2ao0,10,7,0|-cdiw01,10,7,0|-cdiw00,11,11,1|-c3adc1,11,11,1|-c3adc0,10,7,0|-6lluw1,10,7,0|-6lluw0,11,11,1|-6e79o1,11,11,1|-6e79o0,10,7,0|-63alk1,10,7,0|-63alk0,11,11,1|-5vfcc1,11,11,1|-5vfcc0,10,7,0|-5kilg1,10,7,0|-5kilg0,11,11,1|-5cp1c1,11,11,1|-5cp1c0,10,7,0|-51otg1,10,7,0|-51otg0,11,11,1|-4tv9c1,11,11,1|-4tv9c0,10,7,0|-4iww41,10,7,0|-4iww40,11,11,1|-4b3c01,11,11,1|-4b3c00,10,7,0|-404ys1,10,7,0|-404ys0,11,11,1|-3sbeo1,11,11,1|-3sbeo0,10,7,0|-3hd1g1,10,7,0|-3hd1g0,11,11,1|-39jhc1,11,11,1|-39jhc0,10,7,0|-2yj9g1,10,7,0|-2yj9g0,11,11,1|-2qppc1,11,11,1|-2qppc0,10,7,0|-2frc41,10,7,0|-2frc40,11,11,1|-27xs01,11,11,1|-27xs00,10,7,0|-1wzes1,10,7,0|-1wzes0,11,11,1|-1p4001,11,11,1|-1p4000,10,7,0|-1e7hg1,10,7,0|-1e7hg0,11,11,1|-1ceto1,11,11,1|-1ceto0,97,7,0|2crp3z,97,7,0|2crp40,98,11,1|2ht3nz,98,11,1|2ht3o0,97,7,0|2rj6fz,97,7,0|2rj6g0,98,11,1|2ydebz,98,11,1|2ydec0,97,7,0|5iwyfz,97,7,0|5iwyg0,98,11,1|5l2qfz,98,11,1|5l2qg0,97,7,0|7hhp3z,97,7,0|7hhp40,98,11,1|7n93rz,98,11,1|7n93s0,97,7,0|7z4vrz,97,7,0|7z4vs0,98,11,1|86c2bz,98,11,1|86c2c0,97,7,0|8jnrrz,97,7,0|8jnrs0,98,11,1|8pf3nz,98,11,1|8pf3o0,97,7,0|90ql3z,97,7,0|90ql40,98,11,1|98i4zz,98,11,1|98i500,97,7,0|9jb3rz,97,7,0|9jb3s0,98,11,1|9qv8zz,98,11,1|9qv900,97,7,0|a342fz,97,7,0|a342g0,98,11,1|a9lbnz,98,11,1|a9lbo0,97,7,0|ak1brz,97,7,0|ak1bs0,98,11,1|aryfnz,98,11,1|aryfo0,97,7,0|b2refz,97,7,0|b2reg0,98,11,1|bb1gzz,98,11,1|bb1h00,97,7,0|blufrz,97,7,0|blufs0,98,11,1|bu4ibz,98,11,1|bu4ic0,97,7,0|c4trrz,97,7,0|c4trs0,98,11,1|ccukzz,98,11,1|ccul00,97,7,0|cnjufz,97,7,0|cnjug0,98,11,1|cv7ozz,98,11,1|cv7p00,97,7,0|d69x3z,97,7,0|d69x40,98,11,1|deaqbz,98,11,1|deaqc0,97,7,0|dkh13z,97,7,0|dkh140,10,7,0|dpcyfz,10,7,0|dpcyg0,11,11,1|dy02fz,11,11,1|dy02g0,10,7,0|e8313z,10,7,0|e83140,11,11,1|egq53z,11,11,1|egq540,10,7,0|eqt3rz,10,7,0|eqt3s0,11,11,1|ezg7rz,11,11,1|ezg7s0,10,7,0|fa93rz,10,7,0|fa93s0,11,11,1|fjm2bz,11,11,1|fjm2c0,10,7,0|ftc53z,10,7,0|ftc540,11,11,1|g2p3nz,11,11,1|g2p3o0,10,7,0|gc27rz,10,7,0|gc27s0,11,11,1|glf6bz,11,11,1|glf6c0,10,7,0|gusafz,10,7,0|gusag0,11,11,1|h458zz,11,11,1|h45900,10,7,0|hdid3z,10,7,0|hdid40,11,11,1|hmvbnz,11,11,1|hmvbo0,10,7,0|hw8frz,10,7,0|hw8fs0,11,11,1|i4vjrz,11,11,1|i4vjs0,10,7,0|ieyifz,10,7,0|ieyig0,11,11,1|int3vz,11,11,1|int3w0,10,7,0|ix0ifz,10,7,0|ix0ig0,11,11,1|j5ynnz,11,11,1|j5yno0,10,7,0|jfsfrz,10,7,0|jfsfs0,11,11,1|joa2jz,11,11,1|joa2k0,10,7,0|jyet3z,10,7,0|jyet40,11,11,1|k6hgzz,11,11,1|k6hh00,10,7,0|kh4vrz,10,7,0|kh4vs0,11,11,1|kpf13z,11,11,1|kpf140,10,7,0|kzuyfz,10,7,0|kzuyg0,11,11,1|l6yfnz,11,11,1|l6yfo0,10,7,0|lixztn,10,7,0|lixzto,11,11,1|lp7ubz,11,11,1|lp7uc0,10,7,0|lqpmfz,10,7,0|lqpmg0,11,11,1|lsaybz,11,11,1|lsayc0,10,7,0|m1o2fz,10,7,0|m1o2g0,11,11,1|mao53z,11,11,1|mao540,10,7,0|mke53z,10,7,0|mke540,11,11,1|mtr3nz,11,11,1|mtr3o0,10,7,0|n347rz,10,7,0|n347s0,11,11,1|ndx0zz,11,11,1|ndx100,10,7,0|nlw53z,10,7,0|nlw540,11,11,1|nwn6fz,11,11,1|nwn6g0,10,7,0|o4majz,10,7,0|o4mak0,11,11,1|ofs2fz,11,11,1|ofs2g0,10,7,0|oncd7z,10,7,0|oncd80,11,11,1|oyi53z,11,11,1|oyi540,10,7,0|p62fvz,10,7,0|p62fw0,11,11,1|ph87rz,11,11,1|ph87s0,10,7,0|pp3jrz,10,7,0|pp3js0,11,11,1|pzy7nz,11,11,1|pzy7o0,10,7,0|q7vh3z,10,7,0|q7vh40,11,11,1|qiod3z,11,11,1|qiod40,10,7,0|qqljrz,10,7,0|qqljs0,11,11,1|r1refz,11,11,1|r1reg0,10,7,0|r9bmfz,10,7,0|r9bmg0,11,11,1|rkhh3z,11,11,1|rkhh40,10,7,0|rs1p3z,10,7,0|rs1p40,11,11,1|s37jrz,11,11,1|s37js0,10,7,0|sb4qfz,10,7,0|sb4qg0,11,11,1|slxmfz,11,11,1|slxmg0,10,7,0|stut3z,10,7,0|stut40,11,11,1|t4np3z,11,11,1|t4np40,10,7,0|tckvrz,10,7,0|tckvs0,11,11,1|tndrrz,11,11,1|tndrs0,10,7,0|tvayfz,10,7,0|tvayg0,11,11,1|u6gt3z,11,11,1|u6gt40,10,7,0|ue113z,10,7,0|ue1140,11,11,1|up6vrz,11,11,1|up6vs0,10,7,0|uwr3rz,10,7,0|uwr3s0,11,11,1|v7wyfz,11,11,1|v7wyg0,10,7,0|vfu53z,10,7,0|vfu540,11,11,1|vqn13z,11,11,1|vqn140,10,7,0|vyk7rz,10,7,0|vyk7s0,11,11,1|w9d3rz,11,11,1|w9d3s0,10,7,0|whaafz,10,7,0|whaag0,11,11,1|wsg53z,11,11,1|wsg540,10,7,0|x00d3z,10,7,0|x00d40,11,11,1|xb67rz,11,11,1|xb67s0,10,7,0|xiqfrz,10,7,0|xiqfs0,11,11,1|xtwafz,11,11,1|xtwag0,10,7,0|y1gifz,10,7,0|y1gig0,11,11,1|ycmd3z,11,11,1|ycmd40,10,7,0|ykjjrz,10,7,0|ykjjs0,11,11,1|yvcfrz,11,11,1|yvcfs0,10,7,0|z39mfz,10,7,0|z39mg0,11,11,1|ze2ifz,11,11,1|ze2ig0,10,7,0","Asia/Ho_Chi_Minh|,0,172,0|-x56934,99,173,0|-umdqev,99,173,0|-umdqeu,84,136,0|-e3bkw1,84,136,0|-e3bkw0,92,155,0|-cxyro1,92,155,0|-cxyro0,93,157,0|-cp63o1,93,157,0|-cp63o0,84,136,0|-bvja41,84,136,0|-bvja40,92,155,0|-7kjq81,92,155,0|-7kjq80,84,136,0|-57xfk1,84,136,0|-57xfk0,92,155,0|2uaprz,92,155,0|2uaps0,84,136,0","Asia/Hong_Kong|,0,174,0|-y0i0s0,100,155,0|-ewdn81,100,155,0|-ewdn80,101,157,1|-eqtn81,101,157,1|-eqtn80,102,175,1|-emgia1,102,175,1|-emgia0,103,157,0|-cl7cs1,103,157,0|-cl7cs0,100,155,0|-cda8w1,100,155,0|-cda8w0,101,157,1|-c1r5u1,101,157,1|-c1r5u0,100,155,0|-buwv61,100,155,0|-buwv60,101,157,1|-bj1361,101,157,1|-bj1360,100,155,0|-bb3wi1,100,155,0|-bb3wi0,101,157,1|-b1qv61,101,157,1|-b1qv60,100,155,0|-attoi1,100,155,0|-attoi0,101,157,1|-aj0si1,101,157,1|-aj0si0,100,155,0|-ab3lu1,100,155,0|-ab3lu0,101,157,1|-a0apu1,101,157,1|-a0apu0,100,155,0|-9sdj61,100,155,0|-9sdj60,101,157,1|-9hkn61,101,157,1|-9hkn60,100,155,0|-99ahu1,100,155,0|-99ahu0,101,157,1|-8yhlu1,101,157,1|-8yhlu0,100,155,0|-8qkf61,100,155,0|-8qkf60,101,157,1|-8frly1,101,157,1|-8frly0,100,155,0|-88k9u1,100,155,0|-88k9u0,101,157,1|-7x1ja1,101,157,1|-7x1ja0,100,155,0|-7pu761,100,155,0|-7pu760,101,157,1|-7dyhy1,101,157,1|-7dyhy0,100,155,0|-7744i1,100,155,0|-7744i0,101,157,1|-6v8fa1,101,157,1|-6v8fa0,100,155,0|-6o1361,100,155,0|-6o1360,101,157,1|-6cicm1,101,157,1|-6cicm0,100,155,0|-65b0i1,100,155,0|-65b0i0,101,157,1|-5ts9y1,101,157,1|-5ts9y0,100,155,0|-5mkxu1,100,155,0|-5mkxu0,101,157,1|-5b27a1,101,157,1|-5b27a0,100,155,0|-53uv61,100,155,0|-53uv60,101,157,1|-4rz5y1,101,157,1|-4rz5y0,100,155,0|-4l4si1,100,155,0|-4l4si0,101,157,1|-4993a1,101,157,1|-4993a0,100,155,0|-42epu1,100,155,0|-42epu0,101,157,1|-3qj0m1,101,157,1|-3qj0m0,100,155,0|-3jboi1,100,155,0|-3jboi0,101,157,1|-37sxy1,101,157,1|-37sxy0,100,155,0|-30llu1,100,155,0|-30llu0,101,157,1|-2p2va1,101,157,1|-2p2va0,100,155,0|-2gfoi1,100,155,0|-2gfoi0,101,157,1|-272py1,101,157,1|-272py0,100,155,0|-1xplu1,100,155,0|-1xplu0,101,157,1|-1ocna1,101,157,1|-1ocna0,100,155,0|-1ezj61,100,155,0|-1ezj60,101,157,1|-159ly1,101,157,1|-159ly0,100,155,0|-vwhu1,100,155,0|-vwhu0,101,157,1|-mjja1,101,157,1|-mjja0,100,155,0|-d6f61,100,155,0|-d6f60,101,157,1|-3tgm1,101,157,1|-3tgm0,100,155,0|5jnhz,100,155,0|5jni0,101,157,1|ewm1z,101,157,1|ewm20,100,155,0|o9q5z,100,155,0|o9q60,101,157,1|xmopz,101,157,1|xmoq0,100,155,0|16zstz,100,155,0|16zsu0,101,157,1|1gpq1z,101,157,1|1gpq20,100,155,0|1q2u5z,100,155,0|1q2u60,101,157,1|1zfspz,101,157,1|1zfsq0,100,155,0|231i5z,100,155,0|231i60,101,157,1|2i5vdz,101,157,1|2i5ve0,100,155,0|2rizhz,100,155,0|2rizi0,101,157,1|30vy1z,101,157,1|30vy20,100,155,0|3a925z,100,155,0|3a9260,101,157,1|3jm0pz,101,157,1|3jm0q0,100,155,0|4vv4tz,100,155,0|4vv4u0,101,157,1|5457dz,101,157,1|5457e0,100,155,0","Asia/Hovd|,0,176,0|-xmcoz0,83,135,0|46anbz,83,135,0|46anc0,84,136,0|6wupvz,84,136,0|6wupw0,92,155,1|769j3z,92,155,1|769j40,84,136,0|7fohvz,84,136,0|7fohw0,92,155,1|7p1gfz,92,155,1|7p1gg0,84,136,0|7yekjz,84,136,0|7yekk0,92,155,1|87rj3z,92,155,1|87rj40,84,136,0|8h4n7z,84,136,0|8h4n80,92,155,1|8qhlrz,92,155,1|8qhls0,84,136,0|8zupvz,84,136,0|8zupw0,92,155,1|997ofz,92,155,1|997og0,84,136,0|9iksjz,84,136,0|9iksk0,92,155,1|9rxr3z,92,155,1|9rxr40,84,136,0|a1av7z,84,136,0|a1av80,92,155,1|aantrz,92,155,1|aants0,84,136,0|ak0xvz,84,136,0|ak0xw0,92,155,1|atqv3z,92,155,1|atqv40,84,136,0|b33z7z,84,136,0|b33z80,92,155,1|bcgxrz,92,155,1|bcgxs0,84,136,0|blu1vz,84,136,0|blu1w0,92,155,1|bv70fz,92,155,1|bv70g0,84,136,0|c4k4jz,84,136,0|c4k4k0,92,155,1|cdx33z,92,155,1|cdx340,84,136,0|cna77z,84,136,0|cna780,92,155,1|cwn5rz,92,155,1|cwn5s0,84,136,0|d609vz,84,136,0|d609w0,92,155,1|dfd8fz,92,155,1|dfd8g0,84,136,0|dp3b7z,84,136,0|dp3b80,92,155,1|dyg9rz,92,155,1|dyg9s0,84,136,0|e7tdvz,84,136,0|e7tdw0,92,155,1|eh6cfz,92,155,1|eh6cg0,84,136,0|eqjgjz,84,136,0|eqjgk0,92,155,1|ezwf3z,92,155,1|ezwf40,84,136,0|gcgsrz,84,136,0|gcgss0,92,155,1|gkdwnz,92,155,1|gkdwo0,84,136,0|gtr0rz,84,136,0|gtr0s0,92,155,1|h33zbz,92,155,1|h33zc0,84,136,0|hch3fz,84,136,0|hch3g0,92,155,1|hlu1zz,92,155,1|hlu200,84,136,0|hv763z,84,136,0|hv7640,92,155,1|i4k4nz,92,155,1|i4k4o0,84,136,0|idx8rz,84,136,0|idx8s0,92,155,1|ina7bz,92,155,1|ina7c0,84,136,0|iwnbfz,84,136,0|iwnbg0,92,155,1|j6d8nz,92,155,1|j6d8o0,84,136,0|nlvwrz,84,136,0|nlvws0,92,155,1|nv8prz,92,155,1|nv8ps0,84,136,0|o4lzfz,84,136,0|o4lzg0,92,155,1|odysfz,92,155,1|odysg0,84,136,0","Asia/Irkutsk|,0,177,0|-1ayylz5,104,177,0|-q28gn6,104,177,0|-q28gn5,84,136,0|-kmrfg1,84,136,0|-kmrfg0,92,155,0|5vasfz,92,155,0|5vasg0,93,157,1|64plnz,93,157,1|64plo0,92,155,0|6e2prz,92,155,0|6e2ps0,93,157,1|6nhizz,93,157,1|6nhj00,92,155,0|6wun3z,92,155,0|6wun40,93,157,1|769gbz,93,157,1|769gc0,92,155,0|7fof3z,92,155,0|7fof40,93,157,1|7p1lzz,93,157,1|7p1m00,92,155,0|7yenbz,92,155,0|7yenc0,93,157,1|87ronz,93,157,1|87roo0,92,155,0|8h4pzz,92,155,0|8h4q00,93,157,1|8qhrbz,93,157,1|8qhrc0,92,155,0|8zusnz,92,155,0|8zuso0,93,157,1|997tzz,93,157,1|997u00,92,155,0|9ikvbz,92,155,0|9ikvc0,93,157,1|9rxwnz,93,157,1|9rxwo0,92,155,0|a1axzz,92,155,0|a1ay00,93,157,1|aanzbz,93,157,1|aanzc0,92,155,0|ak10nz,92,155,0|ak10o0,93,157,1|atr0nz,93,157,1|atr0o0,92,155,0|b341zz,92,155,0|b34200,92,155,1|bch63z,92,155,1|bch640,84,136,0|bi8krz,84,136,0|bi8ks0,92,155,0|blu4nz,92,155,0|blu4o0,93,157,1|bv75zz,93,157,1|bv7600,92,155,0|c4k7bz,92,155,0|c4k7c0,93,157,1|cdx8nz,93,157,1|cdx8o0,92,155,0|cna9zz,92,155,0|cnaa00,93,157,1|cwnbbz,93,157,1|cwnbc0,92,155,0|d60cnz,92,155,0|d60co0,93,157,1|dfddzz,93,157,1|dfde00,92,155,0|dp3dzz,92,155,0|dp3e00,93,157,1|dzw9zz,93,157,1|dzwa00,92,155,0|e7tgnz,92,155,0|e7tgo0,93,157,1|eimcnz,93,157,1|eimco0,92,155,0|eqjjbz,92,155,0|eqjjc0,93,157,1|f1cfbz,93,157,1|f1cfc0,92,155,0|f99lzz,92,155,0|f99m00,93,157,1|fkfgnz,93,157,1|fkfgo0,92,155,0|frzonz,92,155,0|frzoo0,93,157,1|g35jbz,93,157,1|g35jc0,92,155,0|gaprbz,92,155,0|gaprc0,93,157,1|glvlzz,93,157,1|glvm00,92,155,0|gtssnz,92,155,0|gtsso0,93,157,1|h4lonz,93,157,1|h4loo0,92,155,0|hcivbz,92,155,0|hcivc0,93,157,1|hnbrbz,93,157,1|hnbrc0,92,155,0|hv8xzz,92,155,0|hv8y00,93,157,1|i6esnz,93,157,1|i6eso0,92,155,0|idz0nz,92,155,0|idz0o0,93,157,1|ip4vbz,93,157,1|ip4vc0,92,155,0|iwp3bz,92,155,0|iwp3c0,93,157,1|j7uxzz,93,157,1|j7uy00,92,155,0|jff5zz,92,155,0|jff600,93,157,1|jql0nz,93,157,1|jql0o0,92,155,0|jyi7bz,92,155,0|jyi7c0,93,157,1|k9b3bz,93,157,1|k9b3c0,92,155,0|kh89zz,92,155,0|kh8a00,93,157,1|ks15zz,93,157,1|ks1600,92,155,0|kzycnz,92,155,0|kzyco0,93,157,1|lb47bz,93,157,1|lb47c0,92,155,0|liofbz,92,155,0|liofc0,93,157,0|ne0f7z,93,157,0|ne0f80,92,155,0","Asia/Jakarta|,0,178,0|-1hftyg0,41,178,0|-o0bdpd,41,178,0|-o0bdpc,105,179,0|-jebgdd,105,179,0|-jebgdc,91,154,0|-ehxgu1,91,154,0|-ehxgu0,93,157,0|-co37o1,93,157,0|-co37o0,91,154,0|-bb5zi1,91,154,0|-bb5zi0,92,155,0|-a9m681,92,155,0|-a9m680,91,154,0|-34ru61,91,154,0|-34ru60,106,136,0","Asia/Jayapura|,0,180,0|-jebm20,93,157,0|-d7zvo1,93,157,0|-d7zvo0,107,181,0|-34rzq1,107,181,0|-34rzq0,108,157,0","Asia/Jerusalem|,0,182,0|-1ayy96u,109,183,0|-r50eih,109,183,0|-r50eig,97,7,0|-ffv401,97,7,0|-ffv400,98,11,1|-f9l6o1,98,11,1|-f9l6o0,97,7,0|-f765c1,97,7,0|-f765c0,98,11,1|-e6fxc1,98,11,1|-e6fxc0,97,7,0|-dyoao1,97,7,0|-dyoao0,98,11,1|-dno001,98,11,1|-dno000,97,7,0|-dfuio1,97,7,0|-dfuio0,98,11,1|-d4u801,98,11,1|-d4u800,97,7,0|-cwatc1,97,7,0|-cwatc0,98,11,1|-cm2ao1,98,11,1|-cm2ao0,97,7,0|-cdiw01,97,7,0|-cdiw00,98,11,1|-c3adc1,98,11,1|-c3adc0,97,7,0|-ba0o01,97,7,0|-ba0o00,110,144,1|-b4tmo1,110,144,1|-b4tmo0,98,11,1|-b1oo01,98,11,1|-b1oo00,97,7,0|-asdhc1,97,7,0|-asdhc0,98,11,1|-aiwqo1,98,11,1|-aiwqo0,97,7,0|-aadc01,97,7,0|-aadc00,98,11,1|-a2juo1,98,11,1|-a2juo0,97,7,0|-9sd6o1,97,7,0|-9sd6o0,98,11,1|-9gudc1,98,11,1|-9gudc0,97,7,0|-98k801,97,7,0|-98k800,98,11,1|-8z76o1,98,11,1|-8z76o0,97,7,0|-8q7401,97,7,0|-8q7400,98,11,1|-8i9xc1,98,11,1|-8i9xc0,97,7,0|-848dc1,97,7,0|-848dc0,98,11,1|-7zjuo1,98,11,1|-7zjuo0,97,7,0|-7liao1,97,7,0|-7liao0,98,11,1|-7gts01,98,11,1|-7gts00,97,7,0|-7356o1,97,7,0|-7356o0,98,11,1|-6x0tc1,98,11,1|-6x0tc0,97,7,0|-6m7xc1,97,7,0|-6m7xc0,98,11,1|-6enpc1,98,11,1|-6enpc0,97,7,0|2crp3z,97,7,0|2crp40,98,11,1|2ht3nz,98,11,1|2ht3o0,97,7,0|2rj6fz,97,7,0|2rj6g0,98,11,1|2ydebz,98,11,1|2ydec0,97,7,0|5iwyfz,97,7,0|5iwyg0,98,11,1|5l2qfz,98,11,1|5l2qg0,97,7,0|7hhp3z,97,7,0|7hhp40,98,11,1|7n93rz,98,11,1|7n93s0,97,7,0|7z4vrz,97,7,0|7z4vs0,98,11,1|86c2bz,98,11,1|86c2c0,97,7,0|8jnrrz,97,7,0|8jnrs0,98,11,1|8pf3nz,98,11,1|8pf3o0,97,7,0|90ql3z,97,7,0|90ql40,98,11,1|98i4zz,98,11,1|98i500,97,7,0|9jb3rz,97,7,0|9jb3s0,98,11,1|9qv8zz,98,11,1|9qv900,97,7,0|a342fz,97,7,0|a342g0,98,11,1|a9lbnz,98,11,1|a9lbo0,97,7,0|ak1brz,97,7,0|ak1bs0,98,11,1|aryfnz,98,11,1|aryfo0,97,7,0|b2refz,97,7,0|b2reg0,98,11,1|bb1gzz,98,11,1|bb1h00,97,7,0|blufrz,97,7,0|blufs0,98,11,1|bu4ibz,98,11,1|bu4ic0,97,7,0|c4trrz,97,7,0|c4trs0,98,11,1|ccukzz,98,11,1|ccul00,97,7,0|cnjufz,97,7,0|cnjug0,98,11,1|cv7ozz,98,11,1|cv7p00,97,7,0|d69x3z,97,7,0|d69x40,98,11,1|deaqbz,98,11,1|deaqc0,97,7,0|doa2fz,97,7,0|doa2g0,98,11,1|dxskzz,98,11,1|dxsl00,97,7,0|e7d3rz,97,7,0|e7d3s0,98,11,1|eggszz,98,11,1|eggt00,97,7,0|eq36fz,97,7,0|eq36g0,98,11,1|eytwzz,98,11,1|eytx00,97,7,0|f9jbzz,97,7,0|f9jc00,98,11,1|fhgfvz,98,11,1|fhgfw0,97,7,0|fszbzz,97,7,0|fszc00,98,11,1|g1z93z,98,11,1|g1z940,97,7,0|gbhx7z,97,7,0|gbhx80,98,11,1|gk4yfz,98,11,1|gk4yg0,97,7,0|gtph7z,97,7,0|gtph80,98,11,1|h3kyfz,98,11,1|h3kyg0,97,7,0|hcfjvz,97,7,0|hcfjw0,98,11,1|hm5h3z,98,11,1|hm5h40,97,7,0|hvrujz,97,7,0|hvruk0,98,11,1|i4evrz,98,11,1|i4evs0,97,7,0|ie8qnz,97,7,0|ie8qo0,98,11,1|io2d7z,98,11,1|io2d80,97,7,0|iwytbz,97,7,0|iwytc0,98,11,1|j6fh7z,98,11,1|j6fh80,97,7,0|jfovzz,97,7,0|jfow00,98,11,1|jofmjz,98,11,1|jofmk0,97,7,0|jyeynz,97,7,0|jyeyo0,98,11,1|k88l7z,98,11,1|k88l80,97,7,0|kh51bz,97,7,0|kh51c0,98,11,1|kqlp7z,98,11,1|kqlp80,97,7,0|kzv3zz,97,7,0|kzv400,98,11,1|l8lujz,98,11,1|l8luk0,97,7,0|liy5bz,97,7,0|liy5c0,98,11,1|lset7z,98,11,1|lset80,97,7,0|m1o7zz,97,7,0|m1o800,98,11,1|marx7z,98,11,1|marx80,97,7,0|mkeanz,97,7,0|mkeao0,98,11,1|mvat7z,98,11,1|mvat80,97,7,0|n34dbz,97,7,0|n34dc0,98,11,1|ne0vvz,98,11,1|ne0vw0,97,7,0|nlufzz,97,7,0|nlug00,98,11,1|nwqyjz,98,11,1|nwqyk0,97,7,0|o4kinz,97,7,0|o4kio0,98,11,1|oftzvz,98,11,1|oftzw0,97,7,0|onalbz,97,7,0|onalc0,98,11,1|oyk2jz,98,11,1|oyk2k0,97,7,0|p60nzz,97,7,0|p60o00,98,11,1|pha57z,98,11,1|pha580,97,7,0|pp3pbz,97,7,0|pp3pc0,98,11,1|q007vz,98,11,1|q007w0,97,7,0|q7trzz,97,7,0|q7ts00,98,11,1|qiqajz,98,11,1|qiqak0,97,7,0|qqjunz,97,7,0|qqjuo0,98,11,1|r1tbvz,98,11,1|r1tbw0,97,7,0|r99xbz,97,7,0|r99xc0,98,11,1|rkjejz,98,11,1|rkjek0,97,7,0|rrzzzz,97,7,0|rs0000,98,11,1|s39h7z,98,11,1|s39h80,97,7,0|sb31bz,97,7,0|sb31c0,98,11,1|slzjvz,98,11,1|slzjw0,97,7,0|stt3zz,97,7,0|stt400,98,11,1|t4pmjz,98,11,1|t4pmk0,97,7,0|tcj6nz,97,7,0|tcj6o0,98,11,1|tnfp7z,98,11,1|tnfp80,97,7,0|tv99bz,97,7,0|tv99c0,98,11,1|u6iqjz,98,11,1|u6iqk0,97,7,0|udzbzz,97,7,0|udzc00,98,11,1|up8t7z,98,11,1|up8t80,97,7,0|uwpenz,97,7,0|uwpeo0,98,11,1|v7yvvz,98,11,1|v7yvw0,97,7,0|vfsfzz,97,7,0|vfsg00,98,11,1|vqoyjz,98,11,1|vqoyk0,97,7,0|vyiinz,97,7,0|vyiio0,98,11,1|w9f17z,98,11,1|w9f180,97,7,0|wh8lbz,97,7,0|wh8lc0,98,11,1|wsi2jz,98,11,1|wsi2k0,97,7,0|wzynzz,97,7,0|wzyo00,98,11,1|xb857z,98,11,1|xb8580,97,7,0|xioqnz,97,7,0|xioqo0,98,11,1|xty7vz,98,11,1|xty7w0,97,7,0|y1etbz,97,7,0|y1etc0,98,11,1|ycoajz,98,11,1|ycoak0,97,7,0|ykhunz,97,7,0|ykhuo0,98,11,1|yved7z,98,11,1|yved80,97,7,0|z37xbz,97,7,0|z37xc0,98,11,1|ze4fvz,98,11,1|ze4fw0,97,7,0","Asia/Kabul|,0,184,0|-15r1m5c,89,144,0|-d1pkg1,89,144,0|-d1pkg0,111,185,0","Asia/Kamchatka|,0,186,0|-olrupo,88,142,0|-kmrqk1,88,142,0|-kmrqk0,85,139,0|5vahbz,85,139,0|5vahc0,86,140,1|64pajz,86,140,1|64pak0,85,139,0|6e2enz,85,139,0|6e2eo0,86,140,1|6nh7vz,86,140,1|6nh7w0,85,139,0|6wubzz,85,139,0|6wuc00,86,140,1|76957z,86,140,1|769580,85,139,0|7fo3zz,85,139,0|7fo400,86,140,1|7p1avz,86,140,1|7p1aw0,85,139,0|7yec7z,85,139,0|7yec80,86,140,1|87rdjz,86,140,1|87rdk0,85,139,0|8h4evz,85,139,0|8h4ew0,86,140,1|8qhg7z,86,140,1|8qhg80,85,139,0|8zuhjz,85,139,0|8zuhk0,86,140,1|997ivz,86,140,1|997iw0,85,139,0|9ikk7z,85,139,0|9ikk80,86,140,1|9rxljz,86,140,1|9rxlk0,85,139,0|a1amvz,85,139,0|a1amw0,86,140,1|aano7z,86,140,1|aano80,85,139,0|ak0pjz,85,139,0|ak0pk0,86,140,1|atqpjz,86,140,1|atqpk0,85,139,0|b33qvz,85,139,0|b33qw0,85,139,1|bcguzz,85,139,1|bcgv00,88,142,0|bi89nz,88,142,0|bi89o0,85,139,0|blttjz,85,139,0|blttk0,86,140,1|bv6uvz,86,140,1|bv6uw0,85,139,0|c4jw7z,85,139,0|c4jw80,86,140,1|cdwxjz,86,140,1|cdwxk0,85,139,0|cn9yvz,85,139,0|cn9yw0,86,140,1|cwn07z,86,140,1|cwn080,85,139,0|d601jz,85,139,0|d601k0,86,140,1|dfd2vz,86,140,1|dfd2w0,85,139,0|dp32vz,85,139,0|dp32w0,86,140,1|dzvyvz,86,140,1|dzvyw0,85,139,0|e7t5jz,85,139,0|e7t5k0,86,140,1|eim1jz,86,140,1|eim1k0,85,139,0|eqj87z,85,139,0|eqj880,86,140,1|f1c47z,86,140,1|f1c480,85,139,0|f99avz,85,139,0|f99aw0,86,140,1|fkf5jz,86,140,1|fkf5k0,85,139,0|frzdjz,85,139,0|frzdk0,86,140,1|g3587z,86,140,1|g35880,85,139,0|gapg7z,85,139,0|gapg80,86,140,1|glvavz,86,140,1|glvaw0,85,139,0|gtshjz,85,139,0|gtshk0,86,140,1|h4ldjz,86,140,1|h4ldk0,85,139,0|hcik7z,85,139,0|hcik80,86,140,1|hnbg7z,86,140,1|hnbg80,85,139,0|hv8mvz,85,139,0|hv8mw0,86,140,1|i6ehjz,86,140,1|i6ehk0,85,139,0|idypjz,85,139,0|idypk0,86,140,1|ip4k7z,86,140,1|ip4k80,85,139,0|iwos7z,85,139,0|iwos80,86,140,1|j7umvz,86,140,1|j7umw0,85,139,0|jfeuvz,85,139,0|jfeuw0,86,140,1|jqkpjz,86,140,1|jqkpk0,85,139,0|jyhw7z,85,139,0|jyhw80,86,140,1|k9as7z,86,140,1|k9as80,85,139,0|kh7yvz,85,139,0|kh7yw0,86,140,1|ks0uvz,86,140,1|ks0uw0,85,139,0|kzy1jz,85,139,0|kzy1k0,85,139,1|lb3yzz,85,139,1|lb3z00,88,142,0|lio6zz,88,142,0|lio700,85,139,0","Asia/Karachi|,0,187,0|-wvpb30,95,162,0|-e9lba1,95,162,0|-e9lba0,96,163,1|-cmya21,96,163,1|-cmya20,95,162,0|-9j0km1,95,162,0|-9j0km0,82,134,0|n33fz,82,134,0|n33g0,112,134,0|gu5u3z,112,134,0|gu5u40,113,135,1|h3isnz,113,135,1|h3iso0,112,134,0|k1qy3z,112,134,0|k1qy40,113,135,1|k9m7bz,113,135,1|k9m7c0,112,134,0|ki3u3z,112,134,0|ki3u40,113,135,1|kse4nz,113,135,1|kse4o0,112,134,0","Asia/Kathmandu|,0,188,0|-q3gt4s,95,162,0|8clspz,95,162,0|8clsq0,114,189,0","Asia/Kolkata|,0,190,0|-1oaa314,61,166,0|-1g6thox,61,166,0|-1g6thow,19,191,0|-xehavb,19,191,0|-xehava,97,162,0|-eqtom1,97,162,0|-eqtom0,96,163,1|-ef78q1,96,163,1|-ef78q0,97,162,0|-e9lba1,97,162,0|-e9lba0,96,163,1|-cmya21,96,163,1|-cmya20,97,162,0","Asia/Krasnoyarsk|,0,192,0|-q37l72,83,135,0|-kmrco1,83,135,0|-kmrco0,84,136,0|5vav7z,84,136,0|5vav80,92,155,1|64pofz,92,155,1|64pog0,84,136,0|6e2sjz,84,136,0|6e2sk0,92,155,1|6nhlrz,92,155,1|6nhls0,84,136,0|6wupvz,84,136,0|6wupw0,92,155,1|769j3z,92,155,1|769j40,84,136,0|7fohvz,84,136,0|7fohw0,92,155,1|7p1orz,92,155,1|7p1os0,84,136,0|7yeq3z,84,136,0|7yeq40,92,155,1|87rrfz,92,155,1|87rrg0,84,136,0|8h4srz,84,136,0|8h4ss0,92,155,1|8qhu3z,92,155,1|8qhu40,84,136,0|8zuvfz,84,136,0|8zuvg0,92,155,1|997wrz,92,155,1|997ws0,84,136,0|9iky3z,84,136,0|9iky40,92,155,1|9rxzfz,92,155,1|9rxzg0,84,136,0|a1b0rz,84,136,0|a1b0s0,92,155,1|aao23z,92,155,1|aao240,84,136,0|ak13fz,84,136,0|ak13g0,92,155,1|atr3fz,92,155,1|atr3g0,84,136,0|b344rz,84,136,0|b344s0,84,136,1|bch8vz,84,136,1|bch8w0,83,135,0|bi8njz,83,135,0|bi8nk0,84,136,0|blu7fz,84,136,0|blu7g0,92,155,1|bv78rz,92,155,1|bv78s0,84,136,0|c4ka3z,84,136,0|c4ka40,92,155,1|cdxbfz,92,155,1|cdxbg0,84,136,0|cnacrz,84,136,0|cnacs0,92,155,1|cwne3z,92,155,1|cwne40,84,136,0|d60ffz,84,136,0|d60fg0,92,155,1|dfdgrz,92,155,1|dfdgs0,84,136,0|dp3grz,84,136,0|dp3gs0,92,155,1|dzwcrz,92,155,1|dzwcs0,84,136,0|e7tjfz,84,136,0|e7tjg0,92,155,1|eimffz,92,155,1|eimfg0,84,136,0|eqjm3z,84,136,0|eqjm40,92,155,1|f1ci3z,92,155,1|f1ci40,84,136,0|f99orz,84,136,0|f99os0,92,155,1|fkfjfz,92,155,1|fkfjg0,84,136,0|frzrfz,84,136,0|frzrg0,92,155,1|g35m3z,92,155,1|g35m40,84,136,0|gapu3z,84,136,0|gapu40,92,155,1|glvorz,92,155,1|glvos0,84,136,0|gtsvfz,84,136,0|gtsvg0,92,155,1|h4lrfz,92,155,1|h4lrg0,84,136,0|hciy3z,84,136,0|hciy40,92,155,1|hnbu3z,92,155,1|hnbu40,84,136,0|hv90rz,84,136,0|hv90s0,92,155,1|i6evfz,92,155,1|i6evg0,84,136,0|idz3fz,84,136,0|idz3g0,92,155,1|ip4y3z,92,155,1|ip4y40,84,136,0|iwp63z,84,136,0|iwp640,92,155,1|j7v0rz,92,155,1|j7v0s0,84,136,0|jff8rz,84,136,0|jff8s0,92,155,1|jql3fz,92,155,1|jql3g0,84,136,0|jyia3z,84,136,0|jyia40,92,155,1|k9b63z,92,155,1|k9b640,84,136,0|kh8crz,84,136,0|kh8cs0,92,155,1|ks18rz,92,155,1|ks18s0,84,136,0|kzyffz,84,136,0|kzyfg0,92,155,1|lb4a3z,92,155,1|lb4a40,84,136,0|lioi3z,84,136,0|lioi40,92,155,0|ne0hzz,92,155,0|ne0i00,84,136,0","Asia/Kuala_Lumpur|,0,193,0|-100ew5y,70,194,0|-xphpwe,70,194,0|-xphpwd,84,136,0|-jb6gs1,84,136,0|-jb6gs0,105,179,1|-hquppd,105,179,1|-hquppc,105,179,0|-esddpd,105,179,0|-esddpc,91,154,0|-ejqa61,91,154,0|-ejqa60,93,157,0|-conl01,93,157,0|-conl00,91,154,0|69g35z,91,154,0|69g360,92,155,0","Asia/Kuching|,0,195,0|-mvof3k,91,154,0|-jb6i61,91,154,0|-jb6i60,92,155,0|-hwgm81,92,155,0|-hwgm80,115,196,1|-hrs4hd,115,196,1|-hrs4hc,92,155,0|-hdmu81,92,155,0|-hdmu80,115,196,1|-h8ychd,115,196,1|-h8ychc,92,155,0|-guuww1,92,155,0|-guuww0,115,196,1|-gq6f5d,115,196,1|-gq6f5c,92,155,0|-gc2zk1,92,155,0|-gc2zk0,115,196,1|-g7ehtd,115,196,1|-g7ehtc,92,155,0|-ftb281,92,155,0|-ftb280,115,196,1|-fomkhd,115,196,1|-fomkhc,92,155,0|-faha81,92,155,0|-faha80,115,196,1|-f5sshd,115,196,1|-f5sshc,92,155,0|-erpcw1,92,155,0|-erpcw0,115,196,1|-en0v5d,115,196,1|-en0v5c,92,155,0|-ejqbk1,92,155,0|-ejqbk0,93,157,0|-conl01,93,157,0|-conl00,92,155,0","Asia/Macau|,0,197,0|-y0i2cy,37,155,0|-emm3o1,37,155,0|-emm3o0,93,157,0|-efxfs1,93,157,0|-efxfs0,94,158,1|-e5lak1,94,158,1|-e5lak0,93,157,0|-dx5ig1,93,157,0|-dx5ig0,94,158,1|-dpa981,94,158,1|-dpa980,93,157,0|-cnoec1,93,157,0|-cnoec0,37,155,0|-ccrt01,37,155,0|-ccrt00,40,157,1|-c4wh01,40,157,1|-c4wh00,37,155,0|-buk901,37,155,0|-buk900,40,157,1|-bizl01,40,157,1|-bizl00,37,155,0|-bb2ec1,37,155,0|-bb2ec0,40,157,1|-b1pd01,40,157,1|-b1pd00,37,155,0|-atu101,37,155,0|-atu100,40,157,1|-aj1501,40,157,1|-aj1500,37,155,0|-ab3yc1,37,155,0|-ab3yc0,40,157,1|-a0b2c1,40,157,1|-a0b2c0,37,155,0|-9sdvo1,37,155,0|-9sdvo0,40,157,1|-9hj501,40,157,1|-9hj500,37,155,0|-99auc1,37,155,0|-99auc0,40,157,1|-8yhyc1,40,157,1|-8yhyc0,37,155,0|-8qkro1,37,155,0|-8qkro0,40,157,1|-8frvo1,40,157,1|-8frvo0,37,155,0|-88kmc1,37,155,0|-88kmc0,40,157,1|-7x1t01,40,157,1|-7x1t00,37,155,0|-7pujo1,37,155,0|-7pujo0,40,157,1|-7dyro1,40,157,1|-7dyro0,37,155,0|-774h01,37,155,0|-774h00,40,157,1|-6v8fa1,40,157,1|-6v8fa0,37,155,0|-6o1361,37,155,0|-6o1360,40,157,1|-6cicm1,40,157,1|-6cicm0,37,155,0|-65b0i1,37,155,0|-65b0i0,40,157,1|-5ts9y1,40,157,1|-5ts9y0,37,155,0|-5mkxu1,37,155,0|-5mkxu0,40,157,1|-5b27a1,40,157,1|-5b27a0,37,155,0|-53uv61,37,155,0|-53uv60,40,157,1|-4rz5y1,40,157,1|-4rz5y0,37,155,0|-4l4si1,37,155,0|-4l4si0,40,157,1|-4993a1,40,157,1|-4993a0,37,155,0|-42epu1,37,155,0|-42epu0,40,157,1|-3qj0m1,40,157,1|-3qj0m0,37,155,0|-3jboi1,37,155,0|-3jboi0,40,157,1|-37sxy1,40,157,1|-37sxy0,37,155,0|-30llu1,37,155,0|-30llu0,40,157,1|-2p2va1,40,157,1|-2p2va0,37,155,0|-2gfoi1,37,155,0|-2gfoi0,40,157,1|-272sq1,40,157,1|-272sq0,37,155,0|-1xplu1,37,155,0|-1xplu0,40,157,1|-1ocq21,40,157,1|-1ocq20,37,155,0|-1ezj61,37,155,0|-1ezj60,40,157,1|-159ly1,40,157,1|-159ly0,37,155,0|-vwhu1,37,155,0|-vwhu0,40,157,1|-mjja1,40,157,1|-mjja0,37,155,0|-d6f61,37,155,0|-d6f60,40,157,1|-3tgm1,40,157,1|-3tgm0,37,155,0|5jnhz,37,155,0|5jni0,40,157,1|ewm1z,40,157,1|ewm20,37,155,0|o9q5z,37,155,0|o9q60,40,157,1|xmopz,40,157,1|xmoq0,37,155,0|16zstz,37,155,0|16zsu0,40,157,1|1gpq1z,40,157,1|1gpq20,37,155,0|1q2u5z,37,155,0|1q2u60,40,157,1|1zfspz,40,157,1|1zfsq0,37,155,0|231i5z,37,155,0|231i60,40,157,1|2i5vdz,40,157,1|2i5ve0,37,155,0|2rizhz,37,155,0|2rizi0,40,157,1|30vy1z,40,157,1|30vy20,37,155,0|3a925z,37,155,0|3a9260,40,157,1|3jm0pz,40,157,1|3jm0q0,37,155,0|4vv4tz,37,155,0|4vv4u0,40,157,1|5457dz,40,157,1|5457e0,37,155,0","Asia/Magadan|,0,198,0|-nu1nxc,94,158,0|-kmrns1,94,158,0|-kmrns0,88,142,0|5vak3z,88,142,0|5vak40,85,139,1|64pdbz,85,139,1|64pdc0,88,142,0|6e2hfz,88,142,0|6e2hg0,85,139,1|6nhanz,85,139,1|6nhao0,88,142,0|6wuerz,88,142,0|6wues0,85,139,1|7697zz,85,139,1|769800,88,142,0|7fo6rz,88,142,0|7fo6s0,85,139,1|7p1dnz,85,139,1|7p1do0,88,142,0|7yeezz,88,142,0|7yef00,85,139,1|87rgbz,85,139,1|87rgc0,88,142,0|8h4hnz,88,142,0|8h4ho0,85,139,1|8qhizz,85,139,1|8qhj00,88,142,0|8zukbz,88,142,0|8zukc0,85,139,1|997lnz,85,139,1|997lo0,88,142,0|9ikmzz,88,142,0|9ikn00,85,139,1|9rxobz,85,139,1|9rxoc0,88,142,0|a1apnz,88,142,0|a1apo0,85,139,1|aanqzz,85,139,1|aanr00,88,142,0|ak0sbz,88,142,0|ak0sc0,85,139,1|atqsbz,85,139,1|atqsc0,88,142,0|b33tnz,88,142,0|b33to0,88,142,1|bcgxrz,88,142,1|bcgxs0,94,158,0|bi8cfz,94,158,0|bi8cg0,88,142,0|bltwbz,88,142,0|bltwc0,85,139,1|bv6xnz,85,139,1|bv6xo0,88,142,0|c4jyzz,88,142,0|c4jz00,85,139,1|cdx0bz,85,139,1|cdx0c0,88,142,0|cna1nz,88,142,0|cna1o0,85,139,1|cwn2zz,85,139,1|cwn300,88,142,0|d604bz,88,142,0|d604c0,85,139,1|dfd5nz,85,139,1|dfd5o0,88,142,0|dp35nz,88,142,0|dp35o0,85,139,1|dzw1nz,85,139,1|dzw1o0,88,142,0|e7t8bz,88,142,0|e7t8c0,85,139,1|eim4bz,85,139,1|eim4c0,88,142,0|eqjazz,88,142,0|eqjb00,85,139,1|f1c6zz,85,139,1|f1c700,88,142,0|f99dnz,88,142,0|f99do0,85,139,1|fkf8bz,85,139,1|fkf8c0,88,142,0|frzgbz,88,142,0|frzgc0,85,139,1|g35azz,85,139,1|g35b00,88,142,0|gapizz,88,142,0|gapj00,85,139,1|glvdnz,85,139,1|glvdo0,88,142,0|gtskbz,88,142,0|gtskc0,85,139,1|h4lgbz,85,139,1|h4lgc0,88,142,0|hcimzz,88,142,0|hcin00,85,139,1|hnbizz,85,139,1|hnbj00,88,142,0|hv8pnz,88,142,0|hv8po0,85,139,1|i6ekbz,85,139,1|i6ekc0,88,142,0|idysbz,88,142,0|idysc0,85,139,1|ip4mzz,85,139,1|ip4n00,88,142,0|iwouzz,88,142,0|iwov00,85,139,1|j7upnz,85,139,1|j7upo0,88,142,0|jfexnz,88,142,0|jfexo0,85,139,1|jqksbz,85,139,1|jqksc0,88,142,0|jyhyzz,88,142,0|jyhz00,85,139,1|k9auzz,85,139,1|k9av00,88,142,0|kh81nz,88,142,0|kh81o0,85,139,1|ks0xnz,85,139,1|ks0xo0,88,142,0|kzy4bz,88,142,0|kzy4c0,85,139,1|lb3yzz,85,139,1|lb3z00,88,142,0|lio6zz,88,142,0|lio700,85,139,0|ne06vz,85,139,0|ne06w0,94,158,0|o63gfz,94,158,0|o63gg0,88,142,0","Asia/Makassar|,0,199,0|-q3gzg0,19,199,0|-jebi41,19,199,0|-jebi40,92,155,0|-ek3a81,92,155,0|-ek3a80,93,157,0|-co37o1,93,157,0|-co37o0,116,155,0","Asia/Manila|,0,200,0|-1t8ix2o,0,201,0|-10va3qp,0,201,0|-10va3qo,38,155,0|-hb5y81,38,155,0|-hb5y80,47,157,1|-h6fno1,47,157,1|-h6fno0,38,155,0|-efxa81,38,155,0|-efxa80,103,157,0|-d4ux01,103,157,0|-d4ux00,38,155,0|-87fsw1,38,155,0|-87fsw0,47,157,1|-83bqc1,47,157,1|-83bqc0,38,155,0|4aen3z,38,155,0|4aen40,47,157,1|4jtgbz,47,157,1|4jtgc0,38,155,0","Asia/Nicosia|,0,202,0|-p4bq6g,10,7,0|2r67rz,10,7,0|2r67s0,11,11,1|30j6bz,11,11,1|30j6c0,10,7,0|3bn93z,10,7,0|3bn940,11,11,1|3jb3nz,11,11,1|3jb3o0,10,7,0|3s9efz,10,7,0|3s9eg0,11,11,1|419ebz,11,11,1|419ec0,10,7,0|4azh3z,10,7,0|4azh40,11,11,1|4keabz,11,11,1|4keac0,10,7,0|4tpjrz,10,7,0|4tpjs0,11,11,1|532ibz,11,11,1|532ic0,10,7,0|5csl3z,10,7,0|5csl40,11,11,1|5lskzz,11,11,1|5lsl00,10,7,0|5v5p3z,10,7,0|5v5p40,11,11,1|64innz,11,11,1|64ino0,10,7,0|6dvrrz,10,7,0|6dvrs0,11,11,1|6n8qbz,11,11,1|6n8qc0,10,7,0|6wlufz,10,7,0|6wlug0,11,11,1|75yszz,11,11,1|75yt00,10,7,0|7fbx3z,10,7,0|7fbx40,11,11,1|7p1ubz,11,11,1|7p1uc0,10,7,0|7yeyfz,10,7,0|7yeyg0,11,11,1|87rwzz,11,11,1|87rx00,10,7,0|8h513z,10,7,0|8h5140,11,11,1|8qhznz,11,11,1|8qhzo0,10,7,0|8zv3rz,10,7,0|8zv3s0,11,11,1|9982bz,11,11,1|9982c0,10,7,0|9il6fz,10,7,0|9il6g0,11,11,1|9ry4zz,11,11,1|9ry500,10,7,0|a1b93z,10,7,0|a1b940,11,11,1|aao7nz,11,11,1|aao7o0,10,7,0|ak1brz,10,7,0|ak1bs0,11,11,1|atr8zz,11,11,1|atr900,10,7,0|b34d3z,10,7,0|b34d40,11,11,1|bchbnz,11,11,1|bchbo0,10,7,0|blufrz,10,7,0|blufs0,11,11,1|bv7ebz,11,11,1|bv7ec0,10,7,0|c4kifz,10,7,0|c4kig0,11,11,1|cdxgzz,11,11,1|cdxh00,10,7,0|cnal3z,10,7,0|cnal40,11,11,1|cwnjnz,11,11,1|cwnjo0,10,7,0|d60nrz,10,7,0|d60ns0,11,11,1|dfdmbz,11,11,1|dfdmc0,10,7,0|dp3p3z,10,7,0|dp3p40,11,11,1|dygnnz,11,11,1|dygno0,10,7,0|e7trrz,10,7,0|e7trs0,11,11,1|eh6qbz,11,11,1|eh6qc0,10,7,0|eqjufz,10,7,0|eqjug0,11,11,1|f1cyrz,11,11,1|f1cys0,10,7,0|f9a5fz,10,7,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,7,0|fs083z,10,7,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,7,0|gaqarz,10,7,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,7,0|gttc3z,10,7,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,7,0|hcjerz,10,7,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,7,0|hv9hfz,10,7,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,7,0|idzk3z,10,7,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,7,0|iwpmrz,10,7,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,7,0|jffpfz,10,7,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,7,0|jyiqrz,10,7,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,7,0|kh8tfz,10,7,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,7,0|kzyw3z,10,7,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,7,0|lioyrz,10,7,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,7,0|m1f1fz,10,7,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,7,0|mki2rz,10,7,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,7,0|n385fz,10,7,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,7,0|nly83z,10,7,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,7,0|o4oarz,10,7,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,7,0|onedfz,10,7,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,7,0|p64g3z,10,7,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,7,0|pp7hfz,10,7,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,7,0|q7xk3z,10,7,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,7,0|qqnmrz,10,7,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,7,0|r9dpfz,10,7,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,7,0|rs3s3z,10,7,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,7,0|sb6tfz,10,7,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,7,0|stww3z,10,7,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,7,0|tcmyrz,10,7,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,7,0|tvd1fz,10,7,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,7,0|ue343z,10,7,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,7,0|uwt6rz,10,7,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,7,0|vfw83z,10,7,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,7,0|vymarz,10,7,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,7,0|whcdfz,10,7,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,7,0|x02g3z,10,7,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,7,0|xisirz,10,7,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,7,0|y1ilfz,10,7,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,7,0|yklmrz,10,7,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,7,0|z3bpfz,10,7,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,7,0","Asia/Novokuznetsk|,0,203,0|-nu36tc,83,135,0|-kmrco1,83,135,0|-kmrco0,84,136,0|5vav7z,84,136,0|5vav80,92,155,1|64pofz,92,155,1|64pog0,84,136,0|6e2sjz,84,136,0|6e2sk0,92,155,1|6nhlrz,92,155,1|6nhls0,84,136,0|6wupvz,84,136,0|6wupw0,92,155,1|769j3z,92,155,1|769j40,84,136,0|7fohvz,84,136,0|7fohw0,92,155,1|7p1orz,92,155,1|7p1os0,84,136,0|7yeq3z,84,136,0|7yeq40,92,155,1|87rrfz,92,155,1|87rrg0,84,136,0|8h4srz,84,136,0|8h4ss0,92,155,1|8qhu3z,92,155,1|8qhu40,84,136,0|8zuvfz,84,136,0|8zuvg0,92,155,1|997wrz,92,155,1|997ws0,84,136,0|9iky3z,84,136,0|9iky40,92,155,1|9rxzfz,92,155,1|9rxzg0,84,136,0|a1b0rz,84,136,0|a1b0s0,92,155,1|aao23z,92,155,1|aao240,84,136,0|ak13fz,84,136,0|ak13g0,92,155,1|atr3fz,92,155,1|atr3g0,84,136,0|b344rz,84,136,0|b344s0,84,136,1|bch8vz,84,136,1|bch8w0,83,135,0|bi8njz,83,135,0|bi8nk0,84,136,0|blu7fz,84,136,0|blu7g0,92,155,1|bv78rz,92,155,1|bv78s0,84,136,0|c4ka3z,84,136,0|c4ka40,92,155,1|cdxbfz,92,155,1|cdxbg0,84,136,0|cnacrz,84,136,0|cnacs0,92,155,1|cwne3z,92,155,1|cwne40,84,136,0|d60ffz,84,136,0|d60fg0,92,155,1|dfdgrz,92,155,1|dfdgs0,84,136,0|dp3grz,84,136,0|dp3gs0,92,155,1|dzwcrz,92,155,1|dzwcs0,84,136,0|e7tjfz,84,136,0|e7tjg0,92,155,1|eimffz,92,155,1|eimfg0,84,136,0|eqjm3z,84,136,0|eqjm40,92,155,1|f1ci3z,92,155,1|f1ci40,84,136,0|f99orz,84,136,0|f99os0,92,155,1|fkfjfz,92,155,1|fkfjg0,84,136,0|frzrfz,84,136,0|frzrg0,92,155,1|g35m3z,92,155,1|g35m40,84,136,0|gapu3z,84,136,0|gapu40,92,155,1|glvorz,92,155,1|glvos0,84,136,0|gtsvfz,84,136,0|gtsvg0,92,155,1|h4lrfz,92,155,1|h4lrg0,84,136,0|hciy3z,84,136,0|hciy40,92,155,1|hnbu3z,92,155,1|hnbu40,84,136,0|hv90rz,84,136,0|hv90s0,92,155,1|i6evfz,92,155,1|i6evg0,84,136,0|idz3fz,84,136,0|idz3g0,92,155,1|ip4y3z,92,155,1|ip4y40,84,136,0|iwp63z,84,136,0|iwp640,92,155,1|j7v0rz,92,155,1|j7v0s0,84,136,0|jff8rz,84,136,0|jff8s0,92,155,1|jql3fz,92,155,1|jql3g0,84,136,0|jyia3z,84,136,0|jyia40,92,155,1|k9b63z,92,155,1|k9b640,84,136,0|kh8crz,84,136,0|kh8cs0,92,155,1|ks18rz,92,155,1|ks18s0,84,136,0|kzyffz,84,136,0|kzyfg0,84,136,1|lb4cvz,84,136,1|lb4cw0,83,135,0|liokvz,83,135,0|liokw0,84,136,0","Asia/Novosibirsk|,0,204,0|-q4do0s,83,135,0|-kmrco1,83,135,0|-kmrco0,84,136,0|5vav7z,84,136,0|5vav80,92,155,1|64pofz,92,155,1|64pog0,84,136,0|6e2sjz,84,136,0|6e2sk0,92,155,1|6nhlrz,92,155,1|6nhls0,84,136,0|6wupvz,84,136,0|6wupw0,92,155,1|769j3z,92,155,1|769j40,84,136,0|7fohvz,84,136,0|7fohw0,92,155,1|7p1orz,92,155,1|7p1os0,84,136,0|7yeq3z,84,136,0|7yeq40,92,155,1|87rrfz,92,155,1|87rrg0,84,136,0|8h4srz,84,136,0|8h4ss0,92,155,1|8qhu3z,92,155,1|8qhu40,84,136,0|8zuvfz,84,136,0|8zuvg0,92,155,1|997wrz,92,155,1|997ws0,84,136,0|9iky3z,84,136,0|9iky40,92,155,1|9rxzfz,92,155,1|9rxzg0,84,136,0|a1b0rz,84,136,0|a1b0s0,92,155,1|aao23z,92,155,1|aao240,84,136,0|ak13fz,84,136,0|ak13g0,92,155,1|atr3fz,92,155,1|atr3g0,84,136,0|b344rz,84,136,0|b344s0,84,136,1|bch8vz,84,136,1|bch8w0,83,135,0|bi8njz,83,135,0|bi8nk0,84,136,0|blu7fz,84,136,0|blu7g0,92,155,1|bv78rz,92,155,1|bv78s0,84,136,0|c4ka3z,84,136,0|c4ka40,92,155,1|c7fr3z,92,155,1|c7fr40,84,136,1|cdxe7z,84,136,1|cdxe80,83,135,0|cnafjz,83,135,0|cnafk0,84,136,1|cwngvz,84,136,1|cwngw0,83,135,0|d60i7z,83,135,0|d60i80,84,136,1|dfdjjz,84,136,1|dfdjk0,83,135,0|dp3jjz,83,135,0|dp3jk0,84,136,1|dzwfjz,84,136,1|dzwfk0,83,135,0|e7tm7z,83,135,0|e7tm80,84,136,1|eimi7z,84,136,1|eimi80,83,135,0|eqjovz,83,135,0|eqjow0,84,136,1|f1ckvz,84,136,1|f1ckw0,83,135,0|f99rjz,83,135,0|f99rk0,84,136,1|fkfm7z,84,136,1|fkfm80,83,135,0|frzu7z,83,135,0|frzu80,84,136,1|g35ovz,84,136,1|g35ow0,83,135,0|gapwvz,83,135,0|gapww0,84,136,1|glvrjz,84,136,1|glvrk0,83,135,0|gtsy7z,83,135,0|gtsy80,84,136,1|h4lu7z,84,136,1|h4lu80,83,135,0|hcj0vz,83,135,0|hcj0w0,84,136,1|hnbwvz,84,136,1|hnbww0,83,135,0|hv93jz,83,135,0|hv93k0,84,136,1|i6ey7z,84,136,1|i6ey80,83,135,0|idz67z,83,135,0|idz680,84,136,1|ip50vz,84,136,1|ip50w0,83,135,0|iwp8vz,83,135,0|iwp8w0,84,136,1|j7v3jz,84,136,1|j7v3k0,83,135,0|jffbjz,83,135,0|jffbk0,84,136,1|jql67z,84,136,1|jql680,83,135,0|jyicvz,83,135,0|jyicw0,84,136,1|k9b8vz,84,136,1|k9b8w0,83,135,0|kh8fjz,83,135,0|kh8fk0,84,136,1|ks1bjz,84,136,1|ks1bk0,83,135,0|kzyi7z,83,135,0|kzyi80,84,136,1|lb4cvz,84,136,1|lb4cw0,83,135,0|liokvz,83,135,0|liokw0,84,136,0|ne0krz,84,136,0|ne0ks0,83,135,0|oasa7z,83,135,0|oasa80,84,136,0","Asia/Omsk|,0,205,0|-q5xmx6,82,134,0|-kmr9w1,82,134,0|-kmr9w0,83,135,0|5vaxzz,83,135,0|5vay00,84,136,1|64pr7z,84,136,1|64pr80,83,135,0|6e2vbz,83,135,0|6e2vc0,84,136,1|6nhojz,84,136,1|6nhok0,83,135,0|6wusnz,83,135,0|6wuso0,84,136,1|769lvz,84,136,1|769lw0,83,135,0|7foknz,83,135,0|7foko0,84,136,1|7p1rjz,84,136,1|7p1rk0,83,135,0|7yesvz,83,135,0|7yesw0,84,136,1|87ru7z,84,136,1|87ru80,83,135,0|8h4vjz,83,135,0|8h4vk0,84,136,1|8qhwvz,84,136,1|8qhww0,83,135,0|8zuy7z,83,135,0|8zuy80,84,136,1|997zjz,84,136,1|997zk0,83,135,0|9il0vz,83,135,0|9il0w0,84,136,1|9ry27z,84,136,1|9ry280,83,135,0|a1b3jz,83,135,0|a1b3k0,84,136,1|aao4vz,84,136,1|aao4w0,83,135,0|ak167z,83,135,0|ak1680,84,136,1|atr67z,84,136,1|atr680,83,135,0|b347jz,83,135,0|b347k0,83,135,1|bchbnz,83,135,1|bchbo0,82,134,0|bi8qbz,82,134,0|bi8qc0,83,135,0|blua7z,83,135,0|blua80,84,136,1|bv7bjz,84,136,1|bv7bk0,83,135,0|c4kcvz,83,135,0|c4kcw0,84,136,1|cdxe7z,84,136,1|cdxe80,83,135,0|cnafjz,83,135,0|cnafk0,84,136,1|cwngvz,84,136,1|cwngw0,83,135,0|d60i7z,83,135,0|d60i80,84,136,1|dfdjjz,84,136,1|dfdjk0,83,135,0|dp3jjz,83,135,0|dp3jk0,84,136,1|dzwfjz,84,136,1|dzwfk0,83,135,0|e7tm7z,83,135,0|e7tm80,84,136,1|eimi7z,84,136,1|eimi80,83,135,0|eqjovz,83,135,0|eqjow0,84,136,1|f1ckvz,84,136,1|f1ckw0,83,135,0|f99rjz,83,135,0|f99rk0,84,136,1|fkfm7z,84,136,1|fkfm80,83,135,0|frzu7z,83,135,0|frzu80,84,136,1|g35ovz,84,136,1|g35ow0,83,135,0|gapwvz,83,135,0|gapww0,84,136,1|glvrjz,84,136,1|glvrk0,83,135,0|gtsy7z,83,135,0|gtsy80,84,136,1|h4lu7z,84,136,1|h4lu80,83,135,0|hcj0vz,83,135,0|hcj0w0,84,136,1|hnbwvz,84,136,1|hnbww0,83,135,0|hv93jz,83,135,0|hv93k0,84,136,1|i6ey7z,84,136,1|i6ey80,83,135,0|idz67z,83,135,0|idz680,84,136,1|ip50vz,84,136,1|ip50w0,83,135,0|iwp8vz,83,135,0|iwp8w0,84,136,1|j7v3jz,84,136,1|j7v3k0,83,135,0|jffbjz,83,135,0|jffbk0,84,136,1|jql67z,84,136,1|jql680,83,135,0|jyicvz,83,135,0|jyicw0,84,136,1|k9b8vz,84,136,1|k9b8w0,83,135,0|kh8fjz,83,135,0|kh8fk0,84,136,1|ks1bjz,84,136,1|ks1bk0,83,135,0|kzyi7z,83,135,0|kzyi80,84,136,1|lb4cvz,84,136,1|lb4cw0,83,135,0|liokvz,83,135,0|liokw0,84,136,0|ne0krz,84,136,0|ne0ks0,83,135,0","Asia/Oral|,0,206,0|-nu15ic,90,11,0|-kmr4c1,90,11,0|-kmr4c0,82,134,0|5vb0rz,82,134,0|5vb0s0,83,135,1|64ptzz,83,135,1|64pu00,83,135,0|6e2vbz,83,135,0|6e2vc0,83,135,1|6nhrbz,83,135,1|6nhrc0,82,134,0|6wuvfz,82,134,0|6wuvg0,83,135,1|769onz,83,135,1|769oo0,82,134,0|7fonfz,82,134,0|7fong0,83,135,1|7p1ubz,83,135,1|7p1uc0,82,134,0|7yevnz,82,134,0|7yevo0,83,135,1|87rwzz,83,135,1|87rx00,82,134,0|8h4ybz,82,134,0|8h4yc0,83,135,1|8qhznz,83,135,1|8qhzo0,82,134,0|8zv0zz,82,134,0|8zv100,83,135,1|9982bz,83,135,1|9982c0,82,134,0|9il3nz,82,134,0|9il3o0,83,135,1|9ry4zz,83,135,1|9ry500,82,134,0|a1b6bz,82,134,0|a1b6c0,82,134,1|aaoafz,82,134,1|aaoag0,89,144,0|ak1brz,89,144,0|ak1bs0,82,134,1|atrbrz,82,134,1|atrbs0,89,144,0|b34d3z,89,144,0|b34d40,82,134,1|bchefz,82,134,1|bcheg0,89,144,0|bi8t3z,89,144,0|bi8t40,82,134,0|bluczz,82,134,0|blud00,82,134,1|bv7h3z,82,134,1|bv7h40,89,144,0|c4kifz,89,144,0|c4kig0,82,134,1|cdxjrz,82,134,1|cdxjs0,89,144,0|cnal3z,89,144,0|cnal40,82,134,1|cwnmfz,82,134,1|cwnmg0,89,144,0|d60nrz,89,144,0|d60ns0,82,134,1|dfdp3z,82,134,1|dfdp40,89,144,0|dp3p3z,89,144,0|dp3p40,82,134,1|dzwl3z,82,134,1|dzwl40,89,144,0|e7trrz,89,144,0|e7trs0,82,134,1|eimnrz,82,134,1|eimns0,89,144,0|eqjufz,89,144,0|eqjug0,82,134,1|f1cqfz,82,134,1|f1cqg0,89,144,0|f99x3z,89,144,0|f99x40,82,134,1|fkfrrz,82,134,1|fkfrs0,89,144,0|frzzrz,89,144,0|frzzs0,82,134,1|g35ufz,82,134,1|g35ug0,89,144,0|gaq2fz,89,144,0|gaq2g0,82,134,1|glvx3z,82,134,1|glvx40,89,144,0|gtt3rz,89,144,0|gtt3s0,82,134,1|h4lzrz,82,134,1|h4lzs0,89,144,0|hcj6fz,89,144,0|hcj6g0,82,134,1|hnc2fz,82,134,1|hnc2g0,89,144,0|hv993z,89,144,0|hv9940,82,134,1|i6f3rz,82,134,1|i6f3s0,82,134,0","Asia/Pontianak|,0,207,0|-w6piww,4,207,0|-jebg8x,4,207,0|-jebg8w,91,154,0|-eknm61,91,154,0|-eknm60,93,157,0|-co37o1,93,157,0|-co37o0,91,154,0|-bb5zi1,91,154,0|-bb5zi0,92,155,0|-a9m681,92,155,0|-a9m680,91,154,0|-34ru61,91,154,0|-34ru60,116,155,0|9e5gfz,116,155,0|9e5gg0,106,136,0","Asia/Pyongyang|,0,208,0|-w895yc,117,175,0|-u9s4y1,117,175,0|-u9s4y0,103,157,0|-cpmro1,103,157,0|-cpmro0,117,157,0|nt2uzz,117,157,0|nt2v00,117,175,0|p87lnz,117,175,0|p87lo0,117,157,0","Asia/Qatar|,0,209,0|-q3gmvk,89,144,0|19d0vz,89,144,0|19d0w0,90,11,0","Asia/Qyzylorda|,0,210,0|-nu184g,89,144,0|-kmr741,89,144,0|-kmr740,82,134,0|5vb0rz,82,134,0|5vb0s0,83,135,1|64ptzz,83,135,1|64pu00,83,135,0|6e2vbz,83,135,0|6e2vc0,83,135,1|6nhrbz,83,135,1|6nhrc0,82,134,0|6wuvfz,82,134,0|6wuvg0,83,135,1|769onz,83,135,1|769oo0,82,134,0|7fonfz,82,134,0|7fong0,83,135,1|7p1ubz,83,135,1|7p1uc0,82,134,0|7yevnz,82,134,0|7yevo0,83,135,1|87rwzz,83,135,1|87rx00,82,134,0|8h4ybz,82,134,0|8h4yc0,83,135,1|8qhznz,83,135,1|8qhzo0,82,134,0|8zv0zz,82,134,0|8zv100,83,135,1|9982bz,83,135,1|9982c0,82,134,0|9il3nz,82,134,0|9il3o0,83,135,1|9ry4zz,83,135,1|9ry500,82,134,0|a1b6bz,82,134,0|a1b6c0,83,135,1|aao7nz,83,135,1|aao7o0,82,134,0|ak18zz,82,134,0|ak1900,83,135,1|atr8zz,83,135,1|atr900,82,134,0|b34abz,82,134,0|b34ac0,82,134,1|bchefz,82,134,1|bcheg0,82,134,0|bi8qbz,82,134,0|bi8qc0,83,135,0|blua7z,83,135,0|blua80,83,135,1|bv7ebz,83,135,1|bv7ec0,82,134,0|c4kfnz,82,134,0|c4kfo0,83,135,1|cdxgzz,83,135,1|cdxh00,82,134,0|cnaibz,82,134,0|cnaic0,83,135,1|cwnjnz,83,135,1|cwnjo0,82,134,0|d60kzz,82,134,0|d60l00,83,135,1|dfdmbz,83,135,1|dfdmc0,82,134,0|dp3mbz,82,134,0|dp3mc0,83,135,1|dzwibz,83,135,1|dzwic0,82,134,0|e7tozz,82,134,0|e7tp00,83,135,1|eimkzz,83,135,1|eiml00,82,134,0|eqjrnz,82,134,0|eqjro0,83,135,1|f1cnnz,83,135,1|f1cno0,82,134,0|f99ubz,82,134,0|f99uc0,83,135,1|fkfozz,83,135,1|fkfp00,82,134,0|frzwzz,82,134,0|frzx00,83,135,1|g35rnz,83,135,1|g35ro0,82,134,0|gapznz,82,134,0|gapzo0,83,135,1|glvubz,83,135,1|glvuc0,82,134,0|gtt0zz,82,134,0|gtt100,83,135,1|h4lwzz,83,135,1|h4lx00,82,134,0|hcj3nz,82,134,0|hcj3o0,83,135,1|hnbznz,83,135,1|hnbzo0,82,134,0|hv96bz,82,134,0|hv96c0,83,135,1|i6f0zz,83,135,1|i6f100,83,135,0|pk1rbz,83,135,0|pk1rc0,82,134,0","Asia/Riyadh|,0,211,0|-bwgbbg,90,11,0","Asia/Sakhalin|,0,212,0|-xl87rc,93,157,0|-cpkx01,93,157,0|-cpkx00,88,142,0|5vak3z,88,142,0|5vak40,85,139,1|64pdbz,85,139,1|64pdc0,88,142,0|6e2hfz,88,142,0|6e2hg0,85,139,1|6nhanz,85,139,1|6nhao0,88,142,0|6wuerz,88,142,0|6wues0,85,139,1|7697zz,85,139,1|769800,88,142,0|7fo6rz,88,142,0|7fo6s0,85,139,1|7p1dnz,85,139,1|7p1do0,88,142,0|7yeezz,88,142,0|7yef00,85,139,1|87rgbz,85,139,1|87rgc0,88,142,0|8h4hnz,88,142,0|8h4ho0,85,139,1|8qhizz,85,139,1|8qhj00,88,142,0|8zukbz,88,142,0|8zukc0,85,139,1|997lnz,85,139,1|997lo0,88,142,0|9ikmzz,88,142,0|9ikn00,85,139,1|9rxobz,85,139,1|9rxoc0,88,142,0|a1apnz,88,142,0|a1apo0,85,139,1|aanqzz,85,139,1|aanr00,88,142,0|ak0sbz,88,142,0|ak0sc0,85,139,1|atqsbz,85,139,1|atqsc0,88,142,0|b33tnz,88,142,0|b33to0,88,142,1|bcgxrz,88,142,1|bcgxs0,94,158,0|bi8cfz,94,158,0|bi8cg0,88,142,0|bltwbz,88,142,0|bltwc0,85,139,1|bv6xnz,85,139,1|bv6xo0,88,142,0|c4jyzz,88,142,0|c4jz00,85,139,1|cdx0bz,85,139,1|cdx0c0,88,142,0|cna1nz,88,142,0|cna1o0,85,139,1|cwn2zz,85,139,1|cwn300,88,142,0|d604bz,88,142,0|d604c0,85,139,1|dfd5nz,85,139,1|dfd5o0,88,142,0|dp35nz,88,142,0|dp35o0,85,139,1|dzw1nz,85,139,1|dzw1o0,88,142,0|e7t8bz,88,142,0|e7t8c0,88,142,1|eim73z,88,142,1|eim740,94,158,0|eqjdrz,94,158,0|eqjds0,88,142,1|f1c9rz,88,142,1|f1c9s0,94,158,0|f99gfz,94,158,0|f99gg0,88,142,1|fkfb3z,88,142,1|fkfb40,94,158,0|frzj3z,94,158,0|frzj40,88,142,1|g35drz,88,142,1|g35ds0,94,158,0|gaplrz,94,158,0|gapls0,88,142,1|glvgfz,88,142,1|glvgg0,94,158,0|gtsn3z,94,158,0|gtsn40,88,142,1|h4lj3z,88,142,1|h4lj40,94,158,0|hciprz,94,158,0|hcips0,88,142,1|hnblrz,88,142,1|hnbls0,94,158,0|hv8sfz,94,158,0|hv8sg0,88,142,1|i6en3z,88,142,1|i6en40,94,158,0|idyv3z,94,158,0|idyv40,88,142,1|ip4prz,88,142,1|ip4ps0,94,158,0|iwoxrz,94,158,0|iwoxs0,88,142,1|j7usfz,88,142,1|j7usg0,94,158,0|jff0fz,94,158,0|jff0g0,88,142,1|jqkv3z,88,142,1|jqkv40,94,158,0|jyi1rz,94,158,0|jyi1s0,88,142,1|k9axrz,88,142,1|k9axs0,94,158,0|kh84fz,94,158,0|kh84g0,88,142,1|ks10fz,88,142,1|ks10g0,94,158,0|kzy73z,94,158,0|kzy740,88,142,1|lb41rz,88,142,1|lb41s0,94,158,0|lio9rz,94,158,0|lio9s0,88,142,0|ne09nz,88,142,0|ne09o0,94,158,0|o4nlrz,94,158,0|o4nls0,88,142,0","Asia/Samarkand|,0,213,0|-nu18eh,89,144,0|-kmr741,89,144,0|-kmr740,82,134,0|5vb0rz,82,134,0|5vb0s0,83,135,1|64ptzz,83,135,1|64pu00,83,135,0|6e2vbz,83,135,0|6e2vc0,83,135,1|6nhrbz,83,135,1|6nhrc0,82,134,0|6wuvfz,82,134,0|6wuvg0,83,135,1|769onz,83,135,1|769oo0,82,134,0|7fonfz,82,134,0|7fong0,83,135,1|7p1ubz,83,135,1|7p1uc0,82,134,0|7yevnz,82,134,0|7yevo0,83,135,1|87rwzz,83,135,1|87rx00,82,134,0|8h4ybz,82,134,0|8h4yc0,83,135,1|8qhznz,83,135,1|8qhzo0,82,134,0|8zv0zz,82,134,0|8zv100,83,135,1|9982bz,83,135,1|9982c0,82,134,0|9il3nz,82,134,0|9il3o0,83,135,1|9ry4zz,83,135,1|9ry500,82,134,0|a1b6bz,82,134,0|a1b6c0,83,135,1|aao7nz,83,135,1|aao7o0,82,134,0|ak18zz,82,134,0|ak1900,83,135,1|atr8zz,83,135,1|atr900,82,134,0|b34abz,82,134,0|b34ac0,83,135,1|bchbnz,83,135,1|bchbo0,82,134,0","Asia/Seoul|,0,214,0|-w8966g,117,175,0|-u9s4y1,117,175,0|-u9s4y0,103,157,0|-couzo1,103,157,0|-couzo0,117,157,0|-b9kp01,117,157,0|-b9kp00,118,158,1|-b486g1,118,158,1|-b486g0,117,157,0|-atu101,117,157,0|-atu100,118,158,1|-aljyg1,118,158,1|-aljyg0,117,157,0|-ab5t01,117,157,0|-ab5t00,118,158,1|-a2tvs1,118,158,1|-a2tvs0,117,157,0|-9ql2c1,117,157,0|-9ql2c0,118,158,1|-9k3t41,118,158,1|-9k3t40,117,157,0|-88kmc1,117,157,0|-88kmc0,117,175,0|-7nhbm1,117,175,0|-7nhbm0,118,181,1|-7gy7q1,118,181,1|-7gy7q0,117,175,0|-73vrm1,117,175,0|-73vrm0,118,181,1|-6x1jq1,118,181,1|-6x1jq0,117,175,0|-6lvma1,117,175,0|-6lvma0,118,181,1|-6eofq1,118,181,1|-6eofq0,117,175,0|-635jm1,117,175,0|-635jm0,118,181,1|-5vyd21,118,181,1|-5vyd20,117,175,0|-5kfgy1,117,175,0|-5kfgy0,118,181,1|-5d8ae1,118,181,1|-5d8ae0,117,175,0|-51pea1,117,175,0|-51pea0,118,181,1|-4ui7q1,118,181,1|-4ui7q0,117,175,0|-4dqfm1,117,175,0|-4dqfm0,117,157,0|920hvz,117,157,0|920hw0,118,158,1|99xojz,118,158,1|99xok0,117,157,0|9kqkjz,117,157,0|9kqkk0,118,158,1|9snr7z,118,158,1|9snr80,117,157,0","Asia/Shanghai|,0,215,0|-100eztj,37,155,0|-qh00w1,37,155,0|-qh00w0,40,157,1|-q87fo1,40,157,1|-q87fo0,37,155,0|-ffvq81,37,155,0|-ffvq80,40,157,1|-f8zno1,40,157,1|-f8zno0,37,155,0|-f148w1,37,155,0|-f148w0,40,157,1|-ep6p01,40,157,1|-ep6p00,37,155,0|-ekjy81,37,155,0|-ekjy80,40,157,1|-cp63o1,40,157,1|-cp63o0,37,155,0|-cc1sw1,37,155,0|-cc1sw0,40,157,1|-c4wh01,40,157,1|-c4wh00,37,155,0|-butfk1,37,155,0|-butfk0,40,157,1|-bkj501,40,157,1|-bkj500,37,155,0|-bb60w1,37,155,0|-bb60w0,40,157,1|-b3aro1,40,157,1|-b3aro0,37,155,0|-ase3k1,37,155,0|-ase3k0,40,157,1|-ar06c1,40,157,1|-ar06c0,37,155,0|8ixjbz,37,155,0|8ixjc0,40,157,1|8prr7z,40,157,1|8prr80,37,155,0|90kpzz,37,155,0|90kq00,40,157,1|98htvz,40,157,1|98htw0,37,155,0|9jnrbz,37,155,0|9jnrc0,40,157,1|9r7wjz,40,157,1|9r7wk0,37,155,0|a2dtzz,37,155,0|a2du00,40,157,1|aaaxvz,40,157,1|aaaxw0,37,155,0|al3wnz,37,155,0|al3wo0,40,157,1|at10jz,40,157,1|at10k0,37,155,0|b3tzbz,37,155,0|b3tzc0,40,157,1|bbr37z,40,157,1|bbr380,37,155,0","Asia/Singapore|,0,194,0|-100ewkd,70,194,0|-xphpwe,70,194,0|-xphpwd,84,136,0|-jb6gs1,84,136,0|-jb6gs0,105,179,1|-hquppd,105,179,1|-hquppc,105,179,0|-esddpd,105,179,0|-esddpc,91,154,0|-ejqa61,91,154,0|-ejqa60,93,157,0|-conl01,93,157,0|-conl00,91,154,0|69g35z,91,154,0|69g360,92,155,0","Asia/Taipei|,0,216,0|-12mch60,37,155,0|-gtzfk1,37,155,0|-gtzfk0,103,157,0|-co6u81,103,157,0|-co6u80,37,155,0|-cc1sw1,37,155,0|-cc1sw0,40,157,1|-c4wh01,40,157,1|-c4wh00,37,155,0|-butfk1,37,155,0|-butfk0,40,157,1|-bkj501,40,157,1|-bkj500,37,155,0|-bb60w1,37,155,0|-bb60w0,40,157,1|-b3aro1,40,157,1|-b3aro0,37,155,0|-ase3k1,37,155,0|-ase3k0,40,157,1|-akiuc1,40,157,1|-akiuc0,37,155,0|-a9m681,37,155,0|-a9m680,40,157,1|-a1qx01,40,157,1|-a1qx00,37,155,0|-9qu8w1,37,155,0|-9qu8w0,40,157,1|-9iyzo1,40,157,1|-9iyzo0,37,155,0|-9b5fk1,37,155,0|-9b5fk0,40,157,1|-8yjt01,40,157,1|-8yjt00,37,155,0|-8qs3k1,37,155,0|-8qs3k0,40,157,1|-8frvo1,40,157,1|-8frvo0,37,155,0|-880681,37,155,0|-880680,40,157,1|-7wzyc1,40,157,1|-7wzyc0,37,155,0|-7p88w1,37,155,0|-7p88w0,40,157,1|-7ftfo1,40,157,1|-7ftfo0,37,155,0|-76egw1,37,155,0|-76egw0,40,157,1|-6wzno1,40,157,1|-6wzno0,37,155,0|-6nmjk1,37,155,0|-6nmjk0,40,157,1|-6e7qc1,40,157,1|-6e7qc0,37,155,0|-64um81,37,155,0|-64um80,40,157,1|-5vft01,40,157,1|-5vft00,37,155,0|-5m2ow1,37,155,0|-5m2ow0,40,157,1|-5cnvo1,40,157,1|-5cnvo0,37,155,0|-503y81,37,155,0|-503y80,40,157,1|-4tu3o1,40,157,1|-4tu3o0,37,155,0|-4hc0w1,37,155,0|-4hc0w0,40,157,1|-4b26c1,40,157,1|-4b26c0,37,155,0|27rlrz,37,155,0|27rls0,40,157,1|2h6ezz,40,157,1|2h6f00,37,155,0|2qjj3z,37,155,0|2qjj40,40,157,1|2zycbz,40,157,1|2zycc0,37,155,0|4ydlrz,37,155,0|4ydls0,40,157,1|533wbz,40,157,1|533wc0,37,155,0","Asia/Tashkent|,0,217,0|-nu18tz,82,134,0|-kmr9w1,82,134,0|-kmr9w0,83,135,0|5vaxzz,83,135,0|5vay00,84,136,1|64pr7z,84,136,1|64pr80,83,135,0|6e2vbz,83,135,0|6e2vc0,84,136,1|6nhojz,84,136,1|6nhok0,83,135,0|6wusnz,83,135,0|6wuso0,84,136,1|769lvz,84,136,1|769lw0,83,135,0|7foknz,83,135,0|7foko0,84,136,1|7p1rjz,84,136,1|7p1rk0,83,135,0|7yesvz,83,135,0|7yesw0,84,136,1|87ru7z,84,136,1|87ru80,83,135,0|8h4vjz,83,135,0|8h4vk0,84,136,1|8qhwvz,84,136,1|8qhww0,83,135,0|8zuy7z,83,135,0|8zuy80,84,136,1|997zjz,84,136,1|997zk0,83,135,0|9il0vz,83,135,0|9il0w0,84,136,1|9ry27z,84,136,1|9ry280,83,135,0|a1b3jz,83,135,0|a1b3k0,84,136,1|aao4vz,84,136,1|aao4w0,83,135,0|ak167z,83,135,0|ak1680,84,136,1|atr67z,84,136,1|atr680,83,135,0|b347jz,83,135,0|b347k0,83,135,1|bchbnz,83,135,1|bchbo0,82,134,0","Asia/Tbilisi|,0,218,0|-1ayyayn,119,218,0|-nu14ao,119,218,0|-nu14an,90,11,0|-6p7kc1,90,11,0|-6p7kc0,89,144,0|5vb3jz,89,144,0|5vb3k0,82,134,1|64pwrz,82,134,1|64pws0,89,144,0|6e30vz,89,144,0|6e30w0,82,134,1|6nhu3z,82,134,1|6nhu40,89,144,0|6wuy7z,89,144,0|6wuy80,82,134,1|769rfz,82,134,1|769rg0,89,144,0|7foq7z,89,144,0|7foq80,82,134,1|7p1x3z,82,134,1|7p1x40,89,144,0|7yeyfz,89,144,0|7yeyg0,82,134,1|87rzrz,82,134,1|87rzs0,89,144,0|8h513z,89,144,0|8h5140,82,134,1|8qi2fz,82,134,1|8qi2g0,89,144,0|8zv3rz,89,144,0|8zv3s0,82,134,1|99853z,82,134,1|998540,89,144,0|9il6fz,89,144,0|9il6g0,82,134,1|9ry7rz,82,134,1|9ry7s0,89,144,0|a1b93z,89,144,0|a1b940,82,134,1|aaoafz,82,134,1|aaoag0,89,144,0|ak1brz,89,144,0|ak1bs0,82,134,1|atrbrz,82,134,1|atrbs0,89,144,0|b34d3z,89,144,0|b34d40,89,144,1|bchh7z,89,144,1|bchh80,90,11,0|bluczz,90,11,0|blud00,89,144,1|bv7bjz,89,144,1|bv7bk0,90,11,0|c4kfnz,90,11,0|c4kfo0,89,144,1|cdxe7z,89,144,1|cdxe80,90,11,0|cnaibz,90,11,0|cnaic0,89,144,1|cwngvz,89,144,1|cwngw0,89,144,0|d60i7z,89,144,0|d60i80,82,134,1|dfdgrz,82,134,1|dfdgs0,89,144,0|dp3jjz,89,144,0|dp3jk0,82,134,1|eimffz,82,134,1|eimfg0,89,144,0|eqjovz,89,144,0|eqjow0,82,134,1|f1ci3z,82,134,1|f1ci40,89,144,0|f99rjz,89,144,0|f99rk0,82,134,1|fkfjfz,82,134,1|fkfjg0,89,144,0|frzu7z,89,144,0|frzu80,82,134,1|g35m3z,82,134,1|g35m40,89,144,0|gapwvz,89,144,0|gapww0,82,134,1|glvorz,82,134,1|glvos0,89,144,0|gtsy7z,89,144,0|gtsy80,82,134,1|h4lrfz,82,134,1|h4lrg0,89,144,0|hcj0vz,89,144,0|hcj0w0,82,134,1|hnbu3z,82,134,1|hnbu40,89,144,0|hv93jz,89,144,0|hv93k0,82,134,1|hzxjfz,82,134,1|hzxjg0,89,144,1|i6f6jz,89,144,1|i6f6k0,90,11,0|idzejz,90,11,0|idzek0,89,144,0","Asia/Tehran|,0,219,0|-s6m6uw,120,219,0|-cixlix,120,219,0|-cixliw,121,220,0|435vlz,121,220,0|435vm0,89,144,0|4ad3jz,89,144,0|4ad3k0,82,134,1|4ldbfz,82,134,1|4ldbg0,89,144,0|4p2q7z,89,144,0|4p2q80,121,220,0|4t529z,121,220,0|4t52a0,111,185,1|52i0tz,111,185,1|52i0u0,121,220,0|5byu9z,121,220,0|5byua0,111,185,1|5lj7hz,111,185,1|5lj7i0,121,220,0|b4tcxz,121,220,0|b4tcy0,111,185,1|bc48tz,111,185,1|bc48u0,121,220,0|blhcxz,121,220,0|blhcy0,111,185,1|buy0tz,111,185,1|buy0u0,121,220,0|c49a9z,121,220,0|c49aa0,111,185,1|cdpy5z,111,185,1|cdpy60,121,220,0|cn17lz,121,220,0|cn17m0,111,185,1|cwhvhz,111,185,1|cwhvi0,121,220,0|d5t4xz,121,220,0|d5t4y0,111,185,1|df9stz,111,185,1|df9su0,121,220,0|dol29z,121,220,0|dol2a0,111,185,1|dy1q5z,111,185,1|dy1q60,121,220,0|e7eu9z,121,220,0|e7eua0,111,185,1|egvi5z,111,185,1|egvi60,121,220,0|eq6rlz,121,220,0|eq6rm0,111,185,1|eznfhz,111,185,1|eznfi0,121,220,0|f8yoxz,121,220,0|f8yoy0,111,185,1|fifctz,111,185,1|fifcu0,121,220,0|frqm9z,121,220,0|frqma0,111,185,1|g17a5z,111,185,1|g17a60,121,220,0|gake9z,121,220,0|gakea0,111,185,1|gk125z,111,185,1|gk1260,121,220,0|gtcblz,121,220,0|gtcbm0,111,185,1|h2szhz,111,185,1|h2szi0,121,220,0|hc48xz,121,220,0|hc48y0,111,185,1|hlkwtz,111,185,1|hlkwu0,121,220,0|huw69z,121,220,0|huw6a0,111,185,1|i4cu5z,111,185,1|i4cu60,121,220,0|idpy9z,121,220,0|idpya0,111,185,1|in6m5z,111,185,1|in6m60,121,220,0|jy1q9z,121,220,0|jy1qa0,111,185,1|k7ie5z,111,185,1|k7ie60,121,220,0|kgvi9z,121,220,0|kgvia0,111,185,1|kqc65z,111,185,1|kqc660,121,220,0|kznflz,121,220,0|kznfm0,111,185,1|l943hz,111,185,1|l943i0,121,220,0|lifcxz,121,220,0|lifcy0,111,185,1|lrw0tz,111,185,1|lrw0u0,121,220,0|m17a9z,121,220,0|m17aa0,111,185,1|many5z,111,185,1|many60,121,220,0|mk129z,121,220,0|mk12a0,111,185,1|mthq5z,111,185,1|mthq60,121,220,0|n2szlz,121,220,0|n2szm0,111,185,1|nc9nhz,111,185,1|nc9ni0,121,220,0|nlkwxz,121,220,0|nlkwy0,111,185,1|nv1ktz,111,185,1|nv1ku0,121,220,0|o4cu9z,121,220,0|o4cua0,111,185,1|odti5z,111,185,1|odti60,121,220,0|on6m9z,121,220,0|on6ma0,111,185,1|owna5z,111,185,1|owna60,121,220,0|p5yjlz,121,220,0|p5yjm0,111,185,1|pff7hz,111,185,1|pff7i0,121,220,0|poqgxz,121,220,0|poqgy0,111,185,1|py74tz,111,185,1|py74u0,121,220,0|q7ie9z,121,220,0|q7iea0,111,185,1|qgz25z,111,185,1|qgz260,121,220,0|qqc69z,121,220,0|qqc6a0,111,185,1|qzsu5z,111,185,1|qzsu60,121,220,0|r943lz,121,220,0|r943m0,111,185,1|rikrhz,111,185,1|rikri0,121,220,0|rrw0xz,121,220,0|rrw0y0,111,185,1|s1cotz,111,185,1|s1cou0,121,220,0|sany9z,121,220,0|sanya0,111,185,1|sk4m5z,111,185,1|sk4m60,121,220,0|sthq9z,121,220,0|sthqa0,111,185,1|t2ye5z,111,185,1|t2ye60,121,220,0|tc9nlz,121,220,0|tc9nm0,111,185,1|tlqbhz,111,185,1|tlqbi0,121,220,0|tv1kxz,121,220,0|tv1ky0,111,185,1|u4i8tz,111,185,1|u4i8u0,121,220,0|udti9z,121,220,0|udtia0,111,185,1|una65z,111,185,1|una660,121,220,0|uwlflz,121,220,0|uwlfm0,111,185,1|v623hz,111,185,1|v623i0,121,220,0|vff7lz,121,220,0|vff7m0,111,185,1|vovvhz,111,185,1|vovvi0,121,220,0|vy74xz,121,220,0|vy74y0,111,185,1|w7nstz,111,185,1|w7nsu0,121,220,0|wgz29z,121,220,0|wgz2a0,111,185,1|wqfq5z,111,185,1|wqfq60,121,220,0|wzqzlz,121,220,0|wzqzm0,111,185,1|x97nhz,111,185,1|x97ni0,121,220,0|xikrlz,121,220,0|xikrm0,111,185,1|xs1fhz,111,185,1|xs1fi0,121,220,0|y1coxz,121,220,0|y1coy0,111,185,1|yatctz,111,185,1|yatcu0,121,220,0|yk4m9z,121,220,0|yk4ma0,111,185,1|ytla5z,111,185,1|ytla60,121,220,0|z2wjlz,121,220,0|z2wjm0,111,185,1|zcd7hz,111,185,1|zcd7i0,121,220,0","Asia/Thimphu|,0,221,0|-bojclo,95,162,0|99fa1z,95,162,0|99fa20,83,135,0","Asia/Tokyo|,0,222,0|-16snno0,103,157,0|-bb4901,103,157,0|-bb4900,122,158,1|-b49yc1,122,158,1|-b49yc0,103,157,0|-atu101,103,157,0|-atu100,122,158,1|-aljvo1,122,158,1|-aljvo0,103,157,0|-a9b501,103,157,0|-a9b500,122,158,1|-a2tt01,122,158,1|-a2tt00,103,157,0|-9ql2c1,103,157,0|-9ql2c0,122,158,1|-9k3qc1,122,158,1|-9k3qc0,103,157,0","Asia/Tomsk|,0,223,0|-q3zbqf,83,135,0|-kmrco1,83,135,0|-kmrco0,84,136,0|5vav7z,84,136,0|5vav80,92,155,1|64pofz,92,155,1|64pog0,84,136,0|6e2sjz,84,136,0|6e2sk0,92,155,1|6nhlrz,92,155,1|6nhls0,84,136,0|6wupvz,84,136,0|6wupw0,92,155,1|769j3z,92,155,1|769j40,84,136,0|7fohvz,84,136,0|7fohw0,92,155,1|7p1orz,92,155,1|7p1os0,84,136,0|7yeq3z,84,136,0|7yeq40,92,155,1|87rrfz,92,155,1|87rrg0,84,136,0|8h4srz,84,136,0|8h4ss0,92,155,1|8qhu3z,92,155,1|8qhu40,84,136,0|8zuvfz,84,136,0|8zuvg0,92,155,1|997wrz,92,155,1|997ws0,84,136,0|9iky3z,84,136,0|9iky40,92,155,1|9rxzfz,92,155,1|9rxzg0,84,136,0|a1b0rz,84,136,0|a1b0s0,92,155,1|aao23z,92,155,1|aao240,84,136,0|ak13fz,84,136,0|ak13g0,92,155,1|atr3fz,92,155,1|atr3g0,84,136,0|b344rz,84,136,0|b344s0,84,136,1|bch8vz,84,136,1|bch8w0,83,135,0|bi8njz,83,135,0|bi8nk0,84,136,0|blu7fz,84,136,0|blu7g0,92,155,1|bv78rz,92,155,1|bv78s0,84,136,0|c4ka3z,84,136,0|c4ka40,92,155,1|cdxbfz,92,155,1|cdxbg0,84,136,0|cnacrz,84,136,0|cnacs0,92,155,1|cwne3z,92,155,1|cwne40,84,136,0|d60ffz,84,136,0|d60fg0,92,155,1|dfdgrz,92,155,1|dfdgs0,84,136,0|dp3grz,84,136,0|dp3gs0,92,155,1|dzwcrz,92,155,1|dzwcs0,84,136,0|e7tjfz,84,136,0|e7tjg0,92,155,1|eimffz,92,155,1|eimfg0,84,136,0|eqjm3z,84,136,0|eqjm40,92,155,1|f1ci3z,92,155,1|f1ci40,84,136,0|f99orz,84,136,0|f99os0,92,155,1|fkfjfz,92,155,1|fkfjg0,84,136,0|frzrfz,84,136,0|frzrg0,92,155,1|g35m3z,92,155,1|g35m40,84,136,0|gapu3z,84,136,0|gapu40,92,155,1|glvorz,92,155,1|glvos0,84,136,0|gtsvfz,84,136,0|gtsvg0,92,155,1|gvea3z,92,155,1|gvea40,84,136,1|h4lu7z,84,136,1|h4lu80,83,135,0|hcj0vz,83,135,0|hcj0w0,84,136,1|hnbwvz,84,136,1|hnbww0,83,135,0|hv93jz,83,135,0|hv93k0,84,136,1|i6ey7z,84,136,1|i6ey80,83,135,0|idz67z,83,135,0|idz680,84,136,1|ip50vz,84,136,1|ip50w0,83,135,0|iwp8vz,83,135,0|iwp8w0,84,136,1|j7v3jz,84,136,1|j7v3k0,83,135,0|jffbjz,83,135,0|jffbk0,84,136,1|jql67z,84,136,1|jql680,83,135,0|jyicvz,83,135,0|jyicw0,84,136,1|k9b8vz,84,136,1|k9b8w0,83,135,0|kh8fjz,83,135,0|kh8fk0,84,136,1|ks1bjz,84,136,1|ks1bk0,83,135,0|kzyi7z,83,135,0|kzyi80,84,136,1|lb4cvz,84,136,1|lb4cw0,83,135,0|liokvz,83,135,0|liokw0,84,136,0|ne0krz,84,136,0|ne0ks0,83,135,0|o7wkvz,83,135,0|o7wkw0,84,136,0","Asia/Ulaanbaatar|,0,224,0|-xmcrsk,84,136,0|46akjz,84,136,0|46akk0,92,155,0|6wun3z,92,155,0|6wun40,93,157,1|769gbz,93,157,1|769gc0,92,155,0|7fof3z,92,155,0|7fof40,93,157,1|7p1dnz,93,157,1|7p1do0,92,155,0|7yehrz,92,155,0|7yehs0,93,157,1|87rgbz,93,157,1|87rgc0,92,155,0|8h4kfz,92,155,0|8h4kg0,93,157,1|8qhizz,93,157,1|8qhj00,92,155,0|8zun3z,92,155,0|8zun40,93,157,1|997lnz,93,157,1|997lo0,92,155,0|9ikprz,92,155,0|9ikps0,93,157,1|9rxobz,93,157,1|9rxoc0,92,155,0|a1asfz,92,155,0|a1asg0,93,157,1|aanqzz,93,157,1|aanr00,92,155,0|ak0v3z,92,155,0|ak0v40,93,157,1|atqsbz,93,157,1|atqsc0,92,155,0|b33wfz,92,155,0|b33wg0,93,157,1|bcguzz,93,157,1|bcgv00,92,155,0|bltz3z,92,155,0|bltz40,93,157,1|bv6xnz,93,157,1|bv6xo0,92,155,0|c4k1rz,92,155,0|c4k1s0,93,157,1|cdx0bz,93,157,1|cdx0c0,92,155,0|cna4fz,92,155,0|cna4g0,93,157,1|cwn2zz,93,157,1|cwn300,92,155,0|d6073z,92,155,0|d60740,93,157,1|dfd5nz,93,157,1|dfd5o0,92,155,0|dp38fz,92,155,0|dp38g0,93,157,1|dyg6zz,93,157,1|dyg700,92,155,0|e7tb3z,92,155,0|e7tb40,93,157,1|eh69nz,93,157,1|eh69o0,92,155,0|eqjdrz,92,155,0|eqjds0,93,157,1|ezwcbz,93,157,1|ezwcc0,92,155,0|gcgpzz,92,155,0|gcgq00,93,157,1|gkdtvz,93,157,1|gkdtw0,92,155,0|gtqxzz,92,155,0|gtqy00,93,157,1|h33wjz,93,157,1|h33wk0,92,155,0|hch0nz,92,155,0|hch0o0,93,157,1|hltz7z,93,157,1|hltz80,92,155,0|hv73bz,92,155,0|hv73c0,93,157,1|i4k1vz,93,157,1|i4k1w0,92,155,0|idx5zz,92,155,0|idx600,93,157,1|ina4jz,93,157,1|ina4k0,92,155,0|iwn8nz,92,155,0|iwn8o0,93,157,1|j6d5vz,93,157,1|j6d5w0,92,155,0|nlvtzz,92,155,0|nlvu00,93,157,1|nv8mzz,93,157,1|nv8n00,92,155,0|o4lwnz,92,155,0|o4lwo0,93,157,1|odypnz,93,157,1|odypo0,92,155,0","Asia/Urumqi|,0,225,0|-lx5pjw,83,135,0","Asia/Vladivostok|,0,226,0|-oligf7,93,157,0|-kmrl01,93,157,0|-kmrl00,94,158,0|5vamvz,94,158,0|5vamw0,88,142,1|64pg3z,88,142,1|64pg40,94,158,0|6e2k7z,94,158,0|6e2k80,88,142,1|6nhdfz,88,142,1|6nhdg0,94,158,0|6wuhjz,94,158,0|6wuhk0,88,142,1|769arz,88,142,1|769as0,94,158,0|7fo9jz,94,158,0|7fo9k0,88,142,1|7p1gfz,88,142,1|7p1gg0,94,158,0|7yehrz,94,158,0|7yehs0,88,142,1|87rj3z,88,142,1|87rj40,94,158,0|8h4kfz,94,158,0|8h4kg0,88,142,1|8qhlrz,88,142,1|8qhls0,94,158,0|8zun3z,94,158,0|8zun40,88,142,1|997ofz,88,142,1|997og0,94,158,0|9ikprz,94,158,0|9ikps0,88,142,1|9rxr3z,88,142,1|9rxr40,94,158,0|a1asfz,94,158,0|a1asg0,88,142,1|aantrz,88,142,1|aants0,94,158,0|ak0v3z,94,158,0|ak0v40,88,142,1|atqv3z,88,142,1|atqv40,94,158,0|b33wfz,94,158,0|b33wg0,94,158,1|bch0jz,94,158,1|bch0k0,93,157,0|bi8f7z,93,157,0|bi8f80,94,158,0|bltz3z,94,158,0|bltz40,88,142,1|bv70fz,88,142,1|bv70g0,94,158,0|c4k1rz,94,158,0|c4k1s0,88,142,1|cdx33z,88,142,1|cdx340,94,158,0|cna4fz,94,158,0|cna4g0,88,142,1|cwn5rz,88,142,1|cwn5s0,94,158,0|d6073z,94,158,0|d60740,88,142,1|dfd8fz,88,142,1|dfd8g0,94,158,0|dp38fz,94,158,0|dp38g0,88,142,1|dzw4fz,88,142,1|dzw4g0,94,158,0|e7tb3z,94,158,0|e7tb40,88,142,1|eim73z,88,142,1|eim740,94,158,0|eqjdrz,94,158,0|eqjds0,88,142,1|f1c9rz,88,142,1|f1c9s0,94,158,0|f99gfz,94,158,0|f99gg0,88,142,1|fkfb3z,88,142,1|fkfb40,94,158,0|frzj3z,94,158,0|frzj40,88,142,1|g35drz,88,142,1|g35ds0,94,158,0|gaplrz,94,158,0|gapls0,88,142,1|glvgfz,88,142,1|glvgg0,94,158,0|gtsn3z,94,158,0|gtsn40,88,142,1|h4lj3z,88,142,1|h4lj40,94,158,0|hciprz,94,158,0|hcips0,88,142,1|hnblrz,88,142,1|hnbls0,94,158,0|hv8sfz,94,158,0|hv8sg0,88,142,1|i6en3z,88,142,1|i6en40,94,158,0|idyv3z,94,158,0|idyv40,88,142,1|ip4prz,88,142,1|ip4ps0,94,158,0|iwoxrz,94,158,0|iwoxs0,88,142,1|j7usfz,88,142,1|j7usg0,94,158,0|jff0fz,94,158,0|jff0g0,88,142,1|jqkv3z,88,142,1|jqkv40,94,158,0|jyi1rz,94,158,0|jyi1s0,88,142,1|k9axrz,88,142,1|k9axs0,94,158,0|kh84fz,94,158,0|kh84g0,88,142,1|ks10fz,88,142,1|ks10g0,94,158,0|kzy73z,94,158,0|kzy740,88,142,1|lb41rz,88,142,1|lb41s0,94,158,0|lio9rz,94,158,0|lio9s0,88,142,0|ne09nz,88,142,0|ne09o0,94,158,0","Asia/Yakutsk|,0,227,0|-q4cioy,92,155,0|-kmri81,92,155,0|-kmri80,93,157,0|5vapnz,93,157,0|5vapo0,94,158,1|64pivz,94,158,1|64piw0,93,157,0|6e2mzz,93,157,0|6e2n00,94,158,1|6nhg7z,94,158,1|6nhg80,93,157,0|6wukbz,93,157,0|6wukc0,94,158,1|769djz,94,158,1|769dk0,93,157,0|7focbz,93,157,0|7focc0,94,158,1|7p1j7z,94,158,1|7p1j80,93,157,0|7yekjz,93,157,0|7yekk0,94,158,1|87rlvz,94,158,1|87rlw0,93,157,0|8h4n7z,93,157,0|8h4n80,94,158,1|8qhojz,94,158,1|8qhok0,93,157,0|8zupvz,93,157,0|8zupw0,94,158,1|997r7z,94,158,1|997r80,93,157,0|9iksjz,93,157,0|9iksk0,94,158,1|9rxtvz,94,158,1|9rxtw0,93,157,0|a1av7z,93,157,0|a1av80,94,158,1|aanwjz,94,158,1|aanwk0,93,157,0|ak0xvz,93,157,0|ak0xw0,94,158,1|atqxvz,94,158,1|atqxw0,93,157,0|b33z7z,93,157,0|b33z80,93,157,1|bch3bz,93,157,1|bch3c0,92,155,0|bi8hzz,92,155,0|bi8i00,93,157,0|blu1vz,93,157,0|blu1w0,94,158,1|bv737z,94,158,1|bv7380,93,157,0|c4k4jz,93,157,0|c4k4k0,94,158,1|cdx5vz,94,158,1|cdx5w0,93,157,0|cna77z,93,157,0|cna780,94,158,1|cwn8jz,94,158,1|cwn8k0,93,157,0|d609vz,93,157,0|d609w0,94,158,1|dfdb7z,94,158,1|dfdb80,93,157,0|dp3b7z,93,157,0|dp3b80,94,158,1|dzw77z,94,158,1|dzw780,93,157,0|e7tdvz,93,157,0|e7tdw0,94,158,1|eim9vz,94,158,1|eim9w0,93,157,0|eqjgjz,93,157,0|eqjgk0,94,158,1|f1ccjz,94,158,1|f1cck0,93,157,0|f99j7z,93,157,0|f99j80,94,158,1|fkfdvz,94,158,1|fkfdw0,93,157,0|frzlvz,93,157,0|frzlw0,94,158,1|g35gjz,94,158,1|g35gk0,93,157,0|gapojz,93,157,0|gapok0,94,158,1|glvj7z,94,158,1|glvj80,93,157,0|gtspvz,93,157,0|gtspw0,94,158,1|h4llvz,94,158,1|h4llw0,93,157,0|hcisjz,93,157,0|hcisk0,94,158,1|hnbojz,94,158,1|hnbok0,93,157,0|hv8v7z,93,157,0|hv8v80,94,158,1|i6epvz,94,158,1|i6epw0,93,157,0|idyxvz,93,157,0|idyxw0,94,158,1|ip4sjz,94,158,1|ip4sk0,93,157,0|iwp0jz,93,157,0|iwp0k0,94,158,1|j7uv7z,94,158,1|j7uv80,93,157,0|jff37z,93,157,0|jff380,94,158,1|jqkxvz,94,158,1|jqkxw0,93,157,0|jyi4jz,93,157,0|jyi4k0,94,158,1|k9b0jz,94,158,1|k9b0k0,93,157,0|kh877z,93,157,0|kh8780,94,158,1|ks137z,94,158,1|ks1380,93,157,0|kzy9vz,93,157,0|kzy9w0,94,158,1|lb44jz,94,158,1|lb44k0,93,157,0|liocjz,93,157,0|liock0,94,158,0|ne0cfz,94,158,0|ne0cg0,93,157,0","Asia/Yekaterinburg|,0,228,0|-rx5hw9,4,229,0|-qc75z6,4,229,0|-qc75z5,89,144,0|-kmr741,89,144,0|-kmr740,82,134,0|5vb0rz,82,134,0|5vb0s0,83,135,1|64ptzz,83,135,1|64pu00,82,134,0|6e2y3z,82,134,0|6e2y40,83,135,1|6nhrbz,83,135,1|6nhrc0,82,134,0|6wuvfz,82,134,0|6wuvg0,83,135,1|769onz,83,135,1|769oo0,82,134,0|7fonfz,82,134,0|7fong0,83,135,1|7p1ubz,83,135,1|7p1uc0,82,134,0|7yevnz,82,134,0|7yevo0,83,135,1|87rwzz,83,135,1|87rx00,82,134,0|8h4ybz,82,134,0|8h4yc0,83,135,1|8qhznz,83,135,1|8qhzo0,82,134,0|8zv0zz,82,134,0|8zv100,83,135,1|9982bz,83,135,1|9982c0,82,134,0|9il3nz,82,134,0|9il3o0,83,135,1|9ry4zz,83,135,1|9ry500,82,134,0|a1b6bz,82,134,0|a1b6c0,83,135,1|aao7nz,83,135,1|aao7o0,82,134,0|ak18zz,82,134,0|ak1900,83,135,1|atr8zz,83,135,1|atr900,82,134,0|b34abz,82,134,0|b34ac0,82,134,1|bchefz,82,134,1|bcheg0,89,144,0|bi8t3z,89,144,0|bi8t40,82,134,0|bluczz,82,134,0|blud00,83,135,1|bv7ebz,83,135,1|bv7ec0,82,134,0|c4kfnz,82,134,0|c4kfo0,83,135,1|cdxgzz,83,135,1|cdxh00,82,134,0|cnaibz,82,134,0|cnaic0,83,135,1|cwnjnz,83,135,1|cwnjo0,82,134,0|d60kzz,82,134,0|d60l00,83,135,1|dfdmbz,83,135,1|dfdmc0,82,134,0|dp3mbz,82,134,0|dp3mc0,83,135,1|dzwibz,83,135,1|dzwic0,82,134,0|e7tozz,82,134,0|e7tp00,83,135,1|eimkzz,83,135,1|eiml00,82,134,0|eqjrnz,82,134,0|eqjro0,83,135,1|f1cnnz,83,135,1|f1cno0,82,134,0|f99ubz,82,134,0|f99uc0,83,135,1|fkfozz,83,135,1|fkfp00,82,134,0|frzwzz,82,134,0|frzx00,83,135,1|g35rnz,83,135,1|g35ro0,82,134,0|gapznz,82,134,0|gapzo0,83,135,1|glvubz,83,135,1|glvuc0,82,134,0|gtt0zz,82,134,0|gtt100,83,135,1|h4lwzz,83,135,1|h4lx00,82,134,0|hcj3nz,82,134,0|hcj3o0,83,135,1|hnbznz,83,135,1|hnbzo0,82,134,0|hv96bz,82,134,0|hv96c0,83,135,1|i6f0zz,83,135,1|i6f100,82,134,0|idz8zz,82,134,0|idz900,83,135,1|ip53nz,83,135,1|ip53o0,82,134,0|iwpbnz,82,134,0|iwpbo0,83,135,1|j7v6bz,83,135,1|j7v6c0,82,134,0|jffebz,82,134,0|jffec0,83,135,1|jql8zz,83,135,1|jql900,82,134,0|jyifnz,82,134,0|jyifo0,83,135,1|k9bbnz,83,135,1|k9bbo0,82,134,0|kh8ibz,82,134,0|kh8ic0,83,135,1|ks1ebz,83,135,1|ks1ec0,82,134,0|kzykzz,82,134,0|kzyl00,83,135,1|lb4fnz,83,135,1|lb4fo0,82,134,0|lionnz,82,134,0|liono0,83,135,0|ne0njz,83,135,0|ne0nk0,82,134,0","Asia/Yerevan|,0,230,0|-nu148o,90,11,0|-6p7kc1,90,11,0|-6p7kc0,89,144,0|5vb3jz,89,144,0|5vb3k0,82,134,1|64pwrz,82,134,1|64pws0,89,144,0|6e30vz,89,144,0|6e30w0,82,134,1|6nhu3z,82,134,1|6nhu40,89,144,0|6wuy7z,89,144,0|6wuy80,82,134,1|769rfz,82,134,1|769rg0,89,144,0|7foq7z,89,144,0|7foq80,82,134,1|7p1x3z,82,134,1|7p1x40,89,144,0|7yeyfz,89,144,0|7yeyg0,82,134,1|87rzrz,82,134,1|87rzs0,89,144,0|8h513z,89,144,0|8h5140,82,134,1|8qi2fz,82,134,1|8qi2g0,89,144,0|8zv3rz,89,144,0|8zv3s0,82,134,1|99853z,82,134,1|998540,89,144,0|9il6fz,89,144,0|9il6g0,82,134,1|9ry7rz,82,134,1|9ry7s0,89,144,0|a1b93z,89,144,0|a1b940,82,134,1|aaoafz,82,134,1|aaoag0,89,144,0|ak1brz,89,144,0|ak1bs0,82,134,1|atrbrz,82,134,1|atrbs0,89,144,0|b34d3z,89,144,0|b34d40,89,144,1|bchh7z,89,144,1|bchh80,90,11,0|bluijz,90,11,0|bluik0,89,144,1|bv7jvz,89,144,1|bv7jw0,90,11,0|c4kl7z,90,11,0|c4kl80,89,144,1|cdxmjz,89,144,1|cdxmk0,90,11,0|cnanvz,90,11,0|cnanw0,89,144,1|cwnp7z,89,144,1|cwnp80,90,11,0|d60qjz,90,11,0|d60qk0,89,144,1|dfdrvz,89,144,1|dfdrw0,89,144,0|e7trrz,89,144,0|e7trs0,82,134,1|eimnrz,82,134,1|eimns0,89,144,0|eqjufz,89,144,0|eqjug0,82,134,1|f1cqfz,82,134,1|f1cqg0,89,144,0|f99x3z,89,144,0|f99x40,82,134,1|fkfrrz,82,134,1|fkfrs0,89,144,0|frzzrz,89,144,0|frzzs0,82,134,1|g35ufz,82,134,1|g35ug0,89,144,0|gaq2fz,89,144,0|gaq2g0,82,134,1|glvx3z,82,134,1|glvx40,89,144,0|gtt3rz,89,144,0|gtt3s0,82,134,1|h4lzrz,82,134,1|h4lzs0,89,144,0|hcj6fz,89,144,0|hcj6g0,82,134,1|hnc2fz,82,134,1|hnc2g0,89,144,0|hv993z,89,144,0|hv9940,82,134,1|i6f3rz,82,134,1|i6f3s0,89,144,0|idzbrz,89,144,0|idzbs0,82,134,1|ip56fz,82,134,1|ip56g0,89,144,0|iwpefz,89,144,0|iwpeg0,82,134,1|j7v93z,82,134,1|j7v940,89,144,0|jffh3z,89,144,0|jffh40,82,134,1|jqlbrz,82,134,1|jqlbs0,89,144,0|jyiifz,89,144,0|jyiig0,82,134,1|k9befz,82,134,1|k9beg0,89,144,0|kh8l3z,89,144,0|kh8l40,82,134,1|ks1h3z,82,134,1|ks1h40,89,144,0|kzynrz,89,144,0|kzyns0,82,134,1|lb4ifz,82,134,1|lb4ig0,89,144,0|lioqfz,89,144,0|lioqg0,82,134,1|ltul3z,82,134,1|ltul40,89,144,0","Atlantic/Azores|,0,231,0|-18vsdww,61,232,0|-u9rbs1,61,232,0|-u9rbs0,33,36,0|-rxwvw1,33,36,0|-rxwvw0,9,9,1|-rqwyg1,9,9,1|-rqwyg0,33,36,0|-rkqt81,33,36,0|-rkqt80,9,9,1|-r90l81,9,9,1|-r90l80,33,36,0|-r1x181,33,36,0|-r1x180,9,9,1|-qq8nw1,9,9,1|-qq8nw0,33,36,0|-qj6yk1,33,36,0|-qj6yk0,9,9,1|-q7gqk1,9,9,1|-q7gqk0,33,36,0|-q0d6k1,33,36,0|-q0d6k0,9,9,1|-pomyk1,9,9,1|-pomyk0,33,36,0|-phl981,33,36,0|-phl980,9,9,1|-p5v181,9,9,1|-p5v180,33,36,0|-nusl81,33,36,0|-nusl80,9,9,1|-nlhek1,9,9,1|-nlhek0,33,36,0|-mt6vw1,33,36,0|-mt6vw0,9,9,1|-mkjrw1,9,9,1|-mkjrw0,33,36,0|-matrw1,33,36,0|-matrw0,9,9,1|-m1tp81,9,9,1|-m1tp80,33,36,0|-lrqqk1,33,36,0|-lrqqk0,9,9,1|-liqnw1,9,9,1|-liqnw0,33,36,0|-l8np81,33,36,0|-l8np80,9,9,1|-l00l81,9,9,1|-l00l80,33,36,0|-k77jw1,33,36,0|-k77jw0,9,9,1|-jykfw1,9,9,1|-jykfw0,33,36,0|-jp7ek1,33,36,0|-jp7ek0,9,9,1|-jfud81,9,9,1|-jfud80,33,36,0|-ineak1,33,36,0|-ineak0,9,9,1|-ie1981,9,9,1|-ie1980,33,36,0|-i516k1,33,36,0|-i516k0,9,9,1|-hvb6k1,9,9,1|-hvb6k0,33,36,0|-hl87w1,33,36,0|-hl87w0,9,9,1|-hcl3w1,9,9,1|-hcl3w0,33,36,0|-h382k1,33,36,0|-h382k0,9,9,1|-gtv181,9,9,1|-gtv180,33,36,0|-gkuyk1,33,36,0|-gkuyk0,9,9,1|-gb4yk1,9,9,1|-gb4yk0,33,36,0|-g11zw1,33,36,0|-g11zw0,9,9,1|-fpw581,9,9,1|-fpw580,33,36,0|-fkunw1,33,36,0|-fkunw0,9,9,1|-f9buk1,9,9,1|-f9buk0,33,36,0|-ezyt81,33,36,0|-ezyt80,9,9,1|-eqjx81,9,9,1|-eqjx80,33,36,0|-eibmk1,33,36,0|-eibmk0,9,9,1|-eg5xc1,9,9,1|-eg5xc0,12,1,1|-eaeio1,12,1,1|-eaeio0,9,9,1|-e6st81,9,9,1|-e6st80,33,36,0|-dzljw1,33,36,0|-dzljw0,9,9,1|-dxstc1,9,9,1|-dxstc0,12,1,1|-dqyio1,12,1,1|-dqyio0,9,9,1|-dnprw1,9,9,1|-dnprw0,33,36,0|-dgvh81,33,36,0|-dgvh80,9,9,1|-deps01,9,9,1|-deps00,12,1,1|-d88g01,12,1,1|-d88g00,9,9,1|-d4zp81,9,9,1|-d4zp80,33,36,0|-cy5ek1,33,36,0|-cy5ek0,9,9,1|-cvzpc1,9,9,1|-cvzpc0,12,1,1|-cpidc1,12,1,1|-cpidc0,9,9,1|-cm9mk1,9,9,1|-cm9mk0,33,36,0|-cdzh81,33,36,0|-cdzh80,9,9,1|-c4mfw1,9,9,1|-c4mfw0,33,36,0|-bv9681,33,36,0|-bv9680,9,9,1|-blw4w1,9,9,1|-blw4w0,33,36,0|-bcj3k1,33,36,0|-bcj3k0,9,9,1|-b36281,9,9,1|-b36280,33,36,0|-att0w1,33,36,0|-att0w0,9,9,1|-akfzk1,9,9,1|-akfzk0,33,36,0|-9scvk1,33,36,0|-9scvk0,9,9,1|-9imvk1,9,9,1|-9imvk0,33,36,0|-999u81,33,36,0|-999u80,9,9,1|-8zwsw1,9,9,1|-8zwsw0,33,36,0|-8qjrk1,33,36,0|-8qjrk0,9,9,1|-8h6q81,9,9,1|-8h6q80,33,36,0|-87tow1,33,36,0|-87tow0,9,9,1|-7ygnk1,9,9,1|-7ygnk0,33,36,0|-7p3m81,33,36,0|-7p3m80,9,9,1|-7fqkw1,9,9,1|-7fqkw0,33,36,0|-76djk1,33,36,0|-76djk0,9,9,1|-6wnjk1,9,9,1|-6wnjk0,33,36,0|-6nai81,33,36,0|-6nai80,9,9,1|-6dxgw1,9,9,1|-6dxgw0,33,36,0|-64kfk1,33,36,0|-64kfk0,9,9,1|-5v7e81,9,9,1|-5v7e80,33,36,0|-5lucw1,33,36,0|-5lucw0,9,9,1|-5chbk1,9,9,1|-5chbk0,33,36,0|-534a81,33,36,0|-534a80,9,9,1|-4tr8w1,9,9,1|-4tr8w0,33,36,0|-4ke7k1,33,36,0|-4ke7k0,9,9,1|-4b1681,9,9,1|-4b1680,33,36,0|-41o4w1,33,36,0|-41o4w0,9,9,1|-3ry4w1,9,9,1|-3ry4w0,33,36,0|-3il3k1,33,36,0|-3il3k0,9,9,1|-398281,9,9,1|-398280,33,36,0|-2zv0w1,33,36,0|-2zv0w0,9,9,1|-2qhzk1,9,9,1|-2qhzk0,33,36,0|-2h4y81,33,36,0|-2h4y80,9,9,1|-27rww1,9,9,1|-27rww0,33,36,0|-1yevk1,33,36,0|-1yevk0,9,9,0|3rwo3z,9,9,0|3rwo40,12,1,1|419pfz,12,1,1|419pg0,9,9,0|4azpfz,9,9,0|4azpg0,12,1,1|4kcqrz,12,1,1|4kcqs0,9,9,0|4tps3z,9,9,0|4tps40,12,1,1|532w7z,12,1,1|532w80,9,9,0|5cfurz,9,9,0|5cfus0,12,1,1|5lsyvz,12,1,1|5lsyw0,9,9,0|5v607z,9,9,0|5v6080,12,1,1|64j1jz,12,1,1|64j1k0,9,9,0|6dw2vz,9,9,0|6dw2w0,12,1,1|6n947z,12,1,1|6n9480,9,9,0|6wm8bz,9,9,0|6wm8c0,12,1,1|75z6vz,12,1,1|75z6w0,9,9,0|7fc87z,9,9,0|7fc880,12,1,1|7p287z,12,1,1|7p2880,9,9,0|7yf9jz,9,9,0|7yf9k0,12,1,1|87savz,12,1,1|87saw0,9,9,0|8h5c7z,9,9,0|8h5c80,12,1,1|8qidjz,12,1,1|8qidk0,9,9,0|8zvevz,9,9,0|8zvew0,12,1,1|998g7z,12,1,1|998g80,9,9,0|9ilhjz,9,9,0|9ilhk0,12,1,1|9ryivz,12,1,1|9ryiw0,9,9,0|a1bk7z,9,9,0|a1bk80,12,1,1|aaoljz,12,1,1|aaolk0,9,9,0|ak1mvz,9,9,0|ak1mw0,12,1,1|atrmvz,12,1,1|atrmw0,9,9,0|b34o7z,9,9,0|b34o80,12,1,1|bchpjz,12,1,1|bchpk0,9,9,0|bluqvz,9,9,0|bluqw0,12,1,1|bv7s7z,12,1,1|bv7s80,5,1,0|c4kqrz,5,1,0|c4kqs0,12,1,1|cdxs3z,12,1,1|cdxs40,9,9,0|cnatfz,9,9,0|cnatg0,12,1,1|cwnurz,12,1,1|cwnus0,9,9,0|d60w3z,9,9,0|d60w40,12,1,1|dfdxfz,12,1,1|dfdxg0,9,9,0|dp3xfz,9,9,0|dp3xg0,12,1,1|dzwtfz,12,1,1|dzwtg0,9,9,0|e7u03z,9,9,0|e7u040,12,1,1|eimw3z,12,1,1|eimw40,9,9,0|eqk2rz,9,9,0|eqk2s0,12,1,1|f1cyrz,12,1,1|f1cys0,9,9,0|f9a5fz,9,9,0|f9a5g0,12,1,1|fkg03z,12,1,1|fkg040,9,9,0|fs083z,9,9,0|fs0840,12,1,1|g362rz,12,1,1|g362s0,9,9,0|gaqarz,9,9,0|gaqas0,12,1,1|glw5fz,12,1,1|glw5g0,9,9,0|gttc3z,9,9,0|gttc40,12,1,1|h4m83z,12,1,1|h4m840,9,9,0|hcjerz,9,9,0|hcjes0,12,1,1|hncarz,12,1,1|hncas0,9,9,0|hv9hfz,9,9,0|hv9hg0,12,1,1|i6fc3z,12,1,1|i6fc40,9,9,0|idzk3z,9,9,0|idzk40,12,1,1|ip5erz,12,1,1|ip5es0,9,9,0|iwpmrz,9,9,0|iwpms0,12,1,1|j7vhfz,12,1,1|j7vhg0,9,9,0|jffpfz,9,9,0|jffpg0,12,1,1|jqlk3z,12,1,1|jqlk40,9,9,0|jyiqrz,9,9,0|jyiqs0,12,1,1|k9bmrz,12,1,1|k9bms0,9,9,0|kh8tfz,9,9,0|kh8tg0,12,1,1|ks1pfz,12,1,1|ks1pg0,9,9,0|kzyw3z,9,9,0|kzyw40,12,1,1|lb4qrz,12,1,1|lb4qs0,9,9,0|lioyrz,9,9,0|lioys0,12,1,1|ltutfz,12,1,1|ltutg0,9,9,0|m1f1fz,9,9,0|m1f1g0,12,1,1|mckw3z,12,1,1|mckw40,9,9,0|mki2rz,9,9,0|mki2s0,12,1,1|mvayrz,12,1,1|mvays0,9,9,0|n385fz,9,9,0|n385g0,12,1,1|ne11fz,12,1,1|ne11g0,9,9,0|nly83z,9,9,0|nly840,12,1,1|nwr43z,12,1,1|nwr440,9,9,0|o4oarz,9,9,0|o4oas0,12,1,1|ofu5fz,12,1,1|ofu5g0,9,9,0|onedfz,9,9,0|onedg0,12,1,1|oyk83z,12,1,1|oyk840,9,9,0|p64g3z,9,9,0|p64g40,12,1,1|phaarz,12,1,1|phaas0,9,9,0|pp7hfz,9,9,0|pp7hg0,12,1,1|q00dfz,12,1,1|q00dg0,9,9,0|q7xk3z,9,9,0|q7xk40,12,1,1|qiqg3z,12,1,1|qiqg40,9,9,0|qqnmrz,9,9,0|qqnms0,12,1,1|r1thfz,12,1,1|r1thg0,9,9,0|r9dpfz,9,9,0|r9dpg0,12,1,1|rkjk3z,12,1,1|rkjk40,9,9,0|rs3s3z,9,9,0|rs3s40,12,1,1|s39mrz,12,1,1|s39ms0,9,9,0|sb6tfz,9,9,0|sb6tg0,12,1,1|slzpfz,12,1,1|slzpg0,9,9,0|stww3z,9,9,0|stww40,12,1,1|t4ps3z,12,1,1|t4ps40,9,9,0|tcmyrz,9,9,0|tcmys0,12,1,1|tnfurz,12,1,1|tnfus0,9,9,0|tvd1fz,9,9,0|tvd1g0,12,1,1|u6iw3z,12,1,1|u6iw40,9,9,0|ue343z,9,9,0|ue3440,12,1,1|up8yrz,12,1,1|up8ys0,9,9,0|uwt6rz,9,9,0|uwt6s0,12,1,1|v7z1fz,12,1,1|v7z1g0,9,9,0|vfw83z,9,9,0|vfw840,12,1,1|vqp43z,12,1,1|vqp440,9,9,0|vymarz,9,9,0|vymas0,12,1,1|w9f6rz,12,1,1|w9f6s0,9,9,0|whcdfz,9,9,0|whcdg0,12,1,1|wsi83z,12,1,1|wsi840,9,9,0|x02g3z,9,9,0|x02g40,12,1,1|xb8arz,12,1,1|xb8as0,9,9,0|xisirz,9,9,0|xisis0,12,1,1|xtydfz,12,1,1|xtydg0,9,9,0|y1ilfz,9,9,0|y1ilg0,12,1,1|ycog3z,12,1,1|ycog40,9,9,0|yklmrz,9,9,0|yklms0,12,1,1|yveirz,12,1,1|yveis0,9,9,0|z3bpfz,9,9,0|z3bpg0,12,1,1|ze4lfz,12,1,1|ze4lg0,9,9,0","Atlantic/Bermuda|,0,233,0|-15r0xbu,41,233,0|-rivvzv,41,233,0|-rivvzu,64,234,1|-r9qc3v,64,234,1|-r9qc3u,41,233,0|-qzp5bv,41,233,0|-qzp5bu,64,234,1|-qrq6rv,64,234,1|-qrq6ru,41,233,0|-kvj2fv,41,233,0|-kvj2fu,24,38,0|-eljwo1,24,38,0|-eljwo0,42,35,1|-e75gs1,42,35,1|-e75gs0,24,38,0|-dz87c1,24,38,0|-dz87c0,42,35,1|-dnpgs1,42,35,1|-dnpgs0,24,38,0|-dgv3c1,24,38,0|-dgv3c0,42,35,1|-d4mfg1,42,35,1|-d4mfg0,24,38,0|-cy50o1,24,38,0|-cy50o0,42,35,1|-clwcs1,42,35,1|-clwcs0,24,38,0|-bt38o1,24,38,0|-bt38o0,42,35,1|-bmyy41,42,35,1|-bmyy40,24,38,0|-ba07c1,24,38,0|-ba07c0,42,35,1|-b4lu41,42,35,1|-b4lu40,24,38,0|-ara4o1,24,38,0|-ara4o0,42,35,1|-alvrg1,42,35,1|-alvrg0,24,38,0|-a873c1,24,38,0|-a873c0,42,35,1|-a35os1,42,35,1|-a35os0,24,38,0|-9ph0o1,24,38,0|-9ph0o0,42,35,1|-9kfm41,42,35,1|-9kfm40,24,38,0|-96qy01,24,38,0|-96qy00,42,35,1|-91cks1,42,35,1|-91cks0,24,38,0|-73hoo1,24,38,0|-73hoo0,42,35,1|-6vkks1,42,35,1|-6vkks0,24,38,0|296onz,24,38,0|296oo0,42,35,1|2ijn7z,42,35,1|2ijn80,24,38,0|2rwrbz,24,38,0|2rwrc0,42,35,1|319pvz,42,35,1|319pw0,24,38,0|3amtzz,24,38,0|3amu00,42,35,1|3kcr7z,42,35,1|3kcr80,24,38,0|3tcwnz,24,38,0|3tcwo0,42,35,1|432tvz,42,35,1|432tw0,24,38,0|4cfxzz,24,38,0|4cfy00,42,35,1|4lswjz,42,35,1|4lswk0,24,38,0|4v60nz,24,38,0|4v60o0,42,35,1|54iz7z,42,35,1|54iz80,24,38,0|5dw3bz,24,38,0|5dw3c0,42,35,1|5n91vz,42,35,1|5n91w0,24,38,0|5wm5zz,24,38,0|5wm600,42,35,1|65z4jz,42,35,1|65z4k0,24,38,0|6fc8nz,24,38,0|6fc8o0,42,35,1|6p25vz,42,35,1|6p25w0,24,38,0|6y2bbz,24,38,0|6y2bc0,42,35,1|77s8jz,42,35,1|77s8k0,24,38,0|7h5cnz,24,38,0|7h5co0,42,35,1|7qib7z,42,35,1|7qib80,24,38,0|7zvfbz,24,38,0|7zvfc0,42,35,1|898dvz,42,35,1|898dw0,24,38,0|8ilhzz,24,38,0|8ili00,42,35,1|8rygjz,42,35,1|8rygk0,24,38,0|908onz,24,38,0|908oo0,42,35,1|9aoj7z,42,35,1|9aoj80,24,38,0|9iyrbz,24,38,0|9iyrc0,42,35,1|9trkjz,42,35,1|9trkk0,24,38,0|a1otzz,24,38,0|a1ou00,42,35,1|achn7z,42,35,1|achn80,24,38,0|akewnz,24,38,0|akewo0,42,35,1|av7pvz,42,35,1|av7pw0,24,38,0|b3hxzz,24,38,0|b3hy00,42,35,1|bdxsjz,42,35,1|bdxsk0,24,38,0|bm80nz,24,38,0|bm80o0,42,35,1|bwnv7z,42,35,1|bwnv80,24,38,0|c4y3bz,24,38,0|c4y3c0,42,35,1|cfqwjz,42,35,1|cfqwk0,24,38,0|cno5zz,24,38,0|cno600,42,35,1|cygz7z,42,35,1|cygz80,24,38,0|d6e8nz,24,38,0|d6e8o0,42,35,1|dh71vz,42,35,1|dh71w0,24,38,0|dph9zz,24,38,0|dpha00,42,35,1|dzx4jz,42,35,1|dzx4k0,24,38,0|e87cnz,24,38,0|e87co0,42,35,1|ein77z,42,35,1|ein780,24,38,0|eqxfbz,24,38,0|eqxfc0,42,35,1|f1d9vz,42,35,1|f1d9w0,24,38,0|f9nhzz,24,38,0|f9ni00,42,35,1|fkgb7z,42,35,1|fkgb80,24,38,0|fsdknz,24,38,0|fsdko0,42,35,1|g36dvz,42,35,1|g36dw0,24,38,0|gb3nbz,24,38,0|gb3nc0,42,35,1|glwgjz,42,35,1|glwgk0,24,38,0|gu6onz,24,38,0|gu6oo0,42,35,1|h4mj7z,42,35,1|h4mj80,24,38,0|hcwrbz,24,38,0|hcwrc0,42,35,1|hnclvz,42,35,1|hnclw0,24,38,0|hvmtzz,24,38,0|hvmu00,42,35,1|i6fn7z,42,35,1|i6fn80,24,38,0|iecwnz,24,38,0|iecwo0,42,35,1|ip5pvz,42,35,1|ip5pw0,24,38,0|ix2zbz,24,38,0|ix2zc0,42,35,1|j7vsjz,42,35,1|j7vsk0,24,38,0|jeq5zz,24,38,0|jeq600,42,35,1|jqytvz,42,35,1|jqytw0,24,38,0|jxg8nz,24,38,0|jxg8o0,42,35,1|k9owjz,42,35,1|k9owk0,24,38,0|kg6bbz,24,38,0|kg6bc0,42,35,1|ksez7z,42,35,1|ksez80,24,38,0|kz9cnz,24,38,0|kz9co0,42,35,1|lbi0jz,42,35,1|lbi0k0,24,38,0|lhzfbz,24,38,0|lhzfc0,42,35,1|lu837z,42,35,1|lu8380,24,38,0|m0phzz,24,38,0|m0pi00,42,35,1|mcy5vz,42,35,1|mcy5w0,24,38,0|mjfknz,24,38,0|mjfko0,42,35,1|mvo8jz,42,35,1|mvo8k0,24,38,0|n25nbz,24,38,0|n25nc0,42,35,1|neeb7z,42,35,1|neeb80,24,38,0|nkvpzz,24,38,0|nkvq00,42,35,1|nx4dvz,42,35,1|nx4dw0,24,38,0|o3yrbz,24,38,0|o3yrc0,42,35,1|og7f7z,42,35,1|og7f80,24,38,0|omotzz,24,38,0|omou00,42,35,1|oyxhvz,42,35,1|oyxhw0,24,38,0|p5ewnz,24,38,0|p5ewo0,42,35,1|phnkjz,42,35,1|phnkk0,24,38,0|po4zbz,24,38,0|po4zc0,42,35,1|q0dn7z,42,35,1|q0dn80,24,38,0|q6v1zz,24,38,0|q6v200,42,35,1|qj3pvz,42,35,1|qj3pw0,24,38,0|qpy3bz,24,38,0|qpy3c0,42,35,1|r26r7z,42,35,1|r26r80,24,38,0|r8o5zz,24,38,0|r8o600,42,35,1|rkwtvz,42,35,1|rkwtw0,24,38,0|rre8nz,24,38,0|rre8o0,42,35,1|s3mwjz,42,35,1|s3mwk0,24,38,0|sa4bbz,24,38,0|sa4bc0,42,35,1|smcz7z,42,35,1|smcz80,24,38,0|ssudzz,24,38,0|ssue00,42,35,1|t531vz,42,35,1|t531w0,24,38,0|tbkgnz,24,38,0|tbkgo0,42,35,1|tnt4jz,42,35,1|tnt4k0,24,38,0|tunhzz,24,38,0|tuni00,42,35,1|u6w5vz,42,35,1|u6w5w0,24,38,0|uddknz,24,38,0|uddko0,42,35,1|upm8jz,42,35,1|upm8k0,24,38,0|uw3nbz,24,38,0|uw3nc0,42,35,1|v8cb7z,42,35,1|v8cb80,24,38,0|vetpzz,24,38,0|vetq00,42,35,1|vr2dvz,42,35,1|vr2dw0,24,38,0|vxjsnz,24,38,0|vxjso0,42,35,1|w9sgjz,42,35,1|w9sgk0,24,38,0|wgmtzz,24,38,0|wgmu00,42,35,1|wsvhvz,42,35,1|wsvhw0,24,38,0|wzcwnz,24,38,0|wzcwo0,42,35,1|xblkjz,42,35,1|xblkk0,24,38,0|xi2zbz,24,38,0|xi2zc0,42,35,1|xubn7z,42,35,1|xubn80,24,38,0|y0t1zz,24,38,0|y0t200,42,35,1|yd1pvz,42,35,1|yd1pw0,24,38,0|yjj4nz,24,38,0|yjj4o0,42,35,1|yvrsjz,42,35,1|yvrsk0,24,38,0|z297bz,24,38,0|z297c0,42,35,1|zehv7z,42,35,1|zehv80,24,38,0","Atlantic/Canary|,0,235,0|-oytbtc,9,9,0|-c4xh41,9,9,0|-c4xh40,5,1,0|5csqnz,5,1,0|5csqo0,6,6,1|5lsw3z,6,6,1|5lsw40,5,1,0|5v5xfz,5,1,0|5v5xg0,6,6,1|64iyrz,6,6,1|64iys0,5,1,0|6dw03z,5,1,0|6dw040,6,6,1|6n91fz,6,6,1|6n91g0,5,1,0|6wm2rz,5,1,0|6wm2s0,6,6,1|75z43z,6,6,1|75z440,5,1,0|7fc5fz,5,1,0|7fc5g0,6,6,1|7p25fz,6,6,1|7p25g0,5,1,0|7yf6rz,5,1,0|7yf6s0,6,6,1|87s83z,6,6,1|87s840,5,1,0|8h59fz,5,1,0|8h59g0,6,6,1|8qiarz,6,6,1|8qias0,5,1,0|8zvc3z,5,1,0|8zvc40,6,6,1|998dfz,6,6,1|998dg0,5,1,0|9ilerz,5,1,0|9iles0,6,6,1|9ryg3z,6,6,1|9ryg40,5,1,0|a1bhfz,5,1,0|a1bhg0,6,6,1|aaoirz,6,6,1|aaois0,5,1,0|ak1k3z,5,1,0|ak1k40,6,6,1|atrk3z,6,6,1|atrk40,5,1,0|b34lfz,5,1,0|b34lg0,6,6,1|bchmrz,6,6,1|bchms0,5,1,0|bluo3z,5,1,0|bluo40,6,6,1|bv7pfz,6,6,1|bv7pg0,5,1,0|c4kqrz,5,1,0|c4kqs0,6,6,1|cdxs3z,6,6,1|cdxs40,5,1,0|cnatfz,5,1,0|cnatg0,6,6,1|cwnurz,6,6,1|cwnus0,5,1,0|d60w3z,5,1,0|d60w40,6,6,1|dfdxfz,6,6,1|dfdxg0,5,1,0|dp3xfz,5,1,0|dp3xg0,6,6,1|dzwtfz,6,6,1|dzwtg0,5,1,0|e7u03z,5,1,0|e7u040,6,6,1|eimw3z,6,6,1|eimw40,5,1,0|eqk2rz,5,1,0|eqk2s0,6,6,1|f1cyrz,6,6,1|f1cys0,5,1,0|f9a5fz,5,1,0|f9a5g0,6,6,1|fkg03z,6,6,1|fkg040,5,1,0|fs083z,5,1,0|fs0840,6,6,1|g362rz,6,6,1|g362s0,5,1,0|gaqarz,5,1,0|gaqas0,6,6,1|glw5fz,6,6,1|glw5g0,5,1,0|gttc3z,5,1,0|gttc40,6,6,1|h4m83z,6,6,1|h4m840,5,1,0|hcjerz,5,1,0|hcjes0,6,6,1|hncarz,6,6,1|hncas0,5,1,0|hv9hfz,5,1,0|hv9hg0,6,6,1|i6fc3z,6,6,1|i6fc40,5,1,0|idzk3z,5,1,0|idzk40,6,6,1|ip5erz,6,6,1|ip5es0,5,1,0|iwpmrz,5,1,0|iwpms0,6,6,1|j7vhfz,6,6,1|j7vhg0,5,1,0|jffpfz,5,1,0|jffpg0,6,6,1|jqlk3z,6,6,1|jqlk40,5,1,0|jyiqrz,5,1,0|jyiqs0,6,6,1|k9bmrz,6,6,1|k9bms0,5,1,0|kh8tfz,5,1,0|kh8tg0,6,6,1|ks1pfz,6,6,1|ks1pg0,5,1,0|kzyw3z,5,1,0|kzyw40,6,6,1|lb4qrz,6,6,1|lb4qs0,5,1,0|lioyrz,5,1,0|lioys0,6,6,1|ltutfz,6,6,1|ltutg0,5,1,0|m1f1fz,5,1,0|m1f1g0,6,6,1|mckw3z,6,6,1|mckw40,5,1,0|mki2rz,5,1,0|mki2s0,6,6,1|mvayrz,6,6,1|mvays0,5,1,0|n385fz,5,1,0|n385g0,6,6,1|ne11fz,6,6,1|ne11g0,5,1,0|nly83z,5,1,0|nly840,6,6,1|nwr43z,6,6,1|nwr440,5,1,0|o4oarz,5,1,0|o4oas0,6,6,1|ofu5fz,6,6,1|ofu5g0,5,1,0|onedfz,5,1,0|onedg0,6,6,1|oyk83z,6,6,1|oyk840,5,1,0|p64g3z,5,1,0|p64g40,6,6,1|phaarz,6,6,1|phaas0,5,1,0|pp7hfz,5,1,0|pp7hg0,6,6,1|q00dfz,6,6,1|q00dg0,5,1,0|q7xk3z,5,1,0|q7xk40,6,6,1|qiqg3z,6,6,1|qiqg40,5,1,0|qqnmrz,5,1,0|qqnms0,6,6,1|r1thfz,6,6,1|r1thg0,5,1,0|r9dpfz,5,1,0|r9dpg0,6,6,1|rkjk3z,6,6,1|rkjk40,5,1,0|rs3s3z,5,1,0|rs3s40,6,6,1|s39mrz,6,6,1|s39ms0,5,1,0|sb6tfz,5,1,0|sb6tg0,6,6,1|slzpfz,6,6,1|slzpg0,5,1,0|stww3z,5,1,0|stww40,6,6,1|t4ps3z,6,6,1|t4ps40,5,1,0|tcmyrz,5,1,0|tcmys0,6,6,1|tnfurz,6,6,1|tnfus0,5,1,0|tvd1fz,5,1,0|tvd1g0,6,6,1|u6iw3z,6,6,1|u6iw40,5,1,0|ue343z,5,1,0|ue3440,6,6,1|up8yrz,6,6,1|up8ys0,5,1,0|uwt6rz,5,1,0|uwt6s0,6,6,1|v7z1fz,6,6,1|v7z1g0,5,1,0|vfw83z,5,1,0|vfw840,6,6,1|vqp43z,6,6,1|vqp440,5,1,0|vymarz,5,1,0|vymas0,6,6,1|w9f6rz,6,6,1|w9f6s0,5,1,0|whcdfz,5,1,0|whcdg0,6,6,1|wsi83z,6,6,1|wsi840,5,1,0|x02g3z,5,1,0|x02g40,6,6,1|xb8arz,6,6,1|xb8as0,5,1,0|xisirz,5,1,0|xisis0,6,6,1|xtydfz,6,6,1|xtydg0,5,1,0|y1ilfz,5,1,0|y1ilg0,6,6,1|ycog3z,6,6,1|ycog40,5,1,0|yklmrz,5,1,0|yklms0,6,6,1|yveirz,6,6,1|yveis0,5,1,0|z3bpfz,5,1,0|z3bpg0,6,6,1|ze4lfz,6,6,1|ze4lg0,5,1,0","Atlantic/Cape_Verde|,0,236,0|-u9rbs0,33,36,0|-e9kqg1,33,36,0|-e9kqg0,9,9,1|-cmxp81,9,9,1|-cmxp80,33,36,0|32t73z,33,36,0|32t740,9,9,0","Atlantic/Faroe|,0,237,0|-wcehew,5,1,0|5v5xfz,5,1,0|5v5xg0,6,6,1|64iyrz,6,6,1|64iys0,5,1,0|6dw03z,5,1,0|6dw040,6,6,1|6n91fz,6,6,1|6n91g0,5,1,0|6wm2rz,5,1,0|6wm2s0,6,6,1|75z43z,6,6,1|75z440,5,1,0|7fc5fz,5,1,0|7fc5g0,6,6,1|7p25fz,6,6,1|7p25g0,5,1,0|7yf6rz,5,1,0|7yf6s0,6,6,1|87s83z,6,6,1|87s840,5,1,0|8h59fz,5,1,0|8h59g0,6,6,1|8qiarz,6,6,1|8qias0,5,1,0|8zvc3z,5,1,0|8zvc40,6,6,1|998dfz,6,6,1|998dg0,5,1,0|9ilerz,5,1,0|9iles0,6,6,1|9ryg3z,6,6,1|9ryg40,5,1,0|a1bhfz,5,1,0|a1bhg0,6,6,1|aaoirz,6,6,1|aaois0,5,1,0|ak1k3z,5,1,0|ak1k40,6,6,1|atrk3z,6,6,1|atrk40,5,1,0|b34lfz,5,1,0|b34lg0,6,6,1|bchmrz,6,6,1|bchms0,5,1,0|bluo3z,5,1,0|bluo40,6,6,1|bv7pfz,6,6,1|bv7pg0,5,1,0|c4kqrz,5,1,0|c4kqs0,6,6,1|cdxs3z,6,6,1|cdxs40,5,1,0|cnatfz,5,1,0|cnatg0,6,6,1|cwnurz,6,6,1|cwnus0,5,1,0|d60w3z,5,1,0|d60w40,6,6,1|dfdxfz,6,6,1|dfdxg0,5,1,0|dp3xfz,5,1,0|dp3xg0,6,6,1|dzwtfz,6,6,1|dzwtg0,5,1,0|e7u03z,5,1,0|e7u040,6,6,1|eimw3z,6,6,1|eimw40,5,1,0|eqk2rz,5,1,0|eqk2s0,6,6,1|f1cyrz,6,6,1|f1cys0,5,1,0|f9a5fz,5,1,0|f9a5g0,6,6,1|fkg03z,6,6,1|fkg040,5,1,0|fs083z,5,1,0|fs0840,6,6,1|g362rz,6,6,1|g362s0,5,1,0|gaqarz,5,1,0|gaqas0,6,6,1|glw5fz,6,6,1|glw5g0,5,1,0|gttc3z,5,1,0|gttc40,6,6,1|h4m83z,6,6,1|h4m840,5,1,0|hcjerz,5,1,0|hcjes0,6,6,1|hncarz,6,6,1|hncas0,5,1,0|hv9hfz,5,1,0|hv9hg0,6,6,1|i6fc3z,6,6,1|i6fc40,5,1,0|idzk3z,5,1,0|idzk40,6,6,1|ip5erz,6,6,1|ip5es0,5,1,0|iwpmrz,5,1,0|iwpms0,6,6,1|j7vhfz,6,6,1|j7vhg0,5,1,0|jffpfz,5,1,0|jffpg0,6,6,1|jqlk3z,6,6,1|jqlk40,5,1,0|jyiqrz,5,1,0|jyiqs0,6,6,1|k9bmrz,6,6,1|k9bms0,5,1,0|kh8tfz,5,1,0|kh8tg0,6,6,1|ks1pfz,6,6,1|ks1pg0,5,1,0|kzyw3z,5,1,0|kzyw40,6,6,1|lb4qrz,6,6,1|lb4qs0,5,1,0|lioyrz,5,1,0|lioys0,6,6,1|ltutfz,6,6,1|ltutg0,5,1,0|m1f1fz,5,1,0|m1f1g0,6,6,1|mckw3z,6,6,1|mckw40,5,1,0|mki2rz,5,1,0|mki2s0,6,6,1|mvayrz,6,6,1|mvays0,5,1,0|n385fz,5,1,0|n385g0,6,6,1|ne11fz,6,6,1|ne11g0,5,1,0|nly83z,5,1,0|nly840,6,6,1|nwr43z,6,6,1|nwr440,5,1,0|o4oarz,5,1,0|o4oas0,6,6,1|ofu5fz,6,6,1|ofu5g0,5,1,0|onedfz,5,1,0|onedg0,6,6,1|oyk83z,6,6,1|oyk840,5,1,0|p64g3z,5,1,0|p64g40,6,6,1|phaarz,6,6,1|phaas0,5,1,0|pp7hfz,5,1,0|pp7hg0,6,6,1|q00dfz,6,6,1|q00dg0,5,1,0|q7xk3z,5,1,0|q7xk40,6,6,1|qiqg3z,6,6,1|qiqg40,5,1,0|qqnmrz,5,1,0|qqnms0,6,6,1|r1thfz,6,6,1|r1thg0,5,1,0|r9dpfz,5,1,0|r9dpg0,6,6,1|rkjk3z,6,6,1|rkjk40,5,1,0|rs3s3z,5,1,0|rs3s40,6,6,1|s39mrz,6,6,1|s39ms0,5,1,0|sb6tfz,5,1,0|sb6tg0,6,6,1|slzpfz,6,6,1|slzpg0,5,1,0|stww3z,5,1,0|stww40,6,6,1|t4ps3z,6,6,1|t4ps40,5,1,0|tcmyrz,5,1,0|tcmys0,6,6,1|tnfurz,6,6,1|tnfus0,5,1,0|tvd1fz,5,1,0|tvd1g0,6,6,1|u6iw3z,6,6,1|u6iw40,5,1,0|ue343z,5,1,0|ue3440,6,6,1|up8yrz,6,6,1|up8ys0,5,1,0|uwt6rz,5,1,0|uwt6s0,6,6,1|v7z1fz,6,6,1|v7z1g0,5,1,0|vfw83z,5,1,0|vfw840,6,6,1|vqp43z,6,6,1|vqp440,5,1,0|vymarz,5,1,0|vymas0,6,6,1|w9f6rz,6,6,1|w9f6s0,5,1,0|whcdfz,5,1,0|whcdg0,6,6,1|wsi83z,6,6,1|wsi840,5,1,0|x02g3z,5,1,0|x02g40,6,6,1|xb8arz,6,6,1|xb8as0,5,1,0|xisirz,5,1,0|xisis0,6,6,1|xtydfz,6,6,1|xtydg0,5,1,0|y1ilfz,5,1,0|y1ilg0,6,6,1|ycog3z,6,6,1|ycog40,5,1,0|yklmrz,5,1,0|yklms0,6,6,1|yveirz,6,6,1|yveis0,5,1,0|z3bpfz,5,1,0|z3bpg0,6,6,1|ze4lfz,6,6,1|ze4lg0,5,1,0","Atlantic/Madeira|,0,238,0|-18vsfjc,123,238,0|-u9rek1,123,238,0|-u9rek0,9,9,0|-rxwyo1,9,9,0|-rxwyo0,12,1,1|-rqx181,12,1,1|-rqx180,9,9,0|-rkqw01,9,9,0|-rkqw00,12,1,1|-r90o01,12,1,1|-r90o00,9,9,0|-r1x401,9,9,0|-r1x400,12,1,1|-qq8qo1,12,1,1|-qq8qo0,9,9,0|-qj71c1,9,9,0|-qj71c0,12,1,1|-q7gtc1,12,1,1|-q7gtc0,9,9,0|-q0d9c1,9,9,0|-q0d9c0,12,1,1|-pon1c1,12,1,1|-pon1c0,9,9,0|-phlc01,9,9,0|-phlc00,12,1,1|-p5v401,12,1,1|-p5v400,9,9,0|-nuso01,9,9,0|-nuso00,12,1,1|-nlhhc1,12,1,1|-nlhhc0,9,9,0|-mt6yo1,9,9,0|-mt6yo0,12,1,1|-mkjuo1,12,1,1|-mkjuo0,9,9,0|-matuo1,9,9,0|-matuo0,12,1,1|-m1ts01,12,1,1|-m1ts00,9,9,0|-lrqtc1,9,9,0|-lrqtc0,12,1,1|-liqqo1,12,1,1|-liqqo0,9,9,0|-l8ns01,9,9,0|-l8ns00,12,1,1|-l00o01,12,1,1|-l00o00,9,9,0|-k77mo1,9,9,0|-k77mo0,12,1,1|-jykio1,12,1,1|-jykio0,9,9,0|-jp7hc1,9,9,0|-jp7hc0,12,1,1|-jfug01,12,1,1|-jfug00,9,9,0|-inedc1,9,9,0|-inedc0,12,1,1|-ie1c01,12,1,1|-ie1c00,9,9,0|-i519c1,9,9,0|-i519c0,12,1,1|-hvb9c1,12,1,1|-hvb9c0,9,9,0|-hl8ao1,9,9,0|-hl8ao0,12,1,1|-hcl6o1,12,1,1|-hcl6o0,9,9,0|-h385c1,9,9,0|-h385c0,12,1,1|-gtv401,12,1,1|-gtv400,9,9,0|-gkv1c1,9,9,0|-gkv1c0,12,1,1|-gb51c1,12,1,1|-gb51c0,9,9,0|-g122o1,9,9,0|-g122o0,12,1,1|-fpw801,12,1,1|-fpw800,9,9,0|-fkuqo1,9,9,0|-fkuqo0,12,1,1|-f9bxc1,12,1,1|-f9bxc0,9,9,0|-ezyw01,9,9,0|-ezyw00,12,1,1|-eqk001,12,1,1|-eqk000,9,9,0|-eibpc1,9,9,0|-eibpc0,12,1,1|-eg6041,12,1,1|-eg6040,13,6,1|-eaelg1,13,6,1|-eaelg0,12,1,1|-e6sw01,12,1,1|-e6sw00,9,9,0|-dzlmo1,9,9,0|-dzlmo0,12,1,1|-dxsw41,12,1,1|-dxsw40,13,6,1|-dqylg1,13,6,1|-dqylg0,12,1,1|-dnpuo1,12,1,1|-dnpuo0,9,9,0|-dgvk01,9,9,0|-dgvk00,12,1,1|-depus1,12,1,1|-depus0,13,6,1|-d88is1,13,6,1|-d88is0,12,1,1|-d4zs01,12,1,1|-d4zs00,9,9,0|-cy5hc1,9,9,0|-cy5hc0,12,1,1|-cvzs41,12,1,1|-cvzs40,13,6,1|-cpig41,13,6,1|-cpig40,12,1,1|-cm9pc1,12,1,1|-cm9pc0,9,9,0|-cdzk01,9,9,0|-cdzk00,12,1,1|-c4mio1,12,1,1|-c4mio0,9,9,0|-bv9901,9,9,0|-bv9900,12,1,1|-blw7o1,12,1,1|-blw7o0,9,9,0|-bcj6c1,9,9,0|-bcj6c0,12,1,1|-b36501,12,1,1|-b36500,9,9,0|-att3o1,9,9,0|-att3o0,12,1,1|-akg2c1,12,1,1|-akg2c0,9,9,0|-9scyc1,9,9,0|-9scyc0,12,1,1|-9imyc1,12,1,1|-9imyc0,9,9,0|-999x01,9,9,0|-999x00,12,1,1|-8zwvo1,12,1,1|-8zwvo0,9,9,0|-8qjuc1,9,9,0|-8qjuc0,12,1,1|-8h6t01,12,1,1|-8h6t00,9,9,0|-87tro1,9,9,0|-87tro0,12,1,1|-7ygqc1,12,1,1|-7ygqc0,9,9,0|-7p3p01,9,9,0|-7p3p00,12,1,1|-7fqno1,12,1,1|-7fqno0,9,9,0|-76dmc1,9,9,0|-76dmc0,12,1,1|-6wnmc1,12,1,1|-6wnmc0,9,9,0|-6nal01,9,9,0|-6nal00,12,1,1|-6dxjo1,12,1,1|-6dxjo0,9,9,0|-64kic1,9,9,0|-64kic0,12,1,1|-5v7h01,12,1,1|-5v7h00,9,9,0|-5lufo1,9,9,0|-5lufo0,12,1,1|-5chec1,12,1,1|-5chec0,9,9,0|-534d01,9,9,0|-534d00,12,1,1|-4trbo1,12,1,1|-4trbo0,9,9,0|-4keac1,9,9,0|-4keac0,12,1,1|-4b1901,12,1,1|-4b1900,9,9,0|-41o7o1,9,9,0|-41o7o0,12,1,1|-3ry7o1,12,1,1|-3ry7o0,9,9,0|-3il6c1,9,9,0|-3il6c0,12,1,1|-398501,12,1,1|-398500,9,9,0|-2zv3o1,9,9,0|-2zv3o0,12,1,1|-2qi2c1,12,1,1|-2qi2c0,9,9,0|-2h5101,9,9,0|-2h5100,12,1,1|-27rzo1,12,1,1|-27rzo0,9,9,0|-1yeyc1,9,9,0|-1yeyc0,5,1,0|3rwlbz,5,1,0|3rwlc0,6,6,1|419mnz,6,6,1|419mo0,5,1,0|4azmnz,5,1,0|4azmo0,6,6,1|4kcnzz,6,6,1|4kco00,5,1,0|4tppbz,5,1,0|4tppc0,6,6,1|532tfz,6,6,1|532tg0,5,1,0|5cfrzz,5,1,0|5cfs00,6,6,1|5lsw3z,6,6,1|5lsw40,5,1,0|5v5xfz,5,1,0|5v5xg0,6,6,1|64iyrz,6,6,1|64iys0,5,1,0|6dw03z,5,1,0|6dw040,6,6,1|6n91fz,6,6,1|6n91g0,5,1,0|6wm5jz,5,1,0|6wm5k0,6,6,1|75z43z,6,6,1|75z440,5,1,0|7fc5fz,5,1,0|7fc5g0,6,6,1|7p25fz,6,6,1|7p25g0,5,1,0|7yf6rz,5,1,0|7yf6s0,6,6,1|87s83z,6,6,1|87s840,5,1,0|8h59fz,5,1,0|8h59g0,6,6,1|8qiarz,6,6,1|8qias0,5,1,0|8zvc3z,5,1,0|8zvc40,6,6,1|998dfz,6,6,1|998dg0,5,1,0|9ilerz,5,1,0|9iles0,6,6,1|9ryg3z,6,6,1|9ryg40,5,1,0|a1bhfz,5,1,0|a1bhg0,6,6,1|aaoirz,6,6,1|aaois0,5,1,0|ak1k3z,5,1,0|ak1k40,6,6,1|atrk3z,6,6,1|atrk40,5,1,0|b34lfz,5,1,0|b34lg0,6,6,1|bchmrz,6,6,1|bchms0,5,1,0|bluo3z,5,1,0|bluo40,6,6,1|bv7pfz,6,6,1|bv7pg0,5,1,0|c4kqrz,5,1,0|c4kqs0,6,6,1|cdxs3z,6,6,1|cdxs40,5,1,0|cnatfz,5,1,0|cnatg0,6,6,1|cwnurz,6,6,1|cwnus0,5,1,0|d60w3z,5,1,0|d60w40,6,6,1|dfdxfz,6,6,1|dfdxg0,5,1,0|dp3xfz,5,1,0|dp3xg0,6,6,1|dzwtfz,6,6,1|dzwtg0,5,1,0|e7u03z,5,1,0|e7u040,6,6,1|eimw3z,6,6,1|eimw40,5,1,0|eqk2rz,5,1,0|eqk2s0,6,6,1|f1cyrz,6,6,1|f1cys0,5,1,0|f9a5fz,5,1,0|f9a5g0,6,6,1|fkg03z,6,6,1|fkg040,5,1,0|fs083z,5,1,0|fs0840,6,6,1|g362rz,6,6,1|g362s0,5,1,0|gaqarz,5,1,0|gaqas0,6,6,1|glw5fz,6,6,1|glw5g0,5,1,0|gttc3z,5,1,0|gttc40,6,6,1|h4m83z,6,6,1|h4m840,5,1,0|hcjerz,5,1,0|hcjes0,6,6,1|hncarz,6,6,1|hncas0,5,1,0|hv9hfz,5,1,0|hv9hg0,6,6,1|i6fc3z,6,6,1|i6fc40,5,1,0|idzk3z,5,1,0|idzk40,6,6,1|ip5erz,6,6,1|ip5es0,5,1,0|iwpmrz,5,1,0|iwpms0,6,6,1|j7vhfz,6,6,1|j7vhg0,5,1,0|jffpfz,5,1,0|jffpg0,6,6,1|jqlk3z,6,6,1|jqlk40,5,1,0|jyiqrz,5,1,0|jyiqs0,6,6,1|k9bmrz,6,6,1|k9bms0,5,1,0|kh8tfz,5,1,0|kh8tg0,6,6,1|ks1pfz,6,6,1|ks1pg0,5,1,0|kzyw3z,5,1,0|kzyw40,6,6,1|lb4qrz,6,6,1|lb4qs0,5,1,0|lioyrz,5,1,0|lioys0,6,6,1|ltutfz,6,6,1|ltutg0,5,1,0|m1f1fz,5,1,0|m1f1g0,6,6,1|mckw3z,6,6,1|mckw40,5,1,0|mki2rz,5,1,0|mki2s0,6,6,1|mvayrz,6,6,1|mvays0,5,1,0|n385fz,5,1,0|n385g0,6,6,1|ne11fz,6,6,1|ne11g0,5,1,0|nly83z,5,1,0|nly840,6,6,1|nwr43z,6,6,1|nwr440,5,1,0|o4oarz,5,1,0|o4oas0,6,6,1|ofu5fz,6,6,1|ofu5g0,5,1,0|onedfz,5,1,0|onedg0,6,6,1|oyk83z,6,6,1|oyk840,5,1,0|p64g3z,5,1,0|p64g40,6,6,1|phaarz,6,6,1|phaas0,5,1,0|pp7hfz,5,1,0|pp7hg0,6,6,1|q00dfz,6,6,1|q00dg0,5,1,0|q7xk3z,5,1,0|q7xk40,6,6,1|qiqg3z,6,6,1|qiqg40,5,1,0|qqnmrz,5,1,0|qqnms0,6,6,1|r1thfz,6,6,1|r1thg0,5,1,0|r9dpfz,5,1,0|r9dpg0,6,6,1|rkjk3z,6,6,1|rkjk40,5,1,0|rs3s3z,5,1,0|rs3s40,6,6,1|s39mrz,6,6,1|s39ms0,5,1,0|sb6tfz,5,1,0|sb6tg0,6,6,1|slzpfz,6,6,1|slzpg0,5,1,0|stww3z,5,1,0|stww40,6,6,1|t4ps3z,6,6,1|t4ps40,5,1,0|tcmyrz,5,1,0|tcmys0,6,6,1|tnfurz,6,6,1|tnfus0,5,1,0|tvd1fz,5,1,0|tvd1g0,6,6,1|u6iw3z,6,6,1|u6iw40,5,1,0|ue343z,5,1,0|ue3440,6,6,1|up8yrz,6,6,1|up8ys0,5,1,0|uwt6rz,5,1,0|uwt6s0,6,6,1|v7z1fz,6,6,1|v7z1g0,5,1,0|vfw83z,5,1,0|vfw840,6,6,1|vqp43z,6,6,1|vqp440,5,1,0|vymarz,5,1,0|vymas0,6,6,1|w9f6rz,6,6,1|w9f6s0,5,1,0|whcdfz,5,1,0|whcdg0,6,6,1|wsi83z,6,6,1|wsi840,5,1,0|x02g3z,5,1,0|x02g40,6,6,1|xb8arz,6,6,1|xb8as0,5,1,0|xisirz,5,1,0|xisis0,6,6,1|xtydfz,6,6,1|xtydg0,5,1,0|y1ilfz,5,1,0|y1ilg0,6,6,1|ycog3z,6,6,1|ycog40,5,1,0|yklmrz,5,1,0|yklms0,6,6,1|yveirz,6,6,1|yveis0,5,1,0|z3bpfz,5,1,0|z3bpg0,6,6,1|ze4lfz,6,6,1|ze4lg0,5,1,0","Atlantic/Reykjavik|,0,239,0|-wcwx9c,9,9,0|-rl7k01,9,9,0|-rl7k00,12,1,1|-r8ph81,12,1,1|-r8ph80,9,9,0|-r2fmo1,9,9,0|-r2fmo0,12,1,1|-qolek1,12,1,1|-qolek0,9,9,0|-qjnpc1,9,9,0|-qjnpc0,12,1,1|-q5th81,12,1,1|-q5th80,9,9,0|-pgm5c1,9,9,0|-pgm5c0,12,1,1|-pbq581,12,1,1|-pbq580,9,9,0|-g0c5c1,9,9,0|-g0c5c0,12,1,1|-fqyyg1,12,1,1|-fqyyg0,9,9,0|-fkuic1,9,9,0|-fkuic0,12,1,1|-f7vx41,12,1,1|-f7vx40,9,9,0|-f1rjs1,9,9,0|-f1rjs0,12,1,1|-ep5ug1,12,1,1|-ep5ug0,9,9,0|-eioig1,9,9,0|-eioig0,12,1,1|-e6sqg1,12,1,1|-e6sqg0,9,9,0|-dzyfs1,9,9,0|-dzyfs0,12,1,1|-do2ns1,12,1,1|-do2ns0,9,9,0|-dh8d41,9,9,0|-dh8d40,12,1,1|-d5cl41,12,1,1|-d5cl40,9,9,0|-cyiag1,9,9,0|-cyiag0,12,1,1|-cm9js1,12,1,1|-cm9js0,9,9,0|-cfs7s1,9,9,0|-cfs7s0,12,1,1|-c3jh41,12,1,1|-c3jh40,9,9,0|-bv9bs1,9,9,0|-bv9bs0,12,1,1|-bkteg1,12,1,1|-bkteg0,9,9,0|-bcj941,9,9,0|-bcj940,12,1,1|-b23bs1,12,1,1|-b23bs0,9,9,0|-att6g1,9,9,0|-att6g0,12,1,1|-aj0ag1,12,1,1|-aj0ag0,9,9,0|-ab33s1,9,9,0|-ab33s0,12,1,1|-a0n6g1,12,1,1|-a0n6g0,9,9,0|-9sd141,9,9,0|-9sd140,12,1,1|-9hk541,12,1,1|-9hk540,9,9,0|-999zs1,9,9,0|-999zs0,12,1,1|-8yu2g1,12,1,1|-8yu2g0,9,9,0|-8qjx41,9,9,0|-8qjx40,12,1,1|-8g3zs1,12,1,1|-8g3zs0,9,9,0|-87tug1,9,9,0|-87tug0,12,1,1|-7xdx41,12,1,1|-7xdx40,9,9,0|-7p3rs1,9,9,0|-7p3rs0,12,1,1|-7enug1,12,1,1|-7enug0,9,9,0|-76dp41,9,9,0|-76dp40,12,1,1|-6vkt41,12,1,1|-6vkt40,9,9,0|-6nans1,9,9,0|-6nans0,12,1,1|-6cuqg1,12,1,1|-6cuqg0,9,9,0|-64kl41,9,9,0|-64kl40,12,1,1|-5u4ns1,12,1,1|-5u4ns0,9,9,0|-5luig1,9,9,0|-5luig0,12,1,1|-5bel41,12,1,1|-5bel40,9,9,0|-534fs1,9,9,0|-534fs0,12,1,1|-4soig1,12,1,1|-4soig0,9,9,0|-4ked41,9,9,0|-4ked40,12,1,1|-49yfs1,12,1,1|-49yfs0,9,9,0|-41oag1,9,9,0|-41oag0,12,1,1|-3qveg1,12,1,1|-3qveg0,9,9,0|-3il941,9,9,0|-3il940,12,1,1|-385bs1,12,1,1|-385bs0,9,9,0|-2zv6g1,9,9,0|-2zv6g0,12,1,1|-2pf941,12,1,1|-2pf940,9,9,0|-2h53s1,9,9,0|-2h53s0,12,1,1|-26p6g1,12,1,1|-26p6g0,9,9,0|-1yf141,9,9,0|-1yf140,12,1,1|-1nz3s1,12,1,1|-1nz3s0,9,9,0|-1foyg1,9,9,0|-1foyg0,12,1,1|-14w2g1,12,1,1|-14w2g0,9,9,0|-wlx41,9,9,0|-wlx40,1,1,0","Australia/Adelaide|,0,240,0|-133j2zw,124,157,0|-10vsp01,124,157,0|-10vsp00,124,181,0|-rnsq61,124,181,0|-rnsq60,125,241,1|-rjj0u1,125,241,1|-rjj0u0,124,181,0|-em3gu1,124,181,0|-em3gu0,125,241,1|-ehmcu1,125,241,1|-ehmcu0,124,181,0|-e89bi1,124,181,0|-e89bi0,125,241,1|-dywa61,125,241,1|-dywa60,124,181,0|-dp6a61,124,181,0|-dp6a60,125,241,1|-dg67i1,125,241,1|-dg67i0,124,181,0|ycghz,124,181,0|ycgi0,125,241,1|14gttz,125,241,1|14gtu0,124,181,0|1h2j5z,124,181,0|1h2j60,125,241,1|1njv5z,125,241,1|1njv60,124,181,0|1zsltz,124,181,0|1zslu0,125,241,1|269xtz,125,241,1|269xu0,124,181,0|2iiohz,124,181,0|2iioi0,125,241,1|2p00hz,125,241,1|2p00i0,124,181,0|318r5z,124,181,0|318r60,125,241,1|3831tz,125,241,1|3831u0,124,181,0|3kbshz,124,181,0|3kbsi0,125,241,1|3qt4hz,125,241,1|3qt4i0,124,181,0|431v5z,124,181,0|431v60,125,241,1|49j75z,125,241,1|49j760,124,181,0|4lrxtz,124,181,0|4lrxu0,125,241,1|4s99tz,125,241,1|4s99u0,124,181,0|54i0hz,124,181,0|54i0i0,125,241,1|5azchz,125,241,1|5azci0,124,181,0|5n835z,124,181,0|5n8360,125,241,1|5tpf5z,125,241,1|5tpf60,124,181,0|65y5tz,124,181,0|65y5u0,125,241,1|6csghz,125,241,1|6csgi0,124,181,0|6p175z,124,181,0|6p1760,125,241,1|6vij5z,125,241,1|6vij60,124,181,0|77r9tz,124,181,0|77r9u0,125,241,1|7e8ltz,125,241,1|7e8lu0,124,181,0|7qhchz,124,181,0|7qhci0,125,241,1|7wyohz,125,241,1|7wyoi0,124,181,0|897f5z,124,181,0|897f60,125,241,1|8geohz,125,241,1|8geoi0,124,181,0|8rkj5z,124,181,0|8rkj60,125,241,1|8z4r5z,125,241,1|8z4r60,124,181,0|9ankhz,124,181,0|9anki0,125,241,1|9i7shz,125,241,1|9i7si0,124,181,0|9tqltz,124,181,0|9tqlu0,125,241,1|a0xv5z,125,241,1|a0xv60,124,181,0|acgohz,124,181,0|acgoi0,125,241,1|ajnxtz,125,241,1|ajnxu0,124,181,0|av6r5z,124,181,0|av6r60,125,241,1|b1o35z,125,241,1|b1o360,124,181,0|bdwttz,124,181,0|bdwtu0,125,241,1|blh1tz,125,241,1|blh1u0,124,181,0|bwmwhz,124,181,0|bwmwi0,125,241,1|c3h75z,125,241,1|c3h760,124,181,0|cfpxtz,124,181,0|cfpxu0,125,241,1|cmx75z,125,241,1|cmx760,124,181,0|cyg0hz,124,181,0|cyg0i0,125,241,1|d608hz,125,241,1|d608i0,124,181,0|dh635z,124,181,0|dh6360,125,241,1|dp39tz,125,241,1|dp39u0,124,181,0|dzw5tz,124,181,0|dzw5u0,125,241,1|e7tchz,125,241,1|e7tci0,124,181,0|eim8hz,124,181,0|eim8i0,125,241,1|eqjf5z,125,241,1|eqjf60,124,181,0|f1cb5z,124,181,0|f1cb60,125,241,1|f99htz,125,241,1|f99hu0,124,181,0|fkfchz,124,181,0|fkfci0,125,241,1|frzkhz,125,241,1|frzki0,124,181,0|g35f5z,124,181,0|g35f60,125,241,1|gapn5z,125,241,1|gapn60,124,181,0|glvhtz,124,181,0|glvhu0,125,241,1|gtsohz,125,241,1|gtsoi0,124,181,0|h4lkhz,124,181,0|h4lki0,125,241,1|hcir5z,125,241,1|hcir60,124,181,0|hnbn5z,124,181,0|hnbn60,125,241,1|hv8ttz,125,241,1|hv8tu0,124,181,0|i6eohz,124,181,0|i6eoi0,125,241,1|idywhz,125,241,1|idywi0,124,181,0|ip4r5z,124,181,0|ip4r60,125,241,1|ix1xtz,125,241,1|ix1xu0,124,181,0|j7uttz,124,181,0|j7utu0,125,241,1|jff1tz,125,241,1|jff1u0,124,181,0|jqkwhz,124,181,0|jqkwi0,125,241,1|jyv1tz,125,241,1|jyv1u0,124,181,0|k8835z,124,181,0|k88360,125,241,1|khl4hz,125,241,1|khl4i0,124,181,0|kqy5tz,124,181,0|kqy5u0,125,241,1|l0b75z,125,241,1|l0b760,124,181,0|l9o8hz,124,181,0|l9o8i0,125,241,1|lj19tz,125,241,1|lj19u0,124,181,0|lseb5z,124,181,0|lseb60,125,241,1|m1rchz,125,241,1|m1rci0,124,181,0|mbhchz,124,181,0|mbhci0,125,241,1|mkudtz,125,241,1|mkudu0,124,181,0|mu7f5z,124,181,0|mu7f60,125,241,1|n3kghz,125,241,1|n3kgi0,124,181,0|ncxhtz,124,181,0|ncxhu0,125,241,1|nmaj5z,125,241,1|nmaj60,124,181,0|nvnkhz,124,181,0|nvnki0,125,241,1|o50ltz,125,241,1|o50lu0,124,181,0|oedn5z,124,181,0|oedn60,125,241,1|onqohz,125,241,1|onqoi0,124,181,0|ox3ptz,124,181,0|ox3pu0,125,241,1|p6gr5z,125,241,1|p6gr60,124,181,0|pg6r5z,124,181,0|pg6r60,125,241,1|ppjshz,125,241,1|ppjsi0,124,181,0|pywttz,124,181,0|pywtu0,125,241,1|q89v5z,125,241,1|q89v60,124,181,0|qhmwhz,124,181,0|qhmwi0,125,241,1|qqzxtz,125,241,1|qqzxu0,124,181,0|r0cz5z,124,181,0|r0cz60,125,241,1|r9q0hz,125,241,1|r9q0i0,124,181,0|rj31tz,124,181,0|rj31u0,125,241,1|rsg35z,125,241,1|rsg360,124,181,0|s1t4hz,124,181,0|s1t4i0,125,241,1|sbj4hz,125,241,1|sbj4i0,124,181,0|skw5tz,124,181,0|skw5u0,125,241,1|su975z,125,241,1|su9760,124,181,0|t3m8hz,124,181,0|t3m8i0,125,241,1|tcz9tz,125,241,1|tcz9u0,124,181,0|tmcb5z,124,181,0|tmcb60,125,241,1|tvpchz,125,241,1|tvpci0,124,181,0|u52dtz,124,181,0|u52du0,125,241,1|ueff5z,125,241,1|ueff60,124,181,0|unsghz,124,181,0|unsgi0,125,241,1|ux5htz,125,241,1|ux5hu0,124,181,0|v6vhtz,124,181,0|v6vhu0,125,241,1|vg8j5z,125,241,1|vg8j60,124,181,0|vplkhz,124,181,0|vplki0,125,241,1|vyyltz,125,241,1|vyylu0,124,181,0|w8bn5z,124,181,0|w8bn60,125,241,1|whoohz,125,241,1|whooi0,124,181,0|wr1ptz,124,181,0|wr1pu0,125,241,1|x0er5z,125,241,1|x0er60,124,181,0|x9rshz,124,181,0|x9rsi0,125,241,1|xj4ttz,125,241,1|xj4tu0,124,181,0|xshv5z,124,181,0|xshv60,125,241,1|y1uwhz,125,241,1|y1uwi0,124,181,0|ybkwhz,124,181,0|ybkwi0,125,241,1|ykxxtz,125,241,1|ykxxu0,124,181,0|yuaz5z,124,181,0|yuaz60,125,241,1|z3o0hz,125,241,1|z3o0i0,124,181,0|zd11tz,124,181,0|zd11u0,125,241,1","Australia/Brisbane|,0,242,0|-1354kc8,126,158,0|-rnsrk1,126,158,0|-rnsrk0,127,142,1|-rjj281,127,142,1|-rjj280,126,158,0|-em3i81,126,158,0|-em3i80,127,142,1|-ehme81,127,142,1|-ehme80,126,158,0|-e89cw1,126,158,0|-e89cw0,127,142,1|-dywbk1,127,142,1|-dywbk0,126,158,0|-dp6bk1,126,158,0|-dp6bk0,127,142,1|-dg68w1,127,142,1|-dg68w0,126,158,0|ycf3z,126,158,0|ycf40,127,142,1|14gsfz,127,142,1|14gsg0,126,158,0|acgn3z,126,158,0|acgn40,127,142,1|aixz3z,127,142,1|aixz40,126,158,0|av6prz,126,158,0|av6ps0,127,142,1|b1o1rz,127,142,1|b1o1s0,126,158,0|bdwsfz,126,158,0|bdwsg0,127,142,1|bke4fz,127,142,1|bke4g0,126,158,0","Australia/Broken_Hill|,0,243,0|-133j3j0,126,158,0|-12a9fs1,126,158,0|-12a9fs0,124,157,0|-10vsp01,124,157,0|-10vsp00,124,181,0|-rnsq61,124,181,0|-rnsq60,125,241,1|-rjj0u1,125,241,1|-rjj0u0,124,181,0|-em3gu1,124,181,0|-em3gu0,125,241,1|-ehmcu1,125,241,1|-ehmcu0,124,181,0|-e89bi1,124,181,0|-e89bi0,125,241,1|-dywa61,125,241,1|-dywa60,124,181,0|-dp6a61,124,181,0|-dp6a60,125,241,1|-dg67i1,125,241,1|-dg67i0,124,181,0|ycghz,124,181,0|ycgi0,125,241,1|14gttz,125,241,1|14gtu0,124,181,0|1h2j5z,124,181,0|1h2j60,125,241,1|1njv5z,125,241,1|1njv60,124,181,0|1zsltz,124,181,0|1zslu0,125,241,1|269xtz,125,241,1|269xu0,124,181,0|2iiohz,124,181,0|2iioi0,125,241,1|2p00hz,125,241,1|2p00i0,124,181,0|318r5z,124,181,0|318r60,125,241,1|3831tz,125,241,1|3831u0,124,181,0|3kbshz,124,181,0|3kbsi0,125,241,1|3qt4hz,125,241,1|3qt4i0,124,181,0|431v5z,124,181,0|431v60,125,241,1|49j75z,125,241,1|49j760,124,181,0|4lrxtz,124,181,0|4lrxu0,125,241,1|4s99tz,125,241,1|4s99u0,124,181,0|54i0hz,124,181,0|54i0i0,125,241,1|5azchz,125,241,1|5azci0,124,181,0|5n835z,124,181,0|5n8360,125,241,1|5tpf5z,125,241,1|5tpf60,124,181,0|65y5tz,124,181,0|65y5u0,125,241,1|6e8b5z,125,241,1|6e8b60,124,181,0|6p175z,124,181,0|6p1760,125,241,1|6vij5z,125,241,1|6vij60,124,181,0|77r9tz,124,181,0|77r9u0,125,241,1|7e8ltz,125,241,1|7e8lu0,124,181,0|7qhchz,124,181,0|7qhci0,125,241,1|7wyohz,125,241,1|7wyoi0,124,181,0|897f5z,124,181,0|897f60,125,241,1|8geohz,125,241,1|8geoi0,124,181,0|8rkj5z,124,181,0|8rkj60,125,241,1|8z4r5z,125,241,1|8z4r60,124,181,0|9ankhz,124,181,0|9anki0,125,241,1|9i7shz,125,241,1|9i7si0,124,181,0|9tqltz,124,181,0|9tqlu0,125,241,1|a0xv5z,125,241,1|a0xv60,124,181,0|acgohz,124,181,0|acgoi0,125,241,1|aiy0hz,125,241,1|aiy0i0,124,181,0|av6r5z,124,181,0|av6r60,125,241,1|b1o35z,125,241,1|b1o360,124,181,0|bdwttz,124,181,0|bdwtu0,125,241,1|bke5tz,125,241,1|bke5u0,124,181,0|bwmwhz,124,181,0|bwmwi0,125,241,1|c3h75z,125,241,1|c3h760,124,181,0|cfpxtz,124,181,0|cfpxu0,125,241,1|cm79tz,125,241,1|cm79u0,124,181,0|cyg0hz,124,181,0|cyg0i0,125,241,1|d4xchz,125,241,1|d4xci0,124,181,0|dh635z,124,181,0|dh6360,125,241,1|dp39tz,125,241,1|dp39u0,124,181,0|dzw5tz,124,181,0|dzw5u0,125,241,1|e7tchz,125,241,1|e7tci0,124,181,0|eim8hz,124,181,0|eim8i0,125,241,1|eqjf5z,125,241,1|eqjf60,124,181,0|f1cb5z,124,181,0|f1cb60,125,241,1|f99htz,125,241,1|f99hu0,124,181,0|fkfchz,124,181,0|fkfci0,125,241,1|frzkhz,125,241,1|frzki0,124,181,0|g35f5z,124,181,0|g35f60,125,241,1|gapn5z,125,241,1|gapn60,124,181,0|glvhtz,124,181,0|glvhu0,125,241,1|gtsohz,125,241,1|gtsoi0,124,181,0|h4lkhz,124,181,0|h4lki0,125,241,1|hcir5z,125,241,1|hcir60,124,181,0|hnbn5z,124,181,0|hnbn60,125,241,1|hv8ttz,125,241,1|hv8tu0,124,181,0|i6eohz,124,181,0|i6eoi0,125,241,1|idywhz,125,241,1|idywi0,124,181,0|ip4r5z,124,181,0|ip4r60,125,241,1|ix1xtz,125,241,1|ix1xu0,124,181,0|j7uttz,124,181,0|j7utu0,125,241,1|jff1tz,125,241,1|jff1u0,124,181,0|jqkwhz,124,181,0|jqkwi0,125,241,1|jyv1tz,125,241,1|jyv1u0,124,181,0|k8835z,124,181,0|k88360,125,241,1|khl4hz,125,241,1|khl4i0,124,181,0|kqy5tz,124,181,0|kqy5u0,125,241,1|l0b75z,125,241,1|l0b760,124,181,0|l9o8hz,124,181,0|l9o8i0,125,241,1|lj19tz,125,241,1|lj19u0,124,181,0|lseb5z,124,181,0|lseb60,125,241,1|m1rchz,125,241,1|m1rci0,124,181,0|mbhchz,124,181,0|mbhci0,125,241,1|mkudtz,125,241,1|mkudu0,124,181,0|mu7f5z,124,181,0|mu7f60,125,241,1|n3kghz,125,241,1|n3kgi0,124,181,0|ncxhtz,124,181,0|ncxhu0,125,241,1|nmaj5z,125,241,1|nmaj60,124,181,0|nvnkhz,124,181,0|nvnki0,125,241,1|o50ltz,125,241,1|o50lu0,124,181,0|oedn5z,124,181,0|oedn60,125,241,1|onqohz,125,241,1|onqoi0,124,181,0|ox3ptz,124,181,0|ox3pu0,125,241,1|p6gr5z,125,241,1|p6gr60,124,181,0|pg6r5z,124,181,0|pg6r60,125,241,1|ppjshz,125,241,1|ppjsi0,124,181,0|pywttz,124,181,0|pywtu0,125,241,1|q89v5z,125,241,1|q89v60,124,181,0|qhmwhz,124,181,0|qhmwi0,125,241,1|qqzxtz,125,241,1|qqzxu0,124,181,0|r0cz5z,124,181,0|r0cz60,125,241,1|r9q0hz,125,241,1|r9q0i0,124,181,0|rj31tz,124,181,0|rj31u0,125,241,1|rsg35z,125,241,1|rsg360,124,181,0|s1t4hz,124,181,0|s1t4i0,125,241,1|sbj4hz,125,241,1|sbj4i0,124,181,0|skw5tz,124,181,0|skw5u0,125,241,1|su975z,125,241,1|su9760,124,181,0|t3m8hz,124,181,0|t3m8i0,125,241,1|tcz9tz,125,241,1|tcz9u0,124,181,0|tmcb5z,124,181,0|tmcb60,125,241,1|tvpchz,125,241,1|tvpci0,124,181,0|u52dtz,124,181,0|u52du0,125,241,1|ueff5z,125,241,1|ueff60,124,181,0|unsghz,124,181,0|unsgi0,125,241,1|ux5htz,125,241,1|ux5hu0,124,181,0|v6vhtz,124,181,0|v6vhu0,125,241,1|vg8j5z,125,241,1|vg8j60,124,181,0|vplkhz,124,181,0|vplki0,125,241,1|vyyltz,125,241,1|vyylu0,124,181,0|w8bn5z,124,181,0|w8bn60,125,241,1|whoohz,125,241,1|whooi0,124,181,0|wr1ptz,124,181,0|wr1pu0,125,241,1|x0er5z,125,241,1|x0er60,124,181,0|x9rshz,124,181,0|x9rsi0,125,241,1|xj4ttz,125,241,1|xj4tu0,124,181,0|xshv5z,124,181,0|xshv60,125,241,1|y1uwhz,125,241,1|y1uwi0,124,181,0|ybkwhz,124,181,0|ybkwi0,125,241,1|ykxxtz,125,241,1|ykxxu0,124,181,0|yuaz5z,124,181,0|yuaz60,125,241,1|z3o0hz,125,241,1|z3o0i0,124,181,0|zd11tz,124,181,0|zd11u0,125,241,1","Australia/Darwin|,0,244,0|-133j1k8,124,157,0|-10vsp01,124,157,0|-10vsp00,124,181,0|-rnsq61,124,181,0|-rnsq60,125,241,1|-rjj0u1,125,241,1|-rjj0u0,124,181,0|-em3gu1,124,181,0|-em3gu0,125,241,1|-ehmcu1,125,241,1|-ehmcu0,124,181,0|-e89bi1,124,181,0|-e89bi0,125,241,1|-dywa61,125,241,1|-dywa60,124,181,0|-dp6a61,124,181,0|-dp6a60,125,241,1|-dg67i1,125,241,1|-dg67i0,124,181,0","Australia/Hobart|,0,245,0|-12smja4,126,158,0|-rsj4w1,126,158,0|-rsj4w0,127,142,1|-rjj281,127,142,1|-rjj280,126,158,0|-r8d7k1,126,158,0|-r8d7k0,127,142,1|-r1vvk1,127,142,1|-r1vvk0,126,158,0|-qpn4w1,126,158,0|-qpn4w0,127,142,1|-qj5sw1,127,142,1|-qj5sw0,126,158,0|-em3i81,126,158,0|-em3i80,127,142,1|-ehme81,127,142,1|-ehme80,126,158,0|-e89cw1,126,158,0|-e89cw0,127,142,1|-dywbk1,127,142,1|-dywbk0,126,158,0|-dp6bk1,126,158,0|-dp6bk0,127,142,1|-dg68w1,127,142,1|-dg68w0,126,158,0|-16cow1,126,158,0|-16cow0,127,142,1|-wznk1,127,142,1|-wznk0,126,158,0|-m6rk1,126,158,0|-m6rk0,127,142,1|-fcgw1,127,142,1|-fcgw0,126,158,0|-3gow1,126,158,0|-3gow0,127,142,1|3dlrz,127,142,1|3dls0,126,158,0|f9drz,126,158,0|f9ds0,127,142,1|mgn3z,127,142,1|mgn40,126,158,0|ycf3z,126,158,0|ycf40,127,142,1|14gsfz,127,142,1|14gsg0,126,158,0|1h2hrz,126,158,0|1h2hs0,127,142,1|1njtrz,127,142,1|1njts0,126,158,0|1zskfz,126,158,0|1zskg0,127,142,1|269wfz,127,142,1|269wg0,126,158,0|2iin3z,126,158,0|2iin40,127,142,1|2ozz3z,127,142,1|2ozz40,126,158,0|318prz,126,158,0|318ps0,127,142,1|3830fz,127,142,1|3830g0,126,158,0|3kbr3z,126,158,0|3kbr40,127,142,1|3qt33z,127,142,1|3qt340,126,158,0|431trz,126,158,0|431ts0,127,142,1|49j5rz,127,142,1|49j5s0,126,158,0|4lrwfz,126,158,0|4lrwg0,127,142,1|4s98fz,127,142,1|4s98g0,126,158,0|54hz3z,126,158,0|54hz40,127,142,1|5azb3z,127,142,1|5azb40,126,158,0|5n81rz,126,158,0|5n81s0,127,142,1|5tpdrz,127,142,1|5tpds0,126,158,0|65y4fz,126,158,0|65y4g0,127,142,1|6dvb3z,127,142,1|6dvb40,126,158,0|6p15rz,126,158,0|6p15s0,127,142,1|6wldrz,127,142,1|6wlds0,126,158,0|77r8fz,126,158,0|77r8g0,127,142,1|7e8kfz,127,142,1|7e8kg0,126,158,0|7qhb3z,126,158,0|7qhb40,127,142,1|7wyn3z,127,142,1|7wyn40,126,158,0|897drz,126,158,0|897ds0,127,142,1|8foprz,127,142,1|8fops0,126,158,0|8rkhrz,126,158,0|8rkhs0,127,142,1|8z4prz,127,142,1|8z4ps0,126,158,0|9anj3z,126,158,0|9anj40,127,142,1|9i7r3z,127,142,1|9i7r40,126,158,0|9tqkfz,126,158,0|9tqkg0,127,142,1|a0xtrz,127,142,1|a0xts0,126,158,0|acgn3z,126,158,0|acgn40,127,142,1|ajnwfz,127,142,1|ajnwg0,126,158,0|av6prz,126,158,0|av6ps0,127,142,1|b33wfz,127,142,1|b33wg0,126,158,0|bctwfz,126,158,0|bctwg0,127,142,1|bltz3z,127,142,1|bltz40,126,158,0|bvjz3z,126,158,0|bvjz40,127,142,1|c4k1rz,127,142,1|c4k1s0,126,158,0|cea1rz,126,158,0|cea1s0,127,142,1|cna4fz,127,142,1|cna4g0,126,158,0|cx04fz,126,158,0|cx04g0,127,142,1|d6073z,127,142,1|d60740,126,158,0|dfq73z,126,158,0|dfq740,127,142,1|dp38fz,127,142,1|dp38g0,126,158,0|dyt8fz,126,158,0|dyt8g0,127,142,1|e7tb3z,127,142,1|e7tb40,126,158,0|ehjb3z,126,158,0|ehjb40,127,142,1|eqjdrz,127,142,1|eqjds0,126,158,0|f09drz,126,158,0|f09ds0,127,142,1|f99gfz,127,142,1|f99gg0,126,158,0|fizgfz,126,158,0|fizgg0,127,142,1|frzj3z,127,142,1|frzj40,126,158,0|fzwprz,126,158,0|fzwps0,127,142,1|gaplrz,127,142,1|gapls0,126,158,0|gkskfz,126,158,0|gkskg0,127,142,1|gtsn3z,127,142,1|gtsn40,126,158,0|h3in3z,126,158,0|h3in40,127,142,1|hciprz,127,142,1|hcips0,126,158,0|hm8prz,126,158,0|hm8ps0,127,142,1|hv8sfz,127,142,1|hv8sg0,126,158,0|i4ysfz,126,158,0|i4ysg0,127,142,1|idyv3z,127,142,1|idyv40,126,158,0|inov3z,126,158,0|inov40,127,142,1|ix1wfz,127,142,1|ix1wg0,126,158,0|j6exrz,126,158,0|j6exs0,127,142,1|jff0fz,127,142,1|jff0g0,126,158,0|jphz3z,126,158,0|jphz40,127,142,1|jyv0fz,127,142,1|jyv0g0,126,158,0|k881rz,126,158,0|k881s0,127,142,1|khl33z,127,142,1|khl340,126,158,0|kqy4fz,126,158,0|kqy4g0,127,142,1|l0b5rz,127,142,1|l0b5s0,126,158,0|l9o73z,126,158,0|l9o740,127,142,1|lj18fz,127,142,1|lj18g0,126,158,0|lse9rz,126,158,0|lse9s0,127,142,1|m1rb3z,127,142,1|m1rb40,126,158,0|mbhb3z,126,158,0|mbhb40,127,142,1|mkucfz,127,142,1|mkucg0,126,158,0|mu7drz,126,158,0|mu7ds0,127,142,1|n3kf3z,127,142,1|n3kf40,126,158,0|ncxgfz,126,158,0|ncxgg0,127,142,1|nmahrz,127,142,1|nmahs0,126,158,0|nvnj3z,126,158,0|nvnj40,127,142,1|o50kfz,127,142,1|o50kg0,126,158,0|oedlrz,126,158,0|oedls0,127,142,1|onqn3z,127,142,1|onqn40,126,158,0|ox3ofz,126,158,0|ox3og0,127,142,1|p6gprz,127,142,1|p6gps0,126,158,0|pg6prz,126,158,0|pg6ps0,127,142,1|ppjr3z,127,142,1|ppjr40,126,158,0|pywsfz,126,158,0|pywsg0,127,142,1|q89trz,127,142,1|q89ts0,126,158,0|qhmv3z,126,158,0|qhmv40,127,142,1|qqzwfz,127,142,1|qqzwg0,126,158,0|r0cxrz,126,158,0|r0cxs0,127,142,1|r9pz3z,127,142,1|r9pz40,126,158,0|rj30fz,126,158,0|rj30g0,127,142,1|rsg1rz,127,142,1|rsg1s0,126,158,0|s1t33z,126,158,0|s1t340,127,142,1|sbj33z,127,142,1|sbj340,126,158,0|skw4fz,126,158,0|skw4g0,127,142,1|su95rz,127,142,1|su95s0,126,158,0|t3m73z,126,158,0|t3m740,127,142,1|tcz8fz,127,142,1|tcz8g0,126,158,0|tmc9rz,126,158,0|tmc9s0,127,142,1|tvpb3z,127,142,1|tvpb40,126,158,0|u52cfz,126,158,0|u52cg0,127,142,1|uefdrz,127,142,1|uefds0,126,158,0|unsf3z,126,158,0|unsf40,127,142,1|ux5gfz,127,142,1|ux5gg0,126,158,0|v6vgfz,126,158,0|v6vgg0,127,142,1|vg8hrz,127,142,1|vg8hs0,126,158,0|vplj3z,126,158,0|vplj40,127,142,1|vyykfz,127,142,1|vyykg0,126,158,0|w8blrz,126,158,0|w8bls0,127,142,1|whon3z,127,142,1|whon40,126,158,0|wr1ofz,126,158,0|wr1og0,127,142,1|x0eprz,127,142,1|x0eps0,126,158,0|x9rr3z,126,158,0|x9rr40,127,142,1|xj4sfz,127,142,1|xj4sg0,126,158,0|xshtrz,126,158,0|xshts0,127,142,1|y1uv3z,127,142,1|y1uv40,126,158,0|ybkv3z,126,158,0|ybkv40,127,142,1|ykxwfz,127,142,1|ykxwg0,126,158,0|yuaxrz,126,158,0|yuaxs0,127,142,1|z3nz3z,127,142,1|z3nz40,126,158,0|zd10fz,126,158,0|zd10g0,127,142,1","Australia/Melbourne|,0,246,0|-133j46g,126,158,0|-rnsrk1,126,158,0|-rnsrk0,127,142,1|-rjj281,127,142,1|-rjj280,126,158,0|-em3i81,126,158,0|-em3i80,127,142,1|-ehme81,127,142,1|-ehme80,126,158,0|-e89cw1,126,158,0|-e89cw0,127,142,1|-dywbk1,127,142,1|-dywbk0,126,158,0|-dp6bk1,126,158,0|-dp6bk0,127,142,1|-dg68w1,127,142,1|-dg68w0,126,158,0|ycf3z,126,158,0|ycf40,127,142,1|14gsfz,127,142,1|14gsg0,126,158,0|1h2hrz,126,158,0|1h2hs0,127,142,1|1njtrz,127,142,1|1njts0,126,158,0|1zskfz,126,158,0|1zskg0,127,142,1|269wfz,127,142,1|269wg0,126,158,0|2iin3z,126,158,0|2iin40,127,142,1|2ozz3z,127,142,1|2ozz40,126,158,0|318prz,126,158,0|318ps0,127,142,1|3830fz,127,142,1|3830g0,126,158,0|3kbr3z,126,158,0|3kbr40,127,142,1|3qt33z,127,142,1|3qt340,126,158,0|431trz,126,158,0|431ts0,127,142,1|49j5rz,127,142,1|49j5s0,126,158,0|4lrwfz,126,158,0|4lrwg0,127,142,1|4s98fz,127,142,1|4s98g0,126,158,0|54hz3z,126,158,0|54hz40,127,142,1|5azb3z,127,142,1|5azb40,126,158,0|5n81rz,126,158,0|5n81s0,127,142,1|5tpdrz,127,142,1|5tpds0,126,158,0|65y4fz,126,158,0|65y4g0,127,142,1|6csf3z,127,142,1|6csf40,126,158,0|6p15rz,126,158,0|6p15s0,127,142,1|6vihrz,127,142,1|6vihs0,126,158,0|77r8fz,126,158,0|77r8g0,127,142,1|7e8kfz,127,142,1|7e8kg0,126,158,0|7qhb3z,126,158,0|7qhb40,127,142,1|7wyn3z,127,142,1|7wyn40,126,158,0|897drz,126,158,0|897ds0,127,142,1|8gen3z,127,142,1|8gen40,126,158,0|8rkhrz,126,158,0|8rkhs0,127,142,1|8z4prz,127,142,1|8z4ps0,126,158,0|9aakfz,126,158,0|9aakg0,127,142,1|9i7r3z,127,142,1|9i7r40,126,158,0|9tqkfz,126,158,0|9tqkg0,127,142,1|a0xtrz,127,142,1|a0xts0,126,158,0|acgn3z,126,158,0|acgn40,127,142,1|ajnwfz,127,142,1|ajnwg0,126,158,0|av6prz,126,158,0|av6ps0,127,142,1|b1o1rz,127,142,1|b1o1s0,126,158,0|bdwsfz,126,158,0|bdwsg0,127,142,1|bke4fz,127,142,1|bke4g0,126,158,0|bwmv3z,126,158,0|bwmv40,127,142,1|c3h5rz,127,142,1|c3h5s0,126,158,0|cfpwfz,126,158,0|cfpwg0,127,142,1|cm78fz,127,142,1|cm78g0,126,158,0|cyfz3z,126,158,0|cyfz40,127,142,1|d6073z,127,142,1|d60740,126,158,0|dh61rz,126,158,0|dh61s0,127,142,1|dp38fz,127,142,1|dp38g0,126,158,0|dzw4fz,126,158,0|dzw4g0,127,142,1|e7tb3z,127,142,1|e7tb40,126,158,0|eim73z,126,158,0|eim740,127,142,1|eqjdrz,127,142,1|eqjds0,126,158,0|f1c9rz,126,158,0|f1c9s0,127,142,1|f99gfz,127,142,1|f99gg0,126,158,0|fkfb3z,126,158,0|fkfb40,127,142,1|frzj3z,127,142,1|frzj40,126,158,0|fzwprz,126,158,0|fzwps0,127,142,1|gaplrz,127,142,1|gapls0,126,158,0|glvgfz,126,158,0|glvgg0,127,142,1|gtsn3z,127,142,1|gtsn40,126,158,0|h4lj3z,126,158,0|h4lj40,127,142,1|hciprz,127,142,1|hcips0,126,158,0|hnblrz,126,158,0|hnbls0,127,142,1|hv8sfz,127,142,1|hv8sg0,126,158,0|i6en3z,126,158,0|i6en40,127,142,1|idyv3z,127,142,1|idyv40,126,158,0|ip4prz,126,158,0|ip4ps0,127,142,1|ix1wfz,127,142,1|ix1wg0,126,158,0|j7usfz,126,158,0|j7usg0,127,142,1|jff0fz,127,142,1|jff0g0,126,158,0|jqkv3z,126,158,0|jqkv40,127,142,1|jyv0fz,127,142,1|jyv0g0,126,158,0|k881rz,126,158,0|k881s0,127,142,1|khl33z,127,142,1|khl340,126,158,0|kqy4fz,126,158,0|kqy4g0,127,142,1|l0b5rz,127,142,1|l0b5s0,126,158,0|l9o73z,126,158,0|l9o740,127,142,1|lj18fz,127,142,1|lj18g0,126,158,0|lse9rz,126,158,0|lse9s0,127,142,1|m1rb3z,127,142,1|m1rb40,126,158,0|mbhb3z,126,158,0|mbhb40,127,142,1|mkucfz,127,142,1|mkucg0,126,158,0|mu7drz,126,158,0|mu7ds0,127,142,1|n3kf3z,127,142,1|n3kf40,126,158,0|ncxgfz,126,158,0|ncxgg0,127,142,1|nmahrz,127,142,1|nmahs0,126,158,0|nvnj3z,126,158,0|nvnj40,127,142,1|o50kfz,127,142,1|o50kg0,126,158,0|oedlrz,126,158,0|oedls0,127,142,1|onqn3z,127,142,1|onqn40,126,158,0|ox3ofz,126,158,0|ox3og0,127,142,1|p6gprz,127,142,1|p6gps0,126,158,0|pg6prz,126,158,0|pg6ps0,127,142,1|ppjr3z,127,142,1|ppjr40,126,158,0|pywsfz,126,158,0|pywsg0,127,142,1|q89trz,127,142,1|q89ts0,126,158,0|qhmv3z,126,158,0|qhmv40,127,142,1|qqzwfz,127,142,1|qqzwg0,126,158,0|r0cxrz,126,158,0|r0cxs0,127,142,1|r9pz3z,127,142,1|r9pz40,126,158,0|rj30fz,126,158,0|rj30g0,127,142,1|rsg1rz,127,142,1|rsg1s0,126,158,0|s1t33z,126,158,0|s1t340,127,142,1|sbj33z,127,142,1|sbj340,126,158,0|skw4fz,126,158,0|skw4g0,127,142,1|su95rz,127,142,1|su95s0,126,158,0|t3m73z,126,158,0|t3m740,127,142,1|tcz8fz,127,142,1|tcz8g0,126,158,0|tmc9rz,126,158,0|tmc9s0,127,142,1|tvpb3z,127,142,1|tvpb40,126,158,0|u52cfz,126,158,0|u52cg0,127,142,1|uefdrz,127,142,1|uefds0,126,158,0|unsf3z,126,158,0|unsf40,127,142,1|ux5gfz,127,142,1|ux5gg0,126,158,0|v6vgfz,126,158,0|v6vgg0,127,142,1|vg8hrz,127,142,1|vg8hs0,126,158,0|vplj3z,126,158,0|vplj40,127,142,1|vyykfz,127,142,1|vyykg0,126,158,0|w8blrz,126,158,0|w8bls0,127,142,1|whon3z,127,142,1|whon40,126,158,0|wr1ofz,126,158,0|wr1og0,127,142,1|x0eprz,127,142,1|x0eps0,126,158,0|x9rr3z,126,158,0|x9rr40,127,142,1|xj4sfz,127,142,1|xj4sg0,126,158,0|xshtrz,126,158,0|xshts0,127,142,1|y1uv3z,127,142,1|y1uv40,126,158,0|ybkv3z,126,158,0|ybkv40,127,142,1|ykxwfz,127,142,1|ykxwg0,126,158,0|yuaxrz,126,158,0|yuaxs0,127,142,1|z3nz3z,127,142,1|z3nz40,126,158,0|zd10fz,126,158,0|zd10g0,127,142,1","Australia/Perth|,0,247,0|-12nxusc,128,155,0|-rnsm01,128,155,0|-rnsm00,129,157,1|-rjiwo1,129,157,1|-rjiwo0,128,155,0|-em3co1,128,155,0|-em3co0,129,157,1|-ehm8o1,129,157,1|-ehm8o0,128,155,0|-e897c1,128,155,0|-e897c0,129,157,1|-dyw601,129,157,1|-dyw600,128,155,0|2iisnz,128,155,0|2iiso0,129,157,1|2p04nz,129,157,1|2p04o0,128,155,0|77rdzz,128,155,0|77re00,129,157,1|7e8pzz,129,157,1|7e8q00,128,155,0|beztzz,128,155,0|bezu00,129,157,1|bke9zz,129,157,1|bkea00,128,155,0|j9nrbz,128,155,0|j9nrc0,129,157,1|jff5zz,129,157,1|jff600,128,155,0|jql0nz,128,155,0|jql0o0,129,157,1|jyi7bz,129,157,1|jyi7c0,128,155,0|k9b3bz,128,155,0|k9b3c0,129,157,1|kh89zz,129,157,1|kh8a00,128,155,0","Australia/Sydney|,0,248,0|-133j5c4,126,158,0|-rnsrk1,126,158,0|-rnsrk0,127,142,1|-rjj281,127,142,1|-rjj280,126,158,0|-em3i81,126,158,0|-em3i80,127,142,1|-ehme81,127,142,1|-ehme80,126,158,0|-e89cw1,126,158,0|-e89cw0,127,142,1|-dywbk1,127,142,1|-dywbk0,126,158,0|-dp6bk1,126,158,0|-dp6bk0,127,142,1|-dg68w1,127,142,1|-dg68w0,126,158,0|ycf3z,126,158,0|ycf40,127,142,1|14gsfz,127,142,1|14gsg0,126,158,0|1h2hrz,126,158,0|1h2hs0,127,142,1|1njtrz,127,142,1|1njts0,126,158,0|1zskfz,126,158,0|1zskg0,127,142,1|269wfz,127,142,1|269wg0,126,158,0|2iin3z,126,158,0|2iin40,127,142,1|2ozz3z,127,142,1|2ozz40,126,158,0|318prz,126,158,0|318ps0,127,142,1|3830fz,127,142,1|3830g0,126,158,0|3kbr3z,126,158,0|3kbr40,127,142,1|3qt33z,127,142,1|3qt340,126,158,0|431trz,126,158,0|431ts0,127,142,1|49j5rz,127,142,1|49j5s0,126,158,0|4lrwfz,126,158,0|4lrwg0,127,142,1|4s98fz,127,142,1|4s98g0,126,158,0|54hz3z,126,158,0|54hz40,127,142,1|5azb3z,127,142,1|5azb40,126,158,0|5n81rz,126,158,0|5n81s0,127,142,1|5tpdrz,127,142,1|5tpds0,126,158,0|65y4fz,126,158,0|65y4g0,127,142,1|6e89rz,127,142,1|6e89s0,126,158,0|6p15rz,126,158,0|6p15s0,127,142,1|6vihrz,127,142,1|6vihs0,126,158,0|77r8fz,126,158,0|77r8g0,127,142,1|7e8kfz,127,142,1|7e8kg0,126,158,0|7qhb3z,126,158,0|7qhb40,127,142,1|7wyn3z,127,142,1|7wyn40,126,158,0|897drz,126,158,0|897ds0,127,142,1|8gen3z,127,142,1|8gen40,126,158,0|8rkhrz,126,158,0|8rkhs0,127,142,1|8z4prz,127,142,1|8z4ps0,126,158,0|9anj3z,126,158,0|9anj40,127,142,1|9i7r3z,127,142,1|9i7r40,126,158,0|9tqkfz,126,158,0|9tqkg0,127,142,1|a0xtrz,127,142,1|a0xts0,126,158,0|acgn3z,126,158,0|acgn40,127,142,1|aixz3z,127,142,1|aixz40,126,158,0|av6prz,126,158,0|av6ps0,127,142,1|b1o1rz,127,142,1|b1o1s0,126,158,0|bdwsfz,126,158,0|bdwsg0,127,142,1|bke4fz,127,142,1|bke4g0,126,158,0|bwmv3z,126,158,0|bwmv40,127,142,1|c3h5rz,127,142,1|c3h5s0,126,158,0|cfpwfz,126,158,0|cfpwg0,127,142,1|cm78fz,127,142,1|cm78g0,126,158,0|cyfz3z,126,158,0|cyfz40,127,142,1|d4xb3z,127,142,1|d4xb40,126,158,0|dh61rz,126,158,0|dh61s0,127,142,1|dp38fz,127,142,1|dp38g0,126,158,0|dzw4fz,126,158,0|dzw4g0,127,142,1|e7tb3z,127,142,1|e7tb40,126,158,0|eim73z,126,158,0|eim740,127,142,1|eqjdrz,127,142,1|eqjds0,126,158,0|f1c9rz,126,158,0|f1c9s0,127,142,1|f99gfz,127,142,1|f99gg0,126,158,0|fkfb3z,126,158,0|fkfb40,127,142,1|frzj3z,127,142,1|frzj40,126,158,0|fzwprz,126,158,0|fzwps0,127,142,1|gaplrz,127,142,1|gapls0,126,158,0|glvgfz,126,158,0|glvgg0,127,142,1|gtsn3z,127,142,1|gtsn40,126,158,0|h4lj3z,126,158,0|h4lj40,127,142,1|hciprz,127,142,1|hcips0,126,158,0|hnblrz,126,158,0|hnbls0,127,142,1|hv8sfz,127,142,1|hv8sg0,126,158,0|i6en3z,126,158,0|i6en40,127,142,1|idyv3z,127,142,1|idyv40,126,158,0|ip4prz,126,158,0|ip4ps0,127,142,1|ix1wfz,127,142,1|ix1wg0,126,158,0|j7usfz,126,158,0|j7usg0,127,142,1|jff0fz,127,142,1|jff0g0,126,158,0|jqkv3z,126,158,0|jqkv40,127,142,1|jyv0fz,127,142,1|jyv0g0,126,158,0|k881rz,126,158,0|k881s0,127,142,1|khl33z,127,142,1|khl340,126,158,0|kqy4fz,126,158,0|kqy4g0,127,142,1|l0b5rz,127,142,1|l0b5s0,126,158,0|l9o73z,126,158,0|l9o740,127,142,1|lj18fz,127,142,1|lj18g0,126,158,0|lse9rz,126,158,0|lse9s0,127,142,1|m1rb3z,127,142,1|m1rb40,126,158,0|mbhb3z,126,158,0|mbhb40,127,142,1|mkucfz,127,142,1|mkucg0,126,158,0|mu7drz,126,158,0|mu7ds0,127,142,1|n3kf3z,127,142,1|n3kf40,126,158,0|ncxgfz,126,158,0|ncxgg0,127,142,1|nmahrz,127,142,1|nmahs0,126,158,0|nvnj3z,126,158,0|nvnj40,127,142,1|o50kfz,127,142,1|o50kg0,126,158,0|oedlrz,126,158,0|oedls0,127,142,1|onqn3z,127,142,1|onqn40,126,158,0|ox3ofz,126,158,0|ox3og0,127,142,1|p6gprz,127,142,1|p6gps0,126,158,0|pg6prz,126,158,0|pg6ps0,127,142,1|ppjr3z,127,142,1|ppjr40,126,158,0|pywsfz,126,158,0|pywsg0,127,142,1|q89trz,127,142,1|q89ts0,126,158,0|qhmv3z,126,158,0|qhmv40,127,142,1|qqzwfz,127,142,1|qqzwg0,126,158,0|r0cxrz,126,158,0|r0cxs0,127,142,1|r9pz3z,127,142,1|r9pz40,126,158,0|rj30fz,126,158,0|rj30g0,127,142,1|rsg1rz,127,142,1|rsg1s0,126,158,0|s1t33z,126,158,0|s1t340,127,142,1|sbj33z,127,142,1|sbj340,126,158,0|skw4fz,126,158,0|skw4g0,127,142,1|su95rz,127,142,1|su95s0,126,158,0|t3m73z,126,158,0|t3m740,127,142,1|tcz8fz,127,142,1|tcz8g0,126,158,0|tmc9rz,126,158,0|tmc9s0,127,142,1|tvpb3z,127,142,1|tvpb40,126,158,0|u52cfz,126,158,0|u52cg0,127,142,1|uefdrz,127,142,1|uefds0,126,158,0|unsf3z,126,158,0|unsf40,127,142,1|ux5gfz,127,142,1|ux5gg0,126,158,0|v6vgfz,126,158,0|v6vgg0,127,142,1|vg8hrz,127,142,1|vg8hs0,126,158,0|vplj3z,126,158,0|vplj40,127,142,1|vyykfz,127,142,1|vyykg0,126,158,0|w8blrz,126,158,0|w8bls0,127,142,1|whon3z,127,142,1|whon40,126,158,0|wr1ofz,126,158,0|wr1og0,127,142,1|x0eprz,127,142,1|x0eps0,126,158,0|x9rr3z,126,158,0|x9rr40,127,142,1|xj4sfz,127,142,1|xj4sg0,126,158,0|xshtrz,126,158,0|xshts0,127,142,1|y1uv3z,127,142,1|y1uv40,126,158,0|ybkv3z,126,158,0|ybkv40,127,142,1|ykxwfz,127,142,1|ykxwg0,126,158,0|yuaxrz,126,158,0|yuaxs0,127,142,1|z3nz3z,127,142,1|z3nz40,126,158,0|zd10fz,126,158,0|zd10g0,127,142,1","Europe/Amsterdam|,0,249,0|-1ygf4wk,34,249,0|-s0dvkl,34,249,0|-s0dvkk,72,250,1|-rsimcl,72,250,1|-rsimck,34,249,0|-ridkol,34,249,0|-ridkok,72,250,1|-rage0l,72,250,1|-rage0k,34,249,0|-r0dfcl,34,249,0|-r0dfck,72,250,1|-qr0e0l,72,250,1|-qr0e0k,34,249,0|-qhae0l,34,249,0|-qhae0k,72,250,1|-q8abcl,72,250,1|-q8abck,34,249,0|-pykbcl,34,249,0|-pykbck,72,250,1|-ppk8ol,72,250,1|-ppk8ok,34,249,0|-pfu8ol,34,249,0|-pfu8ok,72,250,1|-p6u60l,72,250,1|-p6u60k,34,249,0|-oxizcl,34,249,0|-oxizck,72,250,1|-ong0ol,72,250,1|-ong0ok,34,249,0|-obazcl,34,249,0|-obazck,72,250,1|-o4py0l,72,250,1|-o4py0k,34,249,0|-nvpvcl,34,249,0|-nvpvck,72,250,1|-nlzvcl,72,250,1|-nlzvck,34,249,0|-n9hvcl,34,249,0|-n9hvck,72,250,1|-n39sol,72,250,1|-n39sok,34,249,0|-mrsu0l,34,249,0|-mrsu0k,72,250,1|-mkjq0l,72,250,1|-mkjq0k,34,249,0|-m90wol,34,249,0|-m90wok,72,250,1|-m1tncl,72,250,1|-m1tnck,34,249,0|-lq74ol,34,249,0|-lq74ok,72,250,1|-liqm0l,72,250,1|-liqm0k,34,249,0|-l7f7cl,34,249,0|-l7f7ck,72,250,1|-l00jcl,72,250,1|-l00jck,34,249,0|-kona0l,34,249,0|-kona0k,72,250,1|-khagol,72,250,1|-khagok,34,249,0|-k5vcol,34,249,0|-k5vcok,72,250,1|-jyke0l,72,250,1|-jyke0k,34,249,0|-jmom0l,34,249,0|-jmom0k,72,250,1|-jfubcl,72,250,1|-jfubck,34,249,0|-j49ncl,34,249,0|-j49nck,72,250,1|-iwra0l,72,250,1|-iwra0k,34,249,0|-ilhq0l,34,249,0|-ilhq0k,72,250,1|-ie17cl,72,250,1|-ie17ck,34,249,0|-i2psol,34,249,0|-i2psok,72,250,1|-hvb4ol,72,250,1|-hvb4ok,34,249,0|-hjw0ol,34,249,0|-hjw0ok,72,250,1|-hcl20l,72,250,1|-hcl20k,34,249,0|-h0r4ol,34,249,0|-h0r4ok,72,250,1|-gypacl,72,250,1|-gypack,130,251,1|-gtuzdd,130,251,1|-gtuzdc,2,2,0|-gic61d,2,2,0|-gic61c,130,251,1|-gb4wpd,130,251,1|-gb4wpc,2,2,0|-fzk8pd,2,2,0|-fzk8pc,130,251,1|-fs1vdd,130,251,1|-fs1vdc,2,2,0|-fgorld,2,2,0|-fgorlc,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dp3rw1,8,7,1|-dp3rw0,7,6,0|-dfqqk1,7,6,0|-dfqqk0,8,7,1|-d6dp81,8,7,1|-d6dp80,7,6,0|-cx0nw1,7,6,0|-cx0nw0,8,7,1|-cofek1,8,7,1|-cofek0,7,6,0|3s9mrz,7,6,0|3s9ms0,8,7,1|419pfz,8,7,1|419pg0,7,6,0|4azpfz,7,6,0|4azpg0,8,7,1|4kcqrz,8,7,1|4kcqs0,7,6,0|4tps3z,7,6,0|4tps40,8,7,1|532tfz,8,7,1|532tg0,7,6,0|5cstfz,7,6,0|5cstg0,8,7,1|5lsw3z,8,7,1|5lsw40,7,6,0|5v5xfz,7,6,0|5v5xg0,8,7,1|64iyrz,8,7,1|64iys0,7,6,0|6dw03z,7,6,0|6dw040,8,7,1|6n91fz,8,7,1|6n91g0,7,6,0|6wm2rz,7,6,0|6wm2s0,8,7,1|75z43z,8,7,1|75z440,7,6,0|7fc5fz,7,6,0|7fc5g0,8,7,1|7p25fz,8,7,1|7p25g0,7,6,0|7yf6rz,7,6,0|7yf6s0,8,7,1|87s83z,8,7,1|87s840,7,6,0|8h59fz,7,6,0|8h59g0,8,7,1|8qiarz,8,7,1|8qias0,7,6,0|8zvc3z,7,6,0|8zvc40,8,7,1|998dfz,8,7,1|998dg0,7,6,0|9ilerz,7,6,0|9iles0,8,7,1|9ryg3z,8,7,1|9ryg40,7,6,0|a1bhfz,7,6,0|a1bhg0,8,7,1|aaoirz,8,7,1|aaois0,7,6,0|ak1k3z,7,6,0|ak1k40,8,7,1|atrk3z,8,7,1|atrk40,7,6,0|b34lfz,7,6,0|b34lg0,8,7,1|bchmrz,8,7,1|bchms0,7,6,0|bluo3z,7,6,0|bluo40,8,7,1|bv7pfz,8,7,1|bv7pg0,7,6,0|c4kqrz,7,6,0|c4kqs0,8,7,1|cdxs3z,8,7,1|cdxs40,7,6,0|cnatfz,7,6,0|cnatg0,8,7,1|cwnurz,8,7,1|cwnus0,7,6,0|d60w3z,7,6,0|d60w40,8,7,1|dfdxfz,8,7,1|dfdxg0,7,6,0|dp3xfz,7,6,0|dp3xg0,8,7,1|dzwtfz,8,7,1|dzwtg0,7,6,0|e7u03z,7,6,0|e7u040,8,7,1|eimw3z,8,7,1|eimw40,7,6,0|eqk2rz,7,6,0|eqk2s0,8,7,1|f1cyrz,8,7,1|f1cys0,7,6,0|f9a5fz,7,6,0|f9a5g0,8,7,1|fkg03z,8,7,1|fkg040,7,6,0|fs083z,7,6,0|fs0840,8,7,1|g362rz,8,7,1|g362s0,7,6,0|gaqarz,7,6,0|gaqas0,8,7,1|glw5fz,8,7,1|glw5g0,7,6,0|gttc3z,7,6,0|gttc40,8,7,1|h4m83z,8,7,1|h4m840,7,6,0|hcjerz,7,6,0|hcjes0,8,7,1|hncarz,8,7,1|hncas0,7,6,0|hv9hfz,7,6,0|hv9hg0,8,7,1|i6fc3z,8,7,1|i6fc40,7,6,0|idzk3z,7,6,0|idzk40,8,7,1|ip5erz,8,7,1|ip5es0,7,6,0|iwpmrz,7,6,0|iwpms0,8,7,1|j7vhfz,8,7,1|j7vhg0,7,6,0|jffpfz,7,6,0|jffpg0,8,7,1|jqlk3z,8,7,1|jqlk40,7,6,0|jyiqrz,7,6,0|jyiqs0,8,7,1|k9bmrz,8,7,1|k9bms0,7,6,0|kh8tfz,7,6,0|kh8tg0,8,7,1|ks1pfz,8,7,1|ks1pg0,7,6,0|kzyw3z,7,6,0|kzyw40,8,7,1|lb4qrz,8,7,1|lb4qs0,7,6,0|lioyrz,7,6,0|lioys0,8,7,1|ltutfz,8,7,1|ltutg0,7,6,0|m1f1fz,7,6,0|m1f1g0,8,7,1|mckw3z,8,7,1|mckw40,7,6,0|mki2rz,7,6,0|mki2s0,8,7,1|mvayrz,8,7,1|mvays0,7,6,0|n385fz,7,6,0|n385g0,8,7,1|ne11fz,8,7,1|ne11g0,7,6,0|nly83z,7,6,0|nly840,8,7,1|nwr43z,8,7,1|nwr440,7,6,0|o4oarz,7,6,0|o4oas0,8,7,1|ofu5fz,8,7,1|ofu5g0,7,6,0|onedfz,7,6,0|onedg0,8,7,1|oyk83z,8,7,1|oyk840,7,6,0|p64g3z,7,6,0|p64g40,8,7,1|phaarz,8,7,1|phaas0,7,6,0|pp7hfz,7,6,0|pp7hg0,8,7,1|q00dfz,8,7,1|q00dg0,7,6,0|q7xk3z,7,6,0|q7xk40,8,7,1|qiqg3z,8,7,1|qiqg40,7,6,0|qqnmrz,7,6,0|qqnms0,8,7,1|r1thfz,8,7,1|r1thg0,7,6,0|r9dpfz,7,6,0|r9dpg0,8,7,1|rkjk3z,8,7,1|rkjk40,7,6,0|rs3s3z,7,6,0|rs3s40,8,7,1|s39mrz,8,7,1|s39ms0,7,6,0|sb6tfz,7,6,0|sb6tg0,8,7,1|slzpfz,8,7,1|slzpg0,7,6,0|stww3z,7,6,0|stww40,8,7,1|t4ps3z,8,7,1|t4ps40,7,6,0|tcmyrz,7,6,0|tcmys0,8,7,1|tnfurz,8,7,1|tnfus0,7,6,0|tvd1fz,7,6,0|tvd1g0,8,7,1|u6iw3z,8,7,1|u6iw40,7,6,0|ue343z,7,6,0|ue3440,8,7,1|up8yrz,8,7,1|up8ys0,7,6,0|uwt6rz,7,6,0|uwt6s0,8,7,1|v7z1fz,8,7,1|v7z1g0,7,6,0|vfw83z,7,6,0|vfw840,8,7,1|vqp43z,8,7,1|vqp440,7,6,0|vymarz,7,6,0|vymas0,8,7,1|w9f6rz,8,7,1|w9f6s0,7,6,0|whcdfz,7,6,0|whcdg0,8,7,1|wsi83z,8,7,1|wsi840,7,6,0|x02g3z,7,6,0|x02g40,8,7,1|xb8arz,8,7,1|xb8as0,7,6,0|xisirz,7,6,0|xisis0,8,7,1|xtydfz,8,7,1|xtydg0,7,6,0|y1ilfz,7,6,0|y1ilg0,8,7,1|ycog3z,8,7,1|ycog40,7,6,0|yklmrz,7,6,0|yklms0,8,7,1|yveirz,8,7,1|yveis0,7,6,0|z3bpfz,7,6,0|z3bpg0,8,7,1|ze4lfz,8,7,1|ze4lg0,7,6,0","Europe/Andorra|,0,252,0|-100edm4,5,1,0|-c4xmo1,5,1,0|-c4xmo0,7,6,0|7yf6rz,7,6,0|7yf6s0,8,7,1|87s83z,8,7,1|87s840,7,6,0|8h59fz,7,6,0|8h59g0,8,7,1|8qiarz,8,7,1|8qias0,7,6,0|8zvc3z,7,6,0|8zvc40,8,7,1|998dfz,8,7,1|998dg0,7,6,0|9ilerz,7,6,0|9iles0,8,7,1|9ryg3z,8,7,1|9ryg40,7,6,0|a1bhfz,7,6,0|a1bhg0,8,7,1|aaoirz,8,7,1|aaois0,7,6,0|ak1k3z,7,6,0|ak1k40,8,7,1|atrk3z,8,7,1|atrk40,7,6,0|b34lfz,7,6,0|b34lg0,8,7,1|bchmrz,8,7,1|bchms0,7,6,0|bluo3z,7,6,0|bluo40,8,7,1|bv7pfz,8,7,1|bv7pg0,7,6,0|c4kqrz,7,6,0|c4kqs0,8,7,1|cdxs3z,8,7,1|cdxs40,7,6,0|cnatfz,7,6,0|cnatg0,8,7,1|cwnurz,8,7,1|cwnus0,7,6,0|d60w3z,7,6,0|d60w40,8,7,1|dfdxfz,8,7,1|dfdxg0,7,6,0|dp3xfz,7,6,0|dp3xg0,8,7,1|dzwtfz,8,7,1|dzwtg0,7,6,0|e7u03z,7,6,0|e7u040,8,7,1|eimw3z,8,7,1|eimw40,7,6,0|eqk2rz,7,6,0|eqk2s0,8,7,1|f1cyrz,8,7,1|f1cys0,7,6,0|f9a5fz,7,6,0|f9a5g0,8,7,1|fkg03z,8,7,1|fkg040,7,6,0|fs083z,7,6,0|fs0840,8,7,1|g362rz,8,7,1|g362s0,7,6,0|gaqarz,7,6,0|gaqas0,8,7,1|glw5fz,8,7,1|glw5g0,7,6,0|gttc3z,7,6,0|gttc40,8,7,1|h4m83z,8,7,1|h4m840,7,6,0|hcjerz,7,6,0|hcjes0,8,7,1|hncarz,8,7,1|hncas0,7,6,0|hv9hfz,7,6,0|hv9hg0,8,7,1|i6fc3z,8,7,1|i6fc40,7,6,0|idzk3z,7,6,0|idzk40,8,7,1|ip5erz,8,7,1|ip5es0,7,6,0|iwpmrz,7,6,0|iwpms0,8,7,1|j7vhfz,8,7,1|j7vhg0,7,6,0|jffpfz,7,6,0|jffpg0,8,7,1|jqlk3z,8,7,1|jqlk40,7,6,0|jyiqrz,7,6,0|jyiqs0,8,7,1|k9bmrz,8,7,1|k9bms0,7,6,0|kh8tfz,7,6,0|kh8tg0,8,7,1|ks1pfz,8,7,1|ks1pg0,7,6,0|kzyw3z,7,6,0|kzyw40,8,7,1|lb4qrz,8,7,1|lb4qs0,7,6,0|lioyrz,7,6,0|lioys0,8,7,1|ltutfz,8,7,1|ltutg0,7,6,0|m1f1fz,7,6,0|m1f1g0,8,7,1|mckw3z,8,7,1|mckw40,7,6,0|mki2rz,7,6,0|mki2s0,8,7,1|mvayrz,8,7,1|mvays0,7,6,0|n385fz,7,6,0|n385g0,8,7,1|ne11fz,8,7,1|ne11g0,7,6,0|nly83z,7,6,0|nly840,8,7,1|nwr43z,8,7,1|nwr440,7,6,0|o4oarz,7,6,0|o4oas0,8,7,1|ofu5fz,8,7,1|ofu5g0,7,6,0|onedfz,7,6,0|onedg0,8,7,1|oyk83z,8,7,1|oyk840,7,6,0|p64g3z,7,6,0|p64g40,8,7,1|phaarz,8,7,1|phaas0,7,6,0|pp7hfz,7,6,0|pp7hg0,8,7,1|q00dfz,8,7,1|q00dg0,7,6,0|q7xk3z,7,6,0|q7xk40,8,7,1|qiqg3z,8,7,1|qiqg40,7,6,0|qqnmrz,7,6,0|qqnms0,8,7,1|r1thfz,8,7,1|r1thg0,7,6,0|r9dpfz,7,6,0|r9dpg0,8,7,1|rkjk3z,8,7,1|rkjk40,7,6,0|rs3s3z,7,6,0|rs3s40,8,7,1|s39mrz,8,7,1|s39ms0,7,6,0|sb6tfz,7,6,0|sb6tg0,8,7,1|slzpfz,8,7,1|slzpg0,7,6,0|stww3z,7,6,0|stww40,8,7,1|t4ps3z,8,7,1|t4ps40,7,6,0|tcmyrz,7,6,0|tcmys0,8,7,1|tnfurz,8,7,1|tnfus0,7,6,0|tvd1fz,7,6,0|tvd1g0,8,7,1|u6iw3z,8,7,1|u6iw40,7,6,0|ue343z,7,6,0|ue3440,8,7,1|up8yrz,8,7,1|up8ys0,7,6,0|uwt6rz,7,6,0|uwt6s0,8,7,1|v7z1fz,8,7,1|v7z1g0,7,6,0|vfw83z,7,6,0|vfw840,8,7,1|vqp43z,8,7,1|vqp440,7,6,0|vymarz,7,6,0|vymas0,8,7,1|w9f6rz,8,7,1|w9f6s0,7,6,0|whcdfz,7,6,0|whcdg0,8,7,1|wsi83z,8,7,1|wsi840,7,6,0|x02g3z,7,6,0|x02g40,8,7,1|xb8arz,8,7,1|xb8as0,7,6,0|xisirz,7,6,0|xisis0,8,7,1|xtydfz,8,7,1|xtydg0,7,6,0|y1ilfz,7,6,0|y1ilg0,8,7,1|ycog3z,8,7,1|ycog40,7,6,0|yklmrz,7,6,0|yklms0,8,7,1|yveirz,8,7,1|yveis0,7,6,0|z3bpfz,7,6,0|z3bpg0,8,7,1|ze4lfz,8,7,1|ze4lg0,7,6,0","Europe/Athens|,0,253,0|-12rxtq4,34,253,0|-rvv0ch,34,253,0|-rvv0cg,10,7,0|-jkbpk1,10,7,0|-jkbpk0,11,11,1|-jhg301,11,11,1|-jhg300,10,7,0|-ezx6w1,10,7,0|-ezx6w0,11,11,1|-eyqoc1,11,11,1|-eyqoc0,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dys2s1,7,6,0|-dys2s0,8,7,1|-dp4081,8,7,1|-dp4080,7,6,0|-dfp1g1,7,6,0|-dfp1g0,10,7,0|-94v1k1,10,7,0|-94v1k0,11,11,1|-8yhho1,11,11,1|-8yhho0,10,7,0|2r4d3z,10,7,0|2r4d40,11,11,1|32ul3z,11,11,1|32ul40,10,7,0|39wfzz,10,7,0|39wg00,11,11,1|3j9hbz,11,11,1|3j9hc0,10,7,0|3s9jzz,10,7,0|3s9k00,11,11,1|41bhbz,11,11,1|41bhc0,10,7,0|4azmnz,10,7,0|4azmo0,11,11,1|4jzs3z,11,11,1|4jzs40,10,7,0|4tq8rz,10,7,0|4tq8s0,11,11,1|530t7z,11,11,1|530t80,10,7,0|5cjbrz,10,7,0|5cjbs0,11,11,1|5lskzz,11,11,1|5lsl00,10,7,0|5v5xfz,10,7,0|5v5xg0,11,11,1|64iyrz,11,11,1|64iys0,10,7,0|6dw03z,10,7,0|6dw040,11,11,1|6n91fz,11,11,1|6n91g0,10,7,0|6wm2rz,10,7,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,7,0|7fc5fz,10,7,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,7,0|7yf6rz,10,7,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,7,0|8h59fz,10,7,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,7,0|8zvc3z,10,7,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,7,0|9ilerz,10,7,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,7,0|a1bhfz,10,7,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,7,0|ak1k3z,10,7,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,7,0|b34lfz,10,7,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,7,0|bluo3z,10,7,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,7,0|c4kqrz,10,7,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,7,0|cnatfz,10,7,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,7,0|d60w3z,10,7,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,7,0|dp3xfz,10,7,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,7,0|e7u03z,10,7,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,7,0|eqk2rz,10,7,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,7,0|f9a5fz,10,7,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,7,0|fs083z,10,7,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,7,0|gaqarz,10,7,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,7,0|gttc3z,10,7,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,7,0|hcjerz,10,7,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,7,0|hv9hfz,10,7,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,7,0|idzk3z,10,7,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,7,0|iwpmrz,10,7,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,7,0|jffpfz,10,7,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,7,0|jyiqrz,10,7,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,7,0|kh8tfz,10,7,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,7,0|kzyw3z,10,7,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,7,0|lioyrz,10,7,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,7,0|m1f1fz,10,7,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,7,0|mki2rz,10,7,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,7,0|n385fz,10,7,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,7,0|nly83z,10,7,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,7,0|o4oarz,10,7,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,7,0|onedfz,10,7,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,7,0|p64g3z,10,7,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,7,0|pp7hfz,10,7,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,7,0|q7xk3z,10,7,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,7,0|qqnmrz,10,7,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,7,0|r9dpfz,10,7,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,7,0|rs3s3z,10,7,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,7,0|sb6tfz,10,7,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,7,0|stww3z,10,7,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,7,0|tcmyrz,10,7,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,7,0|tvd1fz,10,7,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,7,0|ue343z,10,7,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,7,0|uwt6rz,10,7,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,7,0|vfw83z,10,7,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,7,0|vymarz,10,7,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,7,0|whcdfz,10,7,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,7,0|x02g3z,10,7,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,7,0|xisirz,10,7,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,7,0|y1ilfz,10,7,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,7,0|yklmrz,10,7,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,7,0|z3bpfz,10,7,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,7,0","Europe/Belgrade|,0,254,0|-18vsmgo,7,6,0|-ezayw1,7,6,0|-ezayw0,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dp3rw1,8,7,1|-dp3rw0,7,6,0|-dfqqk1,7,6,0|-dfqqk0,8,7,1|-d6dp81,8,7,1|-d6dp80,7,6,0|-cv5zw1,7,6,0|-cv5zw0,8,7,1|-cofek1,8,7,1|-cofek0,7,6,0|6wm2rz,7,6,0|6wm2s0,8,7,1|75z43z,8,7,1|75z440,7,6,0|7fc5fz,7,6,0|7fc5g0,8,7,1|7p25fz,8,7,1|7p25g0,7,6,0|7yf6rz,7,6,0|7yf6s0,8,7,1|87s83z,8,7,1|87s840,7,6,0|8h59fz,7,6,0|8h59g0,8,7,1|8qiarz,8,7,1|8qias0,7,6,0|8zvc3z,7,6,0|8zvc40,8,7,1|998dfz,8,7,1|998dg0,7,6,0|9ilerz,7,6,0|9iles0,8,7,1|9ryg3z,8,7,1|9ryg40,7,6,0|a1bhfz,7,6,0|a1bhg0,8,7,1|aaoirz,8,7,1|aaois0,7,6,0|ak1k3z,7,6,0|ak1k40,8,7,1|atrk3z,8,7,1|atrk40,7,6,0|b34lfz,7,6,0|b34lg0,8,7,1|bchmrz,8,7,1|bchms0,7,6,0|bluo3z,7,6,0|bluo40,8,7,1|bv7pfz,8,7,1|bv7pg0,7,6,0|c4kqrz,7,6,0|c4kqs0,8,7,1|cdxs3z,8,7,1|cdxs40,7,6,0|cnatfz,7,6,0|cnatg0,8,7,1|cwnurz,8,7,1|cwnus0,7,6,0|d60w3z,7,6,0|d60w40,8,7,1|dfdxfz,8,7,1|dfdxg0,7,6,0|dp3xfz,7,6,0|dp3xg0,8,7,1|dzwtfz,8,7,1|dzwtg0,7,6,0|e7u03z,7,6,0|e7u040,8,7,1|eimw3z,8,7,1|eimw40,7,6,0|eqk2rz,7,6,0|eqk2s0,8,7,1|f1cyrz,8,7,1|f1cys0,7,6,0|f9a5fz,7,6,0|f9a5g0,8,7,1|fkg03z,8,7,1|fkg040,7,6,0|fs083z,7,6,0|fs0840,8,7,1|g362rz,8,7,1|g362s0,7,6,0|gaqarz,7,6,0|gaqas0,8,7,1|glw5fz,8,7,1|glw5g0,7,6,0|gttc3z,7,6,0|gttc40,8,7,1|h4m83z,8,7,1|h4m840,7,6,0|hcjerz,7,6,0|hcjes0,8,7,1|hncarz,8,7,1|hncas0,7,6,0|hv9hfz,7,6,0|hv9hg0,8,7,1|i6fc3z,8,7,1|i6fc40,7,6,0|idzk3z,7,6,0|idzk40,8,7,1|ip5erz,8,7,1|ip5es0,7,6,0|iwpmrz,7,6,0|iwpms0,8,7,1|j7vhfz,8,7,1|j7vhg0,7,6,0|jffpfz,7,6,0|jffpg0,8,7,1|jqlk3z,8,7,1|jqlk40,7,6,0|jyiqrz,7,6,0|jyiqs0,8,7,1|k9bmrz,8,7,1|k9bms0,7,6,0|kh8tfz,7,6,0|kh8tg0,8,7,1|ks1pfz,8,7,1|ks1pg0,7,6,0|kzyw3z,7,6,0|kzyw40,8,7,1|lb4qrz,8,7,1|lb4qs0,7,6,0|lioyrz,7,6,0|lioys0,8,7,1|ltutfz,8,7,1|ltutg0,7,6,0|m1f1fz,7,6,0|m1f1g0,8,7,1|mckw3z,8,7,1|mckw40,7,6,0|mki2rz,7,6,0|mki2s0,8,7,1|mvayrz,8,7,1|mvays0,7,6,0|n385fz,7,6,0|n385g0,8,7,1|ne11fz,8,7,1|ne11g0,7,6,0|nly83z,7,6,0|nly840,8,7,1|nwr43z,8,7,1|nwr440,7,6,0|o4oarz,7,6,0|o4oas0,8,7,1|ofu5fz,8,7,1|ofu5g0,7,6,0|onedfz,7,6,0|onedg0,8,7,1|oyk83z,8,7,1|oyk840,7,6,0|p64g3z,7,6,0|p64g40,8,7,1|phaarz,8,7,1|phaas0,7,6,0|pp7hfz,7,6,0|pp7hg0,8,7,1|q00dfz,8,7,1|q00dg0,7,6,0|q7xk3z,7,6,0|q7xk40,8,7,1|qiqg3z,8,7,1|qiqg40,7,6,0|qqnmrz,7,6,0|qqnms0,8,7,1|r1thfz,8,7,1|r1thg0,7,6,0|r9dpfz,7,6,0|r9dpg0,8,7,1|rkjk3z,8,7,1|rkjk40,7,6,0|rs3s3z,7,6,0|rs3s40,8,7,1|s39mrz,8,7,1|s39ms0,7,6,0|sb6tfz,7,6,0|sb6tg0,8,7,1|slzpfz,8,7,1|slzpg0,7,6,0|stww3z,7,6,0|stww40,8,7,1|t4ps3z,8,7,1|t4ps40,7,6,0|tcmyrz,7,6,0|tcmys0,8,7,1|tnfurz,8,7,1|tnfus0,7,6,0|tvd1fz,7,6,0|tvd1g0,8,7,1|u6iw3z,8,7,1|u6iw40,7,6,0|ue343z,7,6,0|ue3440,8,7,1|up8yrz,8,7,1|up8ys0,7,6,0|uwt6rz,7,6,0|uwt6s0,8,7,1|v7z1fz,8,7,1|v7z1g0,7,6,0|vfw83z,7,6,0|vfw840,8,7,1|vqp43z,8,7,1|vqp440,7,6,0|vymarz,7,6,0|vymas0,8,7,1|w9f6rz,8,7,1|w9f6s0,7,6,0|whcdfz,7,6,0|whcdg0,8,7,1|wsi83z,8,7,1|wsi840,7,6,0|x02g3z,7,6,0|x02g40,8,7,1|xb8arz,8,7,1|xb8as0,7,6,0|xisirz,7,6,0|xisis0,8,7,1|xtydfz,8,7,1|xtydg0,7,6,0|y1ilfz,7,6,0|y1ilg0,8,7,1|ycog3z,8,7,1|ycog40,7,6,0|yklmrz,7,6,0|yklms0,8,7,1|yveirz,8,7,1|yveis0,7,6,0|z3bpfz,7,6,0|z3bpg0,8,7,1|ze4lfz,8,7,1|ze4lg0,7,6,0","Europe/Berlin|,0,255,0|-1421154,7,6,0|-s0e081,7,6,0|-s0e080,8,7,1|-rsilg1,8,7,1|-rsilg0,7,6,0|-ridmk1,7,6,0|-ridmk0,8,7,1|-ragfw1,8,7,1|-ragfw0,7,6,0|-qznjw1,7,6,0|-qznjw0,8,7,1|-qrqd81,8,7,1|-qrqd80,7,6,0|-fizzw1,7,6,0|-fizzw0,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dp3rw1,8,7,1|-dp3rw0,7,6,0|-dfqqk1,7,6,0|-dfqqk0,8,7,1|-d6dp81,8,7,1|-d6dp80,7,6,0|-cx0nw1,7,6,0|-cx0nw0,8,7,1|-cucg01,8,7,1|-cucg00,131,11,1|-co0o01,131,11,1|-co0o00,8,7,1|-cl6qk1,8,7,1|-cl6qk0,7,6,0|-cdmik1,7,6,0|-cdmik0,8,7,1|-c4kl81,8,7,1|-c4kl80,7,6,0|-bv9bs1,7,6,0|-bv9bs0,8,7,1|-btgl81,8,7,1|-btgl80,131,11,1|-bqxxc1,131,11,1|-bqxxc0,8,7,1|-blwd81,8,7,1|-blwd80,7,6,0|-bbtek1,7,6,0|-bbtek0,8,7,1|-b36ak1,8,7,1|-b36ak0,7,6,0|-atgak1,7,6,0|-atgak0,8,7,1|-akg7w1,8,7,1|-akg7w0,7,6,0|5cstfz,7,6,0|5cstg0,8,7,1|5lsw3z,8,7,1|5lsw40,7,6,0|5v5xfz,7,6,0|5v5xg0,8,7,1|64iyrz,8,7,1|64iys0,7,6,0|6dw03z,7,6,0|6dw040,8,7,1|6n91fz,8,7,1|6n91g0,7,6,0|6wm2rz,7,6,0|6wm2s0,8,7,1|75z43z,8,7,1|75z440,7,6,0|7fc5fz,7,6,0|7fc5g0,8,7,1|7p25fz,8,7,1|7p25g0,7,6,0|7yf6rz,7,6,0|7yf6s0,8,7,1|87s83z,8,7,1|87s840,7,6,0|8h59fz,7,6,0|8h59g0,8,7,1|8qiarz,8,7,1|8qias0,7,6,0|8zvc3z,7,6,0|8zvc40,8,7,1|998dfz,8,7,1|998dg0,7,6,0|9ilerz,7,6,0|9iles0,8,7,1|9ryg3z,8,7,1|9ryg40,7,6,0|a1bhfz,7,6,0|a1bhg0,8,7,1|aaoirz,8,7,1|aaois0,7,6,0|ak1k3z,7,6,0|ak1k40,8,7,1|atrk3z,8,7,1|atrk40,7,6,0|b34lfz,7,6,0|b34lg0,8,7,1|bchmrz,8,7,1|bchms0,7,6,0|bluo3z,7,6,0|bluo40,8,7,1|bv7pfz,8,7,1|bv7pg0,7,6,0|c4kqrz,7,6,0|c4kqs0,8,7,1|cdxs3z,8,7,1|cdxs40,7,6,0|cnatfz,7,6,0|cnatg0,8,7,1|cwnurz,8,7,1|cwnus0,7,6,0|d60w3z,7,6,0|d60w40,8,7,1|dfdxfz,8,7,1|dfdxg0,7,6,0|dp3xfz,7,6,0|dp3xg0,8,7,1|dzwtfz,8,7,1|dzwtg0,7,6,0|e7u03z,7,6,0|e7u040,8,7,1|eimw3z,8,7,1|eimw40,7,6,0|eqk2rz,7,6,0|eqk2s0,8,7,1|f1cyrz,8,7,1|f1cys0,7,6,0|f9a5fz,7,6,0|f9a5g0,8,7,1|fkg03z,8,7,1|fkg040,7,6,0|fs083z,7,6,0|fs0840,8,7,1|g362rz,8,7,1|g362s0,7,6,0|gaqarz,7,6,0|gaqas0,8,7,1|glw5fz,8,7,1|glw5g0,7,6,0|gttc3z,7,6,0|gttc40,8,7,1|h4m83z,8,7,1|h4m840,7,6,0|hcjerz,7,6,0|hcjes0,8,7,1|hncarz,8,7,1|hncas0,7,6,0|hv9hfz,7,6,0|hv9hg0,8,7,1|i6fc3z,8,7,1|i6fc40,7,6,0|idzk3z,7,6,0|idzk40,8,7,1|ip5erz,8,7,1|ip5es0,7,6,0|iwpmrz,7,6,0|iwpms0,8,7,1|j7vhfz,8,7,1|j7vhg0,7,6,0|jffpfz,7,6,0|jffpg0,8,7,1|jqlk3z,8,7,1|jqlk40,7,6,0|jyiqrz,7,6,0|jyiqs0,8,7,1|k9bmrz,8,7,1|k9bms0,7,6,0|kh8tfz,7,6,0|kh8tg0,8,7,1|ks1pfz,8,7,1|ks1pg0,7,6,0|kzyw3z,7,6,0|kzyw40,8,7,1|lb4qrz,8,7,1|lb4qs0,7,6,0|lioyrz,7,6,0|lioys0,8,7,1|ltutfz,8,7,1|ltutg0,7,6,0|m1f1fz,7,6,0|m1f1g0,8,7,1|mckw3z,8,7,1|mckw40,7,6,0|mki2rz,7,6,0|mki2s0,8,7,1|mvayrz,8,7,1|mvays0,7,6,0|n385fz,7,6,0|n385g0,8,7,1|ne11fz,8,7,1|ne11g0,7,6,0|nly83z,7,6,0|nly840,8,7,1|nwr43z,8,7,1|nwr440,7,6,0|o4oarz,7,6,0|o4oas0,8,7,1|ofu5fz,8,7,1|ofu5g0,7,6,0|onedfz,7,6,0|onedg0,8,7,1|oyk83z,8,7,1|oyk840,7,6,0|p64g3z,7,6,0|p64g40,8,7,1|phaarz,8,7,1|phaas0,7,6,0|pp7hfz,7,6,0|pp7hg0,8,7,1|q00dfz,8,7,1|q00dg0,7,6,0|q7xk3z,7,6,0|q7xk40,8,7,1|qiqg3z,8,7,1|qiqg40,7,6,0|qqnmrz,7,6,0|qqnms0,8,7,1|r1thfz,8,7,1|r1thg0,7,6,0|r9dpfz,7,6,0|r9dpg0,8,7,1|rkjk3z,8,7,1|rkjk40,7,6,0|rs3s3z,7,6,0|rs3s40,8,7,1|s39mrz,8,7,1|s39ms0,7,6,0|sb6tfz,7,6,0|sb6tg0,8,7,1|slzpfz,8,7,1|slzpg0,7,6,0|stww3z,7,6,0|stww40,8,7,1|t4ps3z,8,7,1|t4ps40,7,6,0|tcmyrz,7,6,0|tcmys0,8,7,1|tnfurz,8,7,1|tnfus0,7,6,0|tvd1fz,7,6,0|tvd1g0,8,7,1|u6iw3z,8,7,1|u6iw40,7,6,0|ue343z,7,6,0|ue3440,8,7,1|up8yrz,8,7,1|up8ys0,7,6,0|uwt6rz,7,6,0|uwt6s0,8,7,1|v7z1fz,8,7,1|v7z1g0,7,6,0|vfw83z,7,6,0|vfw840,8,7,1|vqp43z,8,7,1|vqp440,7,6,0|vymarz,7,6,0|vymas0,8,7,1|w9f6rz,8,7,1|w9f6s0,7,6,0|whcdfz,7,6,0|whcdg0,8,7,1|wsi83z,8,7,1|wsi840,7,6,0|x02g3z,7,6,0|x02g40,8,7,1|xb8arz,8,7,1|xb8as0,7,6,0|xisirz,7,6,0|xisis0,8,7,1|xtydfz,8,7,1|xtydg0,7,6,0|y1ilfz,7,6,0|y1ilg0,8,7,1|ycog3z,8,7,1|ycog40,7,6,0|yklmrz,7,6,0|yklms0,8,7,1|yveirz,8,7,1|yveis0,7,6,0|z3bpfz,7,6,0|z3bpg0,8,7,1|ze4lfz,8,7,1|ze4lg0,7,6,0","Europe/Brussels|,0,256,0|-1ayy3h6,41,256,0|-14j9c01,41,256,0|-14j9c00,5,1,0|-ss5uo1,5,1,0|-ss5uo0,7,6,0|-s0dxg1,7,6,0|-s0dxg0,8,7,1|-rsilg1,8,7,1|-rsilg0,7,6,0|-ridmk1,7,6,0|-ridmk0,8,7,1|-ragfw1,8,7,1|-ragfw0,7,6,0|-qznjw1,7,6,0|-qznjw0,8,7,1|-qrqd81,8,7,1|-qrqd80,7,6,0|-qotw41,7,6,0|-qotw40,5,1,0|-qj59g1,5,1,0|-qj59g0,6,6,1|-q7zes1,6,6,1|-q7zes0,5,1,0|-q15441,5,1,0|-q15440,6,6,1|-po6g41,6,6,1|-po6g40,5,1,0|-pgvhg1,5,1,0|-pgvhg0,6,6,1|-p5atg1,6,6,1|-p5atg0,5,1,0|-oxj6s1,5,1,0|-oxj6s0,6,6,1|-ong841,6,6,1|-ong840,5,1,0|-odd9g1,5,1,0|-odd9g0,6,6,1|-o4q5g1,6,6,1|-o4q5g0,5,1,0|-nvq2s1,5,1,0|-nvq2s0,6,6,1|-nm02s1,6,6,1|-nm02s0,5,1,0|-ncn1g1,5,1,0|-ncn1g0,6,6,1|-n3a041,6,6,1|-n3a040,5,1,0|-mt71g1,5,1,0|-mt71g0,6,6,1|-mkjxg1,6,6,1|-mkjxg0,5,1,0|-matxg1,5,1,0|-matxg0,6,6,1|-m1tus1,6,6,1|-m1tus0,5,1,0|-lrqw41,5,1,0|-lrqw40,6,6,1|-liql41,6,6,1|-liql40,5,1,0|-l8nmg1,5,1,0|-l8nmg0,6,6,1|-l00ig1,6,6,1|-l00ig0,5,1,0|-kqaig1,5,1,0|-kqaig0,6,6,1|-khafs1,6,6,1|-khafs0,5,1,0|-k77h41,5,1,0|-k77h40,6,6,1|-jykd41,6,6,1|-jykd40,5,1,0|-jp7bs1,5,1,0|-jp7bs0,6,6,1|-jfuag1,6,6,1|-jfuag0,5,1,0|-j6u7s1,5,1,0|-j6u7s0,6,6,1|-iwr941,6,6,1|-iwr940,5,1,0|-ine7s1,5,1,0|-ine7s0,6,6,1|-ie16g1,6,6,1|-ie16g0,5,1,0|-i513s1,5,1,0|-i513s0,6,6,1|-hvb3s1,6,6,1|-hvb3s0,5,1,0|-hl8541,5,1,0|-hl8540,6,6,1|-hcl141,6,6,1|-hcl140,5,1,0|-h37zs1,5,1,0|-h37zs0,6,6,1|-gtuyg1,6,6,1|-gtuyg0,5,1,0|-gkuvs1,5,1,0|-gkuvs0,6,6,1|-gb4vs1,6,6,1|-gb4vs0,5,1,0|-g11x41,5,1,0|-g11x40,6,6,1|-fpw2g1,6,6,1|-fpw2g0,5,1,0|-fkul41,5,1,0|-fkul40,6,6,1|-fgh6g1,6,6,1|-fgh6g0,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dp3rw1,8,7,1|-dp3rw0,7,6,0|-dfqqk1,7,6,0|-dfqqk0,8,7,1|-d75h81,8,7,1|-d75h80,7,6,0|-cx0nw1,7,6,0|-cx0nw0,8,7,1|-cofek1,8,7,1|-cofek0,7,6,0|-cbtp81,7,6,0|-cbtp80,8,7,1|-c4kl81,8,7,1|-c4kl80,7,6,0|3s9mrz,7,6,0|3s9ms0,8,7,1|419pfz,8,7,1|419pg0,7,6,0|4azpfz,7,6,0|4azpg0,8,7,1|4kcqrz,8,7,1|4kcqs0,7,6,0|4tps3z,7,6,0|4tps40,8,7,1|532tfz,8,7,1|532tg0,7,6,0|5cstfz,7,6,0|5cstg0,8,7,1|5lsw3z,8,7,1|5lsw40,7,6,0|5v5xfz,7,6,0|5v5xg0,8,7,1|64iyrz,8,7,1|64iys0,7,6,0|6dw03z,7,6,0|6dw040,8,7,1|6n91fz,8,7,1|6n91g0,7,6,0|6wm2rz,7,6,0|6wm2s0,8,7,1|75z43z,8,7,1|75z440,7,6,0|7fc5fz,7,6,0|7fc5g0,8,7,1|7p25fz,8,7,1|7p25g0,7,6,0|7yf6rz,7,6,0|7yf6s0,8,7,1|87s83z,8,7,1|87s840,7,6,0|8h59fz,7,6,0|8h59g0,8,7,1|8qiarz,8,7,1|8qias0,7,6,0|8zvc3z,7,6,0|8zvc40,8,7,1|998dfz,8,7,1|998dg0,7,6,0|9ilerz,7,6,0|9iles0,8,7,1|9ryg3z,8,7,1|9ryg40,7,6,0|a1bhfz,7,6,0|a1bhg0,8,7,1|aaoirz,8,7,1|aaois0,7,6,0|ak1k3z,7,6,0|ak1k40,8,7,1|atrk3z,8,7,1|atrk40,7,6,0|b34lfz,7,6,0|b34lg0,8,7,1|bchmrz,8,7,1|bchms0,7,6,0|bluo3z,7,6,0|bluo40,8,7,1|bv7pfz,8,7,1|bv7pg0,7,6,0|c4kqrz,7,6,0|c4kqs0,8,7,1|cdxs3z,8,7,1|cdxs40,7,6,0|cnatfz,7,6,0|cnatg0,8,7,1|cwnurz,8,7,1|cwnus0,7,6,0|d60w3z,7,6,0|d60w40,8,7,1|dfdxfz,8,7,1|dfdxg0,7,6,0|dp3xfz,7,6,0|dp3xg0,8,7,1|dzwtfz,8,7,1|dzwtg0,7,6,0|e7u03z,7,6,0|e7u040,8,7,1|eimw3z,8,7,1|eimw40,7,6,0|eqk2rz,7,6,0|eqk2s0,8,7,1|f1cyrz,8,7,1|f1cys0,7,6,0|f9a5fz,7,6,0|f9a5g0,8,7,1|fkg03z,8,7,1|fkg040,7,6,0|fs083z,7,6,0|fs0840,8,7,1|g362rz,8,7,1|g362s0,7,6,0|gaqarz,7,6,0|gaqas0,8,7,1|glw5fz,8,7,1|glw5g0,7,6,0|gttc3z,7,6,0|gttc40,8,7,1|h4m83z,8,7,1|h4m840,7,6,0|hcjerz,7,6,0|hcjes0,8,7,1|hncarz,8,7,1|hncas0,7,6,0|hv9hfz,7,6,0|hv9hg0,8,7,1|i6fc3z,8,7,1|i6fc40,7,6,0|idzk3z,7,6,0|idzk40,8,7,1|ip5erz,8,7,1|ip5es0,7,6,0|iwpmrz,7,6,0|iwpms0,8,7,1|j7vhfz,8,7,1|j7vhg0,7,6,0|jffpfz,7,6,0|jffpg0,8,7,1|jqlk3z,8,7,1|jqlk40,7,6,0|jyiqrz,7,6,0|jyiqs0,8,7,1|k9bmrz,8,7,1|k9bms0,7,6,0|kh8tfz,7,6,0|kh8tg0,8,7,1|ks1pfz,8,7,1|ks1pg0,7,6,0|kzyw3z,7,6,0|kzyw40,8,7,1|lb4qrz,8,7,1|lb4qs0,7,6,0|lioyrz,7,6,0|lioys0,8,7,1|ltutfz,8,7,1|ltutg0,7,6,0|m1f1fz,7,6,0|m1f1g0,8,7,1|mckw3z,8,7,1|mckw40,7,6,0|mki2rz,7,6,0|mki2s0,8,7,1|mvayrz,8,7,1|mvays0,7,6,0|n385fz,7,6,0|n385g0,8,7,1|ne11fz,8,7,1|ne11g0,7,6,0|nly83z,7,6,0|nly840,8,7,1|nwr43z,8,7,1|nwr440,7,6,0|o4oarz,7,6,0|o4oas0,8,7,1|ofu5fz,8,7,1|ofu5g0,7,6,0|onedfz,7,6,0|onedg0,8,7,1|oyk83z,8,7,1|oyk840,7,6,0|p64g3z,7,6,0|p64g40,8,7,1|phaarz,8,7,1|phaas0,7,6,0|pp7hfz,7,6,0|pp7hg0,8,7,1|q00dfz,8,7,1|q00dg0,7,6,0|q7xk3z,7,6,0|q7xk40,8,7,1|qiqg3z,8,7,1|qiqg40,7,6,0|qqnmrz,7,6,0|qqnms0,8,7,1|r1thfz,8,7,1|r1thg0,7,6,0|r9dpfz,7,6,0|r9dpg0,8,7,1|rkjk3z,8,7,1|rkjk40,7,6,0|rs3s3z,7,6,0|rs3s40,8,7,1|s39mrz,8,7,1|s39ms0,7,6,0|sb6tfz,7,6,0|sb6tg0,8,7,1|slzpfz,8,7,1|slzpg0,7,6,0|stww3z,7,6,0|stww40,8,7,1|t4ps3z,8,7,1|t4ps40,7,6,0|tcmyrz,7,6,0|tcmys0,8,7,1|tnfurz,8,7,1|tnfus0,7,6,0|tvd1fz,7,6,0|tvd1g0,8,7,1|u6iw3z,8,7,1|u6iw40,7,6,0|ue343z,7,6,0|ue3440,8,7,1|up8yrz,8,7,1|up8ys0,7,6,0|uwt6rz,7,6,0|uwt6s0,8,7,1|v7z1fz,8,7,1|v7z1g0,7,6,0|vfw83z,7,6,0|vfw840,8,7,1|vqp43z,8,7,1|vqp440,7,6,0|vymarz,7,6,0|vymas0,8,7,1|w9f6rz,8,7,1|w9f6s0,7,6,0|whcdfz,7,6,0|whcdg0,8,7,1|wsi83z,8,7,1|wsi840,7,6,0|x02g3z,7,6,0|x02g40,8,7,1|xb8arz,8,7,1|xb8as0,7,6,0|xisirz,7,6,0|xisis0,8,7,1|xtydfz,8,7,1|xtydg0,7,6,0|y1ilfz,7,6,0|y1ilg0,8,7,1|ycog3z,8,7,1|ycog40,7,6,0|yklmrz,7,6,0|yklms0,8,7,1|yveirz,8,7,1|yveis0,7,6,0|z3bpfz,7,6,0|z3bpg0,8,7,1|ze4lfz,8,7,1|ze4lg0,7,6,0","Europe/Bucharest|,0,257,0|-14u7wu0,41,257,0|-k29zi1,41,257,0|-k29zi0,10,7,0|-jmqqw1,10,7,0|-jmqqw0,11,11,1|-jfulk1,11,11,1|-jfulk0,10,7,0|-j6hk81,10,7,0|-j6hk80,11,11,1|-ix4iw1,11,11,1|-ix4iw0,10,7,0|-ineiw1,10,7,0|-ineiw0,11,11,1|-ie1hk1,11,11,1|-ie1hk0,10,7,0|-i4og81,10,7,0|-i4og80,11,11,1|-hvbew1,11,11,1|-hvbew0,10,7,0|-hlydk1,10,7,0|-hlydk0,11,11,1|-hclc81,11,11,1|-hclc80,10,7,0|-h38aw1,10,7,0|-h38aw0,11,11,1|-gtv9k1,11,11,1|-gtv9k0,10,7,0|-gki881,10,7,0|-gki880,11,11,1|-gb56w1,11,11,1|-gb56w0,10,7,0|-g1s5k1,10,7,0|-g1s5k0,11,11,1|-fsf481,11,11,1|-fsf480,10,7,0|4wl93z,10,7,0|4wl940,11,11,1|532ibz,11,11,1|532ic0,10,7,0|5csibz,10,7,0|5csic0,11,11,1|5lsnrz,11,11,1|5lsns0,10,7,0|5v5unz,10,7,0|5v5uo0,11,11,1|64ivzz,11,11,1|64iw00,10,7,0|6dvxbz,10,7,0|6dvxc0,11,11,1|6n8ynz,11,11,1|6n8yo0,10,7,0|6wlzzz,10,7,0|6wm000,11,11,1|75z1bz,11,11,1|75z1c0,10,7,0|7fc2nz,10,7,0|7fc2o0,11,11,1|7p22nz,11,11,1|7p22o0,10,7,0|7yf3zz,10,7,0|7yf400,11,11,1|87s5bz,11,11,1|87s5c0,10,7,0|8h56nz,10,7,0|8h56o0,11,11,1|8qi7zz,11,11,1|8qi800,10,7,0|8zv9bz,10,7,0|8zv9c0,11,11,1|998anz,11,11,1|998ao0,10,7,0|9ilbzz,10,7,0|9ilc00,11,11,1|9rydbz,11,11,1|9rydc0,10,7,0|a1benz,10,7,0|a1beo0,11,11,1|aaofzz,11,11,1|aaog00,10,7,0|ak1hbz,10,7,0|ak1hc0,11,11,1|atrhbz,11,11,1|atrhc0,10,7,0|b34d3z,10,7,0|b34d40,11,11,1|bchefz,11,11,1|bcheg0,10,7,0|blufrz,10,7,0|blufs0,11,11,1|bv7h3z,11,11,1|bv7h40,10,7,0|c4kifz,10,7,0|c4kig0,11,11,1|cdxjrz,11,11,1|cdxjs0,10,7,0|cnal3z,10,7,0|cnal40,11,11,1|cwnjnz,11,11,1|cwnjo0,10,7,0|d60nrz,10,7,0|d60ns0,11,11,1|dfdmbz,11,11,1|dfdmc0,10,7,0|dp3p3z,10,7,0|dp3p40,11,11,1|dzwibz,11,11,1|dzwic0,10,7,0|e7u03z,10,7,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,7,0|eqk2rz,10,7,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,7,0|f9a5fz,10,7,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,7,0|fs083z,10,7,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,7,0|gaqarz,10,7,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,7,0|gttc3z,10,7,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,7,0|hcjerz,10,7,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,7,0|hv9hfz,10,7,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,7,0|idzk3z,10,7,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,7,0|iwpmrz,10,7,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,7,0|jffpfz,10,7,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,7,0|jyiqrz,10,7,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,7,0|kh8tfz,10,7,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,7,0|kzyw3z,10,7,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,7,0|lioyrz,10,7,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,7,0|m1f1fz,10,7,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,7,0|mki2rz,10,7,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,7,0|n385fz,10,7,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,7,0|nly83z,10,7,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,7,0|o4oarz,10,7,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,7,0|onedfz,10,7,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,7,0|p64g3z,10,7,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,7,0|pp7hfz,10,7,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,7,0|q7xk3z,10,7,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,7,0|qqnmrz,10,7,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,7,0|r9dpfz,10,7,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,7,0|rs3s3z,10,7,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,7,0|sb6tfz,10,7,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,7,0|stww3z,10,7,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,7,0|tcmyrz,10,7,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,7,0|tvd1fz,10,7,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,7,0|ue343z,10,7,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,7,0|uwt6rz,10,7,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,7,0|vfw83z,10,7,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,7,0|vymarz,10,7,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,7,0|whcdfz,10,7,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,7,0|x02g3z,10,7,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,7,0|xisirz,10,7,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,7,0|y1ilfz,10,7,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,7,0|yklmrz,10,7,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,7,0|z3bpfz,10,7,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,7,0","Europe/Budapest|,0,258,0|-15bee78,7,6,0|-s0e081,7,6,0|-s0e080,8,7,1|-rsilg1,8,7,1|-rsilg0,7,6,0|-ridmk1,7,6,0|-ridmk0,8,7,1|-ragfw1,8,7,1|-ragfw0,7,6,0|-qznjw1,7,6,0|-qznjw0,8,7,1|-qrqd81,8,7,1|-qrqd80,7,6,0|-qgvmk1,7,6,0|-qgvmk0,8,7,1|-q90ak1,8,7,1|-q90ak0,7,6,0|-pykd81,7,6,0|-pykd80,8,7,1|-ppx981,8,7,1|-ppx980,7,6,0|-ezvc81,7,6,0|-ezvc80,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dp3rw1,8,7,1|-dp3rw0,7,6,0|-dfqqk1,7,6,0|-dfqqk0,8,7,1|-d6dp81,8,7,1|-d6dp80,7,6,0|-cvhc81,7,6,0|-cvhc80,8,7,1|-cm2dg1,8,7,1|-cm2dg0,7,6,0|-cecfw1,7,6,0|-cecfw0,8,7,1|-c4ko01,8,7,1|-c4ko00,7,6,0|-bv9ek1,7,6,0|-bv9ek0,8,7,1|-blwd81,8,7,1|-blwd80,7,6,0|-bcjbw1,7,6,0|-bcjbw0,8,7,1|-b36ak1,8,7,1|-b36ak0,7,6,0|-atgak1,7,6,0|-atgak0,8,7,1|-akg7w1,8,7,1|-akg7w0,7,6,0|-85bc41,7,6,0|-85bc40,8,7,1|-7yh481,8,7,1|-7yh480,7,6,0|-7ml3w1,7,6,0|-7ml3w0,8,7,1|-7fqt81,8,7,1|-7fqt80,7,6,0|-7353w1,7,6,0|-7353w0,8,7,1|-6x0qk1,8,7,1|-6x0qk0,7,6,0|-6kf181,7,6,0|-6kf180,8,7,1|-6eanw1,8,7,1|-6eanw0,7,6,0|5csnvz,7,6,0|5csnw0,8,7,1|5lsqjz,8,7,1|5lsqk0,7,6,0|5v5rvz,7,6,0|5v5rw0,8,7,1|64it7z,8,7,1|64it80,7,6,0|6dvujz,7,6,0|6dvuk0,8,7,1|6n8vvz,8,7,1|6n8vw0,7,6,0|6wlx7z,7,6,0|6wlx80,8,7,1|75yyjz,8,7,1|75yyk0,7,6,0|7fc5fz,7,6,0|7fc5g0,8,7,1|7p25fz,8,7,1|7p25g0,7,6,0|7yf6rz,7,6,0|7yf6s0,8,7,1|87s83z,8,7,1|87s840,7,6,0|8h59fz,7,6,0|8h59g0,8,7,1|8qiarz,8,7,1|8qias0,7,6,0|8zvc3z,7,6,0|8zvc40,8,7,1|998dfz,8,7,1|998dg0,7,6,0|9ilerz,7,6,0|9iles0,8,7,1|9ryg3z,8,7,1|9ryg40,7,6,0|a1bhfz,7,6,0|a1bhg0,8,7,1|aaoirz,8,7,1|aaois0,7,6,0|ak1k3z,7,6,0|ak1k40,8,7,1|atrk3z,8,7,1|atrk40,7,6,0|b34lfz,7,6,0|b34lg0,8,7,1|bchmrz,8,7,1|bchms0,7,6,0|bluo3z,7,6,0|bluo40,8,7,1|bv7pfz,8,7,1|bv7pg0,7,6,0|c4kqrz,7,6,0|c4kqs0,8,7,1|cdxs3z,8,7,1|cdxs40,7,6,0|cnatfz,7,6,0|cnatg0,8,7,1|cwnurz,8,7,1|cwnus0,7,6,0|d60w3z,7,6,0|d60w40,8,7,1|dfdxfz,8,7,1|dfdxg0,7,6,0|dp3xfz,7,6,0|dp3xg0,8,7,1|dzwtfz,8,7,1|dzwtg0,7,6,0|e7u03z,7,6,0|e7u040,8,7,1|eimw3z,8,7,1|eimw40,7,6,0|eqk2rz,7,6,0|eqk2s0,8,7,1|f1cyrz,8,7,1|f1cys0,7,6,0|f9a5fz,7,6,0|f9a5g0,8,7,1|fkg03z,8,7,1|fkg040,7,6,0|fs083z,7,6,0|fs0840,8,7,1|g362rz,8,7,1|g362s0,7,6,0|gaqarz,7,6,0|gaqas0,8,7,1|glw5fz,8,7,1|glw5g0,7,6,0|gttc3z,7,6,0|gttc40,8,7,1|h4m83z,8,7,1|h4m840,7,6,0|hcjerz,7,6,0|hcjes0,8,7,1|hncarz,8,7,1|hncas0,7,6,0|hv9hfz,7,6,0|hv9hg0,8,7,1|i6fc3z,8,7,1|i6fc40,7,6,0|idzk3z,7,6,0|idzk40,8,7,1|ip5erz,8,7,1|ip5es0,7,6,0|iwpmrz,7,6,0|iwpms0,8,7,1|j7vhfz,8,7,1|j7vhg0,7,6,0|jffpfz,7,6,0|jffpg0,8,7,1|jqlk3z,8,7,1|jqlk40,7,6,0|jyiqrz,7,6,0|jyiqs0,8,7,1|k9bmrz,8,7,1|k9bms0,7,6,0|kh8tfz,7,6,0|kh8tg0,8,7,1|ks1pfz,8,7,1|ks1pg0,7,6,0|kzyw3z,7,6,0|kzyw40,8,7,1|lb4qrz,8,7,1|lb4qs0,7,6,0|lioyrz,7,6,0|lioys0,8,7,1|ltutfz,8,7,1|ltutg0,7,6,0|m1f1fz,7,6,0|m1f1g0,8,7,1|mckw3z,8,7,1|mckw40,7,6,0|mki2rz,7,6,0|mki2s0,8,7,1|mvayrz,8,7,1|mvays0,7,6,0|n385fz,7,6,0|n385g0,8,7,1|ne11fz,8,7,1|ne11g0,7,6,0|nly83z,7,6,0|nly840,8,7,1|nwr43z,8,7,1|nwr440,7,6,0|o4oarz,7,6,0|o4oas0,8,7,1|ofu5fz,8,7,1|ofu5g0,7,6,0|onedfz,7,6,0|onedg0,8,7,1|oyk83z,8,7,1|oyk840,7,6,0|p64g3z,7,6,0|p64g40,8,7,1|phaarz,8,7,1|phaas0,7,6,0|pp7hfz,7,6,0|pp7hg0,8,7,1|q00dfz,8,7,1|q00dg0,7,6,0|q7xk3z,7,6,0|q7xk40,8,7,1|qiqg3z,8,7,1|qiqg40,7,6,0|qqnmrz,7,6,0|qqnms0,8,7,1|r1thfz,8,7,1|r1thg0,7,6,0|r9dpfz,7,6,0|r9dpg0,8,7,1|rkjk3z,8,7,1|rkjk40,7,6,0|rs3s3z,7,6,0|rs3s40,8,7,1|s39mrz,8,7,1|s39ms0,7,6,0|sb6tfz,7,6,0|sb6tg0,8,7,1|slzpfz,8,7,1|slzpg0,7,6,0|stww3z,7,6,0|stww40,8,7,1|t4ps3z,8,7,1|t4ps40,7,6,0|tcmyrz,7,6,0|tcmys0,8,7,1|tnfurz,8,7,1|tnfus0,7,6,0|tvd1fz,7,6,0|tvd1g0,8,7,1|u6iw3z,8,7,1|u6iw40,7,6,0|ue343z,7,6,0|ue3440,8,7,1|up8yrz,8,7,1|up8ys0,7,6,0|uwt6rz,7,6,0|uwt6s0,8,7,1|v7z1fz,8,7,1|v7z1g0,7,6,0|vfw83z,7,6,0|vfw840,8,7,1|vqp43z,8,7,1|vqp440,7,6,0|vymarz,7,6,0|vymas0,8,7,1|w9f6rz,8,7,1|w9f6s0,7,6,0|whcdfz,7,6,0|whcdg0,8,7,1|wsi83z,8,7,1|wsi840,7,6,0|x02g3z,7,6,0|x02g40,8,7,1|xb8arz,8,7,1|xb8as0,7,6,0|xisirz,7,6,0|xisis0,8,7,1|xtydfz,8,7,1|xtydg0,7,6,0|y1ilfz,7,6,0|y1ilg0,8,7,1|ycog3z,8,7,1|ycog40,7,6,0|yklmrz,7,6,0|yklms0,8,7,1|yveirz,8,7,1|yveis0,7,6,0|z3bpfz,7,6,0|z3bpg0,8,7,1|ze4lfz,8,7,1|ze4lg0,7,6,0","Europe/Chisinau|,0,259,0|-1ayy808,52,260,0|-r2p1bp,52,260,0|-r2p1bo,41,257,0|-k29zi1,41,257,0|-k29zi0,10,7,0|-jmqqw1,10,7,0|-jmqqw0,11,11,1|-jfulk1,11,11,1|-jfulk0,10,7,0|-j6hk81,10,7,0|-j6hk80,11,11,1|-ix4iw1,11,11,1|-ix4iw0,10,7,0|-ineiw1,10,7,0|-ineiw0,11,11,1|-ie1hk1,11,11,1|-ie1hk0,10,7,0|-i4og81,10,7,0|-i4og80,11,11,1|-hvbew1,11,11,1|-hvbew0,10,7,0|-hlydk1,10,7,0|-hlydk0,11,11,1|-hclc81,11,11,1|-hclc80,10,7,0|-h38aw1,10,7,0|-h38aw0,11,11,1|-gtv9k1,11,11,1|-gtv9k0,10,7,0|-gki881,10,7,0|-gki880,11,11,1|-gb56w1,11,11,1|-gb56w0,10,7,0|-g1s5k1,10,7,0|-g1s5k0,11,11,1|-fsf481,11,11,1|-fsf480,10,7,0|-fc0dk1,10,7,0|-fc0dk0,11,11,1|-euq8c1,11,11,1|-euq8c0,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dp3rw1,8,7,1|-dp3rw0,7,6,0|-dfqqk1,7,6,0|-dfqqk0,8,7,1|-d8e5k1,8,7,1|-d8e5k0,132,11,0|5vb6bz,132,11,0|5vb6c0,133,144,1|64pzjz,133,144,1|64pzk0,132,11,0|6e33nz,132,11,0|6e33o0,133,144,1|6nhwvz,133,144,1|6nhww0,132,11,0|6wv0zz,132,11,0|6wv100,133,144,1|769u7z,133,144,1|769u80,132,11,0|7foszz,132,11,0|7fot00,133,144,1|7p1zvz,133,144,1|7p1zw0,132,11,0|7yf17z,132,11,0|7yf180,133,144,1|87s2jz,133,144,1|87s2k0,132,11,0|8h53vz,132,11,0|8h53w0,133,144,1|8qi57z,133,144,1|8qi580,132,11,0|8zv6jz,132,11,0|8zv6k0,133,144,1|9987vz,133,144,1|9987w0,132,11,0|9il97z,132,11,0|9il980,133,144,1|9ryajz,133,144,1|9ryak0,132,11,0|a1bbvz,132,11,0|a1bbw0,133,144,1|aaod7z,133,144,1|aaod80,132,11,0|ak1ejz,132,11,0|ak1ek0,133,144,1|am73rz,133,144,1|am73s0,11,11,1|atrhbz,11,11,1|atrhc0,10,7,0|b34inz,10,7,0|b34io0,11,11,1|bchjzz,11,11,1|bchk00,10,7,0|blufrz,10,7,0|blufs0,11,11,1|bv7ebz,11,11,1|bv7ec0,10,7,0|c4kifz,10,7,0|c4kig0,11,11,1|cdxgzz,11,11,1|cdxh00,10,7,0|cnal3z,10,7,0|cnal40,11,11,1|cwnjnz,11,11,1|cwnjo0,10,7,0|d60nrz,10,7,0|d60ns0,11,11,1|dfdmbz,11,11,1|dfdmc0,10,7,0|dp3p3z,10,7,0|dp3p40,11,11,1|dzwibz,11,11,1|dzwic0,10,7,0|e7txbz,10,7,0|e7txc0,11,11,1|eimtbz,11,11,1|eimtc0,10,7,0|eqjzzz,10,7,0|eqk000,11,11,1|f1cvzz,11,11,1|f1cw00,10,7,0|f9a2nz,10,7,0|f9a2o0,11,11,1|fkfxbz,11,11,1|fkfxc0,10,7,0|fs05bz,10,7,0|fs05c0,11,11,1|g35zzz,11,11,1|g36000,10,7,0|gaq7zz,10,7,0|gaq800,11,11,1|glw2nz,11,11,1|glw2o0,10,7,0|gtt9bz,10,7,0|gtt9c0,11,11,1|h4m5bz,11,11,1|h4m5c0,10,7,0|hcjbzz,10,7,0|hcjc00,11,11,1|hnc7zz,11,11,1|hnc800,10,7,0|hv9enz,10,7,0|hv9eo0,11,11,1|i6f9bz,11,11,1|i6f9c0,10,7,0|idzhbz,10,7,0|idzhc0,11,11,1|ip5bzz,11,11,1|ip5c00,10,7,0|iwpjzz,10,7,0|iwpk00,11,11,1|j7venz,11,11,1|j7veo0,10,7,0|jffmnz,10,7,0|jffmo0,11,11,1|jqlhbz,11,11,1|jqlhc0,10,7,0|jyinzz,10,7,0|jyio00,11,11,1|k9bjzz,11,11,1|k9bk00,10,7,0|kh8qnz,10,7,0|kh8qo0,11,11,1|ks1mnz,11,11,1|ks1mo0,10,7,0|kzytbz,10,7,0|kzytc0,11,11,1|lb4nzz,11,11,1|lb4o00,10,7,0|liovzz,10,7,0|liow00,11,11,1|ltuqnz,11,11,1|ltuqo0,10,7,0|m1eynz,10,7,0|m1eyo0,11,11,1|mcktbz,11,11,1|mcktc0,10,7,0|mkhzzz,10,7,0|mki000,11,11,1|mvavzz,11,11,1|mvaw00,10,7,0|n382nz,10,7,0|n382o0,11,11,1|ne0ynz,11,11,1|ne0yo0,10,7,0|nly5bz,10,7,0|nly5c0,11,11,1|nwr1bz,11,11,1|nwr1c0,10,7,0|o4o7zz,10,7,0|o4o800,11,11,1|ofu2nz,11,11,1|ofu2o0,10,7,0|oneanz,10,7,0|oneao0,11,11,1|oyk5bz,11,11,1|oyk5c0,10,7,0|p64dbz,10,7,0|p64dc0,11,11,1|pha7zz,11,11,1|pha800,10,7,0|pp7enz,10,7,0|pp7eo0,11,11,1|q00anz,11,11,1|q00ao0,10,7,0|q7xhbz,10,7,0|q7xhc0,11,11,1|qiqdbz,11,11,1|qiqdc0,10,7,0|qqnjzz,10,7,0|qqnk00,11,11,1|r1tenz,11,11,1|r1teo0,10,7,0|r9dmnz,10,7,0|r9dmo0,11,11,1|rkjhbz,11,11,1|rkjhc0,10,7,0|rs3pbz,10,7,0|rs3pc0,11,11,1|s39jzz,11,11,1|s39k00,10,7,0|sb6qnz,10,7,0|sb6qo0,11,11,1|slzmnz,11,11,1|slzmo0,10,7,0|stwtbz,10,7,0|stwtc0,11,11,1|t4ppbz,11,11,1|t4ppc0,10,7,0|tcmvzz,10,7,0|tcmw00,11,11,1|tnfrzz,11,11,1|tnfs00,10,7,0|tvcynz,10,7,0|tvcyo0,11,11,1|u6itbz,11,11,1|u6itc0,10,7,0|ue31bz,10,7,0|ue31c0,11,11,1|up8vzz,11,11,1|up8w00,10,7,0|uwt3zz,10,7,0|uwt400,11,11,1|v7yynz,11,11,1|v7yyo0,10,7,0|vfw5bz,10,7,0|vfw5c0,11,11,1|vqp1bz,11,11,1|vqp1c0,10,7,0|vym7zz,10,7,0|vym800,11,11,1|w9f3zz,11,11,1|w9f400,10,7,0|whcanz,10,7,0|whcao0,11,11,1|wsi5bz,11,11,1|wsi5c0,10,7,0|x02dbz,10,7,0|x02dc0,11,11,1|xb87zz,11,11,1|xb8800,10,7,0|xisfzz,10,7,0|xisg00,11,11,1|xtyanz,11,11,1|xtyao0,10,7,0|y1iinz,10,7,0|y1iio0,11,11,1|ycodbz,11,11,1|ycodc0,10,7,0|ykljzz,10,7,0|yklk00,11,11,1|yvefzz,11,11,1|yveg00,10,7,0|z3bmnz,10,7,0|z3bmo0,11,11,1|ze4inz,11,11,1|ze4io0,10,7,0","Europe/Copenhagen|,0,261,0|-15r1bnw,52,261,0|-13nvrnx,52,261,0|-13nvrnw,7,6,0|-rzo2w1,7,6,0|-rzo2w0,8,7,1|-rsir01,8,7,1|-rsir00,7,6,0|-fgqo41,7,6,0|-fgqo40,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dp3rw1,8,7,1|-dp3rw0,7,6,0|-dfqqk1,7,6,0|-dfqqk0,8,7,1|-d6dp81,8,7,1|-d6dp80,7,6,0|-cx0nw1,7,6,0|-cx0nw0,8,7,1|-cq2nw1,8,7,1|-cq2nw0,7,6,0|-ccr181,7,6,0|-ccr180,8,7,1|-c6f981,8,7,1|-c6f980,7,6,0|-bttjw1,7,6,0|-bttjw0,8,7,1|-bos2k1,8,7,1|-bos2k0,7,6,0|-baqik1,7,6,0|-baqik0,8,7,1|-b61zw1,8,7,1|-b61zw0,7,6,0|5cstfz,7,6,0|5cstg0,8,7,1|5lsw3z,8,7,1|5lsw40,7,6,0|5v5xfz,7,6,0|5v5xg0,8,7,1|64iyrz,8,7,1|64iys0,7,6,0|6dw03z,7,6,0|6dw040,8,7,1|6n91fz,8,7,1|6n91g0,7,6,0|6wm2rz,7,6,0|6wm2s0,8,7,1|75z43z,8,7,1|75z440,7,6,0|7fc5fz,7,6,0|7fc5g0,8,7,1|7p25fz,8,7,1|7p25g0,7,6,0|7yf6rz,7,6,0|7yf6s0,8,7,1|87s83z,8,7,1|87s840,7,6,0|8h59fz,7,6,0|8h59g0,8,7,1|8qiarz,8,7,1|8qias0,7,6,0|8zvc3z,7,6,0|8zvc40,8,7,1|998dfz,8,7,1|998dg0,7,6,0|9ilerz,7,6,0|9iles0,8,7,1|9ryg3z,8,7,1|9ryg40,7,6,0|a1bhfz,7,6,0|a1bhg0,8,7,1|aaoirz,8,7,1|aaois0,7,6,0|ak1k3z,7,6,0|ak1k40,8,7,1|atrk3z,8,7,1|atrk40,7,6,0|b34lfz,7,6,0|b34lg0,8,7,1|bchmrz,8,7,1|bchms0,7,6,0|bluo3z,7,6,0|bluo40,8,7,1|bv7pfz,8,7,1|bv7pg0,7,6,0|c4kqrz,7,6,0|c4kqs0,8,7,1|cdxs3z,8,7,1|cdxs40,7,6,0|cnatfz,7,6,0|cnatg0,8,7,1|cwnurz,8,7,1|cwnus0,7,6,0|d60w3z,7,6,0|d60w40,8,7,1|dfdxfz,8,7,1|dfdxg0,7,6,0|dp3xfz,7,6,0|dp3xg0,8,7,1|dzwtfz,8,7,1|dzwtg0,7,6,0|e7u03z,7,6,0|e7u040,8,7,1|eimw3z,8,7,1|eimw40,7,6,0|eqk2rz,7,6,0|eqk2s0,8,7,1|f1cyrz,8,7,1|f1cys0,7,6,0|f9a5fz,7,6,0|f9a5g0,8,7,1|fkg03z,8,7,1|fkg040,7,6,0|fs083z,7,6,0|fs0840,8,7,1|g362rz,8,7,1|g362s0,7,6,0|gaqarz,7,6,0|gaqas0,8,7,1|glw5fz,8,7,1|glw5g0,7,6,0|gttc3z,7,6,0|gttc40,8,7,1|h4m83z,8,7,1|h4m840,7,6,0|hcjerz,7,6,0|hcjes0,8,7,1|hncarz,8,7,1|hncas0,7,6,0|hv9hfz,7,6,0|hv9hg0,8,7,1|i6fc3z,8,7,1|i6fc40,7,6,0|idzk3z,7,6,0|idzk40,8,7,1|ip5erz,8,7,1|ip5es0,7,6,0|iwpmrz,7,6,0|iwpms0,8,7,1|j7vhfz,8,7,1|j7vhg0,7,6,0|jffpfz,7,6,0|jffpg0,8,7,1|jqlk3z,8,7,1|jqlk40,7,6,0|jyiqrz,7,6,0|jyiqs0,8,7,1|k9bmrz,8,7,1|k9bms0,7,6,0|kh8tfz,7,6,0|kh8tg0,8,7,1|ks1pfz,8,7,1|ks1pg0,7,6,0|kzyw3z,7,6,0|kzyw40,8,7,1|lb4qrz,8,7,1|lb4qs0,7,6,0|lioyrz,7,6,0|lioys0,8,7,1|ltutfz,8,7,1|ltutg0,7,6,0|m1f1fz,7,6,0|m1f1g0,8,7,1|mckw3z,8,7,1|mckw40,7,6,0|mki2rz,7,6,0|mki2s0,8,7,1|mvayrz,8,7,1|mvays0,7,6,0|n385fz,7,6,0|n385g0,8,7,1|ne11fz,8,7,1|ne11g0,7,6,0|nly83z,7,6,0|nly840,8,7,1|nwr43z,8,7,1|nwr440,7,6,0|o4oarz,7,6,0|o4oas0,8,7,1|ofu5fz,8,7,1|ofu5g0,7,6,0|onedfz,7,6,0|onedg0,8,7,1|oyk83z,8,7,1|oyk840,7,6,0|p64g3z,7,6,0|p64g40,8,7,1|phaarz,8,7,1|phaas0,7,6,0|pp7hfz,7,6,0|pp7hg0,8,7,1|q00dfz,8,7,1|q00dg0,7,6,0|q7xk3z,7,6,0|q7xk40,8,7,1|qiqg3z,8,7,1|qiqg40,7,6,0|qqnmrz,7,6,0|qqnms0,8,7,1|r1thfz,8,7,1|r1thg0,7,6,0|r9dpfz,7,6,0|r9dpg0,8,7,1|rkjk3z,8,7,1|rkjk40,7,6,0|rs3s3z,7,6,0|rs3s40,8,7,1|s39mrz,8,7,1|s39ms0,7,6,0|sb6tfz,7,6,0|sb6tg0,8,7,1|slzpfz,8,7,1|slzpg0,7,6,0|stww3z,7,6,0|stww40,8,7,1|t4ps3z,8,7,1|t4ps40,7,6,0|tcmyrz,7,6,0|tcmys0,8,7,1|tnfurz,8,7,1|tnfus0,7,6,0|tvd1fz,7,6,0|tvd1g0,8,7,1|u6iw3z,8,7,1|u6iw40,7,6,0|ue343z,7,6,0|ue3440,8,7,1|up8yrz,8,7,1|up8ys0,7,6,0|uwt6rz,7,6,0|uwt6s0,8,7,1|v7z1fz,8,7,1|v7z1g0,7,6,0|vfw83z,7,6,0|vfw840,8,7,1|vqp43z,8,7,1|vqp440,7,6,0|vymarz,7,6,0|vymas0,8,7,1|w9f6rz,8,7,1|w9f6s0,7,6,0|whcdfz,7,6,0|whcdg0,8,7,1|wsi83z,8,7,1|wsi840,7,6,0|x02g3z,7,6,0|x02g40,8,7,1|xb8arz,8,7,1|xb8as0,7,6,0|xisirz,7,6,0|xisis0,8,7,1|xtydfz,8,7,1|xtydg0,7,6,0|y1ilfz,7,6,0|y1ilg0,8,7,1|ycog3z,8,7,1|ycog40,7,6,0|yklmrz,7,6,0|yklms0,8,7,1|yveirz,8,7,1|yveis0,7,6,0|z3bpfz,7,6,0|z3bpg0,8,7,1|ze4lfz,8,7,1|ze4lg0,7,6,0","Europe/Dublin|,0,262,0|-1anxquc,134,263,0|-rzcmls,134,263,0|-rzcmlr,97,264,1|-rsibxs,97,264,1|-rsibxr,1,1,0|-risd41,1,1,0|-risd40,64,6,1|-ragd41,64,6,1|-ragd40,1,1,0|-r0s7s1,1,1,0|-r0s7s0,64,6,1|-qr0d41,64,6,1|-qr0d40,1,1,0|-qhp6g1,1,1,0|-qhp6g0,64,6,1|-q8aag1,64,6,1|-q8aag0,1,1,0|-pyz3s1,1,1,0|-pyz3s0,64,6,1|-po4d41,64,6,1|-po4d40,1,1,0|-pfw2g1,1,1,0|-pfw2g0,64,6,1|-p6h6g1,64,6,1|-p6h6g0,1,1,0|-oxiyg1,1,1,0|-oxiyg0,97,6,1|-onfzs1,97,6,1|-onfzs0,1,1,0|-odd141,1,1,0|-odd140,97,6,1|-o5st41,97,6,1|-o5st40,1,1,0|-nuzx41,1,1,0|-nuzx40,97,6,1|-nmprs1,97,6,1|-nmprs0,1,1,0|-nbwvs1,1,1,0|-nbwvs0,97,6,1|-n39rs1,97,6,1|-n39rs0,1,1,0|-mt6t41,1,1,0|-mt6t40,97,6,1|-mkjp41,97,6,1|-mkjp40,1,1,0|-matp41,1,1,0|-matp40,97,6,1|-m1tmg1,97,6,1|-m1tmg0,1,1,0|-lrdp41,1,1,0|-lrdp40,97,6,1|-liql41,97,6,1|-liql40,1,1,0|-l8nmg1,1,1,0|-l8nmg0,97,6,1|-l00ig1,97,6,1|-l00ig0,1,1,0|-kqaig1,1,1,0|-kqaig0,97,6,1|-khafs1,97,6,1|-khafs0,1,1,0|-k77h41,1,1,0|-k77h40,97,6,1|-jykd41,97,6,1|-jykd40,1,1,0|-joheg1,1,1,0|-joheg0,97,6,1|-jfuag1,97,6,1|-jfuag0,1,1,0|-j64ag1,1,1,0|-j64ag0,97,6,1|-iwr941,97,6,1|-iwr940,1,1,0|-imoag1,1,1,0|-imoag0,97,6,1|-ie16g1,97,6,1|-ie16g0,1,1,0|-i4b6g1,1,1,0|-i4b6g0,97,6,1|-hvb3s1,97,6,1|-hvb3s0,1,1,0|-hl8541,1,1,0|-hl8540,97,6,1|-hcl141,97,6,1|-hcl140,1,1,0|-h2i2g1,1,1,0|-h2i2g0,97,6,1|-gtuyg1,97,6,1|-gtuyg0,1,1,0|-gk4yg1,1,1,0|-gk4yg0,97,6,1|-gb4vs1,97,6,1|-gb4vs0,1,1,0|-g11x41,1,1,0|-g11x40,97,6,1|-fpw2g1,97,6,1|-fpw2g0,1,1,0|-fkul41,1,1,0|-fkul40,97,6,1|-c4md41,97,6,1|-c4md40,1,1,0|-bwc7s1,1,1,0|-bwc7s0,97,6,1|-bkgfs1,97,6,1|-bkgfs0,1,1,0|-bbtbs1,1,1,0|-bbtbs0,97,6,1|-b1qd41,97,6,1|-b1qd40,1,1,0|-att6g1,1,1,0|-att6g0,97,6,1|-aj0ag1,97,6,1|-aj0ag0,1,1,0|-aad6g1,1,1,0|-aad6g0,97,6,1|-a0n6g1,97,6,1|-a0n6g0,1,1,0|-9rn3s1,1,1,0|-9rn3s0,97,6,1|-9hx3s1,97,6,1|-9hx3s0,1,1,0|-98k2g1,1,1,0|-98k2g0,97,6,1|-8yu2g1,97,6,1|-8yu2g0,1,1,0|-8ptzs1,1,1,0|-8ptzs0,97,6,1|-8h6vs1,97,6,1|-8h6vs0,1,1,0|-87gvs1,1,1,0|-87gvs0,97,6,1|-7ygt41,97,6,1|-7ygt40,1,1,0|-7odug1,1,1,0|-7odug0,97,6,1|-7fqqg1,97,6,1|-7fqqg0,1,1,0|-75at41,1,1,0|-75at40,97,6,1|-6wnp41,97,6,1|-6wnp40,1,1,0|-6mxp41,1,1,0|-6mxp40,97,6,1|-6dxmg1,97,6,1|-6dxmg0,1,1,0|-63uns1,1,1,0|-63uns0,97,6,1|-5v7js1,97,6,1|-5v7js0,1,1,0|-5l4l41,1,1,0|-5l4l40,97,6,1|-5chh41,97,6,1|-5chh40,1,1,0|-52rh41,1,1,0|-52rh40,97,6,1|-4treg1,97,6,1|-4treg0,1,1,0|-4krbs1,1,1,0|-4krbs0,97,6,1|-49lh41,97,6,1|-49lh40,1,1,0|-421941,1,1,0|-421940,97,6,1|-3qveg1,97,6,1|-3qveg0,1,1,0|-3iy7s1,1,1,0|-3iy7s0,97,6,1|-385bs1,97,6,1|-385bs0,1,1,0|-30l3s1,1,1,0|-30l3s0,97,6,1|-2pf941,97,6,1|-2pf940,1,1,0|-2hv141,1,1,0|-2hv140,97,6,1|-26p6g1,97,6,1|-26p6g0,1,1,0|-1z4yg1,1,1,0|-1z4yg0,97,6,1|-1nz3s1,97,6,1|-1nz3s0,1,1,0|-1gevs1,1,1,0|-1gevs0,97,6,1|-14w2g1,97,6,1|-14w2g0,1,1,0|-z4ns1,1,1,0|-z4ns0,97,6,1|-m6841,97,6,1|-m6840,97,6,0|yd6vz,97,6,0|yd6w0,1,1,1|15kg7z,1,1,1|15kg80,97,6,0|1h39jz,97,6,0|1h39k0,1,1,1|1oaivz,1,1,1|1oaiw0,97,6,0|1ztc7z,97,6,0|1ztc80,1,1,1|270ljz,1,1,1|270lk0,97,6,0|2ijevz,97,6,0|2ijew0,1,1,1|2pqo7z,1,1,1|2pqo80,97,6,0|319hjz,97,6,0|319hk0,1,1,1|38tpjz,1,1,1|38tpk0,97,6,0|3jzk7z,97,6,0|3jzk80,1,1,1|3rjs7z,1,1,1|3rjs80,97,6,0|42pmvz,97,6,0|42pmw0,1,1,1|4a9uvz,1,1,1|4a9uw0,97,6,0|4lso7z,97,6,0|4lso80,1,1,1|4szxjz,1,1,1|4szxk0,97,6,0|54iqvz,97,6,0|54iqw0,1,1,1|5bq07z,1,1,1|5bq080,97,6,0|5n8tjz,97,6,0|5n8tk0,1,1,1|5v5xfz,1,1,1|5v5xg0,97,6,0|65ytfz,97,6,0|65ytg0,1,1,1|6dw03z,1,1,1|6dw040,97,6,0|6oow3z,97,6,0|6oow40,1,1,1|6wm2rz,1,1,1|6wm2s0,97,6,0|77eyrz,97,6,0|77eys0,1,1,1|7fc5fz,1,1,1|7fc5g0,97,6,0|7qi03z,97,6,0|7qi040,1,1,1|7yf6rz,1,1,1|7yf6s0,97,6,0|8982rz,97,6,0|8982s0,1,1,1|8h59fz,1,1,1|8h59g0,97,6,0|8ry5fz,97,6,0|8ry5g0,1,1,1|8zvc3z,1,1,1|8zvc40,97,6,0|9ao83z,97,6,0|9ao840,1,1,1|9ilerz,1,1,1|9iles0,97,6,0|9tearz,97,6,0|9teas0,1,1,1|a1bhfz,1,1,1|a1bhg0,97,6,0|achc3z,97,6,0|achc40,1,1,1|ak1k3z,1,1,1|ak1k40,97,6,0|av7erz,97,6,0|av7es0,1,1,1|b34lfz,1,1,1|b34lg0,97,6,0|bdxhfz,97,6,0|bdxhg0,1,1,1|bluo3z,1,1,1|bluo40,97,6,0|bwnk3z,97,6,0|bwnk40,1,1,1|c4kqrz,1,1,1|c4kqs0,97,6,0|cfdmrz,97,6,0|cfdms0,1,1,1|cnatfz,1,1,1|cnatg0,97,6,0|cy3pfz,97,6,0|cy3pg0,1,1,1|d60w3z,1,1,1|d60w40,97,6,0|dgts3z,97,6,0|dgts40,1,1,1|dp3xfz,1,1,1|dp3xg0,97,6,0|dzwtfz,97,6,0|dzwtg0,1,1,1|e7u03z,1,1,1|e7u040,97,6,0|eimw3z,97,6,0|eimw40,1,1,1|eqk2rz,1,1,1|eqk2s0,97,6,0|f1cyrz,97,6,0|f1cys0,1,1,1|f9a5fz,1,1,1|f9a5g0,97,6,0|fkg03z,97,6,0|fkg040,1,1,1|fs083z,1,1,1|fs0840,97,6,0|g362rz,97,6,0|g362s0,1,1,1|gaqarz,1,1,1|gaqas0,97,6,0|glw5fz,97,6,0|glw5g0,1,1,1|gttc3z,1,1,1|gttc40,97,6,0|h4m83z,97,6,0|h4m840,1,1,1|hcjerz,1,1,1|hcjes0,97,6,0|hncarz,97,6,0|hncas0,1,1,1|hv9hfz,1,1,1|hv9hg0,97,6,0|i6fc3z,97,6,0|i6fc40,1,1,1|idzk3z,1,1,1|idzk40,97,6,0|ip5erz,97,6,0|ip5es0,1,1,1|iwpmrz,1,1,1|iwpms0,97,6,0|j7vhfz,97,6,0|j7vhg0,1,1,1|jffpfz,1,1,1|jffpg0,97,6,0|jqlk3z,97,6,0|jqlk40,1,1,1|jyiqrz,1,1,1|jyiqs0,97,6,0|k9bmrz,97,6,0|k9bms0,1,1,1|kh8tfz,1,1,1|kh8tg0,97,6,0|ks1pfz,97,6,0|ks1pg0,1,1,1|kzyw3z,1,1,1|kzyw40,97,6,0|lb4qrz,97,6,0|lb4qs0,1,1,1|lioyrz,1,1,1|lioys0,97,6,0|ltutfz,97,6,0|ltutg0,1,1,1|m1f1fz,1,1,1|m1f1g0,97,6,0|mckw3z,97,6,0|mckw40,1,1,1|mki2rz,1,1,1|mki2s0,97,6,0|mvayrz,97,6,0|mvays0,1,1,1|n385fz,1,1,1|n385g0,97,6,0|ne11fz,97,6,0|ne11g0,1,1,1|nly83z,1,1,1|nly840,97,6,0|nwr43z,97,6,0|nwr440,1,1,1|o4oarz,1,1,1|o4oas0,97,6,0|ofu5fz,97,6,0|ofu5g0,1,1,1|onedfz,1,1,1|onedg0,97,6,0|oyk83z,97,6,0|oyk840,1,1,1|p64g3z,1,1,1|p64g40,97,6,0|phaarz,97,6,0|phaas0,1,1,1|pp7hfz,1,1,1|pp7hg0,97,6,0|q00dfz,97,6,0|q00dg0,1,1,1|q7xk3z,1,1,1|q7xk40,97,6,0|qiqg3z,97,6,0|qiqg40,1,1,1|qqnmrz,1,1,1|qqnms0,97,6,0|r1thfz,97,6,0|r1thg0,1,1,1|r9dpfz,1,1,1|r9dpg0,97,6,0|rkjk3z,97,6,0|rkjk40,1,1,1|rs3s3z,1,1,1|rs3s40,97,6,0|s39mrz,97,6,0|s39ms0,1,1,1|sb6tfz,1,1,1|sb6tg0,97,6,0|slzpfz,97,6,0|slzpg0,1,1,1|stww3z,1,1,1|stww40,97,6,0|t4ps3z,97,6,0|t4ps40,1,1,1|tcmyrz,1,1,1|tcmys0,97,6,0|tnfurz,97,6,0|tnfus0,1,1,1|tvd1fz,1,1,1|tvd1g0,97,6,0|u6iw3z,97,6,0|u6iw40,1,1,1|ue343z,1,1,1|ue3440,97,6,0|up8yrz,97,6,0|up8ys0,1,1,1|uwt6rz,1,1,1|uwt6s0,97,6,0|v7z1fz,97,6,0|v7z1g0,1,1,1|vfw83z,1,1,1|vfw840,97,6,0|vqp43z,97,6,0|vqp440,1,1,1|vymarz,1,1,1|vymas0,97,6,0|w9f6rz,97,6,0|w9f6s0,1,1,1|whcdfz,1,1,1|whcdg0,97,6,0|wsi83z,97,6,0|wsi840,1,1,1|x02g3z,1,1,1|x02g40,97,6,0|xb8arz,97,6,0|xb8as0,1,1,1|xisirz,1,1,1|xisis0,97,6,0|xtydfz,97,6,0|xtydg0,1,1,1|y1ilfz,1,1,1|y1ilg0,97,6,0|ycog3z,97,6,0|ycog40,1,1,1|yklmrz,1,1,1|yklms0,97,6,0|yveirz,97,6,0|yveis0,1,1,1|z3bpfz,1,1,1|z3bpg0,97,6,0|ze4lfz,97,6,0|ze4lg0,1,1,1","Europe/Gibraltar|,0,265,0|-1anxr0c,1,1,0|-rzcns1,1,1,0|-rzcns0,64,6,1|-rsid41,64,6,1|-rsid40,1,1,0|-risd41,1,1,0|-risd40,64,6,1|-ragd41,64,6,1|-ragd40,1,1,0|-r0s7s1,1,1,0|-r0s7s0,64,6,1|-qr0d41,64,6,1|-qr0d40,1,1,0|-qhp6g1,1,1,0|-qhp6g0,64,6,1|-q8aag1,64,6,1|-q8aag0,1,1,0|-pyz3s1,1,1,0|-pyz3s0,64,6,1|-po4d41,64,6,1|-po4d40,1,1,0|-pfw2g1,1,1,0|-pfw2g0,64,6,1|-p6h6g1,64,6,1|-p6h6g0,1,1,0|-oxiyg1,1,1,0|-oxiyg0,64,6,1|-onfzs1,64,6,1|-onfzs0,1,1,0|-odd141,1,1,0|-odd140,64,6,1|-o5st41,64,6,1|-o5st40,1,1,0|-nuzx41,1,1,0|-nuzx40,64,6,1|-nmprs1,64,6,1|-nmprs0,1,1,0|-nbwvs1,1,1,0|-nbwvs0,64,6,1|-n39rs1,64,6,1|-n39rs0,1,1,0|-mt6t41,1,1,0|-mt6t40,64,6,1|-mkjp41,64,6,1|-mkjp40,1,1,0|-matp41,1,1,0|-matp40,64,6,1|-m1tmg1,64,6,1|-m1tmg0,1,1,0|-lrdp41,1,1,0|-lrdp40,64,6,1|-liql41,64,6,1|-liql40,1,1,0|-l8nmg1,1,1,0|-l8nmg0,64,6,1|-l00ig1,64,6,1|-l00ig0,1,1,0|-kqaig1,1,1,0|-kqaig0,64,6,1|-khafs1,64,6,1|-khafs0,1,1,0|-k77h41,1,1,0|-k77h40,64,6,1|-jykd41,64,6,1|-jykd40,1,1,0|-joheg1,1,1,0|-joheg0,64,6,1|-jfuag1,64,6,1|-jfuag0,1,1,0|-j64ag1,1,1,0|-j64ag0,64,6,1|-iwr941,64,6,1|-iwr940,1,1,0|-imoag1,1,1,0|-imoag0,64,6,1|-ie16g1,64,6,1|-ie16g0,1,1,0|-i4b6g1,1,1,0|-i4b6g0,64,6,1|-hvb3s1,64,6,1|-hvb3s0,1,1,0|-hl8541,1,1,0|-hl8540,64,6,1|-hcl141,64,6,1|-hcl140,1,1,0|-h2i2g1,1,1,0|-h2i2g0,64,6,1|-gtuyg1,64,6,1|-gtuyg0,1,1,0|-gk4yg1,1,1,0|-gk4yg0,64,6,1|-gb4vs1,64,6,1|-gb4vs0,1,1,0|-g11x41,1,1,0|-g11x40,64,6,1|-fpw2g1,64,6,1|-fpw2g0,1,1,0|-fkul41,1,1,0|-fkul40,64,6,1|-eyiyk1,64,6,1|-eyiyk0,135,7,1|-ethh81,135,7,1|-ethh80,64,6,1|-eh8qk1,64,6,1|-eh8qk0,135,7,1|-earek1,135,7,1|-earek0,64,6,1|-dyinw1,64,6,1|-dyinw0,135,7,1|-drod81,135,7,1|-drod80,64,6,1|-dfsl81,64,6,1|-dfsl80,135,7,1|-d75h81,135,7,1|-d75h80,64,6,1|-cx0nw1,64,6,1|-cx0nw0,135,7,1|-cro2k1,135,7,1|-cro2k0,64,6,1|-cncfs1,64,6,1|-cncfs0,1,1,0|-cdmfs1,1,1,0|-cdmfs0,64,6,1|-c4md41,64,6,1|-c4md40,1,1,0|-bwc7s1,1,1,0|-bwc7s0,64,6,1|-buwfw1,64,6,1|-buwfw0,135,7,1|-bos2k1,135,7,1|-bos2k0,64,6,1|-bkgfs1,64,6,1|-bkgfs0,1,1,0|-bdm541,1,1,0|-bdm540,64,6,1|-b1qd41,64,6,1|-b1qd40,1,1,0|-att6g1,1,1,0|-att6g0,64,6,1|-aj0ag1,64,6,1|-aj0ag0,1,1,0|-aad6g1,1,1,0|-aad6g0,64,6,1|-a0n6g1,64,6,1|-a0n6g0,1,1,0|-9rn3s1,1,1,0|-9rn3s0,64,6,1|-9hx3s1,64,6,1|-9hx3s0,1,1,0|-98k2g1,1,1,0|-98k2g0,64,6,1|-8yu2g1,64,6,1|-8yu2g0,1,1,0|-8ptzs1,1,1,0|-8ptzs0,64,6,1|-8h6vs1,64,6,1|-8h6vs0,1,1,0|-87gvs1,1,1,0|-87gvs0,64,6,1|-7ygt41,64,6,1|-7ygt40,1,1,0|-7odug1,1,1,0|-7odug0,64,6,1|-7fqqg1,64,6,1|-7fqqg0,1,1,0|-75at41,1,1,0|-75at40,64,6,1|-6wnp41,64,6,1|-6wnp40,1,1,0|-6mxp41,1,1,0|-6mxp40,7,6,0|6dw03z,7,6,0|6dw040,8,7,1|6n91fz,8,7,1|6n91g0,7,6,0|6wm2rz,7,6,0|6wm2s0,8,7,1|75z43z,8,7,1|75z440,7,6,0|7fc5fz,7,6,0|7fc5g0,8,7,1|7p25fz,8,7,1|7p25g0,7,6,0|7yf6rz,7,6,0|7yf6s0,8,7,1|87s83z,8,7,1|87s840,7,6,0|8h59fz,7,6,0|8h59g0,8,7,1|8qiarz,8,7,1|8qias0,7,6,0|8zvc3z,7,6,0|8zvc40,8,7,1|998dfz,8,7,1|998dg0,7,6,0|9ilerz,7,6,0|9iles0,8,7,1|9ryg3z,8,7,1|9ryg40,7,6,0|a1bhfz,7,6,0|a1bhg0,8,7,1|aaoirz,8,7,1|aaois0,7,6,0|ak1k3z,7,6,0|ak1k40,8,7,1|atrk3z,8,7,1|atrk40,7,6,0|b34lfz,7,6,0|b34lg0,8,7,1|bchmrz,8,7,1|bchms0,7,6,0|bluo3z,7,6,0|bluo40,8,7,1|bv7pfz,8,7,1|bv7pg0,7,6,0|c4kqrz,7,6,0|c4kqs0,8,7,1|cdxs3z,8,7,1|cdxs40,7,6,0|cnatfz,7,6,0|cnatg0,8,7,1|cwnurz,8,7,1|cwnus0,7,6,0|d60w3z,7,6,0|d60w40,8,7,1|dfdxfz,8,7,1|dfdxg0,7,6,0|dp3xfz,7,6,0|dp3xg0,8,7,1|dzwtfz,8,7,1|dzwtg0,7,6,0|e7u03z,7,6,0|e7u040,8,7,1|eimw3z,8,7,1|eimw40,7,6,0|eqk2rz,7,6,0|eqk2s0,8,7,1|f1cyrz,8,7,1|f1cys0,7,6,0|f9a5fz,7,6,0|f9a5g0,8,7,1|fkg03z,8,7,1|fkg040,7,6,0|fs083z,7,6,0|fs0840,8,7,1|g362rz,8,7,1|g362s0,7,6,0|gaqarz,7,6,0|gaqas0,8,7,1|glw5fz,8,7,1|glw5g0,7,6,0|gttc3z,7,6,0|gttc40,8,7,1|h4m83z,8,7,1|h4m840,7,6,0|hcjerz,7,6,0|hcjes0,8,7,1|hncarz,8,7,1|hncas0,7,6,0|hv9hfz,7,6,0|hv9hg0,8,7,1|i6fc3z,8,7,1|i6fc40,7,6,0|idzk3z,7,6,0|idzk40,8,7,1|ip5erz,8,7,1|ip5es0,7,6,0|iwpmrz,7,6,0|iwpms0,8,7,1|j7vhfz,8,7,1|j7vhg0,7,6,0|jffpfz,7,6,0|jffpg0,8,7,1|jqlk3z,8,7,1|jqlk40,7,6,0|jyiqrz,7,6,0|jyiqs0,8,7,1|k9bmrz,8,7,1|k9bms0,7,6,0|kh8tfz,7,6,0|kh8tg0,8,7,1|ks1pfz,8,7,1|ks1pg0,7,6,0|kzyw3z,7,6,0|kzyw40,8,7,1|lb4qrz,8,7,1|lb4qs0,7,6,0|lioyrz,7,6,0|lioys0,8,7,1|ltutfz,8,7,1|ltutg0,7,6,0|m1f1fz,7,6,0|m1f1g0,8,7,1|mckw3z,8,7,1|mckw40,7,6,0|mki2rz,7,6,0|mki2s0,8,7,1|mvayrz,8,7,1|mvays0,7,6,0|n385fz,7,6,0|n385g0,8,7,1|ne11fz,8,7,1|ne11g0,7,6,0|nly83z,7,6,0|nly840,8,7,1|nwr43z,8,7,1|nwr440,7,6,0|o4oarz,7,6,0|o4oas0,8,7,1|ofu5fz,8,7,1|ofu5g0,7,6,0|onedfz,7,6,0|onedg0,8,7,1|oyk83z,8,7,1|oyk840,7,6,0|p64g3z,7,6,0|p64g40,8,7,1|phaarz,8,7,1|phaas0,7,6,0|pp7hfz,7,6,0|pp7hg0,8,7,1|q00dfz,8,7,1|q00dg0,7,6,0|q7xk3z,7,6,0|q7xk40,8,7,1|qiqg3z,8,7,1|qiqg40,7,6,0|qqnmrz,7,6,0|qqnms0,8,7,1|r1thfz,8,7,1|r1thg0,7,6,0|r9dpfz,7,6,0|r9dpg0,8,7,1|rkjk3z,8,7,1|rkjk40,7,6,0|rs3s3z,7,6,0|rs3s40,8,7,1|s39mrz,8,7,1|s39ms0,7,6,0|sb6tfz,7,6,0|sb6tg0,8,7,1|slzpfz,8,7,1|slzpg0,7,6,0|stww3z,7,6,0|stww40,8,7,1|t4ps3z,8,7,1|t4ps40,7,6,0|tcmyrz,7,6,0|tcmys0,8,7,1|tnfurz,8,7,1|tnfus0,7,6,0|tvd1fz,7,6,0|tvd1g0,8,7,1|u6iw3z,8,7,1|u6iw40,7,6,0|ue343z,7,6,0|ue3440,8,7,1|up8yrz,8,7,1|up8ys0,7,6,0|uwt6rz,7,6,0|uwt6s0,8,7,1|v7z1fz,8,7,1|v7z1g0,7,6,0|vfw83z,7,6,0|vfw840,8,7,1|vqp43z,8,7,1|vqp440,7,6,0|vymarz,7,6,0|vymas0,8,7,1|w9f6rz,8,7,1|w9f6s0,7,6,0|whcdfz,7,6,0|whcdg0,8,7,1|wsi83z,8,7,1|wsi840,7,6,0|x02g3z,7,6,0|x02g40,8,7,1|xb8arz,8,7,1|xb8as0,7,6,0|xisirz,7,6,0|xisis0,8,7,1|xtydfz,8,7,1|xtydg0,7,6,0|y1ilfz,7,6,0|y1ilg0,8,7,1|ycog3z,8,7,1|ycog40,7,6,0|yklmrz,7,6,0|yklms0,8,7,1|yveirz,8,7,1|yveis0,7,6,0|z3bpfz,7,6,0|z3bpg0,8,7,1|ze4lfz,8,7,1|ze4lg0,7,6,0","Europe/Helsinki|,0,266,0|-1bss9yd,61,266,0|-peghye,61,266,0|-peghyd,10,7,0|-ehco81,10,7,0|-ehco80,11,11,1|-e7vxk1,11,11,1|-e7vxk0,10,7,0|5v5unz,10,7,0|5v5uo0,11,11,1|64ivzz,11,11,1|64iw00,10,7,0|6dvxbz,10,7,0|6dvxc0,11,11,1|6n8ynz,11,11,1|6n8yo0,10,7,0|6wm2rz,10,7,0|6wm2s0,11,11,1|75z43z,11,11,1|75z440,10,7,0|7fc5fz,10,7,0|7fc5g0,11,11,1|7p25fz,11,11,1|7p25g0,10,7,0|7yf6rz,10,7,0|7yf6s0,11,11,1|87s83z,11,11,1|87s840,10,7,0|8h59fz,10,7,0|8h59g0,11,11,1|8qiarz,11,11,1|8qias0,10,7,0|8zvc3z,10,7,0|8zvc40,11,11,1|998dfz,11,11,1|998dg0,10,7,0|9ilerz,10,7,0|9iles0,11,11,1|9ryg3z,11,11,1|9ryg40,10,7,0|a1bhfz,10,7,0|a1bhg0,11,11,1|aaoirz,11,11,1|aaois0,10,7,0|ak1k3z,10,7,0|ak1k40,11,11,1|atrk3z,11,11,1|atrk40,10,7,0|b34lfz,10,7,0|b34lg0,11,11,1|bchmrz,11,11,1|bchms0,10,7,0|bluo3z,10,7,0|bluo40,11,11,1|bv7pfz,11,11,1|bv7pg0,10,7,0|c4kqrz,10,7,0|c4kqs0,11,11,1|cdxs3z,11,11,1|cdxs40,10,7,0|cnatfz,10,7,0|cnatg0,11,11,1|cwnurz,11,11,1|cwnus0,10,7,0|d60w3z,10,7,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,7,0|dp3xfz,10,7,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,7,0|e7u03z,10,7,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,7,0|eqk2rz,10,7,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,7,0|f9a5fz,10,7,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,7,0|fs083z,10,7,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,7,0|gaqarz,10,7,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,7,0|gttc3z,10,7,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,7,0|hcjerz,10,7,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,7,0|hv9hfz,10,7,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,7,0|idzk3z,10,7,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,7,0|iwpmrz,10,7,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,7,0|jffpfz,10,7,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,7,0|jyiqrz,10,7,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,7,0|kh8tfz,10,7,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,7,0|kzyw3z,10,7,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,7,0|lioyrz,10,7,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,7,0|m1f1fz,10,7,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,7,0|mki2rz,10,7,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,7,0|n385fz,10,7,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,7,0|nly83z,10,7,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,7,0|o4oarz,10,7,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,7,0|onedfz,10,7,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,7,0|p64g3z,10,7,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,7,0|pp7hfz,10,7,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,7,0|q7xk3z,10,7,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,7,0|qqnmrz,10,7,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,7,0|r9dpfz,10,7,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,7,0|rs3s3z,10,7,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,7,0|sb6tfz,10,7,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,7,0|stww3z,10,7,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,7,0|tcmyrz,10,7,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,7,0|tvd1fz,10,7,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,7,0|ue343z,10,7,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,7,0|uwt6rz,10,7,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,7,0|vfw83z,10,7,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,7,0|vymarz,10,7,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,7,0|whcdfz,10,7,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,7,0|x02g3z,10,7,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,7,0|xisirz,10,7,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,7,0|y1ilfz,10,7,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,7,0|yklmrz,10,7,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,7,0|z3bpfz,10,7,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,7,0","Europe/Istanbul|,0,267,0|-1ayy814,104,268,0|-ux9xex,104,268,0|-ux9xew,10,7,0|-s0e081,10,7,0|-s0e080,11,11,1|-rsir01,11,11,1|-rsir00,10,7,0|-pyzew1,10,7,0|-pyzew0,11,11,1|-po4r01,11,11,1|-po4r00,10,7,0|-pfwdk1,10,7,0|-pfwdk0,11,11,1|-p6hkc1,11,11,1|-p6hkc0,10,7,0|-oxj9k1,10,7,0|-oxj9k0,11,11,1|-ongdo1,11,11,1|-ongdo0,10,7,0|-ntgo81,10,7,0|-ntgo80,11,11,1|-nm7n01,11,11,1|-nm7n00,10,7,0|-nbayw1,10,7,0|-nbayw0,11,11,1|-n3fpo1,11,11,1|-n3fpo0,10,7,0|-febpk1,10,7,0|-febpk0,11,11,1|-f9c5o1,11,11,1|-f9c5o0,10,7,0|-f6gdk1,10,7,0|-f6gdk0,11,11,1|-erc0c1,11,11,1|-erc0c0,10,7,0|-ehgdk1,10,7,0|-ehgdk0,11,11,1|-cnaz01,11,11,1|-cnaz00,10,7,0|-cb5uw1,10,7,0|-cb5uw0,11,11,1|-c4w0c1,11,11,1|-c4w0c0,10,7,0|-bujpk1,10,7,0|-bujpk0,11,11,1|-blwoc1,11,11,1|-blwoc0,10,7,0|-bbtmw1,10,7,0|-bbtmw0,11,11,1|-b36lo1,11,11,1|-b36lo0,10,7,0|-atgiw1,10,7,0|-atgiw0,11,11,1|-akgj01,11,11,1|-akgj00,10,7,0|-aadhk1,10,7,0|-aadhk0,11,11,1|-a1dho1,11,11,1|-a1dho0,10,7,0|-9rag81,10,7,0|-9rag80,11,11,1|-9inf01,11,11,1|-9inf00,10,7,0|-3wa5k1,10,7,0|-3wa5k0,11,11,1|-3805o1,11,11,1|-3805o0,10,7,0|-2xtew1,10,7,0|-2xtew0,11,11,1|-2qo301,11,11,1|-2qo300,10,7,0|1s8vvz,10,7,0|1s8vw0,11,11,1|2062jz,11,11,1|2062k0,10,7,0|27qdbz,10,7,0|27qdc0,11,11,1|2iw57z,11,11,1|2iw580,10,7,0|2q1mnz,10,7,0|2q1mo0,11,11,1|31m7vz,11,11,1|31m7w0,10,7,0|38tjzz,10,7,0|38tk00,11,11,1|3kcajz,11,11,1|3kcak0,10,7,0|3s9jzz,10,7,0|3s9k00,11,11,1|42cfvz,11,11,1|42cfw0,10,7,0|4azmnz,10,7,0|4azmo0,11,11,1|4ficzz,11,11,1|4fid00,90,11,0|73397z,90,11,0|733980,89,144,1|76bufz,89,144,1|76bug0,90,11,0|7qp97z,90,11,0|7qp980,10,7,0|7zg2jz,10,7,0|7zg2k0,11,11,1|87q7vz,11,11,1|87q7w0,10,7,0|8h53vz,10,7,0|8h53w0,11,11,1|8qi57z,11,11,1|8qi580,10,7,0|8zv6jz,10,7,0|8zv6k0,11,11,1|9987vz,11,11,1|9987w0,10,7,0|9il97z,10,7,0|9il980,11,11,1|9ryajz,11,11,1|9ryak0,10,7,0|a1bbvz,10,7,0|a1bbw0,11,11,1|aaod7z,11,11,1|aaod80,10,7,0|ak1ejz,10,7,0|ak1ek0,11,11,1|atrejz,11,11,1|atrek0,10,7,0|b34fvz,10,7,0|b34fw0,11,11,1|bchh7z,11,11,1|bchh80,10,7,0|bluijz,10,7,0|bluik0,11,11,1|bv7jvz,11,11,1|bv7jw0,10,7,0|c4kl7z,10,7,0|c4kl80,11,11,1|cdxmjz,11,11,1|cdxmk0,10,7,0|cmxp7z,10,7,0|cmxp80,11,11,1|cwnp7z,11,11,1|cwnp80,10,7,0|d60qjz,10,7,0|d60qk0,11,11,1|dfdrvz,11,11,1|dfdrw0,10,7,0|dp3rvz,10,7,0|dp3rw0,11,11,1|dzwnvz,11,11,1|dzwnw0,10,7,0|e7tujz,10,7,0|e7tuk0,11,11,1|eimqjz,11,11,1|eimqk0,10,7,0|eqjx7z,10,7,0|eqjx80,11,11,1|f1ct7z,11,11,1|f1ct80,10,7,0|f99zvz,10,7,0|f99zw0,11,11,1|fkfujz,11,11,1|fkfuk0,10,7,0|fs02jz,10,7,0|fs02k0,11,11,1|g35x7z,11,11,1|g35x80,10,7,0|gaq57z,10,7,0|gaq580,11,11,1|glvzvz,11,11,1|glvzw0,10,7,0|gtt6jz,10,7,0|gtt6k0,11,11,1|h4m2jz,11,11,1|h4m2k0,10,7,0|hcj97z,10,7,0|hcj980,11,11,1|hnc57z,11,11,1|hnc580,10,7,0|hv9bvz,10,7,0|hv9bw0,11,11,1|i6f6jz,11,11,1|i6f6k0,10,7,0|idzejz,10,7,0|idzek0,11,11,1|ip597z,11,11,1|ip5980,10,7,0|iwph7z,10,7,0|iwph80,11,11,1|j7vbvz,11,11,1|j7vbw0,10,7,0|jffpfz,10,7,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,7,0|jyiqrz,10,7,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,7,0|kh8tfz,10,7,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,7,0|kzyw3z,10,7,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,7,0|liqtfz,10,7,0|liqtg0,11,11,1|ltutfz,11,11,1|ltutg0,10,7,0|m1f1fz,10,7,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,7,0|mki2rz,10,7,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,7,0|n3a03z,10,7,0|n3a040,11,11,1|ne11fz,11,11,1|ne11g0,10,7,0|nly83z,10,7,0|nly840,11,11,1|nxh1fz,11,11,1|nxh1g0,10,7,0|o4oarz,10,7,0|o4oas0,11,11,1|od3ozz,11,11,1|od3p00,90,11,0","Europe/Kaliningrad|,0,254,0|-14212go,7,6,0|-s0e081,7,6,0|-s0e080,8,7,1|-rsilg1,8,7,1|-rsilg0,7,6,0|-ridmk1,7,6,0|-ridmk0,8,7,1|-ragfw1,8,7,1|-ragfw0,7,6,0|-qznjw1,7,6,0|-qznjw0,8,7,1|-qrqd81,8,7,1|-qrqd80,7,6,0|-fizzw1,7,6,0|-fizzw0,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dp3rw1,8,7,1|-dp3rw0,7,6,0|-dfqqk1,7,6,0|-dfqqk0,8,7,1|-d6dp81,8,7,1|-d6dp80,7,6,0|-cx0nw1,7,6,0|-cx0nw0,8,7,1|-cwm2w1,8,7,1|-cwm2w0,10,7,0|-cvmw81,10,7,0|-cvmw80,11,11,1|-cm2j01,11,11,1|-cm2j00,10,7,0|-cdzpk1,10,7,0|-cdzpk0,132,11,0|5vb6bz,132,11,0|5vb6c0,133,144,1|64pzjz,133,144,1|64pzk0,132,11,0|6e33nz,132,11,0|6e33o0,133,144,1|6nhwvz,133,144,1|6nhww0,132,11,0|6wv0zz,132,11,0|6wv100,133,144,1|769u7z,133,144,1|769u80,132,11,0|7foszz,132,11,0|7fot00,133,144,1|7p1zvz,133,144,1|7p1zw0,132,11,0|7yf17z,132,11,0|7yf180,133,144,1|87s2jz,133,144,1|87s2k0,132,11,0|8h53vz,132,11,0|8h53w0,133,144,1|8qi57z,133,144,1|8qi580,132,11,0|8zv6jz,132,11,0|8zv6k0,133,144,1|9987vz,133,144,1|9987w0,132,11,0|9il97z,132,11,0|9il980,133,144,1|9ryajz,133,144,1|9ryak0,132,11,0|a1bbvz,132,11,0|a1bbw0,11,11,1|aaofzz,11,11,1|aaog00,10,7,0|ak1hbz,10,7,0|ak1hc0,11,11,1|atrhbz,11,11,1|atrhc0,10,7,0|b34inz,10,7,0|b34io0,11,11,1|bchjzz,11,11,1|bchk00,10,7,0|blulbz,10,7,0|blulc0,11,11,1|bv7mnz,11,11,1|bv7mo0,10,7,0|c4knzz,10,7,0|c4ko00,11,11,1|cdxpbz,11,11,1|cdxpc0,10,7,0|cnaqnz,10,7,0|cnaqo0,11,11,1|cwnrzz,11,11,1|cwns00,10,7,0|d60tbz,10,7,0|d60tc0,11,11,1|dfdunz,11,11,1|dfduo0,10,7,0|dp3unz,10,7,0|dp3uo0,11,11,1|dzwqnz,11,11,1|dzwqo0,10,7,0|e7txbz,10,7,0|e7txc0,11,11,1|eimtbz,11,11,1|eimtc0,10,7,0|eqjzzz,10,7,0|eqk000,11,11,1|f1cvzz,11,11,1|f1cw00,10,7,0|f9a2nz,10,7,0|f9a2o0,11,11,1|fkfxbz,11,11,1|fkfxc0,10,7,0|fs05bz,10,7,0|fs05c0,11,11,1|g35zzz,11,11,1|g36000,10,7,0|gaq7zz,10,7,0|gaq800,11,11,1|glw2nz,11,11,1|glw2o0,10,7,0|gtt9bz,10,7,0|gtt9c0,11,11,1|h4m5bz,11,11,1|h4m5c0,10,7,0|hcjbzz,10,7,0|hcjc00,11,11,1|hnc7zz,11,11,1|hnc800,10,7,0|hv9enz,10,7,0|hv9eo0,11,11,1|i6f9bz,11,11,1|i6f9c0,10,7,0|idzhbz,10,7,0|idzhc0,11,11,1|ip5bzz,11,11,1|ip5c00,10,7,0|iwpjzz,10,7,0|iwpk00,11,11,1|j7venz,11,11,1|j7veo0,10,7,0|jffmnz,10,7,0|jffmo0,11,11,1|jqlhbz,11,11,1|jqlhc0,10,7,0|jyinzz,10,7,0|jyio00,11,11,1|k9bjzz,11,11,1|k9bk00,10,7,0|kh8qnz,10,7,0|kh8qo0,11,11,1|ks1mnz,11,11,1|ks1mo0,10,7,0|kzytbz,10,7,0|kzytc0,11,11,1|lb4nzz,11,11,1|lb4o00,10,7,0|liovzz,10,7,0|liow00,90,11,0|ne0vvz,90,11,0|ne0vw0,10,7,0","Europe/Kiev|,0,269,0|-1ayy8bg,62,269,0|-nu11nh,62,269,0|-nu11ng,10,7,0|-kmr1k1,10,7,0|-kmr1k0,132,11,0|-erdv01,132,11,0|-erdv00,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dp3rw1,8,7,1|-dp3rw0,7,6,0|-dnetg1,7,6,0|-dnetg0,132,11,0|5vb6bz,132,11,0|5vb6c0,133,144,1|64pzjz,133,144,1|64pzk0,132,11,0|6e33nz,132,11,0|6e33o0,133,144,1|6nhwvz,133,144,1|6nhww0,132,11,0|6wv0zz,132,11,0|6wv100,133,144,1|769u7z,133,144,1|769u80,132,11,0|7foszz,132,11,0|7fot00,133,144,1|7p1zvz,133,144,1|7p1zw0,132,11,0|7yf17z,132,11,0|7yf180,133,144,1|87s2jz,133,144,1|87s2k0,132,11,0|8h53vz,132,11,0|8h53w0,133,144,1|8qi57z,133,144,1|8qi580,132,11,0|8zv6jz,132,11,0|8zv6k0,133,144,1|9987vz,133,144,1|9987w0,132,11,0|9il97z,132,11,0|9il980,133,144,1|9ryajz,133,144,1|9ryak0,132,11,0|a1bbvz,132,11,0|a1bbw0,133,144,1|aaod7z,133,144,1|aaod80,132,11,0|ak1ejz,132,11,0|ak1ek0,133,144,1|ap2t3z,133,144,1|ap2t40,11,11,1|bchjzz,11,11,1|bchk00,10,7,0|blufrz,10,7,0|blufs0,11,11,1|bv7ebz,11,11,1|bv7ec0,10,7,0|c4kifz,10,7,0|c4kig0,11,11,1|cdxgzz,11,11,1|cdxh00,10,7,0|cnal3z,10,7,0|cnal40,11,11,1|cwnjnz,11,11,1|cwnjo0,10,7,0|d60w3z,10,7,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,7,0|dp3xfz,10,7,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,7,0|e7u03z,10,7,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,7,0|eqk2rz,10,7,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,7,0|f9a5fz,10,7,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,7,0|fs083z,10,7,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,7,0|gaqarz,10,7,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,7,0|gttc3z,10,7,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,7,0|hcjerz,10,7,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,7,0|hv9hfz,10,7,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,7,0|idzk3z,10,7,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,7,0|iwpmrz,10,7,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,7,0|jffpfz,10,7,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,7,0|jyiqrz,10,7,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,7,0|kh8tfz,10,7,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,7,0|kzyw3z,10,7,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,7,0|lioyrz,10,7,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,7,0|m1f1fz,10,7,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,7,0|mki2rz,10,7,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,7,0|n385fz,10,7,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,7,0|nly83z,10,7,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,7,0|o4oarz,10,7,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,7,0|onedfz,10,7,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,7,0|p64g3z,10,7,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,7,0|pp7hfz,10,7,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,7,0|q7xk3z,10,7,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,7,0|qqnmrz,10,7,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,7,0|r9dpfz,10,7,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,7,0|rs3s3z,10,7,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,7,0|sb6tfz,10,7,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,7,0|stww3z,10,7,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,7,0|tcmyrz,10,7,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,7,0|tvd1fz,10,7,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,7,0|ue343z,10,7,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,7,0|uwt6rz,10,7,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,7,0|vfw83z,10,7,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,7,0|vymarz,10,7,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,7,0|whcdfz,10,7,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,7,0|x02g3z,10,7,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,7,0|xisirz,10,7,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,7,0|y1ilfz,10,7,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,7,0|yklmrz,10,7,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,7,0|z3bpfz,10,7,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,7,0","Europe/Kirov|,0,270,0|-qcx400,90,11,0|-kmr4c1,90,11,0|-kmr4c0,89,144,0|5vb3jz,89,144,0|5vb3k0,82,134,1|64pwrz,82,134,1|64pws0,89,144,0|6e30vz,89,144,0|6e30w0,82,134,1|6nhu3z,82,134,1|6nhu40,89,144,0|6wuy7z,89,144,0|6wuy80,82,134,1|769rfz,82,134,1|769rg0,89,144,0|7foq7z,89,144,0|7foq80,82,134,1|7p1x3z,82,134,1|7p1x40,89,144,0|7yeyfz,89,144,0|7yeyg0,82,134,1|87rzrz,82,134,1|87rzs0,89,144,0|8h513z,89,144,0|8h5140,82,134,1|8qi2fz,82,134,1|8qi2g0,89,144,0|8zv3rz,89,144,0|8zv3s0,82,134,1|99853z,82,134,1|998540,89,144,0|9il6fz,89,144,0|9il6g0,82,134,1|9ry7rz,82,134,1|9ry7s0,89,144,0|a1b93z,89,144,0|a1b940,89,144,1|aaod7z,89,144,1|aaod80,90,11,0|ak1ejz,90,11,0|ak1ek0,89,144,1|atrejz,89,144,1|atrek0,90,11,0|b34fvz,90,11,0|b34fw0,89,144,0|blufrz,89,144,0|blufs0,89,144,1|bv7jvz,89,144,1|bv7jw0,90,11,0|c4kl7z,90,11,0|c4kl80,89,144,1|cdxmjz,89,144,1|cdxmk0,90,11,0|cnanvz,90,11,0|cnanw0,89,144,1|cwnp7z,89,144,1|cwnp80,90,11,0|d60qjz,90,11,0|d60qk0,89,144,1|dfdrvz,89,144,1|dfdrw0,90,11,0|dp3rvz,90,11,0|dp3rw0,89,144,1|dzwnvz,89,144,1|dzwnw0,90,11,0|e7tujz,90,11,0|e7tuk0,89,144,1|eimqjz,89,144,1|eimqk0,90,11,0|eqjx7z,90,11,0|eqjx80,89,144,1|f1ct7z,89,144,1|f1ct80,90,11,0|f99zvz,90,11,0|f99zw0,89,144,1|fkfujz,89,144,1|fkfuk0,90,11,0|fs02jz,90,11,0|fs02k0,89,144,1|g35x7z,89,144,1|g35x80,90,11,0|gaq57z,90,11,0|gaq580,89,144,1|glvzvz,89,144,1|glvzw0,90,11,0|gtt6jz,90,11,0|gtt6k0,89,144,1|h4m2jz,89,144,1|h4m2k0,90,11,0|hcj97z,90,11,0|hcj980,89,144,1|hnc57z,89,144,1|hnc580,90,11,0|hv9bvz,90,11,0|hv9bw0,89,144,1|i6f6jz,89,144,1|i6f6k0,90,11,0|idzejz,90,11,0|idzek0,89,144,1|ip597z,89,144,1|ip5980,90,11,0|iwph7z,90,11,0|iwph80,89,144,1|j7vbvz,89,144,1|j7vbw0,90,11,0|jffjvz,90,11,0|jffjw0,89,144,1|jqlejz,89,144,1|jqlek0,90,11,0|jyil7z,90,11,0|jyil80,89,144,1|k9bh7z,89,144,1|k9bh80,90,11,0|kh8nvz,90,11,0|kh8nw0,89,144,1|ks1jvz,89,144,1|ks1jw0,90,11,0|kzyqjz,90,11,0|kzyqk0,89,144,1|lb4l7z,89,144,1|lb4l80,90,11,0|liot7z,90,11,0|liot80,89,144,0|ne0t3z,89,144,0|ne0t40,90,11,0","Europe/Lisbon|,0,271,0|-u9rhc0,5,1,0|-rxx1g1,5,1,0|-rxx1g0,6,6,1|-rqx401,6,6,1|-rqx400,5,1,0|-rkqys1,5,1,0|-rkqys0,6,6,1|-r90qs1,6,6,1|-r90qs0,5,1,0|-r1x6s1,5,1,0|-r1x6s0,6,6,1|-qq8tg1,6,6,1|-qq8tg0,5,1,0|-qj7441,5,1,0|-qj7440,6,6,1|-q7gw41,6,6,1|-q7gw40,5,1,0|-q0dc41,5,1,0|-q0dc40,6,6,1|-pon441,6,6,1|-pon440,5,1,0|-phles1,5,1,0|-phles0,6,6,1|-p5v6s1,6,6,1|-p5v6s0,5,1,0|-nusqs1,5,1,0|-nusqs0,6,6,1|-nlhk41,6,6,1|-nlhk40,5,1,0|-mt71g1,5,1,0|-mt71g0,6,6,1|-mkjxg1,6,6,1|-mkjxg0,5,1,0|-matxg1,5,1,0|-matxg0,6,6,1|-m1tus1,6,6,1|-m1tus0,5,1,0|-lrqw41,5,1,0|-lrqw40,6,6,1|-liqtg1,6,6,1|-liqtg0,5,1,0|-l8nus1,5,1,0|-l8nus0,6,6,1|-l00qs1,6,6,1|-l00qs0,5,1,0|-k77pg1,5,1,0|-k77pg0,6,6,1|-jyklg1,6,6,1|-jyklg0,5,1,0|-jp7k41,5,1,0|-jp7k40,6,6,1|-jfuis1,6,6,1|-jfuis0,5,1,0|-ineg41,5,1,0|-ineg40,6,6,1|-ie1es1,6,6,1|-ie1es0,5,1,0|-i51c41,5,1,0|-i51c40,6,6,1|-hvbc41,6,6,1|-hvbc40,5,1,0|-hl8dg1,5,1,0|-hl8dg0,6,6,1|-hcl9g1,6,6,1|-hcl9g0,5,1,0|-h38841,5,1,0|-h38840,6,6,1|-gtv6s1,6,6,1|-gtv6s0,5,1,0|-gkv441,5,1,0|-gkv440,6,6,1|-gb5441,6,6,1|-gb5440,5,1,0|-g125g1,5,1,0|-g125g0,6,6,1|-fpwas1,6,6,1|-fpwas0,5,1,0|-fkutg1,5,1,0|-fkutg0,6,6,1|-f9c041,6,6,1|-f9c040,5,1,0|-ezyys1,5,1,0|-ezyys0,6,6,1|-eqk2s1,6,6,1|-eqk2s0,5,1,0|-eibs41,5,1,0|-eibs40,6,6,1|-eg62w1,6,6,1|-eg62w0,136,7,1|-eaeo81,136,7,1|-eaeo80,6,6,1|-e6sys1,6,6,1|-e6sys0,5,1,0|-dzlpg1,5,1,0|-dzlpg0,6,6,1|-dxsyw1,6,6,1|-dxsyw0,136,7,1|-dqyo81,136,7,1|-dqyo80,6,6,1|-dnpxg1,6,6,1|-dnpxg0,5,1,0|-dgvms1,5,1,0|-dgvms0,6,6,1|-depxk1,6,6,1|-depxk0,136,7,1|-d88lk1,136,7,1|-d88lk0,6,6,1|-d4zus1,6,6,1|-d4zus0,5,1,0|-cy5k41,5,1,0|-cy5k40,6,6,1|-cvzuw1,6,6,1|-cvzuw0,136,7,1|-cpiiw1,136,7,1|-cpiiw0,6,6,1|-cm9s41,6,6,1|-cm9s40,5,1,0|-cdzms1,5,1,0|-cdzms0,6,6,1|-c4mlg1,6,6,1|-c4mlg0,5,1,0|-bv9bs1,5,1,0|-bv9bs0,6,6,1|-blwag1,6,6,1|-blwag0,5,1,0|-bcj941,5,1,0|-bcj940,6,6,1|-b367s1,6,6,1|-b367s0,5,1,0|-att6g1,5,1,0|-att6g0,6,6,1|-akg541,6,6,1|-akg540,5,1,0|-9sd141,5,1,0|-9sd140,6,6,1|-9in141,6,6,1|-9in140,5,1,0|-999zs1,5,1,0|-999zs0,6,6,1|-8zwyg1,6,6,1|-8zwyg0,5,1,0|-8qjx41,5,1,0|-8qjx40,6,6,1|-8h6vs1,6,6,1|-8h6vs0,5,1,0|-87tug1,5,1,0|-87tug0,6,6,1|-7ygt41,6,6,1|-7ygt40,5,1,0|-7p3rs1,5,1,0|-7p3rs0,6,6,1|-7fqqg1,6,6,1|-7fqqg0,5,1,0|-76dp41,5,1,0|-76dp40,6,6,1|-6wnp41,6,6,1|-6wnp40,5,1,0|-6nans1,5,1,0|-6nans0,6,6,1|-6dxmg1,6,6,1|-6dxmg0,5,1,0|-64kl41,5,1,0|-64kl40,6,6,1|-5v7js1,6,6,1|-5v7js0,5,1,0|-5luig1,5,1,0|-5luig0,6,6,1|-5chh41,6,6,1|-5chh40,5,1,0|-534fs1,5,1,0|-534fs0,6,6,1|-4treg1,6,6,1|-4treg0,5,1,0|-4ked41,5,1,0|-4ked40,6,6,1|-4b1bs1,6,6,1|-4b1bs0,5,1,0|-41oag1,5,1,0|-41oag0,6,6,1|-3ryag1,6,6,1|-3ryag0,5,1,0|-3il941,5,1,0|-3il940,6,6,1|-3987s1,6,6,1|-3987s0,5,1,0|-2zv6g1,5,1,0|-2zv6g0,6,6,1|-2qi541,6,6,1|-2qi540,5,1,0|-2h53s1,5,1,0|-2h53s0,6,6,1|-27s2g1,6,6,1|-27s2g0,5,1,0|-1yf141,5,1,0|-1yf140,7,6,0|3ijjzz,7,6,0|3ijk00,5,1,0|3rwlbz,5,1,0|3rwlc0,6,6,1|419mnz,6,6,1|419mo0,5,1,0|4azmnz,5,1,0|4azmo0,6,6,1|4kcnzz,6,6,1|4kco00,5,1,0|4tppbz,5,1,0|4tppc0,6,6,1|532tfz,6,6,1|532tg0,5,1,0|5cfrzz,5,1,0|5cfs00,6,6,1|5lsw3z,6,6,1|5lsw40,5,1,0|5v5xfz,5,1,0|5v5xg0,6,6,1|64iyrz,6,6,1|64iys0,5,1,0|6dw03z,5,1,0|6dw040,6,6,1|6n91fz,6,6,1|6n91g0,5,1,0|6wm5jz,5,1,0|6wm5k0,6,6,1|75z43z,6,6,1|75z440,5,1,0|7fc5fz,5,1,0|7fc5g0,6,6,1|7p25fz,6,6,1|7p25g0,5,1,0|7yf6rz,5,1,0|7yf6s0,6,6,1|87s83z,6,6,1|87s840,5,1,0|8h59fz,5,1,0|8h59g0,6,6,1|8qiarz,6,6,1|8qias0,5,1,0|8zvc3z,5,1,0|8zvc40,6,6,1|998dfz,6,6,1|998dg0,5,1,0|9ilerz,5,1,0|9iles0,6,6,1|9ryg3z,6,6,1|9ryg40,5,1,0|a1bhfz,5,1,0|a1bhg0,6,6,1|aaoirz,6,6,1|aaois0,5,1,0|ak1k3z,5,1,0|ak1k40,6,6,1|atrk3z,6,6,1|atrk40,5,1,0|b34lfz,5,1,0|b34lg0,6,6,1|bchmrz,6,6,1|bchms0,5,1,0|bluo3z,5,1,0|bluo40,6,6,1|bv7pfz,6,6,1|bv7pg0,7,6,0|c4kqrz,7,6,0|c4kqs0,8,7,1|cdxs3z,8,7,1|cdxs40,7,6,0|cnatfz,7,6,0|cnatg0,8,7,1|cwnurz,8,7,1|cwnus0,7,6,0|d60w3z,7,6,0|d60w40,8,7,1|dfdxfz,8,7,1|dfdxg0,7,6,0|dp3xfz,7,6,0|dp3xg0,6,6,1|dzwtfz,6,6,1|dzwtg0,5,1,0|e7u03z,5,1,0|e7u040,6,6,1|eimw3z,6,6,1|eimw40,5,1,0|eqk2rz,5,1,0|eqk2s0,6,6,1|f1cyrz,6,6,1|f1cys0,5,1,0|f9a5fz,5,1,0|f9a5g0,6,6,1|fkg03z,6,6,1|fkg040,5,1,0|fs083z,5,1,0|fs0840,6,6,1|g362rz,6,6,1|g362s0,5,1,0|gaqarz,5,1,0|gaqas0,6,6,1|glw5fz,6,6,1|glw5g0,5,1,0|gttc3z,5,1,0|gttc40,6,6,1|h4m83z,6,6,1|h4m840,5,1,0|hcjerz,5,1,0|hcjes0,6,6,1|hncarz,6,6,1|hncas0,5,1,0|hv9hfz,5,1,0|hv9hg0,6,6,1|i6fc3z,6,6,1|i6fc40,5,1,0|idzk3z,5,1,0|idzk40,6,6,1|ip5erz,6,6,1|ip5es0,5,1,0|iwpmrz,5,1,0|iwpms0,6,6,1|j7vhfz,6,6,1|j7vhg0,5,1,0|jffpfz,5,1,0|jffpg0,6,6,1|jqlk3z,6,6,1|jqlk40,5,1,0|jyiqrz,5,1,0|jyiqs0,6,6,1|k9bmrz,6,6,1|k9bms0,5,1,0|kh8tfz,5,1,0|kh8tg0,6,6,1|ks1pfz,6,6,1|ks1pg0,5,1,0|kzyw3z,5,1,0|kzyw40,6,6,1|lb4qrz,6,6,1|lb4qs0,5,1,0|lioyrz,5,1,0|lioys0,6,6,1|ltutfz,6,6,1|ltutg0,5,1,0|m1f1fz,5,1,0|m1f1g0,6,6,1|mckw3z,6,6,1|mckw40,5,1,0|mki2rz,5,1,0|mki2s0,6,6,1|mvayrz,6,6,1|mvays0,5,1,0|n385fz,5,1,0|n385g0,6,6,1|ne11fz,6,6,1|ne11g0,5,1,0|nly83z,5,1,0|nly840,6,6,1|nwr43z,6,6,1|nwr440,5,1,0|o4oarz,5,1,0|o4oas0,6,6,1|ofu5fz,6,6,1|ofu5g0,5,1,0|onedfz,5,1,0|onedg0,6,6,1|oyk83z,6,6,1|oyk840,5,1,0|p64g3z,5,1,0|p64g40,6,6,1|phaarz,6,6,1|phaas0,5,1,0|pp7hfz,5,1,0|pp7hg0,6,6,1|q00dfz,6,6,1|q00dg0,5,1,0|q7xk3z,5,1,0|q7xk40,6,6,1|qiqg3z,6,6,1|qiqg40,5,1,0|qqnmrz,5,1,0|qqnms0,6,6,1|r1thfz,6,6,1|r1thg0,5,1,0|r9dpfz,5,1,0|r9dpg0,6,6,1|rkjk3z,6,6,1|rkjk40,5,1,0|rs3s3z,5,1,0|rs3s40,6,6,1|s39mrz,6,6,1|s39ms0,5,1,0|sb6tfz,5,1,0|sb6tg0,6,6,1|slzpfz,6,6,1|slzpg0,5,1,0|stww3z,5,1,0|stww40,6,6,1|t4ps3z,6,6,1|t4ps40,5,1,0|tcmyrz,5,1,0|tcmys0,6,6,1|tnfurz,6,6,1|tnfus0,5,1,0|tvd1fz,5,1,0|tvd1g0,6,6,1|u6iw3z,6,6,1|u6iw40,5,1,0|ue343z,5,1,0|ue3440,6,6,1|up8yrz,6,6,1|up8ys0,5,1,0|uwt6rz,5,1,0|uwt6s0,6,6,1|v7z1fz,6,6,1|v7z1g0,5,1,0|vfw83z,5,1,0|vfw840,6,6,1|vqp43z,6,6,1|vqp440,5,1,0|vymarz,5,1,0|vymas0,6,6,1|w9f6rz,6,6,1|w9f6s0,5,1,0|whcdfz,5,1,0|whcdg0,6,6,1|wsi83z,6,6,1|wsi840,5,1,0|x02g3z,5,1,0|x02g40,6,6,1|xb8arz,6,6,1|xb8as0,5,1,0|xisirz,5,1,0|xisis0,6,6,1|xtydfz,6,6,1|xtydg0,5,1,0|y1ilfz,5,1,0|y1ilg0,6,6,1|ycog3z,6,6,1|ycog40,5,1,0|yklmrz,5,1,0|yklms0,6,6,1|yveirz,6,6,1|yveis0,5,1,0|z3bpfz,5,1,0|z3bpg0,6,6,1|ze4lfz,6,6,1|ze4lg0,5,1,0","Europe/London|,0,272,0|-1rprx9x,1,1,0|-rzcns1,1,1,0|-rzcns0,64,6,1|-rsid41,64,6,1|-rsid40,1,1,0|-risd41,1,1,0|-risd40,64,6,1|-ragd41,64,6,1|-ragd40,1,1,0|-r0s7s1,1,1,0|-r0s7s0,64,6,1|-qr0d41,64,6,1|-qr0d40,1,1,0|-qhp6g1,1,1,0|-qhp6g0,64,6,1|-q8aag1,64,6,1|-q8aag0,1,1,0|-pyz3s1,1,1,0|-pyz3s0,64,6,1|-po4d41,64,6,1|-po4d40,1,1,0|-pfw2g1,1,1,0|-pfw2g0,64,6,1|-p6h6g1,64,6,1|-p6h6g0,1,1,0|-oxiyg1,1,1,0|-oxiyg0,64,6,1|-onfzs1,64,6,1|-onfzs0,1,1,0|-odd141,1,1,0|-odd140,64,6,1|-o5st41,64,6,1|-o5st40,1,1,0|-nuzx41,1,1,0|-nuzx40,64,6,1|-nmprs1,64,6,1|-nmprs0,1,1,0|-nbwvs1,1,1,0|-nbwvs0,64,6,1|-n39rs1,64,6,1|-n39rs0,1,1,0|-mt6t41,1,1,0|-mt6t40,64,6,1|-mkjp41,64,6,1|-mkjp40,1,1,0|-matp41,1,1,0|-matp40,64,6,1|-m1tmg1,64,6,1|-m1tmg0,1,1,0|-lrdp41,1,1,0|-lrdp40,64,6,1|-liql41,64,6,1|-liql40,1,1,0|-l8nmg1,1,1,0|-l8nmg0,64,6,1|-l00ig1,64,6,1|-l00ig0,1,1,0|-kqaig1,1,1,0|-kqaig0,64,6,1|-khafs1,64,6,1|-khafs0,1,1,0|-k77h41,1,1,0|-k77h40,64,6,1|-jykd41,64,6,1|-jykd40,1,1,0|-joheg1,1,1,0|-joheg0,64,6,1|-jfuag1,64,6,1|-jfuag0,1,1,0|-j64ag1,1,1,0|-j64ag0,64,6,1|-iwr941,64,6,1|-iwr940,1,1,0|-imoag1,1,1,0|-imoag0,64,6,1|-ie16g1,64,6,1|-ie16g0,1,1,0|-i4b6g1,1,1,0|-i4b6g0,64,6,1|-hvb3s1,64,6,1|-hvb3s0,1,1,0|-hl8541,1,1,0|-hl8540,64,6,1|-hcl141,64,6,1|-hcl140,1,1,0|-h2i2g1,1,1,0|-h2i2g0,64,6,1|-gtuyg1,64,6,1|-gtuyg0,1,1,0|-gk4yg1,1,1,0|-gk4yg0,64,6,1|-gb4vs1,64,6,1|-gb4vs0,1,1,0|-g11x41,1,1,0|-g11x40,64,6,1|-fpw2g1,64,6,1|-fpw2g0,1,1,0|-fkul41,1,1,0|-fkul40,64,6,1|-eyiyk1,64,6,1|-eyiyk0,135,7,1|-ethh81,135,7,1|-ethh80,64,6,1|-eh8qk1,64,6,1|-eh8qk0,135,7,1|-earek1,135,7,1|-earek0,64,6,1|-dyinw1,64,6,1|-dyinw0,135,7,1|-drod81,135,7,1|-drod80,64,6,1|-dfsl81,64,6,1|-dfsl80,135,7,1|-d75h81,135,7,1|-d75h80,64,6,1|-cx0nw1,64,6,1|-cx0nw0,135,7,1|-cro2k1,135,7,1|-cro2k0,64,6,1|-cncfs1,64,6,1|-cncfs0,1,1,0|-cdmfs1,1,1,0|-cdmfs0,64,6,1|-c4md41,64,6,1|-c4md40,1,1,0|-bwc7s1,1,1,0|-bwc7s0,64,6,1|-buwfw1,64,6,1|-buwfw0,135,7,1|-bos2k1,135,7,1|-bos2k0,64,6,1|-bkgfs1,64,6,1|-bkgfs0,1,1,0|-bdm541,1,1,0|-bdm540,64,6,1|-b1qd41,64,6,1|-b1qd40,1,1,0|-att6g1,1,1,0|-att6g0,64,6,1|-aj0ag1,64,6,1|-aj0ag0,1,1,0|-aad6g1,1,1,0|-aad6g0,64,6,1|-a0n6g1,64,6,1|-a0n6g0,1,1,0|-9rn3s1,1,1,0|-9rn3s0,64,6,1|-9hx3s1,64,6,1|-9hx3s0,1,1,0|-98k2g1,1,1,0|-98k2g0,64,6,1|-8yu2g1,64,6,1|-8yu2g0,1,1,0|-8ptzs1,1,1,0|-8ptzs0,64,6,1|-8h6vs1,64,6,1|-8h6vs0,1,1,0|-87gvs1,1,1,0|-87gvs0,64,6,1|-7ygt41,64,6,1|-7ygt40,1,1,0|-7odug1,1,1,0|-7odug0,64,6,1|-7fqqg1,64,6,1|-7fqqg0,1,1,0|-75at41,1,1,0|-75at40,64,6,1|-6wnp41,64,6,1|-6wnp40,1,1,0|-6mxp41,1,1,0|-6mxp40,64,6,1|-6dxmg1,64,6,1|-6dxmg0,1,1,0|-63uns1,1,1,0|-63uns0,64,6,1|-5v7js1,64,6,1|-5v7js0,1,1,0|-5l4l41,1,1,0|-5l4l40,64,6,1|-5chh41,64,6,1|-5chh40,1,1,0|-52rh41,1,1,0|-52rh40,64,6,1|-4treg1,64,6,1|-4treg0,1,1,0|-4krbs1,1,1,0|-4krbs0,64,6,1|-49lh41,64,6,1|-49lh40,1,1,0|-421941,1,1,0|-421940,64,6,1|-3qveg1,64,6,1|-3qveg0,1,1,0|-3iy7s1,1,1,0|-3iy7s0,64,6,1|-385bs1,64,6,1|-385bs0,1,1,0|-30l3s1,1,1,0|-30l3s0,64,6,1|-2pf941,64,6,1|-2pf940,1,1,0|-2hv141,1,1,0|-2hv140,64,6,1|-26p6g1,64,6,1|-26p6g0,1,1,0|-1z4yg1,1,1,0|-1z4yg0,64,6,1|-1nz3s1,64,6,1|-1nz3s0,1,1,0|-1gevs1,1,1,0|-1gevs0,64,6,1|-14w2g1,64,6,1|-14w2g0,1,1,0|-z4ns1,1,1,0|-z4ns0,64,6,1|-m6841,64,6,1|-m6840,64,6,0|yd6vz,64,6,0|yd6w0,1,1,0|15kg7z,1,1,0|15kg80,64,6,1|1h39jz,64,6,1|1h39k0,1,1,0|1oaivz,1,1,0|1oaiw0,64,6,1|1ztc7z,64,6,1|1ztc80,1,1,0|270ljz,1,1,0|270lk0,64,6,1|2ijevz,64,6,1|2ijew0,1,1,0|2pqo7z,1,1,0|2pqo80,64,6,1|319hjz,64,6,1|319hk0,1,1,0|38tpjz,1,1,0|38tpk0,64,6,1|3jzk7z,64,6,1|3jzk80,1,1,0|3rjs7z,1,1,0|3rjs80,64,6,1|42pmvz,64,6,1|42pmw0,1,1,0|4a9uvz,1,1,0|4a9uw0,64,6,1|4lso7z,64,6,1|4lso80,1,1,0|4szxjz,1,1,0|4szxk0,64,6,1|54iqvz,64,6,1|54iqw0,1,1,0|5bq07z,1,1,0|5bq080,64,6,1|5n8tjz,64,6,1|5n8tk0,1,1,0|5v5xfz,1,1,0|5v5xg0,64,6,1|65ytfz,64,6,1|65ytg0,1,1,0|6dw03z,1,1,0|6dw040,64,6,1|6oow3z,64,6,1|6oow40,1,1,0|6wm2rz,1,1,0|6wm2s0,64,6,1|77eyrz,64,6,1|77eys0,1,1,0|7fc5fz,1,1,0|7fc5g0,64,6,1|7qi03z,64,6,1|7qi040,1,1,0|7yf6rz,1,1,0|7yf6s0,64,6,1|8982rz,64,6,1|8982s0,1,1,0|8h59fz,1,1,0|8h59g0,64,6,1|8ry5fz,64,6,1|8ry5g0,1,1,0|8zvc3z,1,1,0|8zvc40,64,6,1|9ao83z,64,6,1|9ao840,1,1,0|9ilerz,1,1,0|9iles0,64,6,1|9tearz,64,6,1|9teas0,1,1,0|a1bhfz,1,1,0|a1bhg0,64,6,1|achc3z,64,6,1|achc40,1,1,0|ak1k3z,1,1,0|ak1k40,64,6,1|av7erz,64,6,1|av7es0,1,1,0|b34lfz,1,1,0|b34lg0,64,6,1|bdxhfz,64,6,1|bdxhg0,1,1,0|bluo3z,1,1,0|bluo40,64,6,1|bwnk3z,64,6,1|bwnk40,1,1,0|c4kqrz,1,1,0|c4kqs0,64,6,1|cfdmrz,64,6,1|cfdms0,1,1,0|cnatfz,1,1,0|cnatg0,64,6,1|cy3pfz,64,6,1|cy3pg0,1,1,0|d60w3z,1,1,0|d60w40,64,6,1|dgts3z,64,6,1|dgts40,1,1,0|dp3xfz,1,1,0|dp3xg0,64,6,1|dzwtfz,64,6,1|dzwtg0,1,1,0|e7u03z,1,1,0|e7u040,64,6,1|eimw3z,64,6,1|eimw40,1,1,0|eqk2rz,1,1,0|eqk2s0,64,6,1|f1cyrz,64,6,1|f1cys0,1,1,0|f9a5fz,1,1,0|f9a5g0,64,6,1|fkg03z,64,6,1|fkg040,1,1,0|fs083z,1,1,0|fs0840,64,6,1|g362rz,64,6,1|g362s0,1,1,0|gaqarz,1,1,0|gaqas0,64,6,1|glw5fz,64,6,1|glw5g0,1,1,0|gttc3z,1,1,0|gttc40,64,6,1|h4m83z,64,6,1|h4m840,1,1,0|hcjerz,1,1,0|hcjes0,64,6,1|hncarz,64,6,1|hncas0,1,1,0|hv9hfz,1,1,0|hv9hg0,64,6,1|i6fc3z,64,6,1|i6fc40,1,1,0|idzk3z,1,1,0|idzk40,64,6,1|ip5erz,64,6,1|ip5es0,1,1,0|iwpmrz,1,1,0|iwpms0,64,6,1|j7vhfz,64,6,1|j7vhg0,1,1,0|jffpfz,1,1,0|jffpg0,64,6,1|jqlk3z,64,6,1|jqlk40,1,1,0|jyiqrz,1,1,0|jyiqs0,64,6,1|k9bmrz,64,6,1|k9bms0,1,1,0|kh8tfz,1,1,0|kh8tg0,64,6,1|ks1pfz,64,6,1|ks1pg0,1,1,0|kzyw3z,1,1,0|kzyw40,64,6,1|lb4qrz,64,6,1|lb4qs0,1,1,0|lioyrz,1,1,0|lioys0,64,6,1|ltutfz,64,6,1|ltutg0,1,1,0|m1f1fz,1,1,0|m1f1g0,64,6,1|mckw3z,64,6,1|mckw40,1,1,0|mki2rz,1,1,0|mki2s0,64,6,1|mvayrz,64,6,1|mvays0,1,1,0|n385fz,1,1,0|n385g0,64,6,1|ne11fz,64,6,1|ne11g0,1,1,0|nly83z,1,1,0|nly840,64,6,1|nwr43z,64,6,1|nwr440,1,1,0|o4oarz,1,1,0|o4oas0,64,6,1|ofu5fz,64,6,1|ofu5g0,1,1,0|onedfz,1,1,0|onedg0,64,6,1|oyk83z,64,6,1|oyk840,1,1,0|p64g3z,1,1,0|p64g40,64,6,1|phaarz,64,6,1|phaas0,1,1,0|pp7hfz,1,1,0|pp7hg0,64,6,1|q00dfz,64,6,1|q00dg0,1,1,0|q7xk3z,1,1,0|q7xk40,64,6,1|qiqg3z,64,6,1|qiqg40,1,1,0|qqnmrz,1,1,0|qqnms0,64,6,1|r1thfz,64,6,1|r1thg0,1,1,0|r9dpfz,1,1,0|r9dpg0,64,6,1|rkjk3z,64,6,1|rkjk40,1,1,0|rs3s3z,1,1,0|rs3s40,64,6,1|s39mrz,64,6,1|s39ms0,1,1,0|sb6tfz,1,1,0|sb6tg0,64,6,1|slzpfz,64,6,1|slzpg0,1,1,0|stww3z,1,1,0|stww40,64,6,1|t4ps3z,64,6,1|t4ps40,1,1,0|tcmyrz,1,1,0|tcmys0,64,6,1|tnfurz,64,6,1|tnfus0,1,1,0|tvd1fz,1,1,0|tvd1g0,64,6,1|u6iw3z,64,6,1|u6iw40,1,1,0|ue343z,1,1,0|ue3440,64,6,1|up8yrz,64,6,1|up8ys0,1,1,0|uwt6rz,1,1,0|uwt6s0,64,6,1|v7z1fz,64,6,1|v7z1g0,1,1,0|vfw83z,1,1,0|vfw840,64,6,1|vqp43z,64,6,1|vqp440,1,1,0|vymarz,1,1,0|vymas0,64,6,1|w9f6rz,64,6,1|w9f6s0,1,1,0|whcdfz,1,1,0|whcdg0,64,6,1|wsi83z,64,6,1|wsi840,1,1,0|x02g3z,1,1,0|x02g40,64,6,1|xb8arz,64,6,1|xb8as0,1,1,0|xisirz,1,1,0|xisis0,64,6,1|xtydfz,64,6,1|xtydg0,1,1,0|y1ilfz,1,1,0|y1ilg0,64,6,1|ycog3z,64,6,1|ycog40,1,1,0|yklmrz,1,1,0|yklms0,64,6,1|yveirz,64,6,1|yveis0,1,1,0|z3bpfz,1,1,0|z3bpg0,64,6,1|ze4lfz,64,6,1|ze4lg0,1,1,0","Europe/Luxembourg|,0,273,0|-y89550,7,6,0|-rzo2w1,7,6,0|-rzo2w0,8,7,1|-rsilg1,8,7,1|-rsilg0,7,6,0|-rhps81,7,6,0|-rhps80,8,7,1|-raglg1,8,7,1|-raglg0,7,6,0|-qznjw1,7,6,0|-qznjw0,8,7,1|-qrqd81,8,7,1|-qrqd80,7,6,0|-qo4w41,7,6,0|-qo4w40,5,1,0|-qj59g1,5,1,0|-qj59g0,6,6,1|-q7z6g1,6,6,1|-q7z6g0,5,1,0|-q15441,5,1,0|-q15440,6,6,1|-po6ak1,6,6,1|-po6ak0,5,1,0|-pgvhg1,5,1,0|-pgvhg0,6,6,1|-p5anw1,6,6,1|-p5anw0,5,1,0|-oxj6s1,5,1,0|-oxj6s0,6,6,1|-ong5c1,6,6,1|-ong5c0,5,1,0|-odd9g1,5,1,0|-odd9g0,6,6,1|-o4pzw1,6,6,1|-o4pzw0,5,1,0|-nvq2s1,5,1,0|-nvq2s0,6,6,1|-nm0001,6,6,1|-nm0000,5,1,0|-ncl6s1,5,1,0|-ncl6s0,6,6,1|-n39xc1,6,6,1|-n39xc0,5,1,0|-mt71g1,5,1,0|-mt71g0,6,6,1|-mkjuo1,6,6,1|-mkjuo0,5,1,0|-matxg1,5,1,0|-matxg0,6,6,1|-m1ts01,6,6,1|-m1ts00,5,1,0|-lrqw41,5,1,0|-lrqw40,6,6,1|-liqqo1,6,6,1|-liqqo0,5,1,0|-l8nus1,5,1,0|-l8nus0,6,6,1|-l00ig1,6,6,1|-l00ig0,5,1,0|-kqaig1,5,1,0|-kqaig0,6,6,1|-khafs1,6,6,1|-khafs0,5,1,0|-k77h41,5,1,0|-k77h40,6,6,1|-jykd41,6,6,1|-jykd40,5,1,0|-jp7bs1,5,1,0|-jp7bs0,6,6,1|-jfuag1,6,6,1|-jfuag0,5,1,0|-j6u7s1,5,1,0|-j6u7s0,6,6,1|-iwr941,6,6,1|-iwr940,5,1,0|-ine7s1,5,1,0|-ine7s0,6,6,1|-ie16g1,6,6,1|-ie16g0,5,1,0|-i513s1,5,1,0|-i513s0,6,6,1|-hvb3s1,6,6,1|-hvb3s0,5,1,0|-hl8541,5,1,0|-hl8540,6,6,1|-hcl141,6,6,1|-hcl140,5,1,0|-h37zs1,5,1,0|-h37zs0,6,6,1|-gtuyg1,6,6,1|-gtuyg0,5,1,0|-gkuvs1,5,1,0|-gkuvs0,6,6,1|-gb4vs1,6,6,1|-gb4vs0,5,1,0|-g11x41,5,1,0|-g11x40,6,6,1|-fpw2g1,6,6,1|-fpw2g0,5,1,0|-fkul41,5,1,0|-fkul40,6,6,1|-fgsag1,6,6,1|-fgsag0,6,7,1|-e6dzw1,6,7,1|-e6dzw0,5,6,0|-dytrw1,5,6,0|-dytrw0,6,7,1|-dp3rw1,6,7,1|-dp3rw0,5,6,0|-dfqqk1,5,6,0|-dfqqk0,6,7,1|-d73mk1,6,7,1|-d73mk0,7,6,0|-cx0nw1,7,6,0|-cx0nw0,8,7,1|-cofek1,8,7,1|-cofek0,7,6,0|-cbtp81,7,6,0|-cbtp80,8,7,1|-c4kl81,8,7,1|-c4kl80,7,6,0|3s9mrz,7,6,0|3s9ms0,8,7,1|419pfz,8,7,1|419pg0,7,6,0|4azpfz,7,6,0|4azpg0,8,7,1|4kcqrz,8,7,1|4kcqs0,7,6,0|4tps3z,7,6,0|4tps40,8,7,1|532tfz,8,7,1|532tg0,7,6,0|5cstfz,7,6,0|5cstg0,8,7,1|5lsw3z,8,7,1|5lsw40,7,6,0|5v5xfz,7,6,0|5v5xg0,8,7,1|64iyrz,8,7,1|64iys0,7,6,0|6dw03z,7,6,0|6dw040,8,7,1|6n91fz,8,7,1|6n91g0,7,6,0|6wm2rz,7,6,0|6wm2s0,8,7,1|75z43z,8,7,1|75z440,7,6,0|7fc5fz,7,6,0|7fc5g0,8,7,1|7p25fz,8,7,1|7p25g0,7,6,0|7yf6rz,7,6,0|7yf6s0,8,7,1|87s83z,8,7,1|87s840,7,6,0|8h59fz,7,6,0|8h59g0,8,7,1|8qiarz,8,7,1|8qias0,7,6,0|8zvc3z,7,6,0|8zvc40,8,7,1|998dfz,8,7,1|998dg0,7,6,0|9ilerz,7,6,0|9iles0,8,7,1|9ryg3z,8,7,1|9ryg40,7,6,0|a1bhfz,7,6,0|a1bhg0,8,7,1|aaoirz,8,7,1|aaois0,7,6,0|ak1k3z,7,6,0|ak1k40,8,7,1|atrk3z,8,7,1|atrk40,7,6,0|b34lfz,7,6,0|b34lg0,8,7,1|bchmrz,8,7,1|bchms0,7,6,0|bluo3z,7,6,0|bluo40,8,7,1|bv7pfz,8,7,1|bv7pg0,7,6,0|c4kqrz,7,6,0|c4kqs0,8,7,1|cdxs3z,8,7,1|cdxs40,7,6,0|cnatfz,7,6,0|cnatg0,8,7,1|cwnurz,8,7,1|cwnus0,7,6,0|d60w3z,7,6,0|d60w40,8,7,1|dfdxfz,8,7,1|dfdxg0,7,6,0|dp3xfz,7,6,0|dp3xg0,8,7,1|dzwtfz,8,7,1|dzwtg0,7,6,0|e7u03z,7,6,0|e7u040,8,7,1|eimw3z,8,7,1|eimw40,7,6,0|eqk2rz,7,6,0|eqk2s0,8,7,1|f1cyrz,8,7,1|f1cys0,7,6,0|f9a5fz,7,6,0|f9a5g0,8,7,1|fkg03z,8,7,1|fkg040,7,6,0|fs083z,7,6,0|fs0840,8,7,1|g362rz,8,7,1|g362s0,7,6,0|gaqarz,7,6,0|gaqas0,8,7,1|glw5fz,8,7,1|glw5g0,7,6,0|gttc3z,7,6,0|gttc40,8,7,1|h4m83z,8,7,1|h4m840,7,6,0|hcjerz,7,6,0|hcjes0,8,7,1|hncarz,8,7,1|hncas0,7,6,0|hv9hfz,7,6,0|hv9hg0,8,7,1|i6fc3z,8,7,1|i6fc40,7,6,0|idzk3z,7,6,0|idzk40,8,7,1|ip5erz,8,7,1|ip5es0,7,6,0|iwpmrz,7,6,0|iwpms0,8,7,1|j7vhfz,8,7,1|j7vhg0,7,6,0|jffpfz,7,6,0|jffpg0,8,7,1|jqlk3z,8,7,1|jqlk40,7,6,0|jyiqrz,7,6,0|jyiqs0,8,7,1|k9bmrz,8,7,1|k9bms0,7,6,0|kh8tfz,7,6,0|kh8tg0,8,7,1|ks1pfz,8,7,1|ks1pg0,7,6,0|kzyw3z,7,6,0|kzyw40,8,7,1|lb4qrz,8,7,1|lb4qs0,7,6,0|lioyrz,7,6,0|lioys0,8,7,1|ltutfz,8,7,1|ltutg0,7,6,0|m1f1fz,7,6,0|m1f1g0,8,7,1|mckw3z,8,7,1|mckw40,7,6,0|mki2rz,7,6,0|mki2s0,8,7,1|mvayrz,8,7,1|mvays0,7,6,0|n385fz,7,6,0|n385g0,8,7,1|ne11fz,8,7,1|ne11g0,7,6,0|nly83z,7,6,0|nly840,8,7,1|nwr43z,8,7,1|nwr440,7,6,0|o4oarz,7,6,0|o4oas0,8,7,1|ofu5fz,8,7,1|ofu5g0,7,6,0|onedfz,7,6,0|onedg0,8,7,1|oyk83z,8,7,1|oyk840,7,6,0|p64g3z,7,6,0|p64g40,8,7,1|phaarz,8,7,1|phaas0,7,6,0|pp7hfz,7,6,0|pp7hg0,8,7,1|q00dfz,8,7,1|q00dg0,7,6,0|q7xk3z,7,6,0|q7xk40,8,7,1|qiqg3z,8,7,1|qiqg40,7,6,0|qqnmrz,7,6,0|qqnms0,8,7,1|r1thfz,8,7,1|r1thg0,7,6,0|r9dpfz,7,6,0|r9dpg0,8,7,1|rkjk3z,8,7,1|rkjk40,7,6,0|rs3s3z,7,6,0|rs3s40,8,7,1|s39mrz,8,7,1|s39ms0,7,6,0|sb6tfz,7,6,0|sb6tg0,8,7,1|slzpfz,8,7,1|slzpg0,7,6,0|stww3z,7,6,0|stww40,8,7,1|t4ps3z,8,7,1|t4ps40,7,6,0|tcmyrz,7,6,0|tcmys0,8,7,1|tnfurz,8,7,1|tnfus0,7,6,0|tvd1fz,7,6,0|tvd1g0,8,7,1|u6iw3z,8,7,1|u6iw40,7,6,0|ue343z,7,6,0|ue3440,8,7,1|up8yrz,8,7,1|up8ys0,7,6,0|uwt6rz,7,6,0|uwt6s0,8,7,1|v7z1fz,8,7,1|v7z1g0,7,6,0|vfw83z,7,6,0|vfw840,8,7,1|vqp43z,8,7,1|vqp440,7,6,0|vymarz,7,6,0|vymas0,8,7,1|w9f6rz,8,7,1|w9f6s0,7,6,0|whcdfz,7,6,0|whcdg0,8,7,1|wsi83z,8,7,1|wsi840,7,6,0|x02g3z,7,6,0|x02g40,8,7,1|xb8arz,8,7,1|xb8as0,7,6,0|xisirz,7,6,0|xisis0,8,7,1|xtydfz,8,7,1|xtydg0,7,6,0|y1ilfz,7,6,0|y1ilg0,8,7,1|ycog3z,8,7,1|ycog40,7,6,0|yklmrz,7,6,0|yklms0,8,7,1|yveirz,8,7,1|yveis0,7,6,0|z3bpfz,7,6,0|z3bpg0,8,7,1|ze4lfz,8,7,1|ze4lg0,7,6,0","Europe/Madrid|,0,274,0|-100edc0,5,1,0|-qzlus1,5,1,0|-qzlus0,6,6,1|-qqnk01,6,6,1|-qqnk00,5,1,0|-qhalg1,5,1,0|-qhalg0,6,6,1|-q7vmo1,6,6,1|-q7vmo0,5,1,0|-nusqs1,5,1,0|-nusqs0,6,6,1|-nm0001,6,6,1|-nm0000,5,1,0|-mt71g1,5,1,0|-mt71g0,6,6,1|-mkjuo1,6,6,1|-mkjuo0,5,1,0|-matxg1,5,1,0|-matxg0,6,6,1|-m1ts01,6,6,1|-m1ts00,5,1,0|-lrqtc1,5,1,0|-lrqtc0,6,6,1|-liqqo1,6,6,1|-liqqo0,5,1,0|-l8nus1,5,1,0|-l8nus0,6,6,1|-l00o01,6,6,1|-l00o00,5,1,0|-gzf6s1,5,1,0|-gzf6s0,6,6,1|-gtv401,6,6,1|-gtv400,5,1,0|-gki5g1,5,1,0|-gki5g0,6,6,1|-gj2dk1,6,6,1|-gj2dk0,136,7,1|-gb3c81,136,7,1|-gb3c80,6,6,1|-fs2001,6,6,1|-fs2000,5,1,0|-fjrxg1,5,1,0|-fjrxg0,7,6,0|-eft481,7,6,0|-eft480,8,7,1|-e9kys1,8,7,1|-e9kys0,7,6,0|-dxsyw1,7,6,0|-dxsyw0,8,7,1|-dp5s41,8,7,1|-dp5s40,7,6,0|-df2w81,7,6,0|-df2w80,8,7,1|-d6fpg1,8,7,1|-d6fpg0,7,6,0|-cwctk1,7,6,0|-cwctk0,8,7,1|-cnpms1,8,7,1|-cnpms0,7,6,0|-cdmqw1,7,6,0|-cdmqw0,8,7,1|-c4zk41,8,7,1|-c4zk40,7,6,0|-asdmw1,7,6,0|-asdmw0,8,7,1|-akgdg1,8,7,1|-akgdg0,7,6,0|28g53z,7,6,0|28g540,8,7,1|2hgajz,8,7,1|2hgak0,7,6,0|2r67rz,7,6,0|2r67s0,8,7,1|306d7z,8,7,1|306d80,7,6,0|396d3z,7,6,0|396d40,8,7,1|3ijh7z,8,7,1|3ijh80,7,6,0|3s9efz,7,6,0|3s9eg0,8,7,1|419jvz,8,7,1|419jw0,7,6,0|4azpfz,7,6,0|4azpg0,8,7,1|4kcqrz,8,7,1|4kcqs0,7,6,0|4tps3z,7,6,0|4tps40,8,7,1|532tfz,8,7,1|532tg0,7,6,0|5cstfz,7,6,0|5cstg0,8,7,1|5lsw3z,8,7,1|5lsw40,7,6,0|5v5xfz,7,6,0|5v5xg0,8,7,1|64iyrz,8,7,1|64iys0,7,6,0|6dw03z,7,6,0|6dw040,8,7,1|6n91fz,8,7,1|6n91g0,7,6,0|6wm2rz,7,6,0|6wm2s0,8,7,1|75z43z,8,7,1|75z440,7,6,0|7fc5fz,7,6,0|7fc5g0,8,7,1|7p25fz,8,7,1|7p25g0,7,6,0|7yf6rz,7,6,0|7yf6s0,8,7,1|87s83z,8,7,1|87s840,7,6,0|8h59fz,7,6,0|8h59g0,8,7,1|8qiarz,8,7,1|8qias0,7,6,0|8zvc3z,7,6,0|8zvc40,8,7,1|998dfz,8,7,1|998dg0,7,6,0|9ilerz,7,6,0|9iles0,8,7,1|9ryg3z,8,7,1|9ryg40,7,6,0|a1bhfz,7,6,0|a1bhg0,8,7,1|aaoirz,8,7,1|aaois0,7,6,0|ak1k3z,7,6,0|ak1k40,8,7,1|atrk3z,8,7,1|atrk40,7,6,0|b34lfz,7,6,0|b34lg0,8,7,1|bchmrz,8,7,1|bchms0,7,6,0|bluo3z,7,6,0|bluo40,8,7,1|bv7pfz,8,7,1|bv7pg0,7,6,0|c4kqrz,7,6,0|c4kqs0,8,7,1|cdxs3z,8,7,1|cdxs40,7,6,0|cnatfz,7,6,0|cnatg0,8,7,1|cwnurz,8,7,1|cwnus0,7,6,0|d60w3z,7,6,0|d60w40,8,7,1|dfdxfz,8,7,1|dfdxg0,7,6,0|dp3xfz,7,6,0|dp3xg0,8,7,1|dzwtfz,8,7,1|dzwtg0,7,6,0|e7u03z,7,6,0|e7u040,8,7,1|eimw3z,8,7,1|eimw40,7,6,0|eqk2rz,7,6,0|eqk2s0,8,7,1|f1cyrz,8,7,1|f1cys0,7,6,0|f9a5fz,7,6,0|f9a5g0,8,7,1|fkg03z,8,7,1|fkg040,7,6,0|fs083z,7,6,0|fs0840,8,7,1|g362rz,8,7,1|g362s0,7,6,0|gaqarz,7,6,0|gaqas0,8,7,1|glw5fz,8,7,1|glw5g0,7,6,0|gttc3z,7,6,0|gttc40,8,7,1|h4m83z,8,7,1|h4m840,7,6,0|hcjerz,7,6,0|hcjes0,8,7,1|hncarz,8,7,1|hncas0,7,6,0|hv9hfz,7,6,0|hv9hg0,8,7,1|i6fc3z,8,7,1|i6fc40,7,6,0|idzk3z,7,6,0|idzk40,8,7,1|ip5erz,8,7,1|ip5es0,7,6,0|iwpmrz,7,6,0|iwpms0,8,7,1|j7vhfz,8,7,1|j7vhg0,7,6,0|jffpfz,7,6,0|jffpg0,8,7,1|jqlk3z,8,7,1|jqlk40,7,6,0|jyiqrz,7,6,0|jyiqs0,8,7,1|k9bmrz,8,7,1|k9bms0,7,6,0|kh8tfz,7,6,0|kh8tg0,8,7,1|ks1pfz,8,7,1|ks1pg0,7,6,0|kzyw3z,7,6,0|kzyw40,8,7,1|lb4qrz,8,7,1|lb4qs0,7,6,0|lioyrz,7,6,0|lioys0,8,7,1|ltutfz,8,7,1|ltutg0,7,6,0|m1f1fz,7,6,0|m1f1g0,8,7,1|mckw3z,8,7,1|mckw40,7,6,0|mki2rz,7,6,0|mki2s0,8,7,1|mvayrz,8,7,1|mvays0,7,6,0|n385fz,7,6,0|n385g0,8,7,1|ne11fz,8,7,1|ne11g0,7,6,0|nly83z,7,6,0|nly840,8,7,1|nwr43z,8,7,1|nwr440,7,6,0|o4oarz,7,6,0|o4oas0,8,7,1|ofu5fz,8,7,1|ofu5g0,7,6,0|onedfz,7,6,0|onedg0,8,7,1|oyk83z,8,7,1|oyk840,7,6,0|p64g3z,7,6,0|p64g40,8,7,1|phaarz,8,7,1|phaas0,7,6,0|pp7hfz,7,6,0|pp7hg0,8,7,1|q00dfz,8,7,1|q00dg0,7,6,0|q7xk3z,7,6,0|q7xk40,8,7,1|qiqg3z,8,7,1|qiqg40,7,6,0|qqnmrz,7,6,0|qqnms0,8,7,1|r1thfz,8,7,1|r1thg0,7,6,0|r9dpfz,7,6,0|r9dpg0,8,7,1|rkjk3z,8,7,1|rkjk40,7,6,0|rs3s3z,7,6,0|rs3s40,8,7,1|s39mrz,8,7,1|s39ms0,7,6,0|sb6tfz,7,6,0|sb6tg0,8,7,1|slzpfz,8,7,1|slzpg0,7,6,0|stww3z,7,6,0|stww40,8,7,1|t4ps3z,8,7,1|t4ps40,7,6,0|tcmyrz,7,6,0|tcmys0,8,7,1|tnfurz,8,7,1|tnfus0,7,6,0|tvd1fz,7,6,0|tvd1g0,8,7,1|u6iw3z,8,7,1|u6iw40,7,6,0|ue343z,7,6,0|ue3440,8,7,1|up8yrz,8,7,1|up8ys0,7,6,0|uwt6rz,7,6,0|uwt6s0,8,7,1|v7z1fz,8,7,1|v7z1g0,7,6,0|vfw83z,7,6,0|vfw840,8,7,1|vqp43z,8,7,1|vqp440,7,6,0|vymarz,7,6,0|vymas0,8,7,1|w9f6rz,8,7,1|w9f6s0,7,6,0|whcdfz,7,6,0|whcdg0,8,7,1|wsi83z,8,7,1|wsi840,7,6,0|x02g3z,7,6,0|x02g40,8,7,1|xb8arz,8,7,1|xb8as0,7,6,0|xisirz,7,6,0|xisis0,8,7,1|xtydfz,8,7,1|xtydg0,7,6,0|y1ilfz,7,6,0|y1ilg0,8,7,1|ycog3z,8,7,1|ycog40,7,6,0|yklmrz,7,6,0|yklms0,8,7,1|yveirz,8,7,1|yveis0,7,6,0|z3bpfz,7,6,0|z3bpg0,8,7,1|ze4lfz,8,7,1|ze4lg0,7,6,0","Europe/Malta|,0,275,0|-13qyw0s,7,6,0|-rymys1,7,6,0|-rymys0,8,7,1|-rsio81,8,7,1|-rsio80,7,6,0|-rj5k41,7,6,0|-rj5k40,8,7,1|-r9qqw1,8,7,1|-r9qqw0,7,6,0|-r1idg1,7,6,0|-r1idg0,8,7,1|-qqnpk1,8,7,1|-qqnpk0,7,6,0|-qj59g1,7,6,0|-qj59g0,8,7,1|-q7zhk1,8,7,1|-q7zhk0,7,6,0|-pzcas1,7,6,0|-pzcas0,8,7,1|-ppzc81,8,7,1|-ppzc80,7,6,0|-ff59g1,7,6,0|-ff59g0,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dp3rw1,8,7,1|-dp3rw0,7,6,0|-dfsl81,7,6,0|-dfsl80,8,7,1|-d75h81,8,7,1|-d75h80,7,6,0|-cx0nw1,7,6,0|-cx0nw0,8,7,1|-cohes1,8,7,1|-cohes0,7,6,0|-cf2d81,7,6,0|-cf2d80,8,7,1|-c4mfw1,8,7,1|-c4mfw0,7,6,0|-bwcg41,7,6,0|-bwcg40,8,7,1|-blwis1,8,7,1|-blwis0,7,6,0|-bec581,7,6,0|-bec580,8,7,1|-b36ak1,8,7,1|-b36ak0,7,6,0|-1vwis1,7,6,0|-1vwis0,8,7,1|-1pf9k1,8,7,1|-1pf9k0,7,6,0|-1cthg1,7,6,0|-1cthg0,8,7,1|-16p441,8,7,1|-16p440,7,6,0|-u3es1,7,6,0|-u3es0,8,7,1|-nz1g1,8,7,1|-nz1g0,7,6,0|-b0dg1,7,6,0|-b0dg0,8,7,1|-4w041,8,7,1|-4w040,7,6,0|7pp7z,7,6,0|7pp80,8,7,1|du2jz,8,7,1|du2k0,7,6,0|q2t7z,7,6,0|q2t80,8,7,1|wk57z,8,7,1|wk580,7,6,0|195ujz,7,6,0|195uk0,8,7,1|1fn6jz,8,7,1|1fn6k0,7,6,0|1oyd7z,7,6,0|1oyd80,8,7,1|1ybejz,8,7,1|1ybek0,7,6,0|28t6jz,7,6,0|28t6k0,8,7,1|2gf97z,8,7,1|2gf980,7,6,0|2rjerz,7,6,0|2rjes0,8,7,1|2zginz,8,7,1|2zgio0,7,6,0|3a9hfz,7,6,0|3a9hg0,8,7,1|3i6lbz,8,7,1|3i6lc0,7,6,0|3szk3z,7,6,0|3szk40,8,7,1|40wnzz,8,7,1|40wo00,7,6,0|4bpmrz,7,6,0|4bpms0,8,7,1|4jmqnz,8,7,1|4jmqo0,7,6,0|4ufpfz,7,6,0|4ufpg0,8,7,1|52ctbz,8,7,1|52ctc0,7,6,0|5chpfz,7,6,0|5chpg0,8,7,1|5lfunz,8,7,1|5lfuo0,7,6,0|5v5xfz,7,6,0|5v5xg0,8,7,1|64iyrz,8,7,1|64iys0,7,6,0|6dw03z,7,6,0|6dw040,8,7,1|6n91fz,8,7,1|6n91g0,7,6,0|6wm2rz,7,6,0|6wm2s0,8,7,1|75z43z,8,7,1|75z440,7,6,0|7fc5fz,7,6,0|7fc5g0,8,7,1|7p25fz,8,7,1|7p25g0,7,6,0|7yf6rz,7,6,0|7yf6s0,8,7,1|87s83z,8,7,1|87s840,7,6,0|8h59fz,7,6,0|8h59g0,8,7,1|8qiarz,8,7,1|8qias0,7,6,0|8zvc3z,7,6,0|8zvc40,8,7,1|998dfz,8,7,1|998dg0,7,6,0|9ilerz,7,6,0|9iles0,8,7,1|9ryg3z,8,7,1|9ryg40,7,6,0|a1bhfz,7,6,0|a1bhg0,8,7,1|aaoirz,8,7,1|aaois0,7,6,0|ak1k3z,7,6,0|ak1k40,8,7,1|atrk3z,8,7,1|atrk40,7,6,0|b34lfz,7,6,0|b34lg0,8,7,1|bchmrz,8,7,1|bchms0,7,6,0|bluo3z,7,6,0|bluo40,8,7,1|bv7pfz,8,7,1|bv7pg0,7,6,0|c4kqrz,7,6,0|c4kqs0,8,7,1|cdxs3z,8,7,1|cdxs40,7,6,0|cnatfz,7,6,0|cnatg0,8,7,1|cwnurz,8,7,1|cwnus0,7,6,0|d60w3z,7,6,0|d60w40,8,7,1|dfdxfz,8,7,1|dfdxg0,7,6,0|dp3xfz,7,6,0|dp3xg0,8,7,1|dzwtfz,8,7,1|dzwtg0,7,6,0|e7u03z,7,6,0|e7u040,8,7,1|eimw3z,8,7,1|eimw40,7,6,0|eqk2rz,7,6,0|eqk2s0,8,7,1|f1cyrz,8,7,1|f1cys0,7,6,0|f9a5fz,7,6,0|f9a5g0,8,7,1|fkg03z,8,7,1|fkg040,7,6,0|fs083z,7,6,0|fs0840,8,7,1|g362rz,8,7,1|g362s0,7,6,0|gaqarz,7,6,0|gaqas0,8,7,1|glw5fz,8,7,1|glw5g0,7,6,0|gttc3z,7,6,0|gttc40,8,7,1|h4m83z,8,7,1|h4m840,7,6,0|hcjerz,7,6,0|hcjes0,8,7,1|hncarz,8,7,1|hncas0,7,6,0|hv9hfz,7,6,0|hv9hg0,8,7,1|i6fc3z,8,7,1|i6fc40,7,6,0|idzk3z,7,6,0|idzk40,8,7,1|ip5erz,8,7,1|ip5es0,7,6,0|iwpmrz,7,6,0|iwpms0,8,7,1|j7vhfz,8,7,1|j7vhg0,7,6,0|jffpfz,7,6,0|jffpg0,8,7,1|jqlk3z,8,7,1|jqlk40,7,6,0|jyiqrz,7,6,0|jyiqs0,8,7,1|k9bmrz,8,7,1|k9bms0,7,6,0|kh8tfz,7,6,0|kh8tg0,8,7,1|ks1pfz,8,7,1|ks1pg0,7,6,0|kzyw3z,7,6,0|kzyw40,8,7,1|lb4qrz,8,7,1|lb4qs0,7,6,0|lioyrz,7,6,0|lioys0,8,7,1|ltutfz,8,7,1|ltutg0,7,6,0|m1f1fz,7,6,0|m1f1g0,8,7,1|mckw3z,8,7,1|mckw40,7,6,0|mki2rz,7,6,0|mki2s0,8,7,1|mvayrz,8,7,1|mvays0,7,6,0|n385fz,7,6,0|n385g0,8,7,1|ne11fz,8,7,1|ne11g0,7,6,0|nly83z,7,6,0|nly840,8,7,1|nwr43z,8,7,1|nwr440,7,6,0|o4oarz,7,6,0|o4oas0,8,7,1|ofu5fz,8,7,1|ofu5g0,7,6,0|onedfz,7,6,0|onedg0,8,7,1|oyk83z,8,7,1|oyk840,7,6,0|p64g3z,7,6,0|p64g40,8,7,1|phaarz,8,7,1|phaas0,7,6,0|pp7hfz,7,6,0|pp7hg0,8,7,1|q00dfz,8,7,1|q00dg0,7,6,0|q7xk3z,7,6,0|q7xk40,8,7,1|qiqg3z,8,7,1|qiqg40,7,6,0|qqnmrz,7,6,0|qqnms0,8,7,1|r1thfz,8,7,1|r1thg0,7,6,0|r9dpfz,7,6,0|r9dpg0,8,7,1|rkjk3z,8,7,1|rkjk40,7,6,0|rs3s3z,7,6,0|rs3s40,8,7,1|s39mrz,8,7,1|s39ms0,7,6,0|sb6tfz,7,6,0|sb6tg0,8,7,1|slzpfz,8,7,1|slzpg0,7,6,0|stww3z,7,6,0|stww40,8,7,1|t4ps3z,8,7,1|t4ps40,7,6,0|tcmyrz,7,6,0|tcmys0,8,7,1|tnfurz,8,7,1|tnfus0,7,6,0|tvd1fz,7,6,0|tvd1g0,8,7,1|u6iw3z,8,7,1|u6iw40,7,6,0|ue343z,7,6,0|ue3440,8,7,1|up8yrz,8,7,1|up8ys0,7,6,0|uwt6rz,7,6,0|uwt6s0,8,7,1|v7z1fz,8,7,1|v7z1g0,7,6,0|vfw83z,7,6,0|vfw840,8,7,1|vqp43z,8,7,1|vqp440,7,6,0|vymarz,7,6,0|vymas0,8,7,1|w9f6rz,8,7,1|w9f6s0,7,6,0|whcdfz,7,6,0|whcdg0,8,7,1|wsi83z,8,7,1|wsi840,7,6,0|x02g3z,7,6,0|x02g40,8,7,1|xb8arz,8,7,1|xb8as0,7,6,0|xisirz,7,6,0|xisis0,8,7,1|xtydfz,8,7,1|xtydg0,7,6,0|y1ilfz,7,6,0|y1ilg0,8,7,1|ycog3z,8,7,1|ycog40,7,6,0|yklmrz,7,6,0|yklms0,8,7,1|yveirz,8,7,1|yveis0,7,6,0|z3bpfz,7,6,0|z3bpg0,8,7,1|ze4lfz,8,7,1|ze4lg0,7,6,0","Europe/Minsk|,0,276,0|-1ayy7rs,19,277,0|-nu113d,19,277,0|-nu113c,10,7,0|-kmr1k1,10,7,0|-kmr1k0,132,11,0|-evpf01,132,11,0|-evpf00,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dp3rw1,8,7,1|-dp3rw0,7,6,0|-dfqqk1,7,6,0|-dfqqk0,8,7,1|-db2g81,8,7,1|-db2g80,132,11,0|5vb6bz,132,11,0|5vb6c0,133,144,1|64pzjz,133,144,1|64pzk0,132,11,0|6e33nz,132,11,0|6e33o0,133,144,1|6nhwvz,133,144,1|6nhww0,132,11,0|6wv0zz,132,11,0|6wv100,133,144,1|769u7z,133,144,1|769u80,132,11,0|7foszz,132,11,0|7fot00,133,144,1|7p1zvz,133,144,1|7p1zw0,132,11,0|7yf17z,132,11,0|7yf180,133,144,1|87s2jz,133,144,1|87s2k0,132,11,0|8h53vz,132,11,0|8h53w0,133,144,1|8qi57z,133,144,1|8qi580,132,11,0|8zv6jz,132,11,0|8zv6k0,133,144,1|9987vz,133,144,1|9987w0,132,11,0|9il97z,132,11,0|9il980,133,144,1|9ryajz,133,144,1|9ryak0,132,11,0|a1bbvz,132,11,0|a1bbw0,133,144,1|aaod7z,133,144,1|aaod80,132,11,0|b34fvz,132,11,0|b34fw0,11,11,1|bchjzz,11,11,1|bchk00,10,7,0|blulbz,10,7,0|blulc0,11,11,1|bv7mnz,11,11,1|bv7mo0,10,7,0|c4knzz,10,7,0|c4ko00,11,11,1|cdxpbz,11,11,1|cdxpc0,10,7,0|cnaqnz,10,7,0|cnaqo0,11,11,1|cwnrzz,11,11,1|cwns00,10,7,0|d60tbz,10,7,0|d60tc0,11,11,1|dfdunz,11,11,1|dfduo0,10,7,0|dp3unz,10,7,0|dp3uo0,11,11,1|dzwqnz,11,11,1|dzwqo0,10,7,0|e7txbz,10,7,0|e7txc0,11,11,1|eimtbz,11,11,1|eimtc0,10,7,0|eqjzzz,10,7,0|eqk000,11,11,1|f1cvzz,11,11,1|f1cw00,10,7,0|f9a2nz,10,7,0|f9a2o0,11,11,1|fkfxbz,11,11,1|fkfxc0,10,7,0|fs05bz,10,7,0|fs05c0,11,11,1|g35zzz,11,11,1|g36000,10,7,0|gaq7zz,10,7,0|gaq800,11,11,1|glw2nz,11,11,1|glw2o0,10,7,0|gtt9bz,10,7,0|gtt9c0,11,11,1|h4m5bz,11,11,1|h4m5c0,10,7,0|hcjbzz,10,7,0|hcjc00,11,11,1|hnc7zz,11,11,1|hnc800,10,7,0|hv9enz,10,7,0|hv9eo0,11,11,1|i6f9bz,11,11,1|i6f9c0,10,7,0|idzhbz,10,7,0|idzhc0,11,11,1|ip5bzz,11,11,1|ip5c00,10,7,0|iwpjzz,10,7,0|iwpk00,11,11,1|j7venz,11,11,1|j7veo0,10,7,0|jffmnz,10,7,0|jffmo0,11,11,1|jqlhbz,11,11,1|jqlhc0,10,7,0|jyinzz,10,7,0|jyio00,11,11,1|k9bjzz,11,11,1|k9bk00,10,7,0|kh8qnz,10,7,0|kh8qo0,11,11,1|ks1mnz,11,11,1|ks1mo0,10,7,0|kzytbz,10,7,0|kzytc0,11,11,1|lb4nzz,11,11,1|lb4o00,10,7,0|liovzz,10,7,0|liow00,90,11,0","Europe/Monaco|,0,278,0|-14hnyp8,4,5,0|-uo2b3m,4,5,0|-uo2b3l,5,1,0|-ry2lg1,5,1,0|-ry2lg0,6,6,1|-rsgqs1,6,6,1|-rsgqs0,5,1,0|-rjiis1,5,1,0|-rjiis0,6,6,1|-r9dpg1,6,6,1|-r9dpg0,5,1,0|-r1idg1,5,1,0|-r1idg0,6,6,1|-qqnms1,6,6,1|-qqnms0,5,1,0|-qj59g1,5,1,0|-qj59g0,6,6,1|-q7xk41,6,6,1|-q7xk40,5,1,0|-q15441,5,1,0|-q15440,6,6,1|-po6g41,6,6,1|-po6g40,5,1,0|-pgvhg1,5,1,0|-pgvhg0,6,6,1|-p5atg1,6,6,1|-p5atg0,5,1,0|-oxj6s1,5,1,0|-oxj6s0,6,6,1|-ong841,6,6,1|-ong840,5,1,0|-obkg41,5,1,0|-obkg40,6,6,1|-o4q5g1,6,6,1|-o4q5g0,5,1,0|-nvq2s1,5,1,0|-nvq2s0,6,6,1|-nm02s1,6,6,1|-nm02s0,5,1,0|-ncn1g1,5,1,0|-ncn1g0,6,6,1|-n3a041,6,6,1|-n3a040,5,1,0|-mt71g1,5,1,0|-mt71g0,6,6,1|-mkjxg1,6,6,1|-mkjxg0,5,1,0|-matxg1,5,1,0|-matxg0,6,6,1|-m1tus1,6,6,1|-m1tus0,5,1,0|-lrqw41,5,1,0|-lrqw40,6,6,1|-liqtg1,6,6,1|-liqtg0,5,1,0|-l8nus1,5,1,0|-l8nus0,6,6,1|-l00qs1,6,6,1|-l00qs0,5,1,0|-kqaqs1,5,1,0|-kqaqs0,6,6,1|-khao41,6,6,1|-khao40,5,1,0|-k77pg1,5,1,0|-k77pg0,6,6,1|-jyklg1,6,6,1|-jyklg0,5,1,0|-jp7k41,5,1,0|-jp7k40,6,6,1|-jfuis1,6,6,1|-jfuis0,5,1,0|-j6ug41,5,1,0|-j6ug40,6,6,1|-iwrhg1,6,6,1|-iwrhg0,5,1,0|-ineg41,5,1,0|-ineg40,6,6,1|-ie1es1,6,6,1|-ie1es0,5,1,0|-i51c41,5,1,0|-i51c40,6,6,1|-hvbc41,6,6,1|-hvbc40,5,1,0|-hl8dg1,5,1,0|-hl8dg0,6,6,1|-hcl9g1,6,6,1|-hcl9g0,5,1,0|-h38841,5,1,0|-h38840,6,6,1|-gtv6s1,6,6,1|-gtv6s0,5,1,0|-gkv441,5,1,0|-gkv440,6,6,1|-gb5441,6,6,1|-gb5440,5,1,0|-g125g1,5,1,0|-g125g0,6,6,1|-fpwas1,6,6,1|-fpwas0,5,1,0|-fkul41,5,1,0|-fkul40,6,6,1|-eyh9g1,6,6,1|-eyh9g0,136,7,1|-eqk5k1,136,7,1|-eqk5k0,6,6,1|-eimw41,6,6,1|-eimw40,136,7,1|-e6dzw1,136,7,1|-e6dzw0,6,6,1|-dytrw1,6,6,1|-dytrw0,136,7,1|-dp3rw1,136,7,1|-dp3rw0,6,6,1|-dfqqk1,6,6,1|-dfqqk0,136,7,1|-d62qs1,136,7,1|-d62qs0,6,6,1|-cx0nw1,6,6,1|-cx0nw0,136,7,1|-cofek1,136,7,1|-cofek0,7,6,0|396inz,7,6,0|396io0,8,7,1|3ijh7z,8,7,1|3ijh80,7,6,0|3s9mrz,7,6,0|3s9ms0,8,7,1|419pfz,8,7,1|419pg0,7,6,0|4azpfz,7,6,0|4azpg0,8,7,1|4kcqrz,8,7,1|4kcqs0,7,6,0|4tps3z,7,6,0|4tps40,8,7,1|532tfz,8,7,1|532tg0,7,6,0|5cstfz,7,6,0|5cstg0,8,7,1|5lsw3z,8,7,1|5lsw40,7,6,0|5v5xfz,7,6,0|5v5xg0,8,7,1|64iyrz,8,7,1|64iys0,7,6,0|6dw03z,7,6,0|6dw040,8,7,1|6n91fz,8,7,1|6n91g0,7,6,0|6wm2rz,7,6,0|6wm2s0,8,7,1|75z43z,8,7,1|75z440,7,6,0|7fc5fz,7,6,0|7fc5g0,8,7,1|7p25fz,8,7,1|7p25g0,7,6,0|7yf6rz,7,6,0|7yf6s0,8,7,1|87s83z,8,7,1|87s840,7,6,0|8h59fz,7,6,0|8h59g0,8,7,1|8qiarz,8,7,1|8qias0,7,6,0|8zvc3z,7,6,0|8zvc40,8,7,1|998dfz,8,7,1|998dg0,7,6,0|9ilerz,7,6,0|9iles0,8,7,1|9ryg3z,8,7,1|9ryg40,7,6,0|a1bhfz,7,6,0|a1bhg0,8,7,1|aaoirz,8,7,1|aaois0,7,6,0|ak1k3z,7,6,0|ak1k40,8,7,1|atrk3z,8,7,1|atrk40,7,6,0|b34lfz,7,6,0|b34lg0,8,7,1|bchmrz,8,7,1|bchms0,7,6,0|bluo3z,7,6,0|bluo40,8,7,1|bv7pfz,8,7,1|bv7pg0,7,6,0|c4kqrz,7,6,0|c4kqs0,8,7,1|cdxs3z,8,7,1|cdxs40,7,6,0|cnatfz,7,6,0|cnatg0,8,7,1|cwnurz,8,7,1|cwnus0,7,6,0|d60w3z,7,6,0|d60w40,8,7,1|dfdxfz,8,7,1|dfdxg0,7,6,0|dp3xfz,7,6,0|dp3xg0,8,7,1|dzwtfz,8,7,1|dzwtg0,7,6,0|e7u03z,7,6,0|e7u040,8,7,1|eimw3z,8,7,1|eimw40,7,6,0|eqk2rz,7,6,0|eqk2s0,8,7,1|f1cyrz,8,7,1|f1cys0,7,6,0|f9a5fz,7,6,0|f9a5g0,8,7,1|fkg03z,8,7,1|fkg040,7,6,0|fs083z,7,6,0|fs0840,8,7,1|g362rz,8,7,1|g362s0,7,6,0|gaqarz,7,6,0|gaqas0,8,7,1|glw5fz,8,7,1|glw5g0,7,6,0|gttc3z,7,6,0|gttc40,8,7,1|h4m83z,8,7,1|h4m840,7,6,0|hcjerz,7,6,0|hcjes0,8,7,1|hncarz,8,7,1|hncas0,7,6,0|hv9hfz,7,6,0|hv9hg0,8,7,1|i6fc3z,8,7,1|i6fc40,7,6,0|idzk3z,7,6,0|idzk40,8,7,1|ip5erz,8,7,1|ip5es0,7,6,0|iwpmrz,7,6,0|iwpms0,8,7,1|j7vhfz,8,7,1|j7vhg0,7,6,0|jffpfz,7,6,0|jffpg0,8,7,1|jqlk3z,8,7,1|jqlk40,7,6,0|jyiqrz,7,6,0|jyiqs0,8,7,1|k9bmrz,8,7,1|k9bms0,7,6,0|kh8tfz,7,6,0|kh8tg0,8,7,1|ks1pfz,8,7,1|ks1pg0,7,6,0|kzyw3z,7,6,0|kzyw40,8,7,1|lb4qrz,8,7,1|lb4qs0,7,6,0|lioyrz,7,6,0|lioys0,8,7,1|ltutfz,8,7,1|ltutg0,7,6,0|m1f1fz,7,6,0|m1f1g0,8,7,1|mckw3z,8,7,1|mckw40,7,6,0|mki2rz,7,6,0|mki2s0,8,7,1|mvayrz,8,7,1|mvays0,7,6,0|n385fz,7,6,0|n385g0,8,7,1|ne11fz,8,7,1|ne11g0,7,6,0|nly83z,7,6,0|nly840,8,7,1|nwr43z,8,7,1|nwr440,7,6,0|o4oarz,7,6,0|o4oas0,8,7,1|ofu5fz,8,7,1|ofu5g0,7,6,0|onedfz,7,6,0|onedg0,8,7,1|oyk83z,8,7,1|oyk840,7,6,0|p64g3z,7,6,0|p64g40,8,7,1|phaarz,8,7,1|phaas0,7,6,0|pp7hfz,7,6,0|pp7hg0,8,7,1|q00dfz,8,7,1|q00dg0,7,6,0|q7xk3z,7,6,0|q7xk40,8,7,1|qiqg3z,8,7,1|qiqg40,7,6,0|qqnmrz,7,6,0|qqnms0,8,7,1|r1thfz,8,7,1|r1thg0,7,6,0|r9dpfz,7,6,0|r9dpg0,8,7,1|rkjk3z,8,7,1|rkjk40,7,6,0|rs3s3z,7,6,0|rs3s40,8,7,1|s39mrz,8,7,1|s39ms0,7,6,0|sb6tfz,7,6,0|sb6tg0,8,7,1|slzpfz,8,7,1|slzpg0,7,6,0|stww3z,7,6,0|stww40,8,7,1|t4ps3z,8,7,1|t4ps40,7,6,0|tcmyrz,7,6,0|tcmys0,8,7,1|tnfurz,8,7,1|tnfus0,7,6,0|tvd1fz,7,6,0|tvd1g0,8,7,1|u6iw3z,8,7,1|u6iw40,7,6,0|ue343z,7,6,0|ue3440,8,7,1|up8yrz,8,7,1|up8ys0,7,6,0|uwt6rz,7,6,0|uwt6s0,8,7,1|v7z1fz,8,7,1|v7z1g0,7,6,0|vfw83z,7,6,0|vfw840,8,7,1|vqp43z,8,7,1|vqp440,7,6,0|vymarz,7,6,0|vymas0,8,7,1|w9f6rz,8,7,1|w9f6s0,7,6,0|whcdfz,7,6,0|whcdg0,8,7,1|wsi83z,8,7,1|wsi840,7,6,0|x02g3z,7,6,0|x02g40,8,7,1|xb8arz,8,7,1|xb8as0,7,6,0|xisirz,7,6,0|xisis0,8,7,1|xtydfz,8,7,1|xtydg0,7,6,0|y1ilfz,7,6,0|y1ilg0,8,7,1|ycog3z,8,7,1|ycog40,7,6,0|yklmrz,7,6,0|yklms0,8,7,1|yveirz,8,7,1|yveis0,7,6,0|z3bpfz,7,6,0|z3bpg0,8,7,1|ze4lfz,8,7,1|ze4lg0,7,6,0","Europe/Moscow|,0,279,0|-1ayy9mh,19,279,0|-rx5dmi,19,279,0|-rx5dmh,19,280,0|-refds8,19,280,0|-refds7,36,281,1|-r57wg8,36,281,1|-r57wg7,19,280,0|-qx8xw8,19,280,0|-qx8xw7,137,282,1|-qrqps8,137,282,1|-qrqps7,36,281,1|-qeh0k8,36,281,1|-qeh0k7,137,282,1|-qcx401,137,282,1|-qcx400,133,144,1|-qak8g1,133,144,1|-qak8g0,132,11,0|-pibkg1,132,11,0|-pibkg0,133,144,1|-pgkok1,133,144,1|-pgkok0,82,134,1|-p84z81,82,134,1|-p84z80,133,144,1|-p6lcg1,133,144,1|-p6lcg0,132,11,0|-ontcc1,132,11,0|-ontcc0,10,7,0|-kmr1k1,10,7,0|-kmr1k0,132,11,0|5vb6bz,132,11,0|5vb6c0,133,144,1|64pzjz,133,144,1|64pzk0,132,11,0|6e33nz,132,11,0|6e33o0,133,144,1|6nhwvz,133,144,1|6nhww0,132,11,0|6wv0zz,132,11,0|6wv100,133,144,1|769u7z,133,144,1|769u80,132,11,0|7foszz,132,11,0|7fot00,133,144,1|7p1zvz,133,144,1|7p1zw0,132,11,0|7yf17z,132,11,0|7yf180,133,144,1|87s2jz,133,144,1|87s2k0,132,11,0|8h53vz,132,11,0|8h53w0,133,144,1|8qi57z,133,144,1|8qi580,132,11,0|8zv6jz,132,11,0|8zv6k0,133,144,1|9987vz,133,144,1|9987w0,132,11,0|9il97z,132,11,0|9il980,133,144,1|9ryajz,133,144,1|9ryak0,132,11,0|a1bbvz,132,11,0|a1bbw0,133,144,1|aaod7z,133,144,1|aaod80,132,11,0|ak1ejz,132,11,0|ak1ek0,133,144,1|atrejz,133,144,1|atrek0,132,11,0|b34fvz,132,11,0|b34fw0,11,11,1|bchjzz,11,11,1|bchk00,10,7,0|bi8ynz,10,7,0|bi8yo0,132,11,0|bluijz,132,11,0|bluik0,133,144,1|bv7jvz,133,144,1|bv7jw0,132,11,0|c4kl7z,132,11,0|c4kl80,133,144,1|cdxmjz,133,144,1|cdxmk0,132,11,0|cnanvz,132,11,0|cnanw0,133,144,1|cwnp7z,133,144,1|cwnp80,132,11,0|d60qjz,132,11,0|d60qk0,133,144,1|dfdrvz,133,144,1|dfdrw0,132,11,0|dp3rvz,132,11,0|dp3rw0,133,144,1|dzwnvz,133,144,1|dzwnw0,132,11,0|e7tujz,132,11,0|e7tuk0,133,144,1|eimqjz,133,144,1|eimqk0,132,11,0|eqjx7z,132,11,0|eqjx80,133,144,1|f1ct7z,133,144,1|f1ct80,132,11,0|f99zvz,132,11,0|f99zw0,133,144,1|fkfujz,133,144,1|fkfuk0,132,11,0|fs02jz,132,11,0|fs02k0,133,144,1|g35x7z,133,144,1|g35x80,132,11,0|gaq57z,132,11,0|gaq580,133,144,1|glvzvz,133,144,1|glvzw0,132,11,0|gtt6jz,132,11,0|gtt6k0,133,144,1|h4m2jz,133,144,1|h4m2k0,132,11,0|hcj97z,132,11,0|hcj980,133,144,1|hnc57z,133,144,1|hnc580,132,11,0|hv9bvz,132,11,0|hv9bw0,133,144,1|i6f6jz,133,144,1|i6f6k0,132,11,0|idzejz,132,11,0|idzek0,133,144,1|ip597z,133,144,1|ip5980,132,11,0|iwph7z,132,11,0|iwph80,133,144,1|j7vbvz,133,144,1|j7vbw0,132,11,0|jffjvz,132,11,0|jffjw0,133,144,1|jqlejz,133,144,1|jqlek0,132,11,0|jyil7z,132,11,0|jyil80,133,144,1|k9bh7z,133,144,1|k9bh80,132,11,0|kh8nvz,132,11,0|kh8nw0,133,144,1|ks1jvz,133,144,1|ks1jw0,132,11,0|kzyqjz,132,11,0|kzyqk0,133,144,1|lb4l7z,133,144,1|lb4l80,132,11,0|liot7z,132,11,0|liot80,132,144,0|ne0t3z,132,144,0|ne0t40,132,11,0","Europe/Oslo|,0,283,0|-1353tzo,7,6,0|-rzayo1,7,6,0|-rzayo0,8,7,1|-rskiw1,8,7,1|-rskiw0,7,6,0|-fc7s81,7,6,0|-fc7s80,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dp3rw1,8,7,1|-dp3rw0,7,6,0|-dfqqk1,7,6,0|-dfqqk0,8,7,1|-d6dp81,8,7,1|-d6dp80,7,6,0|-cx0nw1,7,6,0|-cx0nw0,8,7,1|-cnnmk1,8,7,1|-cnnmk0,7,6,0|-5mxh81,7,6,0|-5mxh80,8,7,1|-5d7h81,8,7,1|-5d7h80,7,6,0|-53ufw1,7,6,0|-53ufw0,8,7,1|-4uhek1,8,7,1|-4uhek0,7,6,0|-4l4d81,7,6,0|-4l4d80,8,7,1|-4brbw1,8,7,1|-4brbw0,7,6,0|-42eak1,7,6,0|-42eak0,8,7,1|-3t1981,8,7,1|-3t1980,7,6,0|-3jo7w1,7,6,0|-3jo7w0,8,7,1|-3ab6k1,8,7,1|-3ab6k0,7,6,0|-30y581,7,6,0|-30y580,8,7,1|-2r8581,8,7,1|-2r8580,7,6,0|-2g2ak1,7,6,0|-2g2ak0,8,7,1|-28i2k1,8,7,1|-28i2k0,7,6,0|5cstfz,7,6,0|5cstg0,8,7,1|5lsw3z,8,7,1|5lsw40,7,6,0|5v5xfz,7,6,0|5v5xg0,8,7,1|64iyrz,8,7,1|64iys0,7,6,0|6dw03z,7,6,0|6dw040,8,7,1|6n91fz,8,7,1|6n91g0,7,6,0|6wm2rz,7,6,0|6wm2s0,8,7,1|75z43z,8,7,1|75z440,7,6,0|7fc5fz,7,6,0|7fc5g0,8,7,1|7p25fz,8,7,1|7p25g0,7,6,0|7yf6rz,7,6,0|7yf6s0,8,7,1|87s83z,8,7,1|87s840,7,6,0|8h59fz,7,6,0|8h59g0,8,7,1|8qiarz,8,7,1|8qias0,7,6,0|8zvc3z,7,6,0|8zvc40,8,7,1|998dfz,8,7,1|998dg0,7,6,0|9ilerz,7,6,0|9iles0,8,7,1|9ryg3z,8,7,1|9ryg40,7,6,0|a1bhfz,7,6,0|a1bhg0,8,7,1|aaoirz,8,7,1|aaois0,7,6,0|ak1k3z,7,6,0|ak1k40,8,7,1|atrk3z,8,7,1|atrk40,7,6,0|b34lfz,7,6,0|b34lg0,8,7,1|bchmrz,8,7,1|bchms0,7,6,0|bluo3z,7,6,0|bluo40,8,7,1|bv7pfz,8,7,1|bv7pg0,7,6,0|c4kqrz,7,6,0|c4kqs0,8,7,1|cdxs3z,8,7,1|cdxs40,7,6,0|cnatfz,7,6,0|cnatg0,8,7,1|cwnurz,8,7,1|cwnus0,7,6,0|d60w3z,7,6,0|d60w40,8,7,1|dfdxfz,8,7,1|dfdxg0,7,6,0|dp3xfz,7,6,0|dp3xg0,8,7,1|dzwtfz,8,7,1|dzwtg0,7,6,0|e7u03z,7,6,0|e7u040,8,7,1|eimw3z,8,7,1|eimw40,7,6,0|eqk2rz,7,6,0|eqk2s0,8,7,1|f1cyrz,8,7,1|f1cys0,7,6,0|f9a5fz,7,6,0|f9a5g0,8,7,1|fkg03z,8,7,1|fkg040,7,6,0|fs083z,7,6,0|fs0840,8,7,1|g362rz,8,7,1|g362s0,7,6,0|gaqarz,7,6,0|gaqas0,8,7,1|glw5fz,8,7,1|glw5g0,7,6,0|gttc3z,7,6,0|gttc40,8,7,1|h4m83z,8,7,1|h4m840,7,6,0|hcjerz,7,6,0|hcjes0,8,7,1|hncarz,8,7,1|hncas0,7,6,0|hv9hfz,7,6,0|hv9hg0,8,7,1|i6fc3z,8,7,1|i6fc40,7,6,0|idzk3z,7,6,0|idzk40,8,7,1|ip5erz,8,7,1|ip5es0,7,6,0|iwpmrz,7,6,0|iwpms0,8,7,1|j7vhfz,8,7,1|j7vhg0,7,6,0|jffpfz,7,6,0|jffpg0,8,7,1|jqlk3z,8,7,1|jqlk40,7,6,0|jyiqrz,7,6,0|jyiqs0,8,7,1|k9bmrz,8,7,1|k9bms0,7,6,0|kh8tfz,7,6,0|kh8tg0,8,7,1|ks1pfz,8,7,1|ks1pg0,7,6,0|kzyw3z,7,6,0|kzyw40,8,7,1|lb4qrz,8,7,1|lb4qs0,7,6,0|lioyrz,7,6,0|lioys0,8,7,1|ltutfz,8,7,1|ltutg0,7,6,0|m1f1fz,7,6,0|m1f1g0,8,7,1|mckw3z,8,7,1|mckw40,7,6,0|mki2rz,7,6,0|mki2s0,8,7,1|mvayrz,8,7,1|mvays0,7,6,0|n385fz,7,6,0|n385g0,8,7,1|ne11fz,8,7,1|ne11g0,7,6,0|nly83z,7,6,0|nly840,8,7,1|nwr43z,8,7,1|nwr440,7,6,0|o4oarz,7,6,0|o4oas0,8,7,1|ofu5fz,8,7,1|ofu5g0,7,6,0|onedfz,7,6,0|onedg0,8,7,1|oyk83z,8,7,1|oyk840,7,6,0|p64g3z,7,6,0|p64g40,8,7,1|phaarz,8,7,1|phaas0,7,6,0|pp7hfz,7,6,0|pp7hg0,8,7,1|q00dfz,8,7,1|q00dg0,7,6,0|q7xk3z,7,6,0|q7xk40,8,7,1|qiqg3z,8,7,1|qiqg40,7,6,0|qqnmrz,7,6,0|qqnms0,8,7,1|r1thfz,8,7,1|r1thg0,7,6,0|r9dpfz,7,6,0|r9dpg0,8,7,1|rkjk3z,8,7,1|rkjk40,7,6,0|rs3s3z,7,6,0|rs3s40,8,7,1|s39mrz,8,7,1|s39ms0,7,6,0|sb6tfz,7,6,0|sb6tg0,8,7,1|slzpfz,8,7,1|slzpg0,7,6,0|stww3z,7,6,0|stww40,8,7,1|t4ps3z,8,7,1|t4ps40,7,6,0|tcmyrz,7,6,0|tcmys0,8,7,1|tnfurz,8,7,1|tnfus0,7,6,0|tvd1fz,7,6,0|tvd1g0,8,7,1|u6iw3z,8,7,1|u6iw40,7,6,0|ue343z,7,6,0|ue3440,8,7,1|up8yrz,8,7,1|up8ys0,7,6,0|uwt6rz,7,6,0|uwt6s0,8,7,1|v7z1fz,8,7,1|v7z1g0,7,6,0|vfw83z,7,6,0|vfw840,8,7,1|vqp43z,8,7,1|vqp440,7,6,0|vymarz,7,6,0|vymas0,8,7,1|w9f6rz,8,7,1|w9f6s0,7,6,0|whcdfz,7,6,0|whcdg0,8,7,1|wsi83z,8,7,1|wsi840,7,6,0|x02g3z,7,6,0|x02g40,8,7,1|xb8arz,8,7,1|xb8as0,7,6,0|xisirz,7,6,0|xisis0,8,7,1|xtydfz,8,7,1|xtydg0,7,6,0|y1ilfz,7,6,0|y1ilg0,8,7,1|ycog3z,8,7,1|ycog40,7,6,0|yklmrz,7,6,0|yklms0,8,7,1|yveirz,8,7,1|yveis0,7,6,0|z3bpfz,7,6,0|z3bpg0,8,7,1|ze4lfz,8,7,1|ze4lg0,7,6,0","Europe/Paris|,0,5,0|-154gb3l,4,5,0|-uozn3m,4,5,0|-uozn3l,5,1,0|-ry2lg1,5,1,0|-ry2lg0,6,6,1|-rsgqs1,6,6,1|-rsgqs0,5,1,0|-rjiis1,5,1,0|-rjiis0,6,6,1|-r9dpg1,6,6,1|-r9dpg0,5,1,0|-r1idg1,5,1,0|-r1idg0,6,6,1|-qqnms1,6,6,1|-qqnms0,5,1,0|-qj59g1,5,1,0|-qj59g0,6,6,1|-q7xk41,6,6,1|-q7xk40,5,1,0|-q15441,5,1,0|-q15440,6,6,1|-po6g41,6,6,1|-po6g40,5,1,0|-pgvhg1,5,1,0|-pgvhg0,6,6,1|-p5atg1,6,6,1|-p5atg0,5,1,0|-oxj6s1,5,1,0|-oxj6s0,6,6,1|-ong841,6,6,1|-ong840,5,1,0|-obkg41,5,1,0|-obkg40,6,6,1|-o4q5g1,6,6,1|-o4q5g0,5,1,0|-nvq2s1,5,1,0|-nvq2s0,6,6,1|-nm02s1,6,6,1|-nm02s0,5,1,0|-ncn1g1,5,1,0|-ncn1g0,6,6,1|-n3a041,6,6,1|-n3a040,5,1,0|-mt71g1,5,1,0|-mt71g0,6,6,1|-mkjxg1,6,6,1|-mkjxg0,5,1,0|-matxg1,5,1,0|-matxg0,6,6,1|-m1tus1,6,6,1|-m1tus0,5,1,0|-lrqw41,5,1,0|-lrqw40,6,6,1|-liqtg1,6,6,1|-liqtg0,5,1,0|-l8nus1,5,1,0|-l8nus0,6,6,1|-l00qs1,6,6,1|-l00qs0,5,1,0|-kqaqs1,5,1,0|-kqaqs0,6,6,1|-khao41,6,6,1|-khao40,5,1,0|-k77pg1,5,1,0|-k77pg0,6,6,1|-jyklg1,6,6,1|-jyklg0,5,1,0|-jp7k41,5,1,0|-jp7k40,6,6,1|-jfuis1,6,6,1|-jfuis0,5,1,0|-j6ug41,5,1,0|-j6ug40,6,6,1|-iwrhg1,6,6,1|-iwrhg0,5,1,0|-ineg41,5,1,0|-ineg40,6,6,1|-ie1es1,6,6,1|-ie1es0,5,1,0|-i51c41,5,1,0|-i51c40,6,6,1|-hvbc41,6,6,1|-hvbc40,5,1,0|-hl8dg1,5,1,0|-hl8dg0,6,6,1|-hcl9g1,6,6,1|-hcl9g0,5,1,0|-h38841,5,1,0|-h38840,6,6,1|-gtv6s1,6,6,1|-gtv6s0,5,1,0|-gkv441,5,1,0|-gkv440,6,6,1|-gb5441,6,6,1|-gb5440,5,1,0|-g125g1,5,1,0|-g125g0,6,6,1|-fpwas1,6,6,1|-fpwas0,5,1,0|-fkul41,5,1,0|-fkul40,6,6,1|-ff5c81,6,6,1|-ff5c80,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dp3rw1,8,7,1|-dp3rw0,7,6,0|-dfqqk1,7,6,0|-dfqqk0,8,7,1|-d8caw1,8,7,1|-d8caw0,136,7,1|-d62qs1,136,7,1|-d62qs0,6,6,1|-cx0nw1,6,6,1|-cx0nw0,136,7,1|-cofek1,136,7,1|-cofek0,7,6,0|396inz,7,6,0|396io0,8,7,1|3ijh7z,8,7,1|3ijh80,7,6,0|3s9mrz,7,6,0|3s9ms0,8,7,1|419pfz,8,7,1|419pg0,7,6,0|4azpfz,7,6,0|4azpg0,8,7,1|4kcqrz,8,7,1|4kcqs0,7,6,0|4tps3z,7,6,0|4tps40,8,7,1|532tfz,8,7,1|532tg0,7,6,0|5cstfz,7,6,0|5cstg0,8,7,1|5lsw3z,8,7,1|5lsw40,7,6,0|5v5xfz,7,6,0|5v5xg0,8,7,1|64iyrz,8,7,1|64iys0,7,6,0|6dw03z,7,6,0|6dw040,8,7,1|6n91fz,8,7,1|6n91g0,7,6,0|6wm2rz,7,6,0|6wm2s0,8,7,1|75z43z,8,7,1|75z440,7,6,0|7fc5fz,7,6,0|7fc5g0,8,7,1|7p25fz,8,7,1|7p25g0,7,6,0|7yf6rz,7,6,0|7yf6s0,8,7,1|87s83z,8,7,1|87s840,7,6,0|8h59fz,7,6,0|8h59g0,8,7,1|8qiarz,8,7,1|8qias0,7,6,0|8zvc3z,7,6,0|8zvc40,8,7,1|998dfz,8,7,1|998dg0,7,6,0|9ilerz,7,6,0|9iles0,8,7,1|9ryg3z,8,7,1|9ryg40,7,6,0|a1bhfz,7,6,0|a1bhg0,8,7,1|aaoirz,8,7,1|aaois0,7,6,0|ak1k3z,7,6,0|ak1k40,8,7,1|atrk3z,8,7,1|atrk40,7,6,0|b34lfz,7,6,0|b34lg0,8,7,1|bchmrz,8,7,1|bchms0,7,6,0|bluo3z,7,6,0|bluo40,8,7,1|bv7pfz,8,7,1|bv7pg0,7,6,0|c4kqrz,7,6,0|c4kqs0,8,7,1|cdxs3z,8,7,1|cdxs40,7,6,0|cnatfz,7,6,0|cnatg0,8,7,1|cwnurz,8,7,1|cwnus0,7,6,0|d60w3z,7,6,0|d60w40,8,7,1|dfdxfz,8,7,1|dfdxg0,7,6,0|dp3xfz,7,6,0|dp3xg0,8,7,1|dzwtfz,8,7,1|dzwtg0,7,6,0|e7u03z,7,6,0|e7u040,8,7,1|eimw3z,8,7,1|eimw40,7,6,0|eqk2rz,7,6,0|eqk2s0,8,7,1|f1cyrz,8,7,1|f1cys0,7,6,0|f9a5fz,7,6,0|f9a5g0,8,7,1|fkg03z,8,7,1|fkg040,7,6,0|fs083z,7,6,0|fs0840,8,7,1|g362rz,8,7,1|g362s0,7,6,0|gaqarz,7,6,0|gaqas0,8,7,1|glw5fz,8,7,1|glw5g0,7,6,0|gttc3z,7,6,0|gttc40,8,7,1|h4m83z,8,7,1|h4m840,7,6,0|hcjerz,7,6,0|hcjes0,8,7,1|hncarz,8,7,1|hncas0,7,6,0|hv9hfz,7,6,0|hv9hg0,8,7,1|i6fc3z,8,7,1|i6fc40,7,6,0|idzk3z,7,6,0|idzk40,8,7,1|ip5erz,8,7,1|ip5es0,7,6,0|iwpmrz,7,6,0|iwpms0,8,7,1|j7vhfz,8,7,1|j7vhg0,7,6,0|jffpfz,7,6,0|jffpg0,8,7,1|jqlk3z,8,7,1|jqlk40,7,6,0|jyiqrz,7,6,0|jyiqs0,8,7,1|k9bmrz,8,7,1|k9bms0,7,6,0|kh8tfz,7,6,0|kh8tg0,8,7,1|ks1pfz,8,7,1|ks1pg0,7,6,0|kzyw3z,7,6,0|kzyw40,8,7,1|lb4qrz,8,7,1|lb4qs0,7,6,0|lioyrz,7,6,0|lioys0,8,7,1|ltutfz,8,7,1|ltutg0,7,6,0|m1f1fz,7,6,0|m1f1g0,8,7,1|mckw3z,8,7,1|mckw40,7,6,0|mki2rz,7,6,0|mki2s0,8,7,1|mvayrz,8,7,1|mvays0,7,6,0|n385fz,7,6,0|n385g0,8,7,1|ne11fz,8,7,1|ne11g0,7,6,0|nly83z,7,6,0|nly840,8,7,1|nwr43z,8,7,1|nwr440,7,6,0|o4oarz,7,6,0|o4oas0,8,7,1|ofu5fz,8,7,1|ofu5g0,7,6,0|onedfz,7,6,0|onedg0,8,7,1|oyk83z,8,7,1|oyk840,7,6,0|p64g3z,7,6,0|p64g40,8,7,1|phaarz,8,7,1|phaas0,7,6,0|pp7hfz,7,6,0|pp7hg0,8,7,1|q00dfz,8,7,1|q00dg0,7,6,0|q7xk3z,7,6,0|q7xk40,8,7,1|qiqg3z,8,7,1|qiqg40,7,6,0|qqnmrz,7,6,0|qqnms0,8,7,1|r1thfz,8,7,1|r1thg0,7,6,0|r9dpfz,7,6,0|r9dpg0,8,7,1|rkjk3z,8,7,1|rkjk40,7,6,0|rs3s3z,7,6,0|rs3s40,8,7,1|s39mrz,8,7,1|s39ms0,7,6,0|sb6tfz,7,6,0|sb6tg0,8,7,1|slzpfz,8,7,1|slzpg0,7,6,0|stww3z,7,6,0|stww40,8,7,1|t4ps3z,8,7,1|t4ps40,7,6,0|tcmyrz,7,6,0|tcmys0,8,7,1|tnfurz,8,7,1|tnfus0,7,6,0|tvd1fz,7,6,0|tvd1g0,8,7,1|u6iw3z,8,7,1|u6iw40,7,6,0|ue343z,7,6,0|ue3440,8,7,1|up8yrz,8,7,1|up8ys0,7,6,0|uwt6rz,7,6,0|uwt6s0,8,7,1|v7z1fz,8,7,1|v7z1g0,7,6,0|vfw83z,7,6,0|vfw840,8,7,1|vqp43z,8,7,1|vqp440,7,6,0|vymarz,7,6,0|vymas0,8,7,1|w9f6rz,8,7,1|w9f6s0,7,6,0|whcdfz,7,6,0|whcdg0,8,7,1|wsi83z,8,7,1|wsi840,7,6,0|x02g3z,7,6,0|x02g40,8,7,1|xb8arz,8,7,1|xb8as0,7,6,0|xisirz,7,6,0|xisis0,8,7,1|xtydfz,8,7,1|xtydg0,7,6,0|y1ilfz,7,6,0|y1ilg0,8,7,1|ycog3z,8,7,1|ycog40,7,6,0|yklmrz,7,6,0|yklms0,8,7,1|yveirz,8,7,1|yveis0,7,6,0|z3bpfz,7,6,0|z3bpg0,8,7,1|ze4lfz,8,7,1|ze4lg0,7,6,0","Europe/Prague|,0,284,0|-1qmkw08,4,284,0|-14u7uo9,4,284,0|-14u7uo8,7,6,0|-s0e081,7,6,0|-s0e080,8,7,1|-rsilg1,8,7,1|-rsilg0,7,6,0|-ridmk1,7,6,0|-ridmk0,8,7,1|-ragfw1,8,7,1|-ragfw0,7,6,0|-qznjw1,7,6,0|-qznjw0,8,7,1|-qrqd81,8,7,1|-qrqd80,7,6,0|-fizzw1,7,6,0|-fizzw0,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dp3rw1,8,7,1|-dp3rw0,7,6,0|-dfqqk1,7,6,0|-dfqqk0,8,7,1|-d6dp81,8,7,1|-d6dp80,7,6,0|-cx0nw1,7,6,0|-cx0nw0,8,7,1|-cnnmk1,8,7,1|-cnnmk0,7,6,0|-cchrw1,7,6,0|-cchrw0,8,7,1|-c4mfw1,8,7,1|-c4mfw0,7,6,0|-c1qns1,7,6,0|-c1qns0,1,1,1|-bxf3s1,1,1,1|-bxf3s0,7,6,0|-bujh81,7,6,0|-bujh80,8,7,1|-blwd81,8,7,1|-blwd80,7,6,0|-bbtek1,7,6,0|-bbtek0,8,7,1|-b36ak1,8,7,1|-b36ak0,7,6,0|-ati581,7,6,0|-ati580,8,7,1|-akg7w1,8,7,1|-akg7w0,7,6,0|4tps3z,7,6,0|4tps40,8,7,1|532tfz,8,7,1|532tg0,7,6,0|5cstfz,7,6,0|5cstg0,8,7,1|5lsw3z,8,7,1|5lsw40,7,6,0|5v5xfz,7,6,0|5v5xg0,8,7,1|64iyrz,8,7,1|64iys0,7,6,0|6dw03z,7,6,0|6dw040,8,7,1|6n91fz,8,7,1|6n91g0,7,6,0|6wm2rz,7,6,0|6wm2s0,8,7,1|75z43z,8,7,1|75z440,7,6,0|7fc5fz,7,6,0|7fc5g0,8,7,1|7p25fz,8,7,1|7p25g0,7,6,0|7yf6rz,7,6,0|7yf6s0,8,7,1|87s83z,8,7,1|87s840,7,6,0|8h59fz,7,6,0|8h59g0,8,7,1|8qiarz,8,7,1|8qias0,7,6,0|8zvc3z,7,6,0|8zvc40,8,7,1|998dfz,8,7,1|998dg0,7,6,0|9ilerz,7,6,0|9iles0,8,7,1|9ryg3z,8,7,1|9ryg40,7,6,0|a1bhfz,7,6,0|a1bhg0,8,7,1|aaoirz,8,7,1|aaois0,7,6,0|ak1k3z,7,6,0|ak1k40,8,7,1|atrk3z,8,7,1|atrk40,7,6,0|b34lfz,7,6,0|b34lg0,8,7,1|bchmrz,8,7,1|bchms0,7,6,0|bluo3z,7,6,0|bluo40,8,7,1|bv7pfz,8,7,1|bv7pg0,7,6,0|c4kqrz,7,6,0|c4kqs0,8,7,1|cdxs3z,8,7,1|cdxs40,7,6,0|cnatfz,7,6,0|cnatg0,8,7,1|cwnurz,8,7,1|cwnus0,7,6,0|d60w3z,7,6,0|d60w40,8,7,1|dfdxfz,8,7,1|dfdxg0,7,6,0|dp3xfz,7,6,0|dp3xg0,8,7,1|dzwtfz,8,7,1|dzwtg0,7,6,0|e7u03z,7,6,0|e7u040,8,7,1|eimw3z,8,7,1|eimw40,7,6,0|eqk2rz,7,6,0|eqk2s0,8,7,1|f1cyrz,8,7,1|f1cys0,7,6,0|f9a5fz,7,6,0|f9a5g0,8,7,1|fkg03z,8,7,1|fkg040,7,6,0|fs083z,7,6,0|fs0840,8,7,1|g362rz,8,7,1|g362s0,7,6,0|gaqarz,7,6,0|gaqas0,8,7,1|glw5fz,8,7,1|glw5g0,7,6,0|gttc3z,7,6,0|gttc40,8,7,1|h4m83z,8,7,1|h4m840,7,6,0|hcjerz,7,6,0|hcjes0,8,7,1|hncarz,8,7,1|hncas0,7,6,0|hv9hfz,7,6,0|hv9hg0,8,7,1|i6fc3z,8,7,1|i6fc40,7,6,0|idzk3z,7,6,0|idzk40,8,7,1|ip5erz,8,7,1|ip5es0,7,6,0|iwpmrz,7,6,0|iwpms0,8,7,1|j7vhfz,8,7,1|j7vhg0,7,6,0|jffpfz,7,6,0|jffpg0,8,7,1|jqlk3z,8,7,1|jqlk40,7,6,0|jyiqrz,7,6,0|jyiqs0,8,7,1|k9bmrz,8,7,1|k9bms0,7,6,0|kh8tfz,7,6,0|kh8tg0,8,7,1|ks1pfz,8,7,1|ks1pg0,7,6,0|kzyw3z,7,6,0|kzyw40,8,7,1|lb4qrz,8,7,1|lb4qs0,7,6,0|lioyrz,7,6,0|lioys0,8,7,1|ltutfz,8,7,1|ltutg0,7,6,0|m1f1fz,7,6,0|m1f1g0,8,7,1|mckw3z,8,7,1|mckw40,7,6,0|mki2rz,7,6,0|mki2s0,8,7,1|mvayrz,8,7,1|mvays0,7,6,0|n385fz,7,6,0|n385g0,8,7,1|ne11fz,8,7,1|ne11g0,7,6,0|nly83z,7,6,0|nly840,8,7,1|nwr43z,8,7,1|nwr440,7,6,0|o4oarz,7,6,0|o4oas0,8,7,1|ofu5fz,8,7,1|ofu5g0,7,6,0|onedfz,7,6,0|onedg0,8,7,1|oyk83z,8,7,1|oyk840,7,6,0|p64g3z,7,6,0|p64g40,8,7,1|phaarz,8,7,1|phaas0,7,6,0|pp7hfz,7,6,0|pp7hg0,8,7,1|q00dfz,8,7,1|q00dg0,7,6,0|q7xk3z,7,6,0|q7xk40,8,7,1|qiqg3z,8,7,1|qiqg40,7,6,0|qqnmrz,7,6,0|qqnms0,8,7,1|r1thfz,8,7,1|r1thg0,7,6,0|r9dpfz,7,6,0|r9dpg0,8,7,1|rkjk3z,8,7,1|rkjk40,7,6,0|rs3s3z,7,6,0|rs3s40,8,7,1|s39mrz,8,7,1|s39ms0,7,6,0|sb6tfz,7,6,0|sb6tg0,8,7,1|slzpfz,8,7,1|slzpg0,7,6,0|stww3z,7,6,0|stww40,8,7,1|t4ps3z,8,7,1|t4ps40,7,6,0|tcmyrz,7,6,0|tcmys0,8,7,1|tnfurz,8,7,1|tnfus0,7,6,0|tvd1fz,7,6,0|tvd1g0,8,7,1|u6iw3z,8,7,1|u6iw40,7,6,0|ue343z,7,6,0|ue3440,8,7,1|up8yrz,8,7,1|up8ys0,7,6,0|uwt6rz,7,6,0|uwt6s0,8,7,1|v7z1fz,8,7,1|v7z1g0,7,6,0|vfw83z,7,6,0|vfw840,8,7,1|vqp43z,8,7,1|vqp440,7,6,0|vymarz,7,6,0|vymas0,8,7,1|w9f6rz,8,7,1|w9f6s0,7,6,0|whcdfz,7,6,0|whcdg0,8,7,1|wsi83z,8,7,1|wsi840,7,6,0|x02g3z,7,6,0|x02g40,8,7,1|xb8arz,8,7,1|xb8as0,7,6,0|xisirz,7,6,0|xisis0,8,7,1|xtydfz,8,7,1|xtydg0,7,6,0|y1ilfz,7,6,0|y1ilg0,8,7,1|ycog3z,8,7,1|ycog40,7,6,0|yklmrz,7,6,0|yklms0,8,7,1|yveirz,8,7,1|yveis0,7,6,0|z3bpfz,7,6,0|z3bpg0,8,7,1|ze4lfz,8,7,1|ze4lg0,7,6,0","Europe/Riga|,0,285,0|-1ayy74y,138,285,0|-qznlkz,138,285,0|-qznlky,139,286,1|-qrqewz,139,286,1|-qrqewy,138,285,0|-qhllkz,138,285,0|-qhllky,139,286,1|-qez5kz,139,286,1|-qez5ky,138,285,0|-ms0hsz,138,285,0|-ms0hsy,10,7,0|-fciw81,10,7,0|-fciw80,132,11,0|-evjv01,132,11,0|-evjv00,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dp3rw1,8,7,1|-dp3rw0,7,6,0|-dfqqk1,7,6,0|-dfqqk0,8,7,1|-d6dp81,8,7,1|-d6dp80,7,6,0|-d5thg1,7,6,0|-d5thg0,132,11,0|5vb6bz,132,11,0|5vb6c0,133,144,1|64pzjz,133,144,1|64pzk0,132,11,0|6e33nz,132,11,0|6e33o0,133,144,1|6nhwvz,133,144,1|6nhww0,132,11,0|6wv0zz,132,11,0|6wv100,133,144,1|769u7z,133,144,1|769u80,132,11,0|7foszz,132,11,0|7fot00,133,144,1|7p1zvz,133,144,1|7p1zw0,132,11,0|7yf17z,132,11,0|7yf180,133,144,1|87s2jz,133,144,1|87s2k0,132,11,0|8h53vz,132,11,0|8h53w0,133,144,1|8qi57z,133,144,1|8qi580,132,11,0|8zv6jz,132,11,0|8zv6k0,133,144,1|9987vz,133,144,1|9987w0,132,11,0|9il97z,132,11,0|9il980,133,144,1|9ryajz,133,144,1|9ryak0,132,11,0|a1bbvz,132,11,0|a1bbw0,11,11,1|aaofzz,11,11,1|aaog00,10,7,0|ak1hbz,10,7,0|ak1hc0,11,11,1|atrhbz,11,11,1|atrhc0,10,7,0|b34inz,10,7,0|b34io0,11,11,1|bchjzz,11,11,1|bchk00,10,7,0|blulbz,10,7,0|blulc0,11,11,1|bv7mnz,11,11,1|bv7mo0,10,7,0|c4knzz,10,7,0|c4ko00,11,11,1|cdxpbz,11,11,1|cdxpc0,10,7,0|cnaqnz,10,7,0|cnaqo0,11,11,1|cwnrzz,11,11,1|cwns00,10,7,0|d60tbz,10,7,0|d60tc0,11,11,1|dfdunz,11,11,1|dfduo0,10,7,0|dp3unz,10,7,0|dp3uo0,11,11,1|dygvzz,11,11,1|dygw00,10,7,0|e7u03z,10,7,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,7,0|eqk2rz,10,7,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,7,0|f9a5fz,10,7,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,7,0|gaqarz,10,7,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,7,0|gttc3z,10,7,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,7,0|hcjerz,10,7,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,7,0|hv9hfz,10,7,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,7,0|idzk3z,10,7,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,7,0|iwpmrz,10,7,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,7,0|jffpfz,10,7,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,7,0|jyiqrz,10,7,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,7,0|kh8tfz,10,7,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,7,0|kzyw3z,10,7,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,7,0|lioyrz,10,7,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,7,0|m1f1fz,10,7,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,7,0|mki2rz,10,7,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,7,0|n385fz,10,7,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,7,0|nly83z,10,7,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,7,0|o4oarz,10,7,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,7,0|onedfz,10,7,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,7,0|p64g3z,10,7,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,7,0|pp7hfz,10,7,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,7,0|q7xk3z,10,7,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,7,0|qqnmrz,10,7,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,7,0|r9dpfz,10,7,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,7,0|rs3s3z,10,7,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,7,0|sb6tfz,10,7,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,7,0|stww3z,10,7,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,7,0|tcmyrz,10,7,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,7,0|tvd1fz,10,7,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,7,0|ue343z,10,7,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,7,0|uwt6rz,10,7,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,7,0|vfw83z,10,7,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,7,0|vymarz,10,7,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,7,0|whcdfz,10,7,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,7,0|x02g3z,10,7,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,7,0|xisirz,10,7,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,7,0|y1ilfz,10,7,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,7,0|yklmrz,10,7,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,7,0|z3bpfz,10,7,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,7,0","Europe/Rome|,0,287,0|-1hs7rn8,138,287,0|-13r0qs1,138,287,0|-13r0qs0,7,6,0|-rymys1,7,6,0|-rymys0,8,7,1|-rsio81,8,7,1|-rsio80,7,6,0|-rj5k41,7,6,0|-rj5k40,8,7,1|-r9qqw1,8,7,1|-r9qqw0,7,6,0|-r1idg1,7,6,0|-r1idg0,8,7,1|-qqnpk1,8,7,1|-qqnpk0,7,6,0|-qj59g1,7,6,0|-qj59g0,8,7,1|-q7zhk1,8,7,1|-q7zhk0,7,6,0|-pzcas1,7,6,0|-pzcas0,8,7,1|-ppzc81,8,7,1|-ppzc80,7,6,0|-ff59g1,7,6,0|-ff59g0,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dp3rw1,8,7,1|-dp3rw0,7,6,0|-dfqqk1,7,6,0|-dfqqk0,8,7,1|-d75h81,8,7,1|-d75h80,7,6,0|-cx0nw1,7,6,0|-cx0nw0,8,7,1|-cohes1,8,7,1|-cohes0,7,6,0|-cf2d81,7,6,0|-cf2d80,8,7,1|-c4mfw1,8,7,1|-c4mfw0,7,6,0|-bwcg41,7,6,0|-bwcg40,8,7,1|-blwis1,8,7,1|-blwis0,7,6,0|-bec581,7,6,0|-bec580,8,7,1|-b36ak1,8,7,1|-b36ak0,7,6,0|-1vwis1,7,6,0|-1vwis0,8,7,1|-1pf9k1,8,7,1|-1pf9k0,7,6,0|-1cthg1,7,6,0|-1cthg0,8,7,1|-16p441,8,7,1|-16p440,7,6,0|-u3es1,7,6,0|-u3es0,8,7,1|-nz1g1,8,7,1|-nz1g0,7,6,0|-b0dg1,7,6,0|-b0dg0,8,7,1|-4w041,8,7,1|-4w040,7,6,0|7pp7z,7,6,0|7pp80,8,7,1|du2jz,8,7,1|du2k0,7,6,0|q2t7z,7,6,0|q2t80,8,7,1|wk57z,8,7,1|wk580,7,6,0|195ujz,7,6,0|195uk0,8,7,1|1fn6jz,8,7,1|1fn6k0,7,6,0|1s8vvz,7,6,0|1s8vw0,8,7,1|1yd97z,8,7,1|1yd980,7,6,0|2alzvz,7,6,0|2alzw0,8,7,1|2h3bvz,8,7,1|2h3bw0,7,6,0|2tp17z,7,6,0|2tp180,8,7,1|2ztejz,8,7,1|2ztek0,7,6,0|3cf3vz,7,6,0|3cf3w0,8,7,1|3ijh7z,8,7,1|3ijh80,7,6,0|3us7vz,7,6,0|3us7w0,8,7,1|419jvz,8,7,1|419jw0,7,6,0|4dv97z,7,6,0|4dv980,8,7,1|4kcl7z,8,7,1|4kcl80,7,6,0|4wlbvz,7,6,0|4wlbw0,8,7,1|532nvz,8,7,1|532nw0,7,6,0|5cstfz,7,6,0|5cstg0,8,7,1|5lsw3z,8,7,1|5lsw40,7,6,0|5v5xfz,7,6,0|5v5xg0,8,7,1|64iyrz,8,7,1|64iys0,7,6,0|6dw03z,7,6,0|6dw040,8,7,1|6n91fz,8,7,1|6n91g0,7,6,0|6wm2rz,7,6,0|6wm2s0,8,7,1|75z43z,8,7,1|75z440,7,6,0|7fc5fz,7,6,0|7fc5g0,8,7,1|7p25fz,8,7,1|7p25g0,7,6,0|7yf6rz,7,6,0|7yf6s0,8,7,1|87s83z,8,7,1|87s840,7,6,0|8h59fz,7,6,0|8h59g0,8,7,1|8qiarz,8,7,1|8qias0,7,6,0|8zvc3z,7,6,0|8zvc40,8,7,1|998dfz,8,7,1|998dg0,7,6,0|9ilerz,7,6,0|9iles0,8,7,1|9ryg3z,8,7,1|9ryg40,7,6,0|a1bhfz,7,6,0|a1bhg0,8,7,1|aaoirz,8,7,1|aaois0,7,6,0|ak1k3z,7,6,0|ak1k40,8,7,1|atrk3z,8,7,1|atrk40,7,6,0|b34lfz,7,6,0|b34lg0,8,7,1|bchmrz,8,7,1|bchms0,7,6,0|bluo3z,7,6,0|bluo40,8,7,1|bv7pfz,8,7,1|bv7pg0,7,6,0|c4kqrz,7,6,0|c4kqs0,8,7,1|cdxs3z,8,7,1|cdxs40,7,6,0|cnatfz,7,6,0|cnatg0,8,7,1|cwnurz,8,7,1|cwnus0,7,6,0|d60w3z,7,6,0|d60w40,8,7,1|dfdxfz,8,7,1|dfdxg0,7,6,0|dp3xfz,7,6,0|dp3xg0,8,7,1|dzwtfz,8,7,1|dzwtg0,7,6,0|e7u03z,7,6,0|e7u040,8,7,1|eimw3z,8,7,1|eimw40,7,6,0|eqk2rz,7,6,0|eqk2s0,8,7,1|f1cyrz,8,7,1|f1cys0,7,6,0|f9a5fz,7,6,0|f9a5g0,8,7,1|fkg03z,8,7,1|fkg040,7,6,0|fs083z,7,6,0|fs0840,8,7,1|g362rz,8,7,1|g362s0,7,6,0|gaqarz,7,6,0|gaqas0,8,7,1|glw5fz,8,7,1|glw5g0,7,6,0|gttc3z,7,6,0|gttc40,8,7,1|h4m83z,8,7,1|h4m840,7,6,0|hcjerz,7,6,0|hcjes0,8,7,1|hncarz,8,7,1|hncas0,7,6,0|hv9hfz,7,6,0|hv9hg0,8,7,1|i6fc3z,8,7,1|i6fc40,7,6,0|idzk3z,7,6,0|idzk40,8,7,1|ip5erz,8,7,1|ip5es0,7,6,0|iwpmrz,7,6,0|iwpms0,8,7,1|j7vhfz,8,7,1|j7vhg0,7,6,0|jffpfz,7,6,0|jffpg0,8,7,1|jqlk3z,8,7,1|jqlk40,7,6,0|jyiqrz,7,6,0|jyiqs0,8,7,1|k9bmrz,8,7,1|k9bms0,7,6,0|kh8tfz,7,6,0|kh8tg0,8,7,1|ks1pfz,8,7,1|ks1pg0,7,6,0|kzyw3z,7,6,0|kzyw40,8,7,1|lb4qrz,8,7,1|lb4qs0,7,6,0|lioyrz,7,6,0|lioys0,8,7,1|ltutfz,8,7,1|ltutg0,7,6,0|m1f1fz,7,6,0|m1f1g0,8,7,1|mckw3z,8,7,1|mckw40,7,6,0|mki2rz,7,6,0|mki2s0,8,7,1|mvayrz,8,7,1|mvays0,7,6,0|n385fz,7,6,0|n385g0,8,7,1|ne11fz,8,7,1|ne11g0,7,6,0|nly83z,7,6,0|nly840,8,7,1|nwr43z,8,7,1|nwr440,7,6,0|o4oarz,7,6,0|o4oas0,8,7,1|ofu5fz,8,7,1|ofu5g0,7,6,0|onedfz,7,6,0|onedg0,8,7,1|oyk83z,8,7,1|oyk840,7,6,0|p64g3z,7,6,0|p64g40,8,7,1|phaarz,8,7,1|phaas0,7,6,0|pp7hfz,7,6,0|pp7hg0,8,7,1|q00dfz,8,7,1|q00dg0,7,6,0|q7xk3z,7,6,0|q7xk40,8,7,1|qiqg3z,8,7,1|qiqg40,7,6,0|qqnmrz,7,6,0|qqnms0,8,7,1|r1thfz,8,7,1|r1thg0,7,6,0|r9dpfz,7,6,0|r9dpg0,8,7,1|rkjk3z,8,7,1|rkjk40,7,6,0|rs3s3z,7,6,0|rs3s40,8,7,1|s39mrz,8,7,1|s39ms0,7,6,0|sb6tfz,7,6,0|sb6tg0,8,7,1|slzpfz,8,7,1|slzpg0,7,6,0|stww3z,7,6,0|stww40,8,7,1|t4ps3z,8,7,1|t4ps40,7,6,0|tcmyrz,7,6,0|tcmys0,8,7,1|tnfurz,8,7,1|tnfus0,7,6,0|tvd1fz,7,6,0|tvd1g0,8,7,1|u6iw3z,8,7,1|u6iw40,7,6,0|ue343z,7,6,0|ue3440,8,7,1|up8yrz,8,7,1|up8ys0,7,6,0|uwt6rz,7,6,0|uwt6s0,8,7,1|v7z1fz,8,7,1|v7z1g0,7,6,0|vfw83z,7,6,0|vfw840,8,7,1|vqp43z,8,7,1|vqp440,7,6,0|vymarz,7,6,0|vymas0,8,7,1|w9f6rz,8,7,1|w9f6s0,7,6,0|whcdfz,7,6,0|whcdg0,8,7,1|wsi83z,8,7,1|wsi840,7,6,0|x02g3z,7,6,0|x02g40,8,7,1|xb8arz,8,7,1|xb8as0,7,6,0|xisirz,7,6,0|xisis0,8,7,1|xtydfz,8,7,1|xtydg0,7,6,0|y1ilfz,7,6,0|y1ilg0,8,7,1|ycog3z,8,7,1|ycog40,7,6,0|yklmrz,7,6,0|yklms0,8,7,1|yveirz,8,7,1|yveis0,7,6,0|z3bpfz,7,6,0|z3bpg0,8,7,1|ze4lfz,8,7,1|ze4lg0,7,6,0","Europe/Samara|,0,288,0|-qcx400,90,11,0|-kmr4c1,90,11,0|-kmr4c0,89,144,0|5vb3jz,89,144,0|5vb3k0,82,134,1|64pwrz,82,134,1|64pws0,89,144,0|6e30vz,89,144,0|6e30w0,82,134,1|6nhu3z,82,134,1|6nhu40,89,144,0|6wuy7z,89,144,0|6wuy80,82,134,1|769rfz,82,134,1|769rg0,89,144,0|7foq7z,89,144,0|7foq80,82,134,1|7p1x3z,82,134,1|7p1x40,89,144,0|7yeyfz,89,144,0|7yeyg0,82,134,1|87rzrz,82,134,1|87rzs0,89,144,0|8h513z,89,144,0|8h5140,82,134,1|8qi2fz,82,134,1|8qi2g0,89,144,0|8zv3rz,89,144,0|8zv3s0,82,134,1|99853z,82,134,1|998540,89,144,0|9il6fz,89,144,0|9il6g0,82,134,1|9ry7rz,82,134,1|9ry7s0,89,144,0|a1b93z,89,144,0|a1b940,89,144,1|aaod7z,89,144,1|aaod80,90,11,0|ak1ejz,90,11,0|ak1ek0,89,144,1|atrejz,89,144,1|atrek0,90,11,0|b34fvz,90,11,0|b34fw0,90,11,1|bchjzz,90,11,1|bchk00,90,11,0|bdkfzz,90,11,0|bdkg00,89,144,0|blufrz,89,144,0|blufs0,82,134,1|bv7h3z,82,134,1|bv7h40,89,144,0|c4kifz,89,144,0|c4kig0,82,134,1|cdxjrz,82,134,1|cdxjs0,89,144,0|cnal3z,89,144,0|cnal40,82,134,1|cwnmfz,82,134,1|cwnmg0,89,144,0|d60nrz,89,144,0|d60ns0,82,134,1|dfdp3z,82,134,1|dfdp40,89,144,0|dp3p3z,89,144,0|dp3p40,82,134,1|dzwl3z,82,134,1|dzwl40,89,144,0|e7trrz,89,144,0|e7trs0,82,134,1|eimnrz,82,134,1|eimns0,89,144,0|eqjufz,89,144,0|eqjug0,82,134,1|f1cqfz,82,134,1|f1cqg0,89,144,0|f99x3z,89,144,0|f99x40,82,134,1|fkfrrz,82,134,1|fkfrs0,89,144,0|frzzrz,89,144,0|frzzs0,82,134,1|g35ufz,82,134,1|g35ug0,89,144,0|gaq2fz,89,144,0|gaq2g0,82,134,1|glvx3z,82,134,1|glvx40,89,144,0|gtt3rz,89,144,0|gtt3s0,82,134,1|h4lzrz,82,134,1|h4lzs0,89,144,0|hcj6fz,89,144,0|hcj6g0,82,134,1|hnc2fz,82,134,1|hnc2g0,89,144,0|hv993z,89,144,0|hv9940,82,134,1|i6f3rz,82,134,1|i6f3s0,89,144,0|idzbrz,89,144,0|idzbs0,82,134,1|ip56fz,82,134,1|ip56g0,89,144,0|iwpefz,89,144,0|iwpeg0,82,134,1|j7v93z,82,134,1|j7v940,89,144,0|jffh3z,89,144,0|jffh40,82,134,1|jqlbrz,82,134,1|jqlbs0,89,144,0|jyiifz,89,144,0|jyiig0,82,134,1|k9befz,82,134,1|k9beg0,89,144,0|kh8l3z,89,144,0|kh8l40,82,134,1|ks1h3z,82,134,1|ks1h40,89,144,0|kzynrz,89,144,0|kzyns0,89,144,1|lb4l7z,89,144,1|lb4l80,90,11,0|liot7z,90,11,0|liot80,89,144,0","Europe/Simferopol|,0,289,0|-1ayy8zc,70,290,0|-nu12ap,70,290,0|-nu12ao,10,7,0|-kmr1k1,10,7,0|-kmr1k0,132,11,0|-ep8301,132,11,0|-ep8300,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dp3rw1,8,7,1|-dp3rw0,7,6,0|-dfqqk1,7,6,0|-dfqqk0,8,7,1|-df8g81,8,7,1|-df8g80,132,11,0|5vb6bz,132,11,0|5vb6c0,133,144,1|64pzjz,133,144,1|64pzk0,132,11,0|6e33nz,132,11,0|6e33o0,133,144,1|6nhwvz,133,144,1|6nhww0,132,11,0|6wv0zz,132,11,0|6wv100,133,144,1|769u7z,133,144,1|769u80,132,11,0|7foszz,132,11,0|7fot00,133,144,1|7p1zvz,133,144,1|7p1zw0,132,11,0|7yf17z,132,11,0|7yf180,133,144,1|87s2jz,133,144,1|87s2k0,132,11,0|8h53vz,132,11,0|8h53w0,133,144,1|8qi57z,133,144,1|8qi580,132,11,0|8zv6jz,132,11,0|8zv6k0,133,144,1|9987vz,133,144,1|9987w0,132,11,0|9il97z,132,11,0|9il980,133,144,1|9ryajz,133,144,1|9ryak0,132,11,0|a1bbvz,132,11,0|a1bbw0,133,144,1|aaod7z,133,144,1|aaod80,132,11,0|ap2vvz,132,11,0|ap2vw0,10,7,0|blufrz,10,7,0|blufs0,11,11,1|bv7ebz,11,11,1|bv7ec0,10,7,0|c4kifz,10,7,0|c4kig0,11,11,1|cdxgzz,11,11,1|cdxh00,10,7,0|cnal3z,10,7,0|cnal40,11,11,1|cp3bnz,11,11,1|cp3bo0,133,144,1|cwngvz,133,144,1|cwngw0,132,11,0|d60kzz,132,11,0|d60l00,133,144,1|dfdjjz,133,144,1|dfdjk0,132,11,0|dp3mbz,132,11,0|dp3mc0,133,144,1|dzwqnz,133,144,1|dzwqo0,132,11,0|e7u03z,132,11,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,7,0|eqk2rz,10,7,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,7,0|f9a5fz,10,7,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,7,0|fs083z,10,7,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,7,0|gaqarz,10,7,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,7,0|gttc3z,10,7,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,7,0|hcjerz,10,7,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,7,0|hv9hfz,10,7,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,7,0|idzk3z,10,7,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,7,0|iwpmrz,10,7,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,7,0|jffpfz,10,7,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,7,0|jyiqrz,10,7,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,7,0|kh8tfz,10,7,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,7,0|kzyw3z,10,7,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,7,0|lioyrz,10,7,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,7,0|m1f1fz,10,7,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,7,0|mki2rz,10,7,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,7,0|n382nz,10,7,0|n382o0,132,144,0|ne0t3z,132,144,0|ne0t40,132,11,0","Europe/Sofia|,0,291,0|-1ayy6zg,104,268,0|-136r6qx,104,268,0|-136r6qw,10,7,0|-e6dzw1,10,7,0|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dp3rw1,8,7,1|-dp3rw0,7,6,0|-dfqqk1,7,6,0|-dfqqk0,8,7,1|-d6dp81,8,7,1|-d6dp80,7,6,0|-cx0l41,7,6,0|-cx0l40,10,7,0|4tpgzz,10,7,0|4tph00,11,11,1|534frz,11,11,1|534fs0,10,7,0|5csibz,10,7,0|5csic0,11,11,1|5luifz,11,11,1|5luig0,10,7,0|5vikzz,10,7,0|5vil00,11,11,1|64it7z,11,11,1|64it80,10,7,0|6e8nnz,10,7,0|6e8no0,11,11,1|6n8ynz,11,11,1|6n8yo0,10,7,0|6wlzzz,10,7,0|6wm000,11,11,1|75z1bz,11,11,1|75z1c0,10,7,0|7fc2nz,10,7,0|7fc2o0,11,11,1|7p22nz,11,11,1|7p22o0,10,7,0|7yf3zz,10,7,0|7yf400,11,11,1|87s5bz,11,11,1|87s5c0,10,7,0|8h56nz,10,7,0|8h56o0,11,11,1|8qi7zz,11,11,1|8qi800,10,7,0|8zv9bz,10,7,0|8zv9c0,11,11,1|998anz,11,11,1|998ao0,10,7,0|9ilbzz,10,7,0|9ilc00,11,11,1|9rydbz,11,11,1|9rydc0,10,7,0|a1benz,10,7,0|a1beo0,11,11,1|aaofzz,11,11,1|aaog00,10,7,0|ak1hbz,10,7,0|ak1hc0,11,11,1|atrhbz,11,11,1|atrhc0,10,7,0|b34d3z,10,7,0|b34d40,11,11,1|bchbnz,11,11,1|bchbo0,10,7,0|blufrz,10,7,0|blufs0,11,11,1|bv7ebz,11,11,1|bv7ec0,10,7,0|c4kifz,10,7,0|c4kig0,11,11,1|cdxgzz,11,11,1|cdxh00,10,7,0|cnal3z,10,7,0|cnal40,11,11,1|cwnjnz,11,11,1|cwnjo0,10,7,0|d60nrz,10,7,0|d60ns0,11,11,1|dfdmbz,11,11,1|dfdmc0,10,7,0|dp3p3z,10,7,0|dp3p40,11,11,1|dzwibz,11,11,1|dzwic0,10,7,0|e7u03z,10,7,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,7,0|eqk2rz,10,7,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,7,0|f9a5fz,10,7,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,7,0|fs083z,10,7,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,7,0|gaqarz,10,7,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,7,0|gttc3z,10,7,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,7,0|hcjerz,10,7,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,7,0|hv9hfz,10,7,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,7,0|idzk3z,10,7,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,7,0|iwpmrz,10,7,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,7,0|jffpfz,10,7,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,7,0|jyiqrz,10,7,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,7,0|kh8tfz,10,7,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,7,0|kzyw3z,10,7,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,7,0|lioyrz,10,7,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,7,0|m1f1fz,10,7,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,7,0|mki2rz,10,7,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,7,0|n385fz,10,7,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,7,0|nly83z,10,7,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,7,0|o4oarz,10,7,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,7,0|onedfz,10,7,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,7,0|p64g3z,10,7,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,7,0|pp7hfz,10,7,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,7,0|q7xk3z,10,7,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,7,0|qqnmrz,10,7,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,7,0|r9dpfz,10,7,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,7,0|rs3s3z,10,7,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,7,0|sb6tfz,10,7,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,7,0|stww3z,10,7,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,7,0|tcmyrz,10,7,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,7,0|tvd1fz,10,7,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,7,0|ue343z,10,7,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,7,0|uwt6rz,10,7,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,7,0|vfw83z,10,7,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,7,0|vymarz,10,7,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,7,0|whcdfz,10,7,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,7,0|x02g3z,10,7,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,7,0|xisirz,10,7,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,7,0|y1ilfz,10,7,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,7,0|yklmrz,10,7,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,7,0|z3bpfz,10,7,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,7,0","Europe/Stockholm|,0,292,0|-1bhq3cc,140,293,0|-10j6dgf,140,293,0|-10j6dge,7,6,0|-rzo2w1,7,6,0|-rzo2w0,8,7,1|-rsilg1,8,7,1|-rsilg0,7,6,0|5cstfz,7,6,0|5cstg0,8,7,1|5lsw3z,8,7,1|5lsw40,7,6,0|5v5xfz,7,6,0|5v5xg0,8,7,1|64iyrz,8,7,1|64iys0,7,6,0|6dw03z,7,6,0|6dw040,8,7,1|6n91fz,8,7,1|6n91g0,7,6,0|6wm2rz,7,6,0|6wm2s0,8,7,1|75z43z,8,7,1|75z440,7,6,0|7fc5fz,7,6,0|7fc5g0,8,7,1|7p25fz,8,7,1|7p25g0,7,6,0|7yf6rz,7,6,0|7yf6s0,8,7,1|87s83z,8,7,1|87s840,7,6,0|8h59fz,7,6,0|8h59g0,8,7,1|8qiarz,8,7,1|8qias0,7,6,0|8zvc3z,7,6,0|8zvc40,8,7,1|998dfz,8,7,1|998dg0,7,6,0|9ilerz,7,6,0|9iles0,8,7,1|9ryg3z,8,7,1|9ryg40,7,6,0|a1bhfz,7,6,0|a1bhg0,8,7,1|aaoirz,8,7,1|aaois0,7,6,0|ak1k3z,7,6,0|ak1k40,8,7,1|atrk3z,8,7,1|atrk40,7,6,0|b34lfz,7,6,0|b34lg0,8,7,1|bchmrz,8,7,1|bchms0,7,6,0|bluo3z,7,6,0|bluo40,8,7,1|bv7pfz,8,7,1|bv7pg0,7,6,0|c4kqrz,7,6,0|c4kqs0,8,7,1|cdxs3z,8,7,1|cdxs40,7,6,0|cnatfz,7,6,0|cnatg0,8,7,1|cwnurz,8,7,1|cwnus0,7,6,0|d60w3z,7,6,0|d60w40,8,7,1|dfdxfz,8,7,1|dfdxg0,7,6,0|dp3xfz,7,6,0|dp3xg0,8,7,1|dzwtfz,8,7,1|dzwtg0,7,6,0|e7u03z,7,6,0|e7u040,8,7,1|eimw3z,8,7,1|eimw40,7,6,0|eqk2rz,7,6,0|eqk2s0,8,7,1|f1cyrz,8,7,1|f1cys0,7,6,0|f9a5fz,7,6,0|f9a5g0,8,7,1|fkg03z,8,7,1|fkg040,7,6,0|fs083z,7,6,0|fs0840,8,7,1|g362rz,8,7,1|g362s0,7,6,0|gaqarz,7,6,0|gaqas0,8,7,1|glw5fz,8,7,1|glw5g0,7,6,0|gttc3z,7,6,0|gttc40,8,7,1|h4m83z,8,7,1|h4m840,7,6,0|hcjerz,7,6,0|hcjes0,8,7,1|hncarz,8,7,1|hncas0,7,6,0|hv9hfz,7,6,0|hv9hg0,8,7,1|i6fc3z,8,7,1|i6fc40,7,6,0|idzk3z,7,6,0|idzk40,8,7,1|ip5erz,8,7,1|ip5es0,7,6,0|iwpmrz,7,6,0|iwpms0,8,7,1|j7vhfz,8,7,1|j7vhg0,7,6,0|jffpfz,7,6,0|jffpg0,8,7,1|jqlk3z,8,7,1|jqlk40,7,6,0|jyiqrz,7,6,0|jyiqs0,8,7,1|k9bmrz,8,7,1|k9bms0,7,6,0|kh8tfz,7,6,0|kh8tg0,8,7,1|ks1pfz,8,7,1|ks1pg0,7,6,0|kzyw3z,7,6,0|kzyw40,8,7,1|lb4qrz,8,7,1|lb4qs0,7,6,0|lioyrz,7,6,0|lioys0,8,7,1|ltutfz,8,7,1|ltutg0,7,6,0|m1f1fz,7,6,0|m1f1g0,8,7,1|mckw3z,8,7,1|mckw40,7,6,0|mki2rz,7,6,0|mki2s0,8,7,1|mvayrz,8,7,1|mvays0,7,6,0|n385fz,7,6,0|n385g0,8,7,1|ne11fz,8,7,1|ne11g0,7,6,0|nly83z,7,6,0|nly840,8,7,1|nwr43z,8,7,1|nwr440,7,6,0|o4oarz,7,6,0|o4oas0,8,7,1|ofu5fz,8,7,1|ofu5g0,7,6,0|onedfz,7,6,0|onedg0,8,7,1|oyk83z,8,7,1|oyk840,7,6,0|p64g3z,7,6,0|p64g40,8,7,1|phaarz,8,7,1|phaas0,7,6,0|pp7hfz,7,6,0|pp7hg0,8,7,1|q00dfz,8,7,1|q00dg0,7,6,0|q7xk3z,7,6,0|q7xk40,8,7,1|qiqg3z,8,7,1|qiqg40,7,6,0|qqnmrz,7,6,0|qqnms0,8,7,1|r1thfz,8,7,1|r1thg0,7,6,0|r9dpfz,7,6,0|r9dpg0,8,7,1|rkjk3z,8,7,1|rkjk40,7,6,0|rs3s3z,7,6,0|rs3s40,8,7,1|s39mrz,8,7,1|s39ms0,7,6,0|sb6tfz,7,6,0|sb6tg0,8,7,1|slzpfz,8,7,1|slzpg0,7,6,0|stww3z,7,6,0|stww40,8,7,1|t4ps3z,8,7,1|t4ps40,7,6,0|tcmyrz,7,6,0|tcmys0,8,7,1|tnfurz,8,7,1|tnfus0,7,6,0|tvd1fz,7,6,0|tvd1g0,8,7,1|u6iw3z,8,7,1|u6iw40,7,6,0|ue343z,7,6,0|ue3440,8,7,1|up8yrz,8,7,1|up8ys0,7,6,0|uwt6rz,7,6,0|uwt6s0,8,7,1|v7z1fz,8,7,1|v7z1g0,7,6,0|vfw83z,7,6,0|vfw840,8,7,1|vqp43z,8,7,1|vqp440,7,6,0|vymarz,7,6,0|vymas0,8,7,1|w9f6rz,8,7,1|w9f6s0,7,6,0|whcdfz,7,6,0|whcdg0,8,7,1|wsi83z,8,7,1|wsi840,7,6,0|x02g3z,7,6,0|x02g40,8,7,1|xb8arz,8,7,1|xb8as0,7,6,0|xisirz,7,6,0|xisis0,8,7,1|xtydfz,8,7,1|xtydg0,7,6,0|y1ilfz,7,6,0|y1ilg0,8,7,1|ycog3z,8,7,1|ycog40,7,6,0|yklmrz,7,6,0|yklms0,8,7,1|yveirz,8,7,1|yveis0,7,6,0|z3bpfz,7,6,0|z3bpg0,8,7,1|ze4lfz,8,7,1|ze4lg0,7,6,0","Europe/Tallinn|,0,294,0|-1ayy790,120,294,0|-r3exx1,120,294,0|-r3exx0,7,6,0|-qznjw1,7,6,0|-qznjw0,8,7,1|-qrqd81,8,7,1|-qrqd80,7,6,0|-qcx6s1,7,6,0|-qcx6s0,120,294,0|-peghx1,120,294,0|-peghx0,10,7,0|-fch1k1,10,7,0|-fch1k0,132,11,0|-ern4c1,132,11,0|-ern4c0,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dp3rw1,8,7,1|-dp3rw0,7,6,0|-dfqqk1,7,6,0|-dfqqk0,8,7,1|-d6wg81,8,7,1|-d6wg80,132,11,0|5vb6bz,132,11,0|5vb6c0,133,144,1|64pzjz,133,144,1|64pzk0,132,11,0|6e33nz,132,11,0|6e33o0,133,144,1|6nhwvz,133,144,1|6nhww0,132,11,0|6wv0zz,132,11,0|6wv100,133,144,1|769u7z,133,144,1|769u80,132,11,0|7foszz,132,11,0|7fot00,133,144,1|7p1zvz,133,144,1|7p1zw0,132,11,0|7yf17z,132,11,0|7yf180,133,144,1|87s2jz,133,144,1|87s2k0,132,11,0|8h53vz,132,11,0|8h53w0,133,144,1|8qi57z,133,144,1|8qi580,132,11,0|8zv6jz,132,11,0|8zv6k0,133,144,1|9987vz,133,144,1|9987w0,132,11,0|9il97z,132,11,0|9il980,133,144,1|9ryajz,133,144,1|9ryak0,132,11,0|a1bbvz,132,11,0|a1bbw0,11,11,1|aaofzz,11,11,1|aaog00,10,7,0|ak1hbz,10,7,0|ak1hc0,11,11,1|atrhbz,11,11,1|atrhc0,10,7,0|b34inz,10,7,0|b34io0,11,11,1|bchjzz,11,11,1|bchk00,10,7,0|blulbz,10,7,0|blulc0,11,11,1|bv7mnz,11,11,1|bv7mo0,10,7,0|c4knzz,10,7,0|c4ko00,11,11,1|cdxpbz,11,11,1|cdxpc0,10,7,0|cnaqnz,10,7,0|cnaqo0,11,11,1|cwnrzz,11,11,1|cwns00,10,7,0|d60tbz,10,7,0|d60tc0,11,11,1|dfdunz,11,11,1|dfduo0,10,7,0|dp3unz,10,7,0|dp3uo0,11,11,1|dzwqnz,11,11,1|dzwqo0,10,7,0|e7txbz,10,7,0|e7txc0,11,11,1|eimtbz,11,11,1|eimtc0,10,7,0|eqjzzz,10,7,0|eqk000,11,11,1|f1cyrz,11,11,1|f1cys0,10,7,0|f9a5fz,10,7,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,7,0|gttc3z,10,7,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,7,0|hcjerz,10,7,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,7,0|hv9hfz,10,7,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,7,0|idzk3z,10,7,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,7,0|iwpmrz,10,7,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,7,0|jffpfz,10,7,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,7,0|jyiqrz,10,7,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,7,0|kh8tfz,10,7,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,7,0|kzyw3z,10,7,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,7,0|lioyrz,10,7,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,7,0|m1f1fz,10,7,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,7,0|mki2rz,10,7,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,7,0|n385fz,10,7,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,7,0|nly83z,10,7,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,7,0|o4oarz,10,7,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,7,0|onedfz,10,7,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,7,0|p64g3z,10,7,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,7,0|pp7hfz,10,7,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,7,0|q7xk3z,10,7,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,7,0|qqnmrz,10,7,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,7,0|r9dpfz,10,7,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,7,0|rs3s3z,10,7,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,7,0|sb6tfz,10,7,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,7,0|stww3z,10,7,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,7,0|tcmyrz,10,7,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,7,0|tvd1fz,10,7,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,7,0|ue343z,10,7,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,7,0|uwt6rz,10,7,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,7,0|vfw83z,10,7,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,7,0|vymarz,10,7,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,7,0|whcdfz,10,7,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,7,0|x02g3z,10,7,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,7,0|xisirz,10,7,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,7,0|y1ilfz,10,7,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,7,0|yklmrz,10,7,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,7,0|z3bpfz,10,7,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,7,0","Europe/Tirane|,0,295,0|-t85vo8,7,6,0|-ff3es1,7,6,0|-ff3es0,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dy7jw1,8,7,1|-dy7jw0,7,6,0|29h97z,7,6,0|29h980,8,7,1|2h8t3z,8,7,1|2h8t40,7,6,0|2s3mjz,7,6,0|2s3mk0,8,7,1|300qfz,8,7,1|300qg0,7,6,0|3az97z,7,6,0|3az980,8,7,1|3iwd3z,8,7,1|3iwd40,7,6,0|3u2ajz,7,6,0|3u2ak0,8,7,1|41mfrz,8,7,1|41mfs0,7,6,0|4cqijz,7,6,0|4cqik0,8,7,1|4kcifz,8,7,1|4kcig0,7,6,0|4vgl7z,7,6,0|4vgl80,8,7,1|532l3z,8,7,1|532l40,7,6,0|5e6nvz,7,6,0|5e6nw0,8,7,1|5m3rrz,8,7,1|5m3rs0,7,6,0|5wlmjz,7,6,0|5wlmk0,8,7,1|64iqfz,8,7,1|64iqg0,7,6,0|6fonvz,7,6,0|6fonw0,8,7,1|6nlrrz,8,7,1|6nlrs0,7,6,0|6xqnvz,7,6,0|6xqnw0,8,7,1|769zrz,8,7,1|769zs0,7,6,0|7foyjz,7,6,0|7foyk0,8,7,1|7p25fz,8,7,1|7p25g0,7,6,0|7yf6rz,7,6,0|7yf6s0,8,7,1|87s83z,8,7,1|87s840,7,6,0|8h59fz,7,6,0|8h59g0,8,7,1|8qiarz,8,7,1|8qias0,7,6,0|8zvc3z,7,6,0|8zvc40,8,7,1|998dfz,8,7,1|998dg0,7,6,0|9ilerz,7,6,0|9iles0,8,7,1|9ryg3z,8,7,1|9ryg40,7,6,0|a1bhfz,7,6,0|a1bhg0,8,7,1|aaoirz,8,7,1|aaois0,7,6,0|ak1k3z,7,6,0|ak1k40,8,7,1|atrk3z,8,7,1|atrk40,7,6,0|b34lfz,7,6,0|b34lg0,8,7,1|bchmrz,8,7,1|bchms0,7,6,0|bluo3z,7,6,0|bluo40,8,7,1|bv7pfz,8,7,1|bv7pg0,7,6,0|c4kqrz,7,6,0|c4kqs0,8,7,1|cdxs3z,8,7,1|cdxs40,7,6,0|cnatfz,7,6,0|cnatg0,8,7,1|cwnurz,8,7,1|cwnus0,7,6,0|d60w3z,7,6,0|d60w40,8,7,1|dfdxfz,8,7,1|dfdxg0,7,6,0|dp3xfz,7,6,0|dp3xg0,8,7,1|dzwtfz,8,7,1|dzwtg0,7,6,0|e7u03z,7,6,0|e7u040,8,7,1|eimw3z,8,7,1|eimw40,7,6,0|eqk2rz,7,6,0|eqk2s0,8,7,1|f1cyrz,8,7,1|f1cys0,7,6,0|f9a5fz,7,6,0|f9a5g0,8,7,1|fkg03z,8,7,1|fkg040,7,6,0|fs083z,7,6,0|fs0840,8,7,1|g362rz,8,7,1|g362s0,7,6,0|gaqarz,7,6,0|gaqas0,8,7,1|glw5fz,8,7,1|glw5g0,7,6,0|gttc3z,7,6,0|gttc40,8,7,1|h4m83z,8,7,1|h4m840,7,6,0|hcjerz,7,6,0|hcjes0,8,7,1|hncarz,8,7,1|hncas0,7,6,0|hv9hfz,7,6,0|hv9hg0,8,7,1|i6fc3z,8,7,1|i6fc40,7,6,0|idzk3z,7,6,0|idzk40,8,7,1|ip5erz,8,7,1|ip5es0,7,6,0|iwpmrz,7,6,0|iwpms0,8,7,1|j7vhfz,8,7,1|j7vhg0,7,6,0|jffpfz,7,6,0|jffpg0,8,7,1|jqlk3z,8,7,1|jqlk40,7,6,0|jyiqrz,7,6,0|jyiqs0,8,7,1|k9bmrz,8,7,1|k9bms0,7,6,0|kh8tfz,7,6,0|kh8tg0,8,7,1|ks1pfz,8,7,1|ks1pg0,7,6,0|kzyw3z,7,6,0|kzyw40,8,7,1|lb4qrz,8,7,1|lb4qs0,7,6,0|lioyrz,7,6,0|lioys0,8,7,1|ltutfz,8,7,1|ltutg0,7,6,0|m1f1fz,7,6,0|m1f1g0,8,7,1|mckw3z,8,7,1|mckw40,7,6,0|mki2rz,7,6,0|mki2s0,8,7,1|mvayrz,8,7,1|mvays0,7,6,0|n385fz,7,6,0|n385g0,8,7,1|ne11fz,8,7,1|ne11g0,7,6,0|nly83z,7,6,0|nly840,8,7,1|nwr43z,8,7,1|nwr440,7,6,0|o4oarz,7,6,0|o4oas0,8,7,1|ofu5fz,8,7,1|ofu5g0,7,6,0|onedfz,7,6,0|onedg0,8,7,1|oyk83z,8,7,1|oyk840,7,6,0|p64g3z,7,6,0|p64g40,8,7,1|phaarz,8,7,1|phaas0,7,6,0|pp7hfz,7,6,0|pp7hg0,8,7,1|q00dfz,8,7,1|q00dg0,7,6,0|q7xk3z,7,6,0|q7xk40,8,7,1|qiqg3z,8,7,1|qiqg40,7,6,0|qqnmrz,7,6,0|qqnms0,8,7,1|r1thfz,8,7,1|r1thg0,7,6,0|r9dpfz,7,6,0|r9dpg0,8,7,1|rkjk3z,8,7,1|rkjk40,7,6,0|rs3s3z,7,6,0|rs3s40,8,7,1|s39mrz,8,7,1|s39ms0,7,6,0|sb6tfz,7,6,0|sb6tg0,8,7,1|slzpfz,8,7,1|slzpg0,7,6,0|stww3z,7,6,0|stww40,8,7,1|t4ps3z,8,7,1|t4ps40,7,6,0|tcmyrz,7,6,0|tcmys0,8,7,1|tnfurz,8,7,1|tnfus0,7,6,0|tvd1fz,7,6,0|tvd1g0,8,7,1|u6iw3z,8,7,1|u6iw40,7,6,0|ue343z,7,6,0|ue3440,8,7,1|up8yrz,8,7,1|up8ys0,7,6,0|uwt6rz,7,6,0|uwt6s0,8,7,1|v7z1fz,8,7,1|v7z1g0,7,6,0|vfw83z,7,6,0|vfw840,8,7,1|vqp43z,8,7,1|vqp440,7,6,0|vymarz,7,6,0|vymas0,8,7,1|w9f6rz,8,7,1|w9f6s0,7,6,0|whcdfz,7,6,0|whcdg0,8,7,1|wsi83z,8,7,1|wsi840,7,6,0|x02g3z,7,6,0|x02g40,8,7,1|xb8arz,8,7,1|xb8as0,7,6,0|xisirz,7,6,0|xisis0,8,7,1|xtydfz,8,7,1|xtydg0,7,6,0|y1ilfz,7,6,0|y1ilg0,8,7,1|ycog3z,8,7,1|ycog40,7,6,0|yklmrz,7,6,0|yklms0,8,7,1|yveirz,8,7,1|yveis0,7,6,0|z3bpfz,7,6,0|z3bpg0,8,7,1|ze4lfz,8,7,1|ze4lg0,7,6,0","Europe/Uzhgorod|,0,296,0|-15cztgo,7,6,0|-fizzw1,7,6,0|-fizzw0,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dp3rw1,8,7,1|-dp3rw0,7,6,0|-dfqqk1,7,6,0|-dfqqk0,8,7,1|-d55hk1,8,7,1|-d55hk0,7,6,0|-cshus1,7,6,0|-cshus0,132,11,0|5vb6bz,132,11,0|5vb6c0,133,144,1|64pzjz,133,144,1|64pzk0,132,11,0|6e33nz,132,11,0|6e33o0,133,144,1|6nhwvz,133,144,1|6nhww0,132,11,0|6wv0zz,132,11,0|6wv100,133,144,1|769u7z,133,144,1|769u80,132,11,0|7foszz,132,11,0|7fot00,133,144,1|7p1zvz,133,144,1|7p1zw0,132,11,0|7yf17z,132,11,0|7yf180,133,144,1|87s2jz,133,144,1|87s2k0,132,11,0|8h53vz,132,11,0|8h53w0,133,144,1|8qi57z,133,144,1|8qi580,132,11,0|8zv6jz,132,11,0|8zv6k0,133,144,1|9987vz,133,144,1|9987w0,132,11,0|9il97z,132,11,0|9il980,133,144,1|9ryajz,133,144,1|9ryak0,132,11,0|a1bbvz,132,11,0|a1bbw0,133,144,1|aaod7z,133,144,1|aaod80,132,11,0|ap2vvz,132,11,0|ap2vw0,7,6,0|b34o7z,7,6,0|b34o80,10,7,0|blufrz,10,7,0|blufs0,11,11,1|bv7ebz,11,11,1|bv7ec0,10,7,0|c4kifz,10,7,0|c4kig0,11,11,1|cdxgzz,11,11,1|cdxh00,10,7,0|cnal3z,10,7,0|cnal40,11,11,1|cwnjnz,11,11,1|cwnjo0,10,7,0|d60w3z,10,7,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,7,0|dp3xfz,10,7,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,7,0|e7u03z,10,7,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,7,0|eqk2rz,10,7,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,7,0|f9a5fz,10,7,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,7,0|fs083z,10,7,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,7,0|gaqarz,10,7,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,7,0|gttc3z,10,7,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,7,0|hcjerz,10,7,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,7,0|hv9hfz,10,7,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,7,0|idzk3z,10,7,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,7,0|iwpmrz,10,7,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,7,0|jffpfz,10,7,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,7,0|jyiqrz,10,7,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,7,0|kh8tfz,10,7,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,7,0|kzyw3z,10,7,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,7,0|lioyrz,10,7,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,7,0|m1f1fz,10,7,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,7,0|mki2rz,10,7,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,7,0|n385fz,10,7,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,7,0|nly83z,10,7,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,7,0|o4oarz,10,7,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,7,0|onedfz,10,7,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,7,0|p64g3z,10,7,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,7,0|pp7hfz,10,7,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,7,0|q7xk3z,10,7,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,7,0|qqnmrz,10,7,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,7,0|r9dpfz,10,7,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,7,0|rs3s3z,10,7,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,7,0|sb6tfz,10,7,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,7,0|stww3z,10,7,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,7,0|tcmyrz,10,7,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,7,0|tvd1fz,10,7,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,7,0|ue343z,10,7,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,7,0|uwt6rz,10,7,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,7,0|vfw83z,10,7,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,7,0|vymarz,10,7,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,7,0|whcdfz,10,7,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,7,0|x02g3z,10,7,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,7,0|xisirz,10,7,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,7,0|y1ilfz,10,7,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,7,0|yklmrz,10,7,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,7,0|z3bpfz,10,7,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,7,0","Europe/Vienna|,0,297,0|-14211ox,7,6,0|-s0e081,7,6,0|-s0e080,8,7,1|-rsilg1,8,7,1|-rsilg0,7,6,0|-ridmk1,7,6,0|-ridmk0,8,7,1|-ragfw1,8,7,1|-ragfw0,7,6,0|-qznjw1,7,6,0|-qznjw0,8,7,1|-qrqd81,8,7,1|-qrqd80,7,6,0|-pykd81,7,6,0|-pykd80,8,7,1|-pqa7w1,8,7,1|-pqa7w0,7,6,0|-fizzw1,7,6,0|-fizzw0,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dp3rw1,8,7,1|-dp3rw0,7,6,0|-dfqqk1,7,6,0|-dfqqk0,8,7,1|-d6dp81,8,7,1|-d6dp80,7,6,0|-cx0nw1,7,6,0|-cx0nw0,8,7,1|-cwi581,8,7,1|-cwi580,7,6,0|-cdmik1,7,6,0|-cdmik0,8,7,1|-c4kl81,8,7,1|-c4kl80,7,6,0|-bv9ek1,7,6,0|-bv9ek0,8,7,1|-blwd81,8,7,1|-blwd80,7,6,0|-bbtek1,7,6,0|-bbtek0,8,7,1|-b36ak1,8,7,1|-b36ak0,7,6,0|5csnvz,7,6,0|5csnw0,8,7,1|5lsnrz,8,7,1|5lsns0,7,6,0|5v5xfz,7,6,0|5v5xg0,8,7,1|64iyrz,8,7,1|64iys0,7,6,0|6dw03z,7,6,0|6dw040,8,7,1|6n91fz,8,7,1|6n91g0,7,6,0|6wm2rz,7,6,0|6wm2s0,8,7,1|75z43z,8,7,1|75z440,7,6,0|7fc5fz,7,6,0|7fc5g0,8,7,1|7p25fz,8,7,1|7p25g0,7,6,0|7yf6rz,7,6,0|7yf6s0,8,7,1|87s83z,8,7,1|87s840,7,6,0|8h59fz,7,6,0|8h59g0,8,7,1|8qiarz,8,7,1|8qias0,7,6,0|8zvc3z,7,6,0|8zvc40,8,7,1|998dfz,8,7,1|998dg0,7,6,0|9ilerz,7,6,0|9iles0,8,7,1|9ryg3z,8,7,1|9ryg40,7,6,0|a1bhfz,7,6,0|a1bhg0,8,7,1|aaoirz,8,7,1|aaois0,7,6,0|ak1k3z,7,6,0|ak1k40,8,7,1|atrk3z,8,7,1|atrk40,7,6,0|b34lfz,7,6,0|b34lg0,8,7,1|bchmrz,8,7,1|bchms0,7,6,0|bluo3z,7,6,0|bluo40,8,7,1|bv7pfz,8,7,1|bv7pg0,7,6,0|c4kqrz,7,6,0|c4kqs0,8,7,1|cdxs3z,8,7,1|cdxs40,7,6,0|cnatfz,7,6,0|cnatg0,8,7,1|cwnurz,8,7,1|cwnus0,7,6,0|d60w3z,7,6,0|d60w40,8,7,1|dfdxfz,8,7,1|dfdxg0,7,6,0|dp3xfz,7,6,0|dp3xg0,8,7,1|dzwtfz,8,7,1|dzwtg0,7,6,0|e7u03z,7,6,0|e7u040,8,7,1|eimw3z,8,7,1|eimw40,7,6,0|eqk2rz,7,6,0|eqk2s0,8,7,1|f1cyrz,8,7,1|f1cys0,7,6,0|f9a5fz,7,6,0|f9a5g0,8,7,1|fkg03z,8,7,1|fkg040,7,6,0|fs083z,7,6,0|fs0840,8,7,1|g362rz,8,7,1|g362s0,7,6,0|gaqarz,7,6,0|gaqas0,8,7,1|glw5fz,8,7,1|glw5g0,7,6,0|gttc3z,7,6,0|gttc40,8,7,1|h4m83z,8,7,1|h4m840,7,6,0|hcjerz,7,6,0|hcjes0,8,7,1|hncarz,8,7,1|hncas0,7,6,0|hv9hfz,7,6,0|hv9hg0,8,7,1|i6fc3z,8,7,1|i6fc40,7,6,0|idzk3z,7,6,0|idzk40,8,7,1|ip5erz,8,7,1|ip5es0,7,6,0|iwpmrz,7,6,0|iwpms0,8,7,1|j7vhfz,8,7,1|j7vhg0,7,6,0|jffpfz,7,6,0|jffpg0,8,7,1|jqlk3z,8,7,1|jqlk40,7,6,0|jyiqrz,7,6,0|jyiqs0,8,7,1|k9bmrz,8,7,1|k9bms0,7,6,0|kh8tfz,7,6,0|kh8tg0,8,7,1|ks1pfz,8,7,1|ks1pg0,7,6,0|kzyw3z,7,6,0|kzyw40,8,7,1|lb4qrz,8,7,1|lb4qs0,7,6,0|lioyrz,7,6,0|lioys0,8,7,1|ltutfz,8,7,1|ltutg0,7,6,0|m1f1fz,7,6,0|m1f1g0,8,7,1|mckw3z,8,7,1|mckw40,7,6,0|mki2rz,7,6,0|mki2s0,8,7,1|mvayrz,8,7,1|mvays0,7,6,0|n385fz,7,6,0|n385g0,8,7,1|ne11fz,8,7,1|ne11g0,7,6,0|nly83z,7,6,0|nly840,8,7,1|nwr43z,8,7,1|nwr440,7,6,0|o4oarz,7,6,0|o4oas0,8,7,1|ofu5fz,8,7,1|ofu5g0,7,6,0|onedfz,7,6,0|onedg0,8,7,1|oyk83z,8,7,1|oyk840,7,6,0|p64g3z,7,6,0|p64g40,8,7,1|phaarz,8,7,1|phaas0,7,6,0|pp7hfz,7,6,0|pp7hg0,8,7,1|q00dfz,8,7,1|q00dg0,7,6,0|q7xk3z,7,6,0|q7xk40,8,7,1|qiqg3z,8,7,1|qiqg40,7,6,0|qqnmrz,7,6,0|qqnms0,8,7,1|r1thfz,8,7,1|r1thg0,7,6,0|r9dpfz,7,6,0|r9dpg0,8,7,1|rkjk3z,8,7,1|rkjk40,7,6,0|rs3s3z,7,6,0|rs3s40,8,7,1|s39mrz,8,7,1|s39ms0,7,6,0|sb6tfz,7,6,0|sb6tg0,8,7,1|slzpfz,8,7,1|slzpg0,7,6,0|stww3z,7,6,0|stww40,8,7,1|t4ps3z,8,7,1|t4ps40,7,6,0|tcmyrz,7,6,0|tcmys0,8,7,1|tnfurz,8,7,1|tnfus0,7,6,0|tvd1fz,7,6,0|tvd1g0,8,7,1|u6iw3z,8,7,1|u6iw40,7,6,0|ue343z,7,6,0|ue3440,8,7,1|up8yrz,8,7,1|up8ys0,7,6,0|uwt6rz,7,6,0|uwt6s0,8,7,1|v7z1fz,8,7,1|v7z1g0,7,6,0|vfw83z,7,6,0|vfw840,8,7,1|vqp43z,8,7,1|vqp440,7,6,0|vymarz,7,6,0|vymas0,8,7,1|w9f6rz,8,7,1|w9f6s0,7,6,0|whcdfz,7,6,0|whcdg0,8,7,1|wsi83z,8,7,1|wsi840,7,6,0|x02g3z,7,6,0|x02g40,8,7,1|xb8arz,8,7,1|xb8as0,7,6,0|xisirz,7,6,0|xisis0,8,7,1|xtydfz,8,7,1|xtydg0,7,6,0|y1ilfz,7,6,0|y1ilg0,8,7,1|ycog3z,8,7,1|ycog40,7,6,0|yklmrz,7,6,0|yklms0,8,7,1|yveirz,8,7,1|yveis0,7,6,0|z3bpfz,7,6,0|z3bpg0,8,7,1|ze4lfz,8,7,1|ze4lg0,7,6,0","Europe/Vilnius|,0,298,0|-1ayy7cs,141,299,0|-rns981,141,299,0|-rns980,62,300,0|-q7q73d,62,300,0|-q7q73c,7,6,0|-ptj1g1,7,6,0|-ptj1g0,10,7,0|-poyaw1,10,7,0|-poyaw0,7,6,0|-fcmis1,7,6,0|-fcmis0,132,11,0|-evwto1,132,11,0|-evwto0,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dp3rw1,8,7,1|-dp3rw0,7,6,0|-dfqqk1,7,6,0|-dfqqk0,8,7,1|-d9kqw1,8,7,1|-d9kqw0,132,11,0|5vb6bz,132,11,0|5vb6c0,133,144,1|64pzjz,133,144,1|64pzk0,132,11,0|6e33nz,132,11,0|6e33o0,133,144,1|6nhwvz,133,144,1|6nhww0,132,11,0|6wv0zz,132,11,0|6wv100,133,144,1|769u7z,133,144,1|769u80,132,11,0|7foszz,132,11,0|7fot00,133,144,1|7p1zvz,133,144,1|7p1zw0,132,11,0|7yf17z,132,11,0|7yf180,133,144,1|87s2jz,133,144,1|87s2k0,132,11,0|8h53vz,132,11,0|8h53w0,133,144,1|8qi57z,133,144,1|8qi580,132,11,0|8zv6jz,132,11,0|8zv6k0,133,144,1|9987vz,133,144,1|9987w0,132,11,0|9il97z,132,11,0|9il980,133,144,1|9ryajz,133,144,1|9ryak0,132,11,0|a1bbvz,132,11,0|a1bbw0,11,11,1|aaofzz,11,11,1|aaog00,10,7,0|ak1hbz,10,7,0|ak1hc0,11,11,1|atrhbz,11,11,1|atrhc0,10,7,0|b34inz,10,7,0|b34io0,11,11,1|bchjzz,11,11,1|bchk00,10,7,0|blulbz,10,7,0|blulc0,11,11,1|bv7mnz,11,11,1|bv7mo0,10,7,0|c4knzz,10,7,0|c4ko00,11,11,1|cdxpbz,11,11,1|cdxpc0,10,7,0|cnaqnz,10,7,0|cnaqo0,11,11,1|cwnrzz,11,11,1|cwns00,10,7,0|d60tbz,10,7,0|d60tc0,11,11,1|dfdunz,11,11,1|dfduo0,10,7,0|dp3unz,10,7,0|dp3uo0,11,11,1|dzwqnz,11,11,1|dzwqo0,10,7,0|e7txbz,10,7,0|e7txc0,11,11,1|eimtbz,11,11,1|eimtc0,10,7,0|eqk2rz,10,7,0|eqk2s0,8,7,1|f1cyrz,8,7,1|f1cys0,7,6,0|f9a5fz,7,6,0|f9a5g0,8,7,1|fkg03z,8,7,1|fkg040,10,7,0|hcjerz,10,7,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,7,0|hv9hfz,10,7,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,7,0|idzk3z,10,7,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,7,0|iwpmrz,10,7,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,7,0|jffpfz,10,7,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,7,0|jyiqrz,10,7,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,7,0|kh8tfz,10,7,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,7,0|kzyw3z,10,7,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,7,0|lioyrz,10,7,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,7,0|m1f1fz,10,7,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,7,0|mki2rz,10,7,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,7,0|n385fz,10,7,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,7,0|nly83z,10,7,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,7,0|o4oarz,10,7,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,7,0|onedfz,10,7,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,7,0|p64g3z,10,7,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,7,0|pp7hfz,10,7,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,7,0|q7xk3z,10,7,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,7,0|qqnmrz,10,7,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,7,0|r9dpfz,10,7,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,7,0|rs3s3z,10,7,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,7,0|sb6tfz,10,7,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,7,0|stww3z,10,7,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,7,0|tcmyrz,10,7,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,7,0|tvd1fz,10,7,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,7,0|ue343z,10,7,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,7,0|uwt6rz,10,7,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,7,0|vfw83z,10,7,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,7,0|vymarz,10,7,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,7,0|whcdfz,10,7,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,7,0|x02g3z,10,7,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,7,0|xisirz,10,7,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,7,0|y1ilfz,10,7,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,7,0|yklmrz,10,7,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,7,0|z3bpfz,10,7,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,7,0","Europe/Volgograd|,0,147,0|-q3cw84,90,11,0|-kmr4c1,90,11,0|-kmr4c0,89,144,0|5vb3jz,89,144,0|5vb3k0,82,134,1|64pwrz,82,134,1|64pws0,89,144,0|6e30vz,89,144,0|6e30w0,82,134,1|6nhu3z,82,134,1|6nhu40,89,144,0|6wuy7z,89,144,0|6wuy80,82,134,1|769rfz,82,134,1|769rg0,89,144,0|7foq7z,89,144,0|7foq80,82,134,1|7p1x3z,82,134,1|7p1x40,89,144,0|7yeyfz,89,144,0|7yeyg0,82,134,1|87rzrz,82,134,1|87rzs0,89,144,0|8h513z,89,144,0|8h5140,82,134,1|8qi2fz,82,134,1|8qi2g0,89,144,0|8zv3rz,89,144,0|8zv3s0,82,134,1|99853z,82,134,1|998540,89,144,0|9il6fz,89,144,0|9il6g0,89,144,1|9ryajz,89,144,1|9ryak0,90,11,0|a1bbvz,90,11,0|a1bbw0,89,144,1|aaod7z,89,144,1|aaod80,90,11,0|ak1ejz,90,11,0|ak1ek0,89,144,1|atrejz,89,144,1|atrek0,90,11,0|b34fvz,90,11,0|b34fw0,89,144,0|blufrz,89,144,0|blufs0,89,144,1|bv7jvz,89,144,1|bv7jw0,90,11,0|c4kl7z,90,11,0|c4kl80,89,144,1|cdxmjz,89,144,1|cdxmk0,90,11,0|cnanvz,90,11,0|cnanw0,89,144,1|cwnp7z,89,144,1|cwnp80,90,11,0|d60qjz,90,11,0|d60qk0,89,144,1|dfdrvz,89,144,1|dfdrw0,90,11,0|dp3rvz,90,11,0|dp3rw0,89,144,1|dzwnvz,89,144,1|dzwnw0,90,11,0|e7tujz,90,11,0|e7tuk0,89,144,1|eimqjz,89,144,1|eimqk0,90,11,0|eqjx7z,90,11,0|eqjx80,89,144,1|f1ct7z,89,144,1|f1ct80,90,11,0|f99zvz,90,11,0|f99zw0,89,144,1|fkfujz,89,144,1|fkfuk0,90,11,0|fs02jz,90,11,0|fs02k0,89,144,1|g35x7z,89,144,1|g35x80,90,11,0|gaq57z,90,11,0|gaq580,89,144,1|glvzvz,89,144,1|glvzw0,90,11,0|gtt6jz,90,11,0|gtt6k0,89,144,1|h4m2jz,89,144,1|h4m2k0,90,11,0|hcj97z,90,11,0|hcj980,89,144,1|hnc57z,89,144,1|hnc580,90,11,0|hv9bvz,90,11,0|hv9bw0,89,144,1|i6f6jz,89,144,1|i6f6k0,90,11,0|idzejz,90,11,0|idzek0,89,144,1|ip597z,89,144,1|ip5980,90,11,0|iwph7z,90,11,0|iwph80,89,144,1|j7vbvz,89,144,1|j7vbw0,90,11,0|jffjvz,90,11,0|jffjw0,89,144,1|jqlejz,89,144,1|jqlek0,90,11,0|jyil7z,90,11,0|jyil80,89,144,1|k9bh7z,89,144,1|k9bh80,90,11,0|kh8nvz,90,11,0|kh8nw0,89,144,1|ks1jvz,89,144,1|ks1jw0,90,11,0|kzyqjz,90,11,0|kzyqk0,89,144,1|lb4l7z,89,144,1|lb4l80,90,11,0|liot7z,90,11,0|liot80,89,144,0|ne0t3z,89,144,0|ne0t40,90,11,0|pha57z,90,11,0|pha580,89,144,0|qlyvrz,89,144,0|qlyvs0,90,11,0","Europe/Warsaw|,0,299,0|-1ayy6k0,141,299,0|-se9yk1,141,299,0|-se9yk0,7,6,0|-s0e081,7,6,0|-s0e080,8,7,1|-rsilg1,8,7,1|-rsilg0,7,6,0|-ridmk1,7,6,0|-ridmk0,8,7,1|-ragfw1,8,7,1|-ragfw0,7,6,0|-qznjw1,7,6,0|-qznjw0,8,7,1|-qrqd81,8,7,1|-qrqd80,10,7,0|-qgvpc1,10,7,0|-qgvpc0,11,11,1|-q8yio1,11,11,1|-q8yio0,10,7,0|-ou36w1,10,7,0|-ou36w0,7,6,0|-feqak1,7,6,0|-feqak0,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dp3rw1,8,7,1|-dp3rw0,7,6,0|-dfqqk1,7,6,0|-dfqqk0,8,7,1|-d6a2o1,8,7,1|-d6a2o0,7,6,0|-cvmtg1,7,6,0|-cvmtg0,8,7,1|-cm2g81,8,7,1|-cm2g80,7,6,0|-cdmo41,7,6,0|-cdmo40,8,7,1|-c4kl81,8,7,1|-c4kl80,7,6,0|-bttjw1,7,6,0|-bttjw0,8,7,1|-blwd81,8,7,1|-blwd80,7,6,0|-bbtek1,7,6,0|-bbtek0,8,7,1|-b36ak1,8,7,1|-b36ak0,7,6,0|-atgak1,7,6,0|-atgak0,8,7,1|-akg7w1,8,7,1|-akg7w0,7,6,0|-6kf401,7,6,0|-6kf400,8,7,1|-6eaqo1,8,7,1|-6eaqo0,7,6,0|-64xpc1,7,6,0|-64xpc0,8,7,1|-5vko01,8,7,1|-5vko00,7,6,0|-5iyyo1,7,6,0|-5iyyo0,8,7,1|-5chmo1,8,7,1|-5chmo0,7,6,0|-534lc1,7,6,0|-534lc0,8,7,1|-4trk01,8,7,1|-4trk00,7,6,0|-4hitc1,7,6,0|-4hitc0,8,7,1|-4b1hc1,8,7,1|-4b1hc0,7,6,0|-3ysqo1,7,6,0|-3ysqo0,8,7,1|-3sbeo1,8,7,1|-3sbeo0,7,6,0|-3g2o01,7,6,0|-3g2o00,8,7,1|-39lc01,8,7,1|-39lc00,7,6,0|-2wzmo1,7,6,0|-2wzmo0,8,7,1|-2qv9c1,8,7,1|-2qv9c0,7,6,0|3s9jzz,7,6,0|3s9k00,8,7,1|419mnz,8,7,1|419mo0,7,6,0|4azmnz,7,6,0|4azmo0,8,7,1|4kcnzz,8,7,1|4kco00,7,6,0|4tppbz,7,6,0|4tppc0,8,7,1|532qnz,8,7,1|532qo0,7,6,0|5csqnz,7,6,0|5csqo0,8,7,1|5lstbz,8,7,1|5lstc0,7,6,0|5v5unz,7,6,0|5v5uo0,8,7,1|64ivzz,8,7,1|64iw00,7,6,0|6dvxbz,7,6,0|6dvxc0,8,7,1|6n8ynz,8,7,1|6n8yo0,7,6,0|6wlzzz,7,6,0|6wm000,8,7,1|75z1bz,8,7,1|75z1c0,7,6,0|7fc2nz,7,6,0|7fc2o0,8,7,1|7p22nz,8,7,1|7p22o0,7,6,0|7yf3zz,7,6,0|7yf400,8,7,1|87s5bz,8,7,1|87s5c0,7,6,0|8h56nz,7,6,0|8h56o0,8,7,1|8qi7zz,8,7,1|8qi800,7,6,0|8zv9bz,7,6,0|8zv9c0,8,7,1|998anz,8,7,1|998ao0,7,6,0|9ilerz,7,6,0|9iles0,8,7,1|9ryg3z,8,7,1|9ryg40,7,6,0|a1bhfz,7,6,0|a1bhg0,8,7,1|aaoirz,8,7,1|aaois0,7,6,0|ak1k3z,7,6,0|ak1k40,8,7,1|atrk3z,8,7,1|atrk40,7,6,0|b34lfz,7,6,0|b34lg0,8,7,1|bchmrz,8,7,1|bchms0,7,6,0|bluo3z,7,6,0|bluo40,8,7,1|bv7pfz,8,7,1|bv7pg0,7,6,0|c4kqrz,7,6,0|c4kqs0,8,7,1|cdxs3z,8,7,1|cdxs40,7,6,0|cnatfz,7,6,0|cnatg0,8,7,1|cwnurz,8,7,1|cwnus0,7,6,0|d60w3z,7,6,0|d60w40,8,7,1|dfdxfz,8,7,1|dfdxg0,7,6,0|dp3xfz,7,6,0|dp3xg0,8,7,1|dzwtfz,8,7,1|dzwtg0,7,6,0|e7u03z,7,6,0|e7u040,8,7,1|eimw3z,8,7,1|eimw40,7,6,0|eqk2rz,7,6,0|eqk2s0,8,7,1|f1cyrz,8,7,1|f1cys0,7,6,0|f9a5fz,7,6,0|f9a5g0,8,7,1|fkg03z,8,7,1|fkg040,7,6,0|fs083z,7,6,0|fs0840,8,7,1|g362rz,8,7,1|g362s0,7,6,0|gaqarz,7,6,0|gaqas0,8,7,1|glw5fz,8,7,1|glw5g0,7,6,0|gttc3z,7,6,0|gttc40,8,7,1|h4m83z,8,7,1|h4m840,7,6,0|hcjerz,7,6,0|hcjes0,8,7,1|hncarz,8,7,1|hncas0,7,6,0|hv9hfz,7,6,0|hv9hg0,8,7,1|i6fc3z,8,7,1|i6fc40,7,6,0|idzk3z,7,6,0|idzk40,8,7,1|ip5erz,8,7,1|ip5es0,7,6,0|iwpmrz,7,6,0|iwpms0,8,7,1|j7vhfz,8,7,1|j7vhg0,7,6,0|jffpfz,7,6,0|jffpg0,8,7,1|jqlk3z,8,7,1|jqlk40,7,6,0|jyiqrz,7,6,0|jyiqs0,8,7,1|k9bmrz,8,7,1|k9bms0,7,6,0|kh8tfz,7,6,0|kh8tg0,8,7,1|ks1pfz,8,7,1|ks1pg0,7,6,0|kzyw3z,7,6,0|kzyw40,8,7,1|lb4qrz,8,7,1|lb4qs0,7,6,0|lioyrz,7,6,0|lioys0,8,7,1|ltutfz,8,7,1|ltutg0,7,6,0|m1f1fz,7,6,0|m1f1g0,8,7,1|mckw3z,8,7,1|mckw40,7,6,0|mki2rz,7,6,0|mki2s0,8,7,1|mvayrz,8,7,1|mvays0,7,6,0|n385fz,7,6,0|n385g0,8,7,1|ne11fz,8,7,1|ne11g0,7,6,0|nly83z,7,6,0|nly840,8,7,1|nwr43z,8,7,1|nwr440,7,6,0|o4oarz,7,6,0|o4oas0,8,7,1|ofu5fz,8,7,1|ofu5g0,7,6,0|onedfz,7,6,0|onedg0,8,7,1|oyk83z,8,7,1|oyk840,7,6,0|p64g3z,7,6,0|p64g40,8,7,1|phaarz,8,7,1|phaas0,7,6,0|pp7hfz,7,6,0|pp7hg0,8,7,1|q00dfz,8,7,1|q00dg0,7,6,0|q7xk3z,7,6,0|q7xk40,8,7,1|qiqg3z,8,7,1|qiqg40,7,6,0|qqnmrz,7,6,0|qqnms0,8,7,1|r1thfz,8,7,1|r1thg0,7,6,0|r9dpfz,7,6,0|r9dpg0,8,7,1|rkjk3z,8,7,1|rkjk40,7,6,0|rs3s3z,7,6,0|rs3s40,8,7,1|s39mrz,8,7,1|s39ms0,7,6,0|sb6tfz,7,6,0|sb6tg0,8,7,1|slzpfz,8,7,1|slzpg0,7,6,0|stww3z,7,6,0|stww40,8,7,1|t4ps3z,8,7,1|t4ps40,7,6,0|tcmyrz,7,6,0|tcmys0,8,7,1|tnfurz,8,7,1|tnfus0,7,6,0|tvd1fz,7,6,0|tvd1g0,8,7,1|u6iw3z,8,7,1|u6iw40,7,6,0|ue343z,7,6,0|ue3440,8,7,1|up8yrz,8,7,1|up8ys0,7,6,0|uwt6rz,7,6,0|uwt6s0,8,7,1|v7z1fz,8,7,1|v7z1g0,7,6,0|vfw83z,7,6,0|vfw840,8,7,1|vqp43z,8,7,1|vqp440,7,6,0|vymarz,7,6,0|vymas0,8,7,1|w9f6rz,8,7,1|w9f6s0,7,6,0|whcdfz,7,6,0|whcdg0,8,7,1|wsi83z,8,7,1|wsi840,7,6,0|x02g3z,7,6,0|x02g40,8,7,1|xb8arz,8,7,1|xb8as0,7,6,0|xisirz,7,6,0|xisis0,8,7,1|xtydfz,8,7,1|xtydg0,7,6,0|y1ilfz,7,6,0|y1ilg0,8,7,1|ycog3z,8,7,1|ycog40,7,6,0|yklmrz,7,6,0|yklms0,8,7,1|yveirz,8,7,1|yveis0,7,6,0|z3bpfz,7,6,0|z3bpg0,8,7,1|ze4lfz,8,7,1|ze4lg0,7,6,0","Europe/Zaporozhye|,0,183,0|-1ayy96g,142,301,0|-nu12hd,142,301,0|-nu12hc,10,7,0|-kmr1k1,10,7,0|-kmr1k0,132,11,0|-esq0c1,132,11,0|-esq0c0,8,7,1|-e6dzw1,8,7,1|-e6dzw0,7,6,0|-dytrw1,7,6,0|-dytrw0,8,7,1|-dp3rw1,8,7,1|-dp3rw0,7,6,0|-do11g1,7,6,0|-do11g0,132,11,0|5vb6bz,132,11,0|5vb6c0,133,144,1|64pzjz,133,144,1|64pzk0,132,11,0|6e33nz,132,11,0|6e33o0,133,144,1|6nhwvz,133,144,1|6nhww0,132,11,0|6wv0zz,132,11,0|6wv100,133,144,1|769u7z,133,144,1|769u80,132,11,0|7foszz,132,11,0|7fot00,133,144,1|7p1zvz,133,144,1|7p1zw0,132,11,0|7yf17z,132,11,0|7yf180,133,144,1|87s2jz,133,144,1|87s2k0,132,11,0|8h53vz,132,11,0|8h53w0,133,144,1|8qi57z,133,144,1|8qi580,132,11,0|8zv6jz,132,11,0|8zv6k0,133,144,1|9987vz,133,144,1|9987w0,132,11,0|9il97z,132,11,0|9il980,133,144,1|9ryajz,133,144,1|9ryak0,132,11,0|a1bbvz,132,11,0|a1bbw0,133,144,1|aaod7z,133,144,1|aaod80,132,11,0|ak1ejz,132,11,0|ak1ek0,133,144,1|atrejz,133,144,1|atrek0,132,11,0|b34fvz,132,11,0|b34fw0,11,11,1|bchbnz,11,11,1|bchbo0,10,7,0|blufrz,10,7,0|blufs0,11,11,1|bv7ebz,11,11,1|bv7ec0,10,7,0|c4kifz,10,7,0|c4kig0,11,11,1|cdxgzz,11,11,1|cdxh00,10,7,0|cnal3z,10,7,0|cnal40,11,11,1|cwnjnz,11,11,1|cwnjo0,10,7,0|d60w3z,10,7,0|d60w40,11,11,1|dfdxfz,11,11,1|dfdxg0,10,7,0|dp3xfz,10,7,0|dp3xg0,11,11,1|dzwtfz,11,11,1|dzwtg0,10,7,0|e7u03z,10,7,0|e7u040,11,11,1|eimw3z,11,11,1|eimw40,10,7,0|eqk2rz,10,7,0|eqk2s0,11,11,1|f1cyrz,11,11,1|f1cys0,10,7,0|f9a5fz,10,7,0|f9a5g0,11,11,1|fkg03z,11,11,1|fkg040,10,7,0|fs083z,10,7,0|fs0840,11,11,1|g362rz,11,11,1|g362s0,10,7,0|gaqarz,10,7,0|gaqas0,11,11,1|glw5fz,11,11,1|glw5g0,10,7,0|gttc3z,10,7,0|gttc40,11,11,1|h4m83z,11,11,1|h4m840,10,7,0|hcjerz,10,7,0|hcjes0,11,11,1|hncarz,11,11,1|hncas0,10,7,0|hv9hfz,10,7,0|hv9hg0,11,11,1|i6fc3z,11,11,1|i6fc40,10,7,0|idzk3z,10,7,0|idzk40,11,11,1|ip5erz,11,11,1|ip5es0,10,7,0|iwpmrz,10,7,0|iwpms0,11,11,1|j7vhfz,11,11,1|j7vhg0,10,7,0|jffpfz,10,7,0|jffpg0,11,11,1|jqlk3z,11,11,1|jqlk40,10,7,0|jyiqrz,10,7,0|jyiqs0,11,11,1|k9bmrz,11,11,1|k9bms0,10,7,0|kh8tfz,10,7,0|kh8tg0,11,11,1|ks1pfz,11,11,1|ks1pg0,10,7,0|kzyw3z,10,7,0|kzyw40,11,11,1|lb4qrz,11,11,1|lb4qs0,10,7,0|lioyrz,10,7,0|lioys0,11,11,1|ltutfz,11,11,1|ltutg0,10,7,0|m1f1fz,10,7,0|m1f1g0,11,11,1|mckw3z,11,11,1|mckw40,10,7,0|mki2rz,10,7,0|mki2s0,11,11,1|mvayrz,11,11,1|mvays0,10,7,0|n385fz,10,7,0|n385g0,11,11,1|ne11fz,11,11,1|ne11g0,10,7,0|nly83z,10,7,0|nly840,11,11,1|nwr43z,11,11,1|nwr440,10,7,0|o4oarz,10,7,0|o4oas0,11,11,1|ofu5fz,11,11,1|ofu5g0,10,7,0|onedfz,10,7,0|onedg0,11,11,1|oyk83z,11,11,1|oyk840,10,7,0|p64g3z,10,7,0|p64g40,11,11,1|phaarz,11,11,1|phaas0,10,7,0|pp7hfz,10,7,0|pp7hg0,11,11,1|q00dfz,11,11,1|q00dg0,10,7,0|q7xk3z,10,7,0|q7xk40,11,11,1|qiqg3z,11,11,1|qiqg40,10,7,0|qqnmrz,10,7,0|qqnms0,11,11,1|r1thfz,11,11,1|r1thg0,10,7,0|r9dpfz,10,7,0|r9dpg0,11,11,1|rkjk3z,11,11,1|rkjk40,10,7,0|rs3s3z,10,7,0|rs3s40,11,11,1|s39mrz,11,11,1|s39ms0,10,7,0|sb6tfz,10,7,0|sb6tg0,11,11,1|slzpfz,11,11,1|slzpg0,10,7,0|stww3z,10,7,0|stww40,11,11,1|t4ps3z,11,11,1|t4ps40,10,7,0|tcmyrz,10,7,0|tcmys0,11,11,1|tnfurz,11,11,1|tnfus0,10,7,0|tvd1fz,10,7,0|tvd1g0,11,11,1|u6iw3z,11,11,1|u6iw40,10,7,0|ue343z,10,7,0|ue3440,11,11,1|up8yrz,11,11,1|up8ys0,10,7,0|uwt6rz,10,7,0|uwt6s0,11,11,1|v7z1fz,11,11,1|v7z1g0,10,7,0|vfw83z,10,7,0|vfw840,11,11,1|vqp43z,11,11,1|vqp440,10,7,0|vymarz,10,7,0|vymas0,11,11,1|w9f6rz,11,11,1|w9f6s0,10,7,0|whcdfz,10,7,0|whcdg0,11,11,1|wsi83z,11,11,1|wsi840,10,7,0|x02g3z,10,7,0|x02g40,11,11,1|xb8arz,11,11,1|xb8as0,10,7,0|xisirz,10,7,0|xisis0,11,11,1|xtydfz,11,11,1|xtydg0,10,7,0|y1ilfz,10,7,0|y1ilg0,11,11,1|ycog3z,11,11,1|ycog40,10,7,0|yklmrz,10,7,0|yklms0,11,11,1|yveirz,11,11,1|yveis0,10,7,0|z3bpfz,10,7,0|z3bpg0,11,11,1|ze4lfz,11,11,1|ze4lg0,10,7,0","Europe/Zurich|,0,302,0|-1os49kw,41,303,0|-13g441n,41,303,0|-13g441m,7,6,0|-eyh6o1,7,6,0|-eyh6o0,8,7,1|-eqk001,8,7,1|-eqk000,7,6,0|-efr401,7,6,0|-efr400,8,7,1|-e7txc1,8,7,1|-e7txc0,7,6,0|5v5xfz,7,6,0|5v5xg0,8,7,1|64iyrz,8,7,1|64iys0,7,6,0|6dw03z,7,6,0|6dw040,8,7,1|6n91fz,8,7,1|6n91g0,7,6,0|6wm2rz,7,6,0|6wm2s0,8,7,1|75z43z,8,7,1|75z440,7,6,0|7fc5fz,7,6,0|7fc5g0,8,7,1|7p25fz,8,7,1|7p25g0,7,6,0|7yf6rz,7,6,0|7yf6s0,8,7,1|87s83z,8,7,1|87s840,7,6,0|8h59fz,7,6,0|8h59g0,8,7,1|8qiarz,8,7,1|8qias0,7,6,0|8zvc3z,7,6,0|8zvc40,8,7,1|998dfz,8,7,1|998dg0,7,6,0|9ilerz,7,6,0|9iles0,8,7,1|9ryg3z,8,7,1|9ryg40,7,6,0|a1bhfz,7,6,0|a1bhg0,8,7,1|aaoirz,8,7,1|aaois0,7,6,0|ak1k3z,7,6,0|ak1k40,8,7,1|atrk3z,8,7,1|atrk40,7,6,0|b34lfz,7,6,0|b34lg0,8,7,1|bchmrz,8,7,1|bchms0,7,6,0|bluo3z,7,6,0|bluo40,8,7,1|bv7pfz,8,7,1|bv7pg0,7,6,0|c4kqrz,7,6,0|c4kqs0,8,7,1|cdxs3z,8,7,1|cdxs40,7,6,0|cnatfz,7,6,0|cnatg0,8,7,1|cwnurz,8,7,1|cwnus0,7,6,0|d60w3z,7,6,0|d60w40,8,7,1|dfdxfz,8,7,1|dfdxg0,7,6,0|dp3xfz,7,6,0|dp3xg0,8,7,1|dzwtfz,8,7,1|dzwtg0,7,6,0|e7u03z,7,6,0|e7u040,8,7,1|eimw3z,8,7,1|eimw40,7,6,0|eqk2rz,7,6,0|eqk2s0,8,7,1|f1cyrz,8,7,1|f1cys0,7,6,0|f9a5fz,7,6,0|f9a5g0,8,7,1|fkg03z,8,7,1|fkg040,7,6,0|fs083z,7,6,0|fs0840,8,7,1|g362rz,8,7,1|g362s0,7,6,0|gaqarz,7,6,0|gaqas0,8,7,1|glw5fz,8,7,1|glw5g0,7,6,0|gttc3z,7,6,0|gttc40,8,7,1|h4m83z,8,7,1|h4m840,7,6,0|hcjerz,7,6,0|hcjes0,8,7,1|hncarz,8,7,1|hncas0,7,6,0|hv9hfz,7,6,0|hv9hg0,8,7,1|i6fc3z,8,7,1|i6fc40,7,6,0|idzk3z,7,6,0|idzk40,8,7,1|ip5erz,8,7,1|ip5es0,7,6,0|iwpmrz,7,6,0|iwpms0,8,7,1|j7vhfz,8,7,1|j7vhg0,7,6,0|jffpfz,7,6,0|jffpg0,8,7,1|jqlk3z,8,7,1|jqlk40,7,6,0|jyiqrz,7,6,0|jyiqs0,8,7,1|k9bmrz,8,7,1|k9bms0,7,6,0|kh8tfz,7,6,0|kh8tg0,8,7,1|ks1pfz,8,7,1|ks1pg0,7,6,0|kzyw3z,7,6,0|kzyw40,8,7,1|lb4qrz,8,7,1|lb4qs0,7,6,0|lioyrz,7,6,0|lioys0,8,7,1|ltutfz,8,7,1|ltutg0,7,6,0|m1f1fz,7,6,0|m1f1g0,8,7,1|mckw3z,8,7,1|mckw40,7,6,0|mki2rz,7,6,0|mki2s0,8,7,1|mvayrz,8,7,1|mvays0,7,6,0|n385fz,7,6,0|n385g0,8,7,1|ne11fz,8,7,1|ne11g0,7,6,0|nly83z,7,6,0|nly840,8,7,1|nwr43z,8,7,1|nwr440,7,6,0|o4oarz,7,6,0|o4oas0,8,7,1|ofu5fz,8,7,1|ofu5g0,7,6,0|onedfz,7,6,0|onedg0,8,7,1|oyk83z,8,7,1|oyk840,7,6,0|p64g3z,7,6,0|p64g40,8,7,1|phaarz,8,7,1|phaas0,7,6,0|pp7hfz,7,6,0|pp7hg0,8,7,1|q00dfz,8,7,1|q00dg0,7,6,0|q7xk3z,7,6,0|q7xk40,8,7,1|qiqg3z,8,7,1|qiqg40,7,6,0|qqnmrz,7,6,0|qqnms0,8,7,1|r1thfz,8,7,1|r1thg0,7,6,0|r9dpfz,7,6,0|r9dpg0,8,7,1|rkjk3z,8,7,1|rkjk40,7,6,0|rs3s3z,7,6,0|rs3s40,8,7,1|s39mrz,8,7,1|s39ms0,7,6,0|sb6tfz,7,6,0|sb6tg0,8,7,1|slzpfz,8,7,1|slzpg0,7,6,0|stww3z,7,6,0|stww40,8,7,1|t4ps3z,8,7,1|t4ps40,7,6,0|tcmyrz,7,6,0|tcmys0,8,7,1|tnfurz,8,7,1|tnfus0,7,6,0|tvd1fz,7,6,0|tvd1g0,8,7,1|u6iw3z,8,7,1|u6iw40,7,6,0|ue343z,7,6,0|ue3440,8,7,1|up8yrz,8,7,1|up8ys0,7,6,0|uwt6rz,7,6,0|uwt6s0,8,7,1|v7z1fz,8,7,1|v7z1g0,7,6,0|vfw83z,7,6,0|vfw840,8,7,1|vqp43z,8,7,1|vqp440,7,6,0|vymarz,7,6,0|vymas0,8,7,1|w9f6rz,8,7,1|w9f6s0,7,6,0|whcdfz,7,6,0|whcdg0,8,7,1|wsi83z,8,7,1|wsi840,7,6,0|x02g3z,7,6,0|x02g40,8,7,1|xb8arz,8,7,1|xb8as0,7,6,0|xisirz,7,6,0|xisis0,8,7,1|xtydfz,8,7,1|xtydg0,7,6,0|y1ilfz,7,6,0|y1ilg0,8,7,1|ycog3z,8,7,1|ycog40,7,6,0|yklmrz,7,6,0|yklms0,8,7,1|yveirz,8,7,1|yveis0,7,6,0|z3bpfz,7,6,0|z3bpg0,8,7,1|ze4lfz,8,7,1|ze4lg0,7,6,0","Indian/Mahe|,0,304,0|-wvp8xo,89,144,0","Indian/Maldives|,0,305,0|-1ayyga0,19,305,0|-57x6y1,19,305,0|-57x6y0,82,134,0","Indian/Mauritius|,0,306,0|-wvp9bc,89,144,0|6nykvz,89,144,0|6nykw0,82,134,1|6wai3z,82,134,1|6wai40,89,144,0|k9befz,89,144,0|k9beg0,82,134,1|kh8ibz,82,134,1|kh8ic0,89,144,0","Indian/Reunion|,0,307,0|-uks29s,89,144,0","Pacific/Apia|,0,308,0|-14fxxj4,0,309,0|-usiiv5,0,309,0|-usiiv4,143,310,0|-afqw21,143,310,0|-afqw20,144,311,0|l9cp7z,144,311,0|l9cp80,145,31,1|lj12vz,145,31,1|lj12w0,144,311,0|ls15jz,144,311,0|ls15k0,145,31,1|lx0h3z,145,31,1|lx0h40,87,141,1|m1r5jz,87,141,1|m1r5k0,86,140,0|mb46vz,86,140,0|mb46w0,87,141,1|mku6vz,87,141,1|mku6w0,86,140,0|mtu9jz,86,140,0|mtu9k0,87,141,1|n3k9jz,87,141,1|n3k9k0,86,140,0|nckc7z,86,140,0|nckc80,87,141,1|nmac7z,87,141,1|nmac80,86,140,0|nvaevz,86,140,0|nvaew0,87,141,1|o50evz,87,141,1|o50ew0,86,140,0|oe0hjz,86,140,0|oe0hk0,87,141,1|onqhjz,87,141,1|onqhk0,86,140,0|owqk7z,86,140,0|owqk80,87,141,1|p6gk7z,87,141,1|p6gk80,86,140,0|pftljz,86,140,0|pftlk0,87,141,1|ppjljz,87,141,1|ppjlk0,86,140,0|pyjo7z,86,140,0|pyjo80,87,141,1|q89o7z,87,141,1|q89o80,86,140,0|qh9qvz,86,140,0|qh9qw0,87,141,1|qqzqvz,87,141,1|qqzqw0,86,140,0|qzztjz,86,140,0|qzztk0,87,141,1|r9ptjz,87,141,1|r9ptk0,86,140,0|ripw7z,86,140,0|ripw80,87,141,1|rsfw7z,87,141,1|rsfw80,86,140,0|s1fyvz,86,140,0|s1fyw0,87,141,1|sbixjz,87,141,1|sbixk0,86,140,0|skj07z,86,140,0|skj080,87,141,1|su907z,87,141,1|su9080,86,140,0|t392vz,86,140,0|t392w0,87,141,1|tcz2vz,87,141,1|tcz2w0,86,140,0|tlz5jz,86,140,0|tlz5k0,87,141,1|tvp5jz,87,141,1|tvp5k0,86,140,0|u4p87z,86,140,0|u4p880,87,141,1|uef87z,87,141,1|uef880,86,140,0|unfavz,86,140,0|unfaw0,87,141,1|ux5avz,87,141,1|ux5aw0,86,140,0|v6ic7z,86,140,0|v6ic80,87,141,1|vg8c7z,87,141,1|vg8c80,86,140,0|vp8evz,86,140,0|vp8ew0,87,141,1|vyyevz,87,141,1|vyyew0,86,140,0|w7yhjz,86,140,0|w7yhk0,87,141,1|whohjz,87,141,1|whohk0,86,140,0|wqok7z,86,140,0|wqok80,87,141,1|x0ek7z,87,141,1|x0ek80,86,140,0|x9emvz,86,140,0|x9emw0,87,141,1|xj4mvz,87,141,1|xj4mw0,86,140,0|xs4pjz,86,140,0|xs4pk0,87,141,1|y1upjz,87,141,1|y1upk0,86,140,0|yb7qvz,86,140,0|yb7qw0,87,141,1|ykxqvz,87,141,1|ykxqw0,86,140,0|ytxtjz,86,140,0|ytxtk0,87,141,1|z3ntjz,87,141,1|z3ntk0,86,140,0|zcnw7z,86,140,0|zcnw80,87,141,1","Pacific/Auckland|,0,312,0|-1gsoz14,146,313,0|-m01p21,146,313,0|-m01p20,147,314,1|-ltxei1,147,314,1|-ltxei0,146,313,0|-lieie1,146,313,0|-lieie0,147,139,1|-lahd41,147,139,1|-lahd40,146,313,0|-kzofq1,146,313,0|-kzofq0,147,139,1|-krrag1,147,139,1|-krrag0,146,313,0|-kgyd21,146,313,0|-kgyd20,147,139,1|-k917s1,147,139,1|-k917s0,146,313,0|-jy8ae1,146,313,0|-jy8ae0,147,139,1|-jpy6g1,147,139,1|-jpy6g0,146,313,0|-jfi7q1,146,313,0|-jfi7q0,147,139,1|-j783s1,147,139,1|-j783s0,146,313,0|-iws521,146,313,0|-iws520,147,139,1|-imc941,147,139,1|-imc940,146,313,0|-ief121,146,313,0|-ief120,147,139,1|-i3m6g1,147,139,1|-i3m6g0,146,313,0|-hvoye1,146,313,0|-hvoye0,147,139,1|-hkw3s1,147,139,1|-hkw3s0,146,313,0|-hcyvq1,146,313,0|-hcyvq0,147,139,1|-h26141,147,139,1|-h26140,146,313,0|-gu8t21,146,313,0|-gu8t20,147,139,1|-gjfyg1,147,139,1|-gjfyg0,146,313,0|-gbiqe1,146,313,0|-gbiqe0,147,139,1|-g0cx41,147,139,1|-g0cx40,146,313,0|-fssnq1,146,313,0|-fssnq0,147,139,1|-fhmug1,147,139,1|-fhmug0,146,313,0|-f9pme1,146,313,0|-f9pme0,147,139,1|-ciy9c1,147,139,1|-ciy9c0,147,139,0|2ivg7z,147,139,0|2ivg80,148,140,1|2omuvz,148,140,1|2omuw0,147,139,0|318k7z,147,139,0|318k80,148,140,1|382uvz,148,140,1|382uw0,147,139,0|3kbljz,147,139,0|3kblk0,148,140,1|3qsxjz,148,140,1|3qsxk0,147,139,0|431o7z,147,139,0|431o80,148,140,1|49j07z,148,140,1|49j080,147,139,0|4lrqvz,147,139,0|4lrqw0,148,140,1|4s92vz,148,140,1|4s92w0,147,139,0|54htjz,147,139,0|54htk0,148,140,1|5az5jz,148,140,1|5az5k0,147,139,0|5n7w7z,147,139,0|5n7w80,148,140,1|5tp87z,148,140,1|5tp880,147,139,0|65xyvz,147,139,0|65xyw0,148,140,1|6cs9jz,148,140,1|6cs9k0,147,139,0|6p107z,147,139,0|6p1080,148,140,1|6vic7z,148,140,1|6vic80,147,139,0|77r2vz,147,139,0|77r2w0,148,140,1|7e8evz,148,140,1|7e8ew0,147,139,0|7qh5jz,147,139,0|7qh5k0,148,140,1|7wyhjz,148,140,1|7wyhk0,147,139,0|89787z,147,139,0|897880,148,140,1|8fok7z,148,140,1|8fok80,147,139,0|8rxavz,147,139,0|8rxaw0,148,140,1|8yemvz,148,140,1|8yemw0,147,139,0|9andjz,147,139,0|9andk0,148,140,1|9hho7z,148,140,1|9hho80,147,139,0|9tqevz,147,139,0|9tqew0,148,140,1|a07qvz,148,140,1|a07qw0,147,139,0|abdljz,147,139,0|abdlk0,148,140,1|ajnqvz,148,140,1|ajnqw0,147,139,0|au3o7z,147,139,0|au3o80,148,140,1|b2dtjz,148,140,1|b2dtk0,147,139,0|bctqvz,147,139,0|bctqw0,148,140,1|bl3w7z,148,140,1|bl3w80,147,139,0|bvjtjz,147,139,0|bvjtk0,148,140,1|c46xjz,148,140,1|c46xk0,147,139,0|ce9w7z,147,139,0|ce9w80,148,140,1|cmx07z,148,140,1|cmx080,147,139,0|cwzyvz,147,139,0|cwzyw0,148,140,1|d5n2vz,148,140,1|d5n2w0,147,139,0|dfq1jz,147,139,0|dfq1k0,148,140,1|dod5jz,148,140,1|dod5k0,147,139,0|dyt2vz,147,139,0|dyt2w0,148,140,1|e7387z,148,140,1|e73880,147,139,0|ehj5jz,147,139,0|ehj5k0,148,140,1|eptavz,148,140,1|eptaw0,147,139,0|f0987z,147,139,0|f09880,148,140,1|f8wc7z,148,140,1|f8wc80,147,139,0|fizavz,147,139,0|fizaw0,148,140,1|frmevz,148,140,1|frmew0,147,139,0|g1pdjz,147,139,0|g1pdk0,148,140,1|gachjz,148,140,1|gachk0,147,139,0|gksevz,147,139,0|gksew0,148,140,1|gt2k7z,148,140,1|gt2k80,147,139,0|h3ihjz,147,139,0|h3ihk0,148,140,1|hbsmvz,148,140,1|hbsmw0,147,139,0|hm8k7z,147,139,0|hm8k80,148,140,1|huvo7z,148,140,1|huvo80,147,139,0|i4ymvz,147,139,0|i4ymw0,148,140,1|idlqvz,148,140,1|idlqw0,147,139,0|inopjz,147,139,0|inopk0,148,140,1|iwbtjz,148,140,1|iwbtk0,147,139,0|j6es7z,147,139,0|j6es80,148,140,1|jf1w7z,148,140,1|jf1w80,147,139,0|jp4uvz,147,139,0|jp4uw0,148,140,1|jyuuvz,148,140,1|jyuuw0,147,139,0|k7uxjz,147,139,0|k7uxk0,148,140,1|khkxjz,148,140,1|khkxk0,147,139,0|kql07z,147,139,0|kql080,148,140,1|l0b07z,148,140,1|l0b080,147,139,0|l9b2vz,147,139,0|l9b2w0,148,140,1|lj12vz,148,140,1|lj12w0,147,139,0|ls15jz,147,139,0|ls15k0,148,140,1|m1r5jz,148,140,1|m1r5k0,147,139,0|mb46vz,147,139,0|mb46w0,148,140,1|mku6vz,148,140,1|mku6w0,147,139,0|mtu9jz,147,139,0|mtu9k0,148,140,1|n3k9jz,148,140,1|n3k9k0,147,139,0|nckc7z,147,139,0|nckc80,148,140,1|nmac7z,148,140,1|nmac80,147,139,0|nvaevz,147,139,0|nvaew0,148,140,1|o50evz,148,140,1|o50ew0,147,139,0|oe0hjz,147,139,0|oe0hk0,148,140,1|onqhjz,148,140,1|onqhk0,147,139,0|owqk7z,147,139,0|owqk80,148,140,1|p6gk7z,148,140,1|p6gk80,147,139,0|pftljz,147,139,0|pftlk0,148,140,1|ppjljz,148,140,1|ppjlk0,147,139,0|pyjo7z,147,139,0|pyjo80,148,140,1|q89o7z,148,140,1|q89o80,147,139,0|qh9qvz,147,139,0|qh9qw0,148,140,1|qqzqvz,148,140,1|qqzqw0,147,139,0|qzztjz,147,139,0|qzztk0,148,140,1|r9ptjz,148,140,1|r9ptk0,147,139,0|ripw7z,147,139,0|ripw80,148,140,1|rsfw7z,148,140,1|rsfw80,147,139,0|s1fyvz,147,139,0|s1fyw0,148,140,1|sbixjz,148,140,1|sbixk0,147,139,0|skj07z,147,139,0|skj080,148,140,1|su907z,148,140,1|su9080,147,139,0|t392vz,147,139,0|t392w0,148,140,1|tcz2vz,148,140,1|tcz2w0,147,139,0|tlz5jz,147,139,0|tlz5k0,148,140,1|tvp5jz,148,140,1|tvp5k0,147,139,0|u4p87z,147,139,0|u4p880,148,140,1|uef87z,148,140,1|uef880,147,139,0|unfavz,147,139,0|unfaw0,148,140,1|ux5avz,148,140,1|ux5aw0,147,139,0|v6ic7z,147,139,0|v6ic80,148,140,1|vg8c7z,148,140,1|vg8c80,147,139,0|vp8evz,147,139,0|vp8ew0,148,140,1|vyyevz,148,140,1|vyyew0,147,139,0|w7yhjz,147,139,0|w7yhk0,148,140,1|whohjz,148,140,1|whohk0,147,139,0|wqok7z,147,139,0|wqok80,148,140,1|x0ek7z,148,140,1|x0ek80,147,139,0|x9emvz,147,139,0|x9emw0,148,140,1|xj4mvz,148,140,1|xj4mw0,147,139,0|xs4pjz,147,139,0|xs4pk0,148,140,1|y1upjz,148,140,1|y1upk0,147,139,0|yb7qvz,147,139,0|yb7qw0,148,140,1|ykxqvz,148,140,1|ykxqw0,147,139,0|ytxtjz,147,139,0|ytxtk0,148,140,1|z3ntjz,148,140,1|z3ntk0,147,139,0|zcnw7z,147,139,0|zcnw80,148,140,1","Pacific/Bougainville|,0,315,0|-1ayyvh4,149,316,0|-1354j8x,149,316,0|-1354j8w,94,158,0|-ecsh41,94,158,0|-ecsh40,93,157,0|-cpsbo1,93,157,0|-cpsbo0,94,158,0|nh90fz,94,158,0|nh90g0,88,142,0","Pacific/Chuuk|,0,317,0|-1t8j2rw,0,318,0|-100f5fx,0,318,0|-100f5fw,94,158,0|-su4zs1,94,158,0|-su4zs0,93,157,0|-qknl01,93,157,0|-qknl00,94,158,0|-f08x41,94,158,0|-f08x40,93,157,0|-cqtd01,93,157,0|-cqtd00,94,158,0","Pacific/Efate|,0,319,0|-u964i4,88,142,0|22nynz,88,142,0|22nyo0,85,139,1|27pfzz,85,139,1|27pg00,88,142,0|75y6rz,88,142,0|75y6s0,85,139,1|7fb5bz,85,139,1|7fb5c0,88,142,0|7oo9fz,88,142,0|7oo9g0,85,139,1|7y17zz,85,139,1|7y1800,88,142,0|87rarz,88,142,0|87ras0,85,139,1|8granz,85,139,1|8grao0,88,142,0|8qhdfz,88,142,0|8qhdg0,85,139,1|8zubzz,85,139,1|8zuc00,88,142,0|997g3z,88,142,0|997g40,85,139,1|9ikenz,85,139,1|9ikeo0,88,142,0|9rxirz,88,142,0|9rxis0,85,139,1|a1ahbz,85,139,1|a1ahc0,88,142,0|aanlfz,88,142,0|aanlg0,85,139,1|ak0jzz,85,139,1|ak0k00,88,142,0|atdo3z,88,142,0|atdo40,85,139,1|b2qmnz,85,139,1|b2qmo0,88,142,0|bcgpfz,88,142,0|bcgpg0,85,139,1|bikzzz,85,139,1|bil000,88,142,0|bwmmrz,88,142,0|bwmms0,85,139,1|c1b2nz,85,139,1|c1b2o0,88,142,0","Pacific/Fiji|,0,320,0|-sa2x4w,85,139,0|f1p2vz,85,139,0|f1p2w0,86,140,1|f7tg7z,86,140,1|f7tg80,85,139,0|fks47z,85,139,0|fks480,86,140,1|fqjivz,86,140,1|fqjiw0,85,139,0|ktto7z,85,139,0|ktto80,86,140,1|kzy1jz,86,140,1|kzy1k0,85,139,0|laqxjz,85,139,0|laqxk0,86,140,1|lhl87z,86,140,1|lhl880,85,139,0|lth07z,85,139,0|lth080,86,140,1|ly5ivz,86,140,1|ly5iw0,85,139,0|mc72vz,85,139,0|mc72w0,86,140,1|mgvljz,86,140,1|mgvlk0,85,139,0|mva47z,85,139,0|mva480,86,140,1|mzllfz,86,140,1|mzllg0,85,139,0|ned5jz,85,139,0|ned5k0,86,140,1|nibqvz,86,140,1|nibqw0,85,139,0|nx387z,85,139,0|nx3880,86,140,1|o11tjz,86,140,1|o11tk0,85,139,0|og69jz,85,139,0|og69k0,86,140,1|ojrw7z,86,140,1|ojrw80,85,139,0|oywc7z,85,139,0|oywc80,86,140,1|p2hyvz,86,140,1|p2hyw0,85,139,0|phmevz,85,139,0|phmew0,86,140,1|pl81jz,86,140,1|pl81k0,85,139,0|q0pg7z,85,139,0|q0pg80,86,140,1|q3y47z,86,140,1|q3y480,85,139,0|qllavz,85,139,0|qllaw0,86,140,1|qn15jz,86,140,1|qn15k0,85,139,0|r2ik7z,85,139,0|r2ik80,86,140,1|r5r87z,86,140,1|r5r880,85,139,0|rl8mvz,85,139,0|rl8mw0,86,140,1|rohavz,86,140,1|rohaw0,85,139,0|s3ypjz,85,139,0|s3ypk0,86,140,1|s77djz,86,140,1|s77dk0,85,139,0|smos7z,85,139,0|smos80,86,140,1|spxg7z,86,140,1|spxg80,85,139,0|t5euvz,85,139,0|t5euw0,86,140,1|t90hjz,86,140,1|t90hk0,85,139,0|to4xjz,85,139,0|to4xk0,86,140,1|trqk7z,86,140,1|trqk80,85,139,0|u77yvz,85,139,0|u77yw0,86,140,1|uagmvz,86,140,1|uagmw0,85,139,0|upy1jz,85,139,0|upy1k0,86,140,1|ut6pjz,86,140,1|ut6pk0,85,139,0|v8o47z,85,139,0|v8o480,86,140,1|vbws7z,86,140,1|vbws80,85,139,0|vre6vz,85,139,0|vre6w0,86,140,1|vumuvz,86,140,1|vumuw0,85,139,0|wa49jz,85,139,0|wa49k0,86,140,1|wdpw7z,86,140,1|wdpw80,85,139,0|wt7avz,85,139,0|wt7aw0,86,140,1|wwfyvz,86,140,1|wwfyw0,85,139,0|xbxdjz,85,139,0|xbxdk0,86,140,1|xf61jz,86,140,1|xf61k0,85,139,0|xung7z,85,139,0|xung80,86,140,1|xxw47z,86,140,1|xxw480,85,139,0|yddivz,85,139,0|yddiw0,86,140,1|ygm6vz,86,140,1|ygm6w0,85,139,0|yw3ljz,85,139,0|yw3lk0,86,140,1|yzp87z,86,140,1|yzp880,85,139,0|zeto7z,85,139,0|zeto80,86,140,1","Pacific/Galapagos|,0,321,0|-kcr62o,46,43,0|8cmlvz,46,43,0|8cmlw0,150,42,0|byewnz,150,42,0|byewo0,46,43,1|c1ylvz,46,43,1|c1ylw0,150,42,0","Pacific/Guadalcanal|,0,322,0|-tvowac,88,142,0","Pacific/Guam|,0,323,0|-1t8j1h0,0,324,0|-100f451,0,324,0|-100f450,151,158,0|-en8eg1,151,158,0|-en8eg0,93,157,0|-d9n501,93,157,0|-d9n500,151,158,0|-5hlkw1,151,158,0|-5hlkw0,152,142,1|-4nnvo1,152,142,1|-4nnvo0,151,158,0|-17w8w1,151,158,0|-17w8w0,152,142,1|-hih6d,152,142,1|-hih6c,151,158,0|-9y0w1,151,158,0|-9y0w0,152,142,1|-6ch01,152,142,1|-6ch00,151,158,0|5wcfz,151,158,0|5wcg0,152,142,1|cqkbz,152,142,1|cqkc0,151,158,0|omf3z,151,158,0|omf40,152,142,1|vgmzz,152,142,1|vgn00,151,158,0|22bb3z,151,158,0|22bb40,152,142,1|25wuzz,152,142,1|25wv00,151,158,0|3c75rz,151,158,0|3c75s0,152,142,1|3gq1pn,152,142,1|3gq1po,151,158,0|3tbtrz,151,158,0|3tbts0,152,142,1|3zt2zz,152,142,1|3zt300,151,158,0|g5z2vz,151,158,0|g5z2w0,153,158,0","Pacific/Honolulu|,0,325,0|-12lnw3m,154,326,0|-j50la1,154,326,0|-j50la0,155,327,1|-j3x0a1,155,327,1|-j3x0a0,154,326,0|-ek1pa1,154,326,0|-ek1pa0,156,327,1|-cq2tg1,156,327,1|-cq2tg0,157,327,1|-cnoo21,157,327,1|-cnoo20,154,326,0|-brzum1,154,326,0|-brzum0,154,31,0","Pacific/Kwajalein|,0,328,0|-100f8bk,88,142,0|-h817w1,88,142,0|-h817w0,94,158,0|-f08x41,94,158,0|-f08x40,93,157,0|-dip2c1,93,157,0|-dip2c0,88,142,0|-4r7w1,88,142,0|-4r7w0,158,329,0|cc3ynz,158,329,0|cc3yo0,85,139,0","Pacific/Majuro|,0,330,0|-100f91c,88,142,0|-su52k1,88,142,0|-su52k0,93,157,0|-qknl01,93,157,0|-qknl00,88,142,0|-h817w1,88,142,0|-h817w0,94,158,0|-f08x41,94,158,0|-f08x40,93,157,0|-dj2101,93,157,0|-dj2100,88,142,0|-4r7w1,88,142,0|-4r7w0,85,139,0","Pacific/Norfolk|,0,331,0|-100f8fs,159,332,0|-9x0ps1,159,332,0|-9x0ps0,160,313,0|2iiixz,160,313,0|2iiiy0,161,314,1|2ozuxz,161,314,1|2ozuy0,160,313,0|nvnexz,160,313,0|nvney0,88,142,0|pywpnz,88,142,0|pywpo0,85,139,1|q89qzz,85,139,1|q89r00,88,142,0|qhmsbz,88,142,0|qhmsc0,85,139,1|qqztnz,85,139,1|qqzto0,88,142,0|r0cuzz,88,142,0|r0cv00,85,139,1|r9pwbz,85,139,1|r9pwc0,88,142,0|rj2xnz,88,142,0|rj2xo0,85,139,1|rsfyzz,85,139,1|rsfz00,88,142,0|s1t0bz,88,142,0|s1t0c0,85,139,1|sbj0bz,85,139,1|sbj0c0,88,142,0|skw1nz,88,142,0|skw1o0,85,139,1|su92zz,85,139,1|su9300,88,142,0|t3m4bz,88,142,0|t3m4c0,85,139,1|tcz5nz,85,139,1|tcz5o0,88,142,0|tmc6zz,88,142,0|tmc700,85,139,1|tvp8bz,85,139,1|tvp8c0,88,142,0|u529nz,88,142,0|u529o0,85,139,1|uefazz,85,139,1|uefb00,88,142,0|unscbz,88,142,0|unscc0,85,139,1|ux5dnz,85,139,1|ux5do0,88,142,0|v6vdnz,88,142,0|v6vdo0,85,139,1|vg8ezz,85,139,1|vg8f00,88,142,0|vplgbz,88,142,0|vplgc0,85,139,1|vyyhnz,85,139,1|vyyho0,88,142,0|w8bizz,88,142,0|w8bj00,85,139,1|whokbz,85,139,1|whokc0,88,142,0|wr1lnz,88,142,0|wr1lo0,85,139,1|x0emzz,85,139,1|x0en00,88,142,0|x9robz,88,142,0|x9roc0,85,139,1|xj4pnz,85,139,1|xj4po0,88,142,0|xshqzz,88,142,0|xshr00,85,139,1|y1usbz,85,139,1|y1usc0,88,142,0|ybksbz,88,142,0|ybksc0,85,139,1|ykxtnz,85,139,1|ykxto0,88,142,0|yuauzz,88,142,0|yuav00,85,139,1|z3nwbz,85,139,1|z3nwc0,88,142,0|zd0xnz,88,142,0|zd0xo0,85,139,1","Pacific/Noumea|,0,333,0|-u9645o,88,142,0|44uerz,88,142,0|44ues0,85,139,1|497qnz,85,139,1|497qo0,88,142,0|4nkhfz,88,142,0|4nkhg0,85,139,1|4rznzz,85,139,1|4rzo00,88,142,0|e1ouzz,88,142,0|e1ov00,85,139,1|e6ddnz,85,139,1|e6ddo0,88,142,0","Pacific/Palau|,0,334,0|-1t8izkk,0,335,0|-100f28l,0,335,0|-100f28k,93,157,0","Pacific/Pohnpei|,0,336,0|-1t8j3ys,0,337,0|-100f6mt,0,337,0|-100f6ms,88,142,0|-su52k1,88,142,0|-su52k0,93,157,0|-qknl01,93,157,0|-qknl00,88,142,0|-h817w1,88,142,0|-h817w0,94,158,0|-f08x41,94,158,0|-f08x40,93,157,0|-cqtd01,93,157,0|-cqtd00,88,142,0","Pacific/Port_Moresby|,0,338,0|-1ayytx4,149,316,0|-1354j8x,149,316,0|-1354j8w,94,158,0","Pacific/Rarotonga|,0,339,0|-100djqw,162,326,0|4mj95z,162,326,0|4mj960,163,327,1|4sal1z,163,327,1|4sal20,145,31,0|54jd3z,145,31,0|54jd40,163,327,1|5b0npz,163,327,1|5b0nq0,145,31,0|5n9frz,145,31,0|5n9fs0,163,327,1|5tqqdz,163,327,1|5tqqe0,145,31,0|65zifz,145,31,0|65zig0,163,327,1|6ctrpz,163,327,1|6ctrq0,145,31,0|6p2jrz,145,31,0|6p2js0,163,327,1|6vjudz,163,327,1|6vjue0,145,31,0|77smfz,145,31,0|77smg0,163,327,1|7e9x1z,163,327,1|7e9x20,145,31,0|7qip3z,145,31,0|7qip40,163,327,1|7wzzpz,163,327,1|7wzzq0,145,31,0|898rrz,145,31,0|898rs0,163,327,1|8fq2dz,163,327,1|8fq2e0,145,31,0|8ryufz,145,31,0|8ryug0,163,327,1|8yg51z,163,327,1|8yg520,145,31,0|9aox3z,145,31,0|9aox40,163,327,1|9hj6dz,163,327,1|9hj6e0,145,31,0|9tryfz,145,31,0|9tryg0,163,327,1|a0991z,163,327,1|a09920,145,31,0|aci13z,145,31,0|aci140,163,327,1|aizbpz,163,327,1|aizbq0,145,31,0|av83rz,145,31,0|av83s0,163,327,1|b1pedz,163,327,1|b1pee0,145,31,0","Pacific/Tahiti|,0,340,0|-tvnayw,145,31,0","Pacific/Tarawa|,0,341,0|-100f9dg,85,139,0","Pacific/Tongatapu|,0,342,0|-100fbk8,164,343,0|-f4vrld,164,343,0|-f4vrlc,86,140,0|fj6mrz,86,140,0|fj6ms0,87,141,1|frmc3z,87,141,1|frmc40,86,140,0|g3i43z,86,140,0|g3i440,87,141,1|g7tlbz,87,141,1|g7tlc0,86,140,0|gm86rz,86,140,0|gm86s0,87,141,1|gqjnzz,87,141,1|gqjo00,86,140,0|og66rz,86,140,0|og66s0,87,141,1|ojrtfz,87,141,1|ojrtg0,86,140,0","Pacific/Wake|,0,344,0|-100f86s,85,139,0"],"abbrvs":"LMT|GMT|+0020|+0030|PMT|WET|WEST|CET|CEST|-01|EET|EEST|+00|+01|SAST|CAT|CAST|EAT|WAT|MMT|+0230|+0245|WAST|+0130|AST|AWT|APT|AHST|AHDT|YST|AKST|AKDT|-03|-02|AMT|-04|MST|CST|PST|MDT|CDT|BMT|ADT|-0530|CWT|CPT|-05|PDT|MWT|MPT|EST|EDT|CMT|-0430|SJMT|PWT|PPT|EWT|EPT|QMT|-0345|HMT|KMT|YDT|BST|FFMT|-0330|-0230|-0130|PPMT|SMT|SDMT|NST|NDT|NWT|NPT|NDDT|YWT|YPT|YDDT|-00|MDDT|+05|+06|+07|+12|+13|+14|+11|+04|+03|+0730|+08|+09|+10|+0530|+0630|IST|IDT|PLMT|HKT|HKST|HKWT|JST|IMT|+0720|WIB|+0930|WIT|JMT|IDDT|+0430|PKT|PKST|+0545|+0820|WITA|KST|KDT|TBMT|TMT|+0330|JDT|FMT|ACST|ACDT|AEST|AEDT|AWST|AWDT|+0120|CEMT|MSK|MSD|DMT|BDST|WEMT|MDST|RMT|LST|SET|WMT|+0220|-1130|-11|-10|NZMT|NZST|NZDT|PMMT|-06|GST|GDT|ChST|HST|HDT|HWT|HPT|-12|+1112|+1130|+1230|-1030|-0930|+1220","offsets":"-1g|0|xc|1e0|kc|fl|2s0|5k0|-2vw|-2s0|5sl|8c0|-1ek|-zg|-2g0|56o|460|60w|mn|618|-1zw|-226|6tg|6y0|7n0|2sc|2fw|1vw|360|12wo|-rrc|-rs0|-p00|-m80|-8xc|-8c0|-5k0|-aog|-b40|-74s|-jho|-jg0|-go0|-dw0|-b1h|-8z8|-gc0|-fa0|-dps|-lip|-a44|-g2g|-ce8|-ce4|-ci0|-9ow|-eq8|-eso|-g8c|-jn8|-fkd|-adw|-crn|-m9k|-jfw|-fdn|-l0g|-cxs|-gio|-74o|-b3o|-grg|-es8|-ejc|-ars|-af0|-bs0|-f94|-f9c|-kjs|-e7y|15rv|-ow5|-cmc|-9uc|-e9o|-eac|-lwa|-6m4|-fz8|-fzc|-b44|-bb8|-iio|-jpg|-glg|-id0|-bzw|-iks|-aer|-9q0|-6y0|-460|-ebu|-dpe|-jc4|-a7s|-a84|-a7o|-kr6|-de8|-ddo|-be4|-bu0|-c8p|-6go|-jdo|-ck0|-a4o|-d3a|-cy0|-cyo|-8ms|-9rg|-6zg|-jyw|-g5g|-gj0|-lo4|-ep8|-mss|-p0c|-hzo|e90|dw0|go0|jg0|6nk|wv8|xc0|1040|12w0|uk0|9b4|b40|al4|at8|884|880|98c|im4|6ko|dtc|la4|ku0|m80|l0g|p00|rs0|l7c|esc|esk|fa0|i20|6q0|gqs|gcw|n98|a8o|cqo|6ds|6hz|jr4|jqu|l56|nm0|gz0|jb5|js0|kdc|q20|qe0|6iu|6ig|ctc|ci0|tdo|cf0|fss|fz0|gd4|eva|h72|ity|j8d|kfk|n5c|l0y|rxc|m40|-189c|meo|66g|g5c|fcs|dl6|9ic|k8w|nac|9jk|c4g|8ng|qfc|ceh|nig|mhj|mi0|ctz|8an|9iw|9q0|glo|pvn|fqf|jsk|g7w|of7|o0y|b89|af5|88o|-4r4|-5aw|-c06|-986|-2uo|-4cs|-194|-34o|-42o|pnw|t60|sc8|q70|o88|ra4|qug|lgc|s04|wk|3ok|3pc|a4|4e4|3so|2h4|t6|4u0|3j8|5c8|5bo|2bw|-15o|-169|1lr|-zo|4md|5d4|5ew|5ng|97c|-1p9|-23|150|-ok|2os|53s|53c|1d8|6yh|707|9s7|ck7|1zo|2o8|4gy|78y|2b8|99w|6bc|6ao|4bg|3cc|2se|4l0|3o8|44o|30x|4os|3w0|4fc|6hc|1kw|1dm|a9o|dm0|anc|a9s|yv4|-vsw|-vy0|-uk0|wd4|vy0|yq0|st4|r8w|-12k4|s3w|v64|x4w|-glc|tmc|-13v0|qt0|-t8e|-t60|-qe0|uzk|-xc0|vpc|v3s|v40|uto|-15rg|owk|-11d8|tas|r94|-tl4|-rp4|w1g|y88|y9c|uus"}) } } if (!("Intl"in self&&Intl.PluralRules&&Intl.PluralRules.supportedLocalesOf&&function(){try{return 1===Intl.PluralRules.supportedLocalesOf("en").length}catch(l){return!1}}() )) { // Intl.PluralRules.~locale.en /* @generated */ // prettier-ignore if (Intl.PluralRules && typeof Intl.PluralRules.__addLocaleData === 'function') { Intl.PluralRules.__addLocaleData({"data":{"categories":{"cardinal":["one","other"],"ordinal":["one","two","few","other"]},"fn":function(n, ord) { var s = String(n).split('.'), v0 = !s[1], t0 = Number(s[0]) == n, n10 = t0 && s[0].slice(-1), n100 = t0 && s[0].slice(-2); if (ord) return n10 == 1 && n100 != 11 ? 'one' : n10 == 2 && n100 != 12 ? 'two' : n10 == 3 && n100 != 13 ? 'few' : 'other'; return n == 1 && v0 ? 'one' : 'other'; }},"locale":"en"}) } } if (!("Intl"in self&&Intl.NumberFormat&&function(){try{new Intl.NumberFormat("en",{style:"unit",unit:"byte"})}catch(t){return!1}return!0}()&&Intl.NumberFormat.supportedLocalesOf("en").length )) { // Intl.NumberFormat.~locale.en /* @generated */ // prettier-ignore if (Intl.NumberFormat && typeof Intl.NumberFormat.__addLocaleData === 'function') { Intl.NumberFormat.__addLocaleData({"data":{"units":{"simple":{"degree":{"long":{"other":"{0} degrees","one":"{0} degree"},"short":{"other":"{0} deg"},"narrow":{"other":"{0}°"},"perUnit":{}},"hectare":{"long":{"other":"{0} hectares","one":"{0} hectare"},"short":{"other":"{0} ha"},"narrow":{"other":"{0}ha"},"perUnit":{}},"acre":{"long":{"other":"{0} acres","one":"{0} acre"},"short":{"other":"{0} ac"},"narrow":{"other":"{0}ac"},"perUnit":{}},"percent":{"long":{"other":"{0} percent"},"short":{"other":"{0}%"},"narrow":{"other":"{0}%"},"perUnit":{}},"liter-per-kilometer":{"long":{"other":"{0} liters per kilometer","one":"{0} liter per kilometer"},"short":{"other":"{0} L/km"},"narrow":{"other":"{0}L/km"},"perUnit":{}},"mile-per-gallon":{"long":{"other":"{0} miles per gallon","one":"{0} mile per gallon"},"short":{"other":"{0} mpg"},"narrow":{"other":"{0}mpg"},"perUnit":{}},"petabyte":{"long":{"other":"{0} petabytes","one":"{0} petabyte"},"short":{"other":"{0} PB"},"narrow":{"other":"{0}PB"},"perUnit":{}},"terabyte":{"long":{"other":"{0} terabytes","one":"{0} terabyte"},"short":{"other":"{0} TB"},"narrow":{"other":"{0}TB"},"perUnit":{}},"terabit":{"long":{"other":"{0} terabits","one":"{0} terabit"},"short":{"other":"{0} Tb"},"narrow":{"other":"{0}Tb"},"perUnit":{}},"gigabyte":{"long":{"other":"{0} gigabytes","one":"{0} gigabyte"},"short":{"other":"{0} GB"},"narrow":{"other":"{0}GB"},"perUnit":{}},"gigabit":{"long":{"other":"{0} gigabits","one":"{0} gigabit"},"short":{"other":"{0} Gb"},"narrow":{"other":"{0}Gb"},"perUnit":{}},"megabyte":{"long":{"other":"{0} megabytes","one":"{0} megabyte"},"short":{"other":"{0} MB"},"narrow":{"other":"{0}MB"},"perUnit":{}},"megabit":{"long":{"other":"{0} megabits","one":"{0} megabit"},"short":{"other":"{0} Mb"},"narrow":{"other":"{0}Mb"},"perUnit":{}},"kilobyte":{"long":{"other":"{0} kilobytes","one":"{0} kilobyte"},"short":{"other":"{0} kB"},"narrow":{"other":"{0}kB"},"perUnit":{}},"kilobit":{"long":{"other":"{0} kilobits","one":"{0} kilobit"},"short":{"other":"{0} kb"},"narrow":{"other":"{0}kb"},"perUnit":{}},"byte":{"long":{"other":"{0} bytes","one":"{0} byte"},"short":{"other":"{0} byte"},"narrow":{"other":"{0}B"},"perUnit":{}},"bit":{"long":{"other":"{0} bits","one":"{0} bit"},"short":{"other":"{0} bit"},"narrow":{"other":"{0}bit"},"perUnit":{}},"year":{"long":{"other":"{0} years","one":"{0} year"},"short":{"other":"{0} yrs","one":"{0} yr"},"narrow":{"other":"{0}y"},"perUnit":{"long":"{0} per year","short":"{0}/y","narrow":"{0}/y"}},"month":{"long":{"other":"{0} months","one":"{0} month"},"short":{"other":"{0} mths","one":"{0} mth"},"narrow":{"other":"{0}m"},"perUnit":{"long":"{0} per month","short":"{0}/m","narrow":"{0}/m"}},"week":{"long":{"other":"{0} weeks","one":"{0} week"},"short":{"other":"{0} wks","one":"{0} wk"},"narrow":{"other":"{0}w"},"perUnit":{"long":"{0} per week","short":"{0}/w","narrow":"{0}/w"}},"day":{"long":{"other":"{0} days","one":"{0} day"},"short":{"other":"{0} days","one":"{0} day"},"narrow":{"other":"{0}d"},"perUnit":{"long":"{0} per day","short":"{0}/d","narrow":"{0}/d"}},"hour":{"long":{"other":"{0} hours","one":"{0} hour"},"short":{"other":"{0} hr"},"narrow":{"other":"{0}h"},"perUnit":{"long":"{0} per hour","short":"{0}/h","narrow":"{0}/h"}},"minute":{"long":{"other":"{0} minutes","one":"{0} minute"},"short":{"other":"{0} min"},"narrow":{"other":"{0}m"},"perUnit":{"long":"{0} per minute","short":"{0}/min","narrow":"{0}/min"}},"second":{"long":{"other":"{0} seconds","one":"{0} second"},"short":{"other":"{0} sec"},"narrow":{"other":"{0}s"},"perUnit":{"long":"{0} per second","short":"{0}/s","narrow":"{0}/s"}},"millisecond":{"long":{"other":"{0} milliseconds","one":"{0} millisecond"},"short":{"other":"{0} ms"},"narrow":{"other":"{0}ms"},"perUnit":{}},"kilometer":{"long":{"other":"{0} kilometers","one":"{0} kilometer"},"short":{"other":"{0} km"},"narrow":{"other":"{0}km"},"perUnit":{"long":"{0} per kilometer","short":"{0}/km","narrow":"{0}/km"}},"meter":{"long":{"other":"{0} meters","one":"{0} meter"},"short":{"other":"{0} m"},"narrow":{"other":"{0}m"},"perUnit":{"long":"{0} per meter","short":"{0}/m","narrow":"{0}/m"}},"centimeter":{"long":{"other":"{0} centimeters","one":"{0} centimeter"},"short":{"other":"{0} cm"},"narrow":{"other":"{0}cm"},"perUnit":{"long":"{0} per centimeter","short":"{0}/cm","narrow":"{0}/cm"}},"millimeter":{"long":{"other":"{0} millimeters","one":"{0} millimeter"},"short":{"other":"{0} mm"},"narrow":{"other":"{0}mm"},"perUnit":{}},"mile":{"long":{"other":"{0} miles","one":"{0} mile"},"short":{"other":"{0} mi"},"narrow":{"other":"{0}mi"},"perUnit":{}},"yard":{"long":{"other":"{0} yards","one":"{0} yard"},"short":{"other":"{0} yd"},"narrow":{"other":"{0}yd"},"perUnit":{}},"foot":{"long":{"other":"{0} feet","one":"{0} foot"},"short":{"other":"{0} ft"},"narrow":{"other":"{0}′"},"perUnit":{"long":"{0} per foot","short":"{0}/ft","narrow":"{0}/ft"}},"inch":{"long":{"other":"{0} inches","one":"{0} inch"},"short":{"other":"{0} in"},"narrow":{"other":"{0}″"},"perUnit":{"long":"{0} per inch","short":"{0}/in","narrow":"{0}/in"}},"mile-scandinavian":{"long":{"other":"{0} miles-scandinavian","one":"{0} mile-scandinavian"},"short":{"other":"{0} smi"},"narrow":{"other":"{0}smi"},"perUnit":{}},"kilogram":{"long":{"other":"{0} kilograms","one":"{0} kilogram"},"short":{"other":"{0} kg"},"narrow":{"other":"{0}kg"},"perUnit":{"long":"{0} per kilogram","short":"{0}/kg","narrow":"{0}/kg"}},"gram":{"long":{"other":"{0} grams","one":"{0} gram"},"short":{"other":"{0} g"},"narrow":{"other":"{0}g"},"perUnit":{"long":"{0} per gram","short":"{0}/g","narrow":"{0}/g"}},"stone":{"long":{"other":"{0} stones","one":"{0} stone"},"short":{"other":"{0} st"},"narrow":{"other":"{0}st"},"perUnit":{}},"pound":{"long":{"other":"{0} pounds","one":"{0} pound"},"short":{"other":"{0} lb"},"narrow":{"other":"{0}#"},"perUnit":{"long":"{0} per pound","short":"{0}/lb","narrow":"{0}/lb"}},"ounce":{"long":{"other":"{0} ounces","one":"{0} ounce"},"short":{"other":"{0} oz"},"narrow":{"other":"{0}oz"},"perUnit":{"long":"{0} per ounce","short":"{0}/oz","narrow":"{0}/oz"}},"kilometer-per-hour":{"long":{"other":"{0} kilometers per hour","one":"{0} kilometer per hour"},"short":{"other":"{0} km/h"},"narrow":{"other":"{0}km/h"},"perUnit":{}},"meter-per-second":{"long":{"other":"{0} meters per second","one":"{0} meter per second"},"short":{"other":"{0} m/s"},"narrow":{"other":"{0}m/s"},"perUnit":{}},"mile-per-hour":{"long":{"other":"{0} miles per hour","one":"{0} mile per hour"},"short":{"other":"{0} mph"},"narrow":{"other":"{0}mph"},"perUnit":{}},"celsius":{"long":{"other":"{0} degrees Celsius","one":"{0} degree Celsius"},"short":{"other":"{0}°C"},"narrow":{"other":"{0}°C"},"perUnit":{}},"fahrenheit":{"long":{"other":"{0} degrees Fahrenheit","one":"{0} degree Fahrenheit"},"short":{"other":"{0}°F"},"narrow":{"other":"{0}°"},"perUnit":{}},"liter":{"long":{"other":"{0} liters","one":"{0} liter"},"short":{"other":"{0} L"},"narrow":{"other":"{0}L"},"perUnit":{"long":"{0} per liter","short":"{0}/L","narrow":"{0}/L"}},"milliliter":{"long":{"other":"{0} milliliters","one":"{0} milliliter"},"short":{"other":"{0} mL"},"narrow":{"other":"{0}mL"},"perUnit":{}},"gallon":{"long":{"other":"{0} gallons","one":"{0} gallon"},"short":{"other":"{0} gal"},"narrow":{"other":"{0}gal"},"perUnit":{"long":"{0} per gallon","short":"{0}/gal US","narrow":"{0}/gal"}},"fluid-ounce":{"long":{"other":"{0} fluid ounces","one":"{0} fluid ounce"},"short":{"other":"{0} fl oz"},"narrow":{"other":"{0}fl oz"},"perUnit":{}}},"compound":{"per":{"long":"{0} per {1}","short":"{0}/{1}","narrow":"{0}/{1}"}}},"currencies":{"ADP":{"displayName":{"other":"Andorran pesetas","one":"Andorran peseta"},"symbol":"ADP","narrow":"ADP"},"AED":{"displayName":{"other":"UAE dirhams","one":"UAE dirham"},"symbol":"AED","narrow":"AED"},"AFA":{"displayName":{"other":"Afghan afghanis (1927–2002)","one":"Afghan afghani (1927–2002)"},"symbol":"AFA","narrow":"AFA"},"AFN":{"displayName":{"other":"Afghan Afghanis","one":"Afghan Afghani"},"symbol":"AFN","narrow":"؋"},"ALK":{"displayName":{"other":"Albanian lekë (1946–1965)","one":"Albanian lek (1946–1965)"},"symbol":"ALK","narrow":"ALK"},"ALL":{"displayName":{"other":"Albanian lekë","one":"Albanian lek"},"symbol":"ALL","narrow":"ALL"},"AMD":{"displayName":{"other":"Armenian drams","one":"Armenian dram"},"symbol":"AMD","narrow":"֏"},"ANG":{"displayName":{"other":"Netherlands Antillean guilders","one":"Netherlands Antillean guilder"},"symbol":"ANG","narrow":"ANG"},"AOA":{"displayName":{"other":"Angolan kwanzas","one":"Angolan kwanza"},"symbol":"AOA","narrow":"Kz"},"AOK":{"displayName":{"other":"Angolan kwanzas (1977–1991)","one":"Angolan kwanza (1977–1991)"},"symbol":"AOK","narrow":"AOK"},"AON":{"displayName":{"other":"Angolan new kwanzas (1990–2000)","one":"Angolan new kwanza (1990–2000)"},"symbol":"AON","narrow":"AON"},"AOR":{"displayName":{"other":"Angolan readjusted kwanzas (1995–1999)","one":"Angolan readjusted kwanza (1995–1999)"},"symbol":"AOR","narrow":"AOR"},"ARA":{"displayName":{"other":"Argentine australs","one":"Argentine austral"},"symbol":"ARA","narrow":"ARA"},"ARL":{"displayName":{"other":"Argentine pesos ley (1970–1983)","one":"Argentine peso ley (1970–1983)"},"symbol":"ARL","narrow":"ARL"},"ARM":{"displayName":{"other":"Argentine pesos (1881–1970)","one":"Argentine peso (1881–1970)"},"symbol":"ARM","narrow":"ARM"},"ARP":{"displayName":{"other":"Argentine pesos (1983–1985)","one":"Argentine peso (1983–1985)"},"symbol":"ARP","narrow":"ARP"},"ARS":{"displayName":{"other":"Argentine pesos","one":"Argentine peso"},"symbol":"ARS","narrow":"$"},"ATS":{"displayName":{"other":"Austrian schillings","one":"Austrian schilling"},"symbol":"ATS","narrow":"ATS"},"AUD":{"displayName":{"other":"Australian dollars","one":"Australian dollar"},"symbol":"A$","narrow":"$"},"AWG":{"displayName":{"other":"Aruban florin"},"symbol":"AWG","narrow":"AWG"},"AZM":{"displayName":{"other":"Azerbaijani manats (1993–2006)","one":"Azerbaijani manat (1993–2006)"},"symbol":"AZM","narrow":"AZM"},"AZN":{"displayName":{"other":"Azerbaijani manats","one":"Azerbaijani manat"},"symbol":"AZN","narrow":"₼"},"BAD":{"displayName":{"other":"Bosnia-Herzegovina dinars (1992–1994)","one":"Bosnia-Herzegovina dinar (1992–1994)"},"symbol":"BAD","narrow":"BAD"},"BAM":{"displayName":{"other":"Bosnia-Herzegovina convertible marks","one":"Bosnia-Herzegovina convertible mark"},"symbol":"BAM","narrow":"KM"},"BAN":{"displayName":{"other":"Bosnia-Herzegovina new dinars (1994–1997)","one":"Bosnia-Herzegovina new dinar (1994–1997)"},"symbol":"BAN","narrow":"BAN"},"BBD":{"displayName":{"other":"Barbadian dollars","one":"Barbadian dollar"},"symbol":"BBD","narrow":"$"},"BDT":{"displayName":{"other":"Bangladeshi takas","one":"Bangladeshi taka"},"symbol":"BDT","narrow":"৳"},"BEC":{"displayName":{"other":"Belgian francs (convertible)","one":"Belgian franc (convertible)"},"symbol":"BEC","narrow":"BEC"},"BEF":{"displayName":{"other":"Belgian francs","one":"Belgian franc"},"symbol":"BEF","narrow":"BEF"},"BEL":{"displayName":{"other":"Belgian francs (financial)","one":"Belgian franc (financial)"},"symbol":"BEL","narrow":"BEL"},"BGL":{"displayName":{"other":"Bulgarian hard leva","one":"Bulgarian hard lev"},"symbol":"BGL","narrow":"BGL"},"BGM":{"displayName":{"other":"Bulgarian socialist leva","one":"Bulgarian socialist lev"},"symbol":"BGM","narrow":"BGM"},"BGN":{"displayName":{"other":"Bulgarian leva","one":"Bulgarian lev"},"symbol":"BGN","narrow":"BGN"},"BGO":{"displayName":{"other":"Bulgarian leva (1879–1952)","one":"Bulgarian lev (1879–1952)"},"symbol":"BGO","narrow":"BGO"},"BHD":{"displayName":{"other":"Bahraini dinars","one":"Bahraini dinar"},"symbol":"BHD","narrow":"BHD"},"BIF":{"displayName":{"other":"Burundian francs","one":"Burundian franc"},"symbol":"BIF","narrow":"BIF"},"BMD":{"displayName":{"other":"Bermudan dollars","one":"Bermudan dollar"},"symbol":"BMD","narrow":"$"},"BND":{"displayName":{"other":"Brunei dollars","one":"Brunei dollar"},"symbol":"BND","narrow":"$"},"BOB":{"displayName":{"other":"Bolivian bolivianos","one":"Bolivian boliviano"},"symbol":"BOB","narrow":"Bs"},"BOL":{"displayName":{"other":"Bolivian bolivianos (1863–1963)","one":"Bolivian boliviano (1863–1963)"},"symbol":"BOL","narrow":"BOL"},"BOP":{"displayName":{"other":"Bolivian pesos","one":"Bolivian peso"},"symbol":"BOP","narrow":"BOP"},"BOV":{"displayName":{"other":"Bolivian mvdols","one":"Bolivian mvdol"},"symbol":"BOV","narrow":"BOV"},"BRB":{"displayName":{"other":"Brazilian new cruzeiros (1967–1986)","one":"Brazilian new cruzeiro (1967–1986)"},"symbol":"BRB","narrow":"BRB"},"BRC":{"displayName":{"other":"Brazilian cruzados (1986–1989)","one":"Brazilian cruzado (1986–1989)"},"symbol":"BRC","narrow":"BRC"},"BRE":{"displayName":{"other":"Brazilian cruzeiros (1990–1993)","one":"Brazilian cruzeiro (1990–1993)"},"symbol":"BRE","narrow":"BRE"},"BRL":{"displayName":{"other":"Brazilian reals","one":"Brazilian real"},"symbol":"R$","narrow":"R$"},"BRN":{"displayName":{"other":"Brazilian new cruzados (1989–1990)","one":"Brazilian new cruzado (1989–1990)"},"symbol":"BRN","narrow":"BRN"},"BRR":{"displayName":{"other":"Brazilian cruzeiros (1993–1994)","one":"Brazilian cruzeiro (1993–1994)"},"symbol":"BRR","narrow":"BRR"},"BRZ":{"displayName":{"other":"Brazilian cruzeiros (1942–1967)","one":"Brazilian cruzeiro (1942–1967)"},"symbol":"BRZ","narrow":"BRZ"},"BSD":{"displayName":{"other":"Bahamian dollars","one":"Bahamian dollar"},"symbol":"BSD","narrow":"$"},"BTN":{"displayName":{"other":"Bhutanese ngultrums","one":"Bhutanese ngultrum"},"symbol":"BTN","narrow":"BTN"},"BUK":{"displayName":{"other":"Burmese kyats","one":"Burmese kyat"},"symbol":"BUK","narrow":"BUK"},"BWP":{"displayName":{"other":"Botswanan pulas","one":"Botswanan pula"},"symbol":"BWP","narrow":"P"},"BYB":{"displayName":{"other":"Belarusian rubles (1994–1999)","one":"Belarusian ruble (1994–1999)"},"symbol":"BYB","narrow":"BYB"},"BYN":{"displayName":{"other":"Belarusian rubles","one":"Belarusian ruble"},"symbol":"BYN","narrow":"р."},"BYR":{"displayName":{"other":"Belarusian rubles (2000–2016)","one":"Belarusian ruble (2000–2016)"},"symbol":"BYR","narrow":"BYR"},"BZD":{"displayName":{"other":"Belize dollars","one":"Belize dollar"},"symbol":"BZD","narrow":"$"},"CAD":{"displayName":{"other":"Canadian dollars","one":"Canadian dollar"},"symbol":"CA$","narrow":"$"},"CDF":{"displayName":{"other":"Congolese francs","one":"Congolese franc"},"symbol":"CDF","narrow":"CDF"},"CHE":{"displayName":{"other":"WIR euros","one":"WIR euro"},"symbol":"CHE","narrow":"CHE"},"CHF":{"displayName":{"other":"Swiss francs","one":"Swiss franc"},"symbol":"CHF","narrow":"CHF"},"CHW":{"displayName":{"other":"WIR francs","one":"WIR franc"},"symbol":"CHW","narrow":"CHW"},"CLE":{"displayName":{"other":"Chilean escudos","one":"Chilean escudo"},"symbol":"CLE","narrow":"CLE"},"CLF":{"displayName":{"other":"Chilean units of account (UF)","one":"Chilean unit of account (UF)"},"symbol":"CLF","narrow":"CLF"},"CLP":{"displayName":{"other":"Chilean pesos","one":"Chilean peso"},"symbol":"CLP","narrow":"$"},"CNH":{"displayName":{"other":"Chinese yuan (offshore)"},"symbol":"CNH","narrow":"CNH"},"CNX":{"displayName":{"other":"Chinese People’s Bank dollars","one":"Chinese People’s Bank dollar"},"symbol":"CNX","narrow":"CNX"},"CNY":{"displayName":{"other":"Chinese yuan"},"symbol":"CN¥","narrow":"¥"},"COP":{"displayName":{"other":"Colombian pesos","one":"Colombian peso"},"symbol":"COP","narrow":"$"},"COU":{"displayName":{"other":"Colombian real value units","one":"Colombian real value unit"},"symbol":"COU","narrow":"COU"},"CRC":{"displayName":{"other":"Costa Rican colóns","one":"Costa Rican colón"},"symbol":"CRC","narrow":"₡"},"CSD":{"displayName":{"other":"Serbian dinars (2002–2006)","one":"Serbian dinar (2002–2006)"},"symbol":"CSD","narrow":"CSD"},"CSK":{"displayName":{"other":"Czechoslovak hard korunas","one":"Czechoslovak hard koruna"},"symbol":"CSK","narrow":"CSK"},"CUC":{"displayName":{"other":"Cuban convertible pesos","one":"Cuban convertible peso"},"symbol":"CUC","narrow":"$"},"CUP":{"displayName":{"other":"Cuban pesos","one":"Cuban peso"},"symbol":"CUP","narrow":"$"},"CVE":{"displayName":{"other":"Cape Verdean escudos","one":"Cape Verdean escudo"},"symbol":"CVE","narrow":"CVE"},"CYP":{"displayName":{"other":"Cypriot pounds","one":"Cypriot pound"},"symbol":"CYP","narrow":"CYP"},"CZK":{"displayName":{"other":"Czech korunas","one":"Czech koruna"},"symbol":"CZK","narrow":"Kč"},"DDM":{"displayName":{"other":"East German marks","one":"East German mark"},"symbol":"DDM","narrow":"DDM"},"DEM":{"displayName":{"other":"German marks","one":"German mark"},"symbol":"DEM","narrow":"DEM"},"DJF":{"displayName":{"other":"Djiboutian francs","one":"Djiboutian franc"},"symbol":"DJF","narrow":"DJF"},"DKK":{"displayName":{"other":"Danish kroner","one":"Danish krone"},"symbol":"DKK","narrow":"kr"},"DOP":{"displayName":{"other":"Dominican pesos","one":"Dominican peso"},"symbol":"DOP","narrow":"$"},"DZD":{"displayName":{"other":"Algerian dinars","one":"Algerian dinar"},"symbol":"DZD","narrow":"DZD"},"ECS":{"displayName":{"other":"Ecuadorian sucres","one":"Ecuadorian sucre"},"symbol":"ECS","narrow":"ECS"},"ECV":{"displayName":{"other":"Ecuadorian units of constant value","one":"Ecuadorian unit of constant value"},"symbol":"ECV","narrow":"ECV"},"EEK":{"displayName":{"other":"Estonian kroons","one":"Estonian kroon"},"symbol":"EEK","narrow":"EEK"},"EGP":{"displayName":{"other":"Egyptian pounds","one":"Egyptian pound"},"symbol":"EGP","narrow":"E£"},"ERN":{"displayName":{"other":"Eritrean nakfas","one":"Eritrean nakfa"},"symbol":"ERN","narrow":"ERN"},"ESA":{"displayName":{"other":"Spanish pesetas (A account)","one":"Spanish peseta (A account)"},"symbol":"ESA","narrow":"ESA"},"ESB":{"displayName":{"other":"Spanish pesetas (convertible account)","one":"Spanish peseta (convertible account)"},"symbol":"ESB","narrow":"ESB"},"ESP":{"displayName":{"other":"Spanish pesetas","one":"Spanish peseta"},"symbol":"ESP","narrow":"₧"},"ETB":{"displayName":{"other":"Ethiopian birrs","one":"Ethiopian birr"},"symbol":"ETB","narrow":"ETB"},"EUR":{"displayName":{"other":"euros","one":"euro"},"symbol":"€","narrow":"€"},"FIM":{"displayName":{"other":"Finnish markkas","one":"Finnish markka"},"symbol":"FIM","narrow":"FIM"},"FJD":{"displayName":{"other":"Fijian dollars","one":"Fijian dollar"},"symbol":"FJD","narrow":"$"},"FKP":{"displayName":{"other":"Falkland Islands pounds","one":"Falkland Islands pound"},"symbol":"FKP","narrow":"£"},"FRF":{"displayName":{"other":"French francs","one":"French franc"},"symbol":"FRF","narrow":"FRF"},"GBP":{"displayName":{"other":"British pounds","one":"British pound"},"symbol":"£","narrow":"£"},"GEK":{"displayName":{"other":"Georgian kupon larits","one":"Georgian kupon larit"},"symbol":"GEK","narrow":"GEK"},"GEL":{"displayName":{"other":"Georgian laris","one":"Georgian lari"},"symbol":"GEL","narrow":"₾"},"GHC":{"displayName":{"other":"Ghanaian cedis (1979–2007)","one":"Ghanaian cedi (1979–2007)"},"symbol":"GHC","narrow":"GHC"},"GHS":{"displayName":{"other":"Ghanaian cedis","one":"Ghanaian cedi"},"symbol":"GHS","narrow":"GH₵"},"GIP":{"displayName":{"other":"Gibraltar pounds","one":"Gibraltar pound"},"symbol":"GIP","narrow":"£"},"GMD":{"displayName":{"other":"Gambian dalasis","one":"Gambian dalasi"},"symbol":"GMD","narrow":"GMD"},"GNF":{"displayName":{"other":"Guinean francs","one":"Guinean franc"},"symbol":"GNF","narrow":"FG"},"GNS":{"displayName":{"other":"Guinean sylis","one":"Guinean syli"},"symbol":"GNS","narrow":"GNS"},"GQE":{"displayName":{"other":"Equatorial Guinean ekwele"},"symbol":"GQE","narrow":"GQE"},"GRD":{"displayName":{"other":"Greek drachmas","one":"Greek drachma"},"symbol":"GRD","narrow":"GRD"},"GTQ":{"displayName":{"other":"Guatemalan quetzals","one":"Guatemalan quetzal"},"symbol":"GTQ","narrow":"Q"},"GWE":{"displayName":{"other":"Portuguese Guinea escudos","one":"Portuguese Guinea escudo"},"symbol":"GWE","narrow":"GWE"},"GWP":{"displayName":{"other":"Guinea-Bissau pesos","one":"Guinea-Bissau peso"},"symbol":"GWP","narrow":"GWP"},"GYD":{"displayName":{"other":"Guyanaese dollars","one":"Guyanaese dollar"},"symbol":"GYD","narrow":"$"},"HKD":{"displayName":{"other":"Hong Kong dollars","one":"Hong Kong dollar"},"symbol":"HK$","narrow":"$"},"HNL":{"displayName":{"other":"Honduran lempiras","one":"Honduran lempira"},"symbol":"HNL","narrow":"L"},"HRD":{"displayName":{"other":"Croatian dinars","one":"Croatian dinar"},"symbol":"HRD","narrow":"HRD"},"HRK":{"displayName":{"other":"Croatian kunas","one":"Croatian kuna"},"symbol":"HRK","narrow":"kn"},"HTG":{"displayName":{"other":"Haitian gourdes","one":"Haitian gourde"},"symbol":"HTG","narrow":"HTG"},"HUF":{"displayName":{"other":"Hungarian forints","one":"Hungarian forint"},"symbol":"HUF","narrow":"Ft"},"IDR":{"displayName":{"other":"Indonesian rupiahs","one":"Indonesian rupiah"},"symbol":"IDR","narrow":"Rp"},"IEP":{"displayName":{"other":"Irish pounds","one":"Irish pound"},"symbol":"IEP","narrow":"IEP"},"ILP":{"displayName":{"other":"Israeli pounds","one":"Israeli pound"},"symbol":"ILP","narrow":"ILP"},"ILR":{"displayName":{"other":"Israeli shekels (1980–1985)","one":"Israeli shekel (1980–1985)"},"symbol":"ILR","narrow":"ILR"},"ILS":{"displayName":{"other":"Israeli new shekels","one":"Israeli new shekel"},"symbol":"₪","narrow":"₪"},"INR":{"displayName":{"other":"Indian rupees","one":"Indian rupee"},"symbol":"₹","narrow":"₹"},"IQD":{"displayName":{"other":"Iraqi dinars","one":"Iraqi dinar"},"symbol":"IQD","narrow":"IQD"},"IRR":{"displayName":{"other":"Iranian rials","one":"Iranian rial"},"symbol":"IRR","narrow":"IRR"},"ISJ":{"displayName":{"other":"Icelandic krónur (1918–1981)","one":"Icelandic króna (1918–1981)"},"symbol":"ISJ","narrow":"ISJ"},"ISK":{"displayName":{"other":"Icelandic krónur","one":"Icelandic króna"},"symbol":"ISK","narrow":"kr"},"ITL":{"displayName":{"other":"Italian liras","one":"Italian lira"},"symbol":"ITL","narrow":"ITL"},"JMD":{"displayName":{"other":"Jamaican dollars","one":"Jamaican dollar"},"symbol":"JMD","narrow":"$"},"JOD":{"displayName":{"other":"Jordanian dinars","one":"Jordanian dinar"},"symbol":"JOD","narrow":"JOD"},"JPY":{"displayName":{"other":"Japanese yen"},"symbol":"¥","narrow":"¥"},"KES":{"displayName":{"other":"Kenyan shillings","one":"Kenyan shilling"},"symbol":"KES","narrow":"KES"},"KGS":{"displayName":{"other":"Kyrgystani soms","one":"Kyrgystani som"},"symbol":"KGS","narrow":"KGS"},"KHR":{"displayName":{"other":"Cambodian riels","one":"Cambodian riel"},"symbol":"KHR","narrow":"៛"},"KMF":{"displayName":{"other":"Comorian francs","one":"Comorian franc"},"symbol":"KMF","narrow":"CF"},"KPW":{"displayName":{"other":"North Korean won"},"symbol":"KPW","narrow":"₩"},"KRH":{"displayName":{"other":"South Korean hwan (1953–1962)"},"symbol":"KRH","narrow":"KRH"},"KRO":{"displayName":{"other":"South Korean won (1945–1953)"},"symbol":"KRO","narrow":"KRO"},"KRW":{"displayName":{"other":"South Korean won"},"symbol":"₩","narrow":"₩"},"KWD":{"displayName":{"other":"Kuwaiti dinars","one":"Kuwaiti dinar"},"symbol":"KWD","narrow":"KWD"},"KYD":{"displayName":{"other":"Cayman Islands dollars","one":"Cayman Islands dollar"},"symbol":"KYD","narrow":"$"},"KZT":{"displayName":{"other":"Kazakhstani tenges","one":"Kazakhstani tenge"},"symbol":"KZT","narrow":"₸"},"LAK":{"displayName":{"other":"Laotian kips","one":"Laotian kip"},"symbol":"LAK","narrow":"₭"},"LBP":{"displayName":{"other":"Lebanese pounds","one":"Lebanese pound"},"symbol":"LBP","narrow":"L£"},"LKR":{"displayName":{"other":"Sri Lankan rupees","one":"Sri Lankan rupee"},"symbol":"LKR","narrow":"Rs"},"LRD":{"displayName":{"other":"Liberian dollars","one":"Liberian dollar"},"symbol":"LRD","narrow":"$"},"LSL":{"displayName":{"other":"Lesotho lotis","one":"Lesotho loti"},"symbol":"LSL","narrow":"LSL"},"LTL":{"displayName":{"other":"Lithuanian litai","one":"Lithuanian litas"},"symbol":"LTL","narrow":"Lt"},"LTT":{"displayName":{"other":"Lithuanian talonases","one":"Lithuanian talonas"},"symbol":"LTT","narrow":"LTT"},"LUC":{"displayName":{"other":"Luxembourgian convertible francs","one":"Luxembourgian convertible franc"},"symbol":"LUC","narrow":"LUC"},"LUF":{"displayName":{"other":"Luxembourgian francs","one":"Luxembourgian franc"},"symbol":"LUF","narrow":"LUF"},"LUL":{"displayName":{"other":"Luxembourg financial francs","one":"Luxembourg financial franc"},"symbol":"LUL","narrow":"LUL"},"LVL":{"displayName":{"other":"Latvian lati","one":"Latvian lats"},"symbol":"LVL","narrow":"Ls"},"LVR":{"displayName":{"other":"Latvian rubles","one":"Latvian ruble"},"symbol":"LVR","narrow":"LVR"},"LYD":{"displayName":{"other":"Libyan dinars","one":"Libyan dinar"},"symbol":"LYD","narrow":"LYD"},"MAD":{"displayName":{"other":"Moroccan dirhams","one":"Moroccan dirham"},"symbol":"MAD","narrow":"MAD"},"MAF":{"displayName":{"other":"Moroccan francs","one":"Moroccan franc"},"symbol":"MAF","narrow":"MAF"},"MCF":{"displayName":{"other":"Monegasque francs","one":"Monegasque franc"},"symbol":"MCF","narrow":"MCF"},"MDC":{"displayName":{"other":"Moldovan cupon"},"symbol":"MDC","narrow":"MDC"},"MDL":{"displayName":{"other":"Moldovan lei","one":"Moldovan leu"},"symbol":"MDL","narrow":"MDL"},"MGA":{"displayName":{"other":"Malagasy ariaries","one":"Malagasy ariary"},"symbol":"MGA","narrow":"Ar"},"MGF":{"displayName":{"other":"Malagasy francs","one":"Malagasy franc"},"symbol":"MGF","narrow":"MGF"},"MKD":{"displayName":{"other":"Macedonian denari","one":"Macedonian denar"},"symbol":"MKD","narrow":"MKD"},"MKN":{"displayName":{"other":"Macedonian denari (1992–1993)","one":"Macedonian denar (1992–1993)"},"symbol":"MKN","narrow":"MKN"},"MLF":{"displayName":{"other":"Malian francs","one":"Malian franc"},"symbol":"MLF","narrow":"MLF"},"MMK":{"displayName":{"other":"Myanmar kyats","one":"Myanmar kyat"},"symbol":"MMK","narrow":"K"},"MNT":{"displayName":{"other":"Mongolian tugriks","one":"Mongolian tugrik"},"symbol":"MNT","narrow":"₮"},"MOP":{"displayName":{"other":"Macanese patacas","one":"Macanese pataca"},"symbol":"MOP","narrow":"MOP"},"MRO":{"displayName":{"other":"Mauritanian ouguiyas (1973–2017)","one":"Mauritanian ouguiya (1973–2017)"},"symbol":"MRO","narrow":"MRO"},"MRU":{"displayName":{"other":"Mauritanian ouguiyas","one":"Mauritanian ouguiya"},"symbol":"MRU","narrow":"MRU"},"MTL":{"displayName":{"other":"Maltese lira"},"symbol":"MTL","narrow":"MTL"},"MTP":{"displayName":{"other":"Maltese pounds","one":"Maltese pound"},"symbol":"MTP","narrow":"MTP"},"MUR":{"displayName":{"other":"Mauritian rupees","one":"Mauritian rupee"},"symbol":"MUR","narrow":"Rs"},"MVP":{"displayName":{"other":"Maldivian rupees (1947–1981)","one":"Maldivian rupee (1947–1981)"},"symbol":"MVP","narrow":"MVP"},"MVR":{"displayName":{"other":"Maldivian rufiyaas","one":"Maldivian rufiyaa"},"symbol":"MVR","narrow":"MVR"},"MWK":{"displayName":{"other":"Malawian kwachas","one":"Malawian kwacha"},"symbol":"MWK","narrow":"MWK"},"MXN":{"displayName":{"other":"Mexican pesos","one":"Mexican peso"},"symbol":"MX$","narrow":"$"},"MXP":{"displayName":{"other":"Mexican silver pesos (1861–1992)","one":"Mexican silver peso (1861–1992)"},"symbol":"MXP","narrow":"MXP"},"MXV":{"displayName":{"other":"Mexican investment units","one":"Mexican investment unit"},"symbol":"MXV","narrow":"MXV"},"MYR":{"displayName":{"other":"Malaysian ringgits","one":"Malaysian ringgit"},"symbol":"MYR","narrow":"RM"},"MZE":{"displayName":{"other":"Mozambican escudos","one":"Mozambican escudo"},"symbol":"MZE","narrow":"MZE"},"MZM":{"displayName":{"other":"Mozambican meticals (1980–2006)","one":"Mozambican metical (1980–2006)"},"symbol":"MZM","narrow":"MZM"},"MZN":{"displayName":{"other":"Mozambican meticals","one":"Mozambican metical"},"symbol":"MZN","narrow":"MZN"},"NAD":{"displayName":{"other":"Namibian dollars","one":"Namibian dollar"},"symbol":"NAD","narrow":"$"},"NGN":{"displayName":{"other":"Nigerian nairas","one":"Nigerian naira"},"symbol":"NGN","narrow":"₦"},"NIC":{"displayName":{"other":"Nicaraguan córdobas (1988–1991)","one":"Nicaraguan córdoba (1988–1991)"},"symbol":"NIC","narrow":"NIC"},"NIO":{"displayName":{"other":"Nicaraguan córdobas","one":"Nicaraguan córdoba"},"symbol":"NIO","narrow":"C$"},"NLG":{"displayName":{"other":"Dutch guilders","one":"Dutch guilder"},"symbol":"NLG","narrow":"NLG"},"NOK":{"displayName":{"other":"Norwegian kroner","one":"Norwegian krone"},"symbol":"NOK","narrow":"kr"},"NPR":{"displayName":{"other":"Nepalese rupees","one":"Nepalese rupee"},"symbol":"NPR","narrow":"Rs"},"NZD":{"displayName":{"other":"New Zealand dollars","one":"New Zealand dollar"},"symbol":"NZ$","narrow":"$"},"OMR":{"displayName":{"other":"Omani rials","one":"Omani rial"},"symbol":"OMR","narrow":"OMR"},"PAB":{"displayName":{"other":"Panamanian balboas","one":"Panamanian balboa"},"symbol":"PAB","narrow":"PAB"},"PEI":{"displayName":{"other":"Peruvian intis","one":"Peruvian inti"},"symbol":"PEI","narrow":"PEI"},"PEN":{"displayName":{"other":"Peruvian soles","one":"Peruvian sol"},"symbol":"PEN","narrow":"PEN"},"PES":{"displayName":{"other":"Peruvian soles (1863–1965)","one":"Peruvian sol (1863–1965)"},"symbol":"PES","narrow":"PES"},"PGK":{"displayName":{"other":"Papua New Guinean kina"},"symbol":"PGK","narrow":"PGK"},"PHP":{"displayName":{"other":"Philippine pisos","one":"Philippine piso"},"symbol":"₱","narrow":"₱"},"PKR":{"displayName":{"other":"Pakistani rupees","one":"Pakistani rupee"},"symbol":"PKR","narrow":"Rs"},"PLN":{"displayName":{"other":"Polish zlotys","one":"Polish zloty"},"symbol":"PLN","narrow":"zł"},"PLZ":{"displayName":{"other":"Polish zlotys (PLZ)","one":"Polish zloty (PLZ)"},"symbol":"PLZ","narrow":"PLZ"},"PTE":{"displayName":{"other":"Portuguese escudos","one":"Portuguese escudo"},"symbol":"PTE","narrow":"PTE"},"PYG":{"displayName":{"other":"Paraguayan guaranis","one":"Paraguayan guarani"},"symbol":"PYG","narrow":"₲"},"QAR":{"displayName":{"other":"Qatari rials","one":"Qatari rial"},"symbol":"QAR","narrow":"QAR"},"RHD":{"displayName":{"other":"Rhodesian dollars","one":"Rhodesian dollar"},"symbol":"RHD","narrow":"RHD"},"ROL":{"displayName":{"other":"Romanian Lei (1952–2006)","one":"Romanian leu (1952–2006)"},"symbol":"ROL","narrow":"ROL"},"RON":{"displayName":{"other":"Romanian lei","one":"Romanian leu"},"symbol":"RON","narrow":"lei"},"RSD":{"displayName":{"other":"Serbian dinars","one":"Serbian dinar"},"symbol":"RSD","narrow":"RSD"},"RUB":{"displayName":{"other":"Russian rubles","one":"Russian ruble"},"symbol":"RUB","narrow":"₽"},"RUR":{"displayName":{"other":"Russian rubles (1991–1998)","one":"Russian ruble (1991–1998)"},"symbol":"RUR","narrow":"р."},"RWF":{"displayName":{"other":"Rwandan francs","one":"Rwandan franc"},"symbol":"RWF","narrow":"RF"},"SAR":{"displayName":{"other":"Saudi riyals","one":"Saudi riyal"},"symbol":"SAR","narrow":"SAR"},"SBD":{"displayName":{"other":"Solomon Islands dollars","one":"Solomon Islands dollar"},"symbol":"SBD","narrow":"$"},"SCR":{"displayName":{"other":"Seychellois rupees","one":"Seychellois rupee"},"symbol":"SCR","narrow":"SCR"},"SDD":{"displayName":{"other":"Sudanese dinars (1992–2007)","one":"Sudanese dinar (1992–2007)"},"symbol":"SDD","narrow":"SDD"},"SDG":{"displayName":{"other":"Sudanese pounds","one":"Sudanese pound"},"symbol":"SDG","narrow":"SDG"},"SDP":{"displayName":{"other":"Sudanese pounds (1957–1998)","one":"Sudanese pound (1957–1998)"},"symbol":"SDP","narrow":"SDP"},"SEK":{"displayName":{"other":"Swedish kronor","one":"Swedish krona"},"symbol":"SEK","narrow":"kr"},"SGD":{"displayName":{"other":"Singapore dollars","one":"Singapore dollar"},"symbol":"SGD","narrow":"$"},"SHP":{"displayName":{"other":"St. Helena pounds","one":"St. Helena pound"},"symbol":"SHP","narrow":"£"},"SIT":{"displayName":{"other":"Slovenian tolars","one":"Slovenian tolar"},"symbol":"SIT","narrow":"SIT"},"SKK":{"displayName":{"other":"Slovak korunas","one":"Slovak koruna"},"symbol":"SKK","narrow":"SKK"},"SLL":{"displayName":{"other":"Sierra Leonean leones","one":"Sierra Leonean leone"},"symbol":"SLL","narrow":"SLL"},"SOS":{"displayName":{"other":"Somali shillings","one":"Somali shilling"},"symbol":"SOS","narrow":"SOS"},"SRD":{"displayName":{"other":"Surinamese dollars","one":"Surinamese dollar"},"symbol":"SRD","narrow":"$"},"SRG":{"displayName":{"other":"Surinamese guilders","one":"Surinamese guilder"},"symbol":"SRG","narrow":"SRG"},"SSP":{"displayName":{"other":"South Sudanese pounds","one":"South Sudanese pound"},"symbol":"SSP","narrow":"£"},"STD":{"displayName":{"other":"São Tomé & Príncipe dobras (1977–2017)","one":"São Tomé & Príncipe dobra (1977–2017)"},"symbol":"STD","narrow":"STD"},"STN":{"displayName":{"other":"São Tomé & Príncipe dobras","one":"São Tomé & Príncipe dobra"},"symbol":"STN","narrow":"Db"},"SUR":{"displayName":{"other":"Soviet roubles","one":"Soviet rouble"},"symbol":"SUR","narrow":"SUR"},"SVC":{"displayName":{"other":"Salvadoran colones","one":"Salvadoran colón"},"symbol":"SVC","narrow":"SVC"},"SYP":{"displayName":{"other":"Syrian pounds","one":"Syrian pound"},"symbol":"SYP","narrow":"£"},"SZL":{"displayName":{"other":"Swazi emalangeni","one":"Swazi lilangeni"},"symbol":"SZL","narrow":"SZL"},"THB":{"displayName":{"other":"Thai baht"},"symbol":"THB","narrow":"฿"},"TJR":{"displayName":{"other":"Tajikistani rubles","one":"Tajikistani ruble"},"symbol":"TJR","narrow":"TJR"},"TJS":{"displayName":{"other":"Tajikistani somonis","one":"Tajikistani somoni"},"symbol":"TJS","narrow":"TJS"},"TMM":{"displayName":{"other":"Turkmenistani manat (1993–2009)"},"symbol":"TMM","narrow":"TMM"},"TMT":{"displayName":{"other":"Turkmenistani manat"},"symbol":"TMT","narrow":"TMT"},"TND":{"displayName":{"other":"Tunisian dinars","one":"Tunisian dinar"},"symbol":"TND","narrow":"TND"},"TOP":{"displayName":{"other":"Tongan paʻanga"},"symbol":"TOP","narrow":"T$"},"TPE":{"displayName":{"other":"Timorese escudos","one":"Timorese escudo"},"symbol":"TPE","narrow":"TPE"},"TRL":{"displayName":{"other":"Turkish Lira (1922–2005)","one":"Turkish lira (1922–2005)"},"symbol":"TRL","narrow":"TRL"},"TRY":{"displayName":{"other":"Turkish Lira","one":"Turkish lira"},"symbol":"TRY","narrow":"₺"},"TTD":{"displayName":{"other":"Trinidad & Tobago dollars","one":"Trinidad & Tobago dollar"},"symbol":"TTD","narrow":"$"},"TWD":{"displayName":{"other":"New Taiwan dollars","one":"New Taiwan dollar"},"symbol":"NT$","narrow":"$"},"TZS":{"displayName":{"other":"Tanzanian shillings","one":"Tanzanian shilling"},"symbol":"TZS","narrow":"TZS"},"UAH":{"displayName":{"other":"Ukrainian hryvnias","one":"Ukrainian hryvnia"},"symbol":"UAH","narrow":"₴"},"UAK":{"displayName":{"other":"Ukrainian karbovantsiv","one":"Ukrainian karbovanets"},"symbol":"UAK","narrow":"UAK"},"UGS":{"displayName":{"other":"Ugandan shillings (1966–1987)","one":"Ugandan shilling (1966–1987)"},"symbol":"UGS","narrow":"UGS"},"UGX":{"displayName":{"other":"Ugandan shillings","one":"Ugandan shilling"},"symbol":"UGX","narrow":"UGX"},"USD":{"displayName":{"other":"US dollars","one":"US dollar"},"symbol":"$","narrow":"$"},"USN":{"displayName":{"other":"US dollars (next day)","one":"US dollar (next day)"},"symbol":"USN","narrow":"USN"},"USS":{"displayName":{"other":"US dollars (same day)","one":"US dollar (same day)"},"symbol":"USS","narrow":"USS"},"UYI":{"displayName":{"other":"Uruguayan pesos (indexed units)","one":"Uruguayan peso (indexed units)"},"symbol":"UYI","narrow":"UYI"},"UYP":{"displayName":{"other":"Uruguayan pesos (1975–1993)","one":"Uruguayan peso (1975–1993)"},"symbol":"UYP","narrow":"UYP"},"UYU":{"displayName":{"other":"Uruguayan pesos","one":"Uruguayan peso"},"symbol":"UYU","narrow":"$"},"UYW":{"displayName":{"other":"Uruguayan nominal wage index units","one":"Uruguayan nominal wage index unit"},"symbol":"UYW","narrow":"UYW"},"UZS":{"displayName":{"other":"Uzbekistani som"},"symbol":"UZS","narrow":"UZS"},"VEB":{"displayName":{"other":"Venezuelan bolívars (1871–2008)","one":"Venezuelan bolívar (1871–2008)"},"symbol":"VEB","narrow":"VEB"},"VEF":{"displayName":{"other":"Venezuelan bolívars (2008–2018)","one":"Venezuelan bolívar (2008–2018)"},"symbol":"VEF","narrow":"Bs"},"VES":{"displayName":{"other":"Venezuelan bolívars","one":"Venezuelan bolívar"},"symbol":"VES","narrow":"VES"},"VND":{"displayName":{"other":"Vietnamese dong"},"symbol":"₫","narrow":"₫"},"VNN":{"displayName":{"other":"Vietnamese dong (1978–1985)"},"symbol":"VNN","narrow":"VNN"},"VUV":{"displayName":{"other":"Vanuatu vatus","one":"Vanuatu vatu"},"symbol":"VUV","narrow":"VUV"},"WST":{"displayName":{"other":"Samoan tala"},"symbol":"WST","narrow":"WST"},"XAF":{"displayName":{"other":"Central African CFA francs","one":"Central African CFA franc"},"symbol":"FCFA","narrow":"FCFA"},"XAG":{"displayName":{"other":"troy ounces of silver","one":"troy ounce of silver"},"symbol":"XAG","narrow":"XAG"},"XAU":{"displayName":{"other":"troy ounces of gold","one":"troy ounce of gold"},"symbol":"XAU","narrow":"XAU"},"XBA":{"displayName":{"other":"European composite units","one":"European composite unit"},"symbol":"XBA","narrow":"XBA"},"XBB":{"displayName":{"other":"European monetary units","one":"European monetary unit"},"symbol":"XBB","narrow":"XBB"},"XBC":{"displayName":{"other":"European units of account (XBC)","one":"European unit of account (XBC)"},"symbol":"XBC","narrow":"XBC"},"XBD":{"displayName":{"other":"European units of account (XBD)","one":"European unit of account (XBD)"},"symbol":"XBD","narrow":"XBD"},"XCD":{"displayName":{"other":"East Caribbean dollars","one":"East Caribbean dollar"},"symbol":"EC$","narrow":"$"},"XDR":{"displayName":{"other":"special drawing rights"},"symbol":"XDR","narrow":"XDR"},"XEU":{"displayName":{"other":"European currency units","one":"European currency unit"},"symbol":"XEU","narrow":"XEU"},"XFO":{"displayName":{"other":"French gold francs","one":"French gold franc"},"symbol":"XFO","narrow":"XFO"},"XFU":{"displayName":{"other":"French UIC-francs","one":"French UIC-franc"},"symbol":"XFU","narrow":"XFU"},"XOF":{"displayName":{"other":"West African CFA francs","one":"West African CFA franc"},"symbol":"F CFA","narrow":"F CFA"},"XPD":{"displayName":{"other":"troy ounces of palladium","one":"troy ounce of palladium"},"symbol":"XPD","narrow":"XPD"},"XPF":{"displayName":{"other":"CFP francs","one":"CFP franc"},"symbol":"CFPF","narrow":"CFPF"},"XPT":{"displayName":{"other":"troy ounces of platinum","one":"troy ounce of platinum"},"symbol":"XPT","narrow":"XPT"},"XRE":{"displayName":{"other":"RINET Funds units","one":"RINET Funds unit"},"symbol":"XRE","narrow":"XRE"},"XSU":{"displayName":{"other":"Sucres","one":"Sucre"},"symbol":"XSU","narrow":"XSU"},"XTS":{"displayName":{"other":"Testing Currency units","one":"Testing Currency unit"},"symbol":"XTS","narrow":"XTS"},"XUA":{"displayName":{"other":"ADB units of account","one":"ADB unit of account"},"symbol":"XUA","narrow":"XUA"},"XXX":{"displayName":{"other":"(unknown currency)","one":"(unknown unit of currency)"},"symbol":"¤","narrow":"¤"},"YDD":{"displayName":{"other":"Yemeni dinars","one":"Yemeni dinar"},"symbol":"YDD","narrow":"YDD"},"YER":{"displayName":{"other":"Yemeni rials","one":"Yemeni rial"},"symbol":"YER","narrow":"YER"},"YUD":{"displayName":{"other":"Yugoslavian hard dinars (1966–1990)","one":"Yugoslavian hard dinar (1966–1990)"},"symbol":"YUD","narrow":"YUD"},"YUM":{"displayName":{"other":"Yugoslavian new dinars (1994–2002)","one":"Yugoslavian new dinar (1994–2002)"},"symbol":"YUM","narrow":"YUM"},"YUN":{"displayName":{"other":"Yugoslavian convertible dinars (1990–1992)","one":"Yugoslavian convertible dinar (1990–1992)"},"symbol":"YUN","narrow":"YUN"},"YUR":{"displayName":{"other":"Yugoslavian reformed dinars (1992–1993)","one":"Yugoslavian reformed dinar (1992–1993)"},"symbol":"YUR","narrow":"YUR"},"ZAL":{"displayName":{"other":"South African rands (financial)","one":"South African rand (financial)"},"symbol":"ZAL","narrow":"ZAL"},"ZAR":{"displayName":{"other":"South African rand"},"symbol":"ZAR","narrow":"R"},"ZMK":{"displayName":{"other":"Zambian kwachas (1968–2012)","one":"Zambian kwacha (1968–2012)"},"symbol":"ZMK","narrow":"ZMK"},"ZMW":{"displayName":{"other":"Zambian kwachas","one":"Zambian kwacha"},"symbol":"ZMW","narrow":"ZK"},"ZRN":{"displayName":{"other":"Zairean new zaires (1993–1998)","one":"Zairean new zaire (1993–1998)"},"symbol":"ZRN","narrow":"ZRN"},"ZRZ":{"displayName":{"other":"Zairean zaires (1971–1993)","one":"Zairean zaire (1971–1993)"},"symbol":"ZRZ","narrow":"ZRZ"},"ZWD":{"displayName":{"other":"Zimbabwean dollars (1980–2008)","one":"Zimbabwean dollar (1980–2008)"},"symbol":"ZWD","narrow":"ZWD"},"ZWL":{"displayName":{"other":"Zimbabwean dollars (2009)","one":"Zimbabwean dollar (2009)"},"symbol":"ZWL","narrow":"ZWL"},"ZWR":{"displayName":{"other":"Zimbabwean dollars (2008)","one":"Zimbabwean dollar (2008)"},"symbol":"ZWR","narrow":"ZWR"}},"numbers":{"nu":["latn"],"symbols":{"latn":{"decimal":".","group":",","list":";","percentSign":"%","plusSign":"+","minusSign":"-","approximatelySign":"~","exponential":"E","superscriptingExponent":"×","perMille":"‰","infinity":"∞","nan":"NaN","timeSeparator":":"}},"percent":{"latn":"#,##0%"},"decimal":{"latn":{"standard":"#,##0.###","long":{"1000":{"other":"0 thousand"},"10000":{"other":"00 thousand"},"100000":{"other":"000 thousand"},"1000000":{"other":"0 million"},"10000000":{"other":"00 million"},"100000000":{"other":"000 million"},"1000000000":{"other":"0 billion"},"10000000000":{"other":"00 billion"},"100000000000":{"other":"000 billion"},"1000000000000":{"other":"0 trillion"},"10000000000000":{"other":"00 trillion"},"100000000000000":{"other":"000 trillion"}},"short":{"1000":{"other":"0K"},"10000":{"other":"00K"},"100000":{"other":"000K"},"1000000":{"other":"0M"},"10000000":{"other":"00M"},"100000000":{"other":"000M"},"1000000000":{"other":"0B"},"10000000000":{"other":"00B"},"100000000000":{"other":"000B"},"1000000000000":{"other":"0T"},"10000000000000":{"other":"00T"},"100000000000000":{"other":"000T"}}}},"currency":{"latn":{"currencySpacing":{"beforeInsertBetween":" ","afterInsertBetween":" "},"standard":"¤#,##0.00","accounting":"¤#,##0.00;(¤#,##0.00)","unitPattern":"{0} {1}","short":{"1000":{"other":"¤0K"},"10000":{"other":"¤00K"},"100000":{"other":"¤000K"},"1000000":{"other":"¤0M"},"10000000":{"other":"¤00M"},"100000000":{"other":"¤000M"},"1000000000":{"other":"¤0B"},"10000000000":{"other":"¤00B"},"100000000000":{"other":"¤000B"},"1000000000000":{"other":"¤0T"},"10000000000000":{"other":"¤00T"},"100000000000000":{"other":"¤000T"}}}}},"nu":["latn"]},"locale":"en"} ) } } if (!("Intl"in self&&"DateTimeFormat"in self.Intl&&"formatRangeToParts"in self.Intl.DateTimeFormat&&self.Intl.DateTimeFormat.supportedLocalesOf("en").length )) { // Intl.DateTimeFormat.~locale.en /* @generated */ // prettier-ignore if (Intl.DateTimeFormat && typeof Intl.DateTimeFormat.__addLocaleData === 'function') { Intl.DateTimeFormat.__addLocaleData({"data":{"am":"AM","pm":"PM","weekday":{"narrow":["S","M","T","W","T","F","S"],"short":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"long":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},"era":{"narrow":{"BC":"B","AD":"A"},"short":{"BC":"BC","AD":"AD"},"long":{"BC":"Before Christ","AD":"Anno Domini"}},"month":{"narrow":["J","F","M","A","M","J","J","A","S","O","N","D"],"short":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"long":["January","February","March","April","May","June","July","August","September","October","November","December"]},"timeZoneName":{"America/Rio_Branco":{"long":["Acre Standard Time","Acre Summer Time"]},"Asia/Kabul":{"long":["Afghanistan Time","Afghanistan Time"]},"Africa/Maputo":{"long":["Central Africa Time","Central Africa Time"]},"Africa/Bujumbura":{"long":["Central Africa Time","Central Africa Time"]},"Africa/Gaborone":{"long":["Central Africa Time","Central Africa Time"]},"Africa/Lubumbashi":{"long":["Central Africa Time","Central Africa Time"]},"Africa/Blantyre":{"long":["Central Africa Time","Central Africa Time"]},"Africa/Kigali":{"long":["Central Africa Time","Central Africa Time"]},"Africa/Lusaka":{"long":["Central Africa Time","Central Africa Time"]},"Africa/Harare":{"long":["Central Africa Time","Central Africa Time"]},"Africa/Nairobi":{"long":["East Africa Time","East Africa Time"]},"Africa/Djibouti":{"long":["East Africa Time","East Africa Time"]},"Africa/Asmera":{"long":["East Africa Time","East Africa Time"]},"Africa/Addis_Ababa":{"long":["East Africa Time","East Africa Time"]},"Indian/Comoro":{"long":["East Africa Time","East Africa Time"]},"Indian/Antananarivo":{"long":["East Africa Time","East Africa Time"]},"Africa/Mogadishu":{"long":["East Africa Time","East Africa Time"]},"Africa/Dar_es_Salaam":{"long":["East Africa Time","East Africa Time"]},"Africa/Kampala":{"long":["East Africa Time","East Africa Time"]},"Indian/Mayotte":{"long":["East Africa Time","East Africa Time"]},"Africa/Johannesburg":{"long":["South Africa Standard Time","South Africa Standard Time"]},"Africa/Maseru":{"long":["South Africa Standard Time","South Africa Standard Time"]},"Africa/Mbabane":{"long":["South Africa Standard Time","South Africa Standard Time"]},"Africa/Lagos":{"long":["West Africa Standard Time","West Africa Summer Time"]},"Africa/Luanda":{"long":["West Africa Standard Time","West Africa Summer Time"]},"Africa/Porto-Novo":{"long":["West Africa Standard Time","West Africa Summer Time"]},"Africa/Kinshasa":{"long":["West Africa Standard Time","West Africa Summer Time"]},"Africa/Bangui":{"long":["West Africa Standard Time","West Africa Summer Time"]},"Africa/Brazzaville":{"long":["West Africa Standard Time","West Africa Summer Time"]},"Africa/Douala":{"long":["West Africa Standard Time","West Africa Summer Time"]},"Africa/Libreville":{"long":["West Africa Standard Time","West Africa Summer Time"]},"Africa/Malabo":{"long":["West Africa Standard Time","West Africa Summer Time"]},"Africa/Niamey":{"long":["West Africa Standard Time","West Africa Summer Time"]},"Africa/Ndjamena":{"long":["West Africa Standard Time","West Africa Summer Time"]},"Asia/Aqtobe":{"long":["West Kazakhstan Time","West Kazakhstan Time"]},"America/Juneau":{"long":["Alaska Standard Time","Alaska Daylight Time"],"short":["AKST","AKDT"]},"Asia/Almaty":{"long":["East Kazakhstan Time","East Kazakhstan Time"]},"America/Manaus":{"long":["Amazon Standard Time","Amazon Summer Time"]},"America/Chicago":{"long":["Central Standard Time","Central Daylight Time"],"short":["CST","CDT"]},"America/Belize":{"long":["Central Standard Time","Central Daylight Time"],"short":["CST","CDT"]},"America/Winnipeg":{"long":["Central Standard Time","Central Daylight Time"],"short":["CST","CDT"]},"America/Costa_Rica":{"long":["Central Standard Time","Central Daylight Time"],"short":["CST","CDT"]},"America/Guatemala":{"long":["Central Standard Time","Central Daylight Time"],"short":["CST","CDT"]},"America/Tegucigalpa":{"long":["Central Standard Time","Central Daylight Time"],"short":["CST","CDT"]},"America/Mexico_City":{"long":["Central Standard Time","Central Daylight Time"],"short":["CST","CDT"]},"America/El_Salvador":{"long":["Central Standard Time","Central Daylight Time"],"short":["CST","CDT"]},"America/New_York":{"long":["Eastern Standard Time","Eastern Daylight Time"],"short":["EST","EDT"]},"America/Nassau":{"long":["Eastern Standard Time","Eastern Daylight Time"],"short":["EST","EDT"]},"America/Toronto":{"long":["Eastern Standard Time","Eastern Daylight Time"],"short":["EST","EDT"]},"America/Port-au-Prince":{"long":["Eastern Standard Time","Eastern Daylight Time"],"short":["EST","EDT"]},"America/Jamaica":{"long":["Eastern Standard Time","Eastern Daylight Time"],"short":["EST","EDT"]},"America/Cayman":{"long":["Eastern Standard Time","Eastern Daylight Time"],"short":["EST","EDT"]},"America/Panama":{"long":["Eastern Standard Time","Eastern Daylight Time"],"short":["EST","EDT"]},"America/Denver":{"long":["Mountain Standard Time","Mountain Daylight Time"],"short":["MST","MDT"]},"America/Edmonton":{"long":["Mountain Standard Time","Mountain Daylight Time"],"short":["MST","MDT"]},"America/Hermosillo":{"long":["Mountain Standard Time","Mountain Daylight Time"],"short":["MST","MDT"]},"America/Los_Angeles":{"long":["Pacific Standard Time","Pacific Daylight Time"],"short":["PST","PDT"]},"America/Vancouver":{"long":["Pacific Standard Time","Pacific Daylight Time"],"short":["PST","PDT"]},"America/Tijuana":{"long":["Pacific Standard Time","Pacific Daylight Time"],"short":["PST","PDT"]},"Asia/Anadyr":{"long":["Anadyr Standard Time","Anadyr Summer Time"]},"Pacific/Apia":{"long":["Apia Standard Time","Apia Daylight Time"]},"Asia/Riyadh":{"long":["Arabian Standard Time","Arabian Daylight Time"]},"Asia/Bahrain":{"long":["Arabian Standard Time","Arabian Daylight Time"]},"Asia/Baghdad":{"long":["Arabian Standard Time","Arabian Daylight Time"]},"Asia/Kuwait":{"long":["Arabian Standard Time","Arabian Daylight Time"]},"Asia/Qatar":{"long":["Arabian Standard Time","Arabian Daylight Time"]},"Asia/Aden":{"long":["Arabian Standard Time","Arabian Daylight Time"]},"America/Buenos_Aires":{"long":["Argentina Standard Time","Argentina Summer Time"]},"America/Argentina/San_Luis":{"long":["Western Argentina Standard Time","Western Argentina Summer Time"]},"Asia/Ashgabat":{"long":["Turkmenistan Standard Time","Turkmenistan Summer Time"]},"America/Halifax":{"long":["Atlantic Standard Time","Atlantic Daylight Time"],"short":["AST","ADT"]},"America/Antigua":{"long":["Atlantic Standard Time","Atlantic Daylight Time"],"short":["AST","ADT"]},"America/Anguilla":{"long":["Atlantic Standard Time","Atlantic Daylight Time"],"short":["AST","ADT"]},"America/Aruba":{"long":["Atlantic Standard Time","Atlantic Daylight Time"],"short":["AST","ADT"]},"America/Barbados":{"long":["Atlantic Standard Time","Atlantic Daylight Time"],"short":["AST","ADT"]},"Atlantic/Bermuda":{"long":["Atlantic Standard Time","Atlantic Daylight Time"],"short":["AST","ADT"]},"America/Kralendijk":{"long":["Atlantic Standard Time","Atlantic Daylight Time"],"short":["AST","ADT"]},"America/Curacao":{"long":["Atlantic Standard Time","Atlantic Daylight Time"],"short":["AST","ADT"]},"America/Dominica":{"long":["Atlantic Standard Time","Atlantic Daylight Time"],"short":["AST","ADT"]},"America/Grenada":{"long":["Atlantic Standard Time","Atlantic Daylight Time"],"short":["AST","ADT"]},"America/Thule":{"long":["Atlantic Standard Time","Atlantic Daylight Time"],"short":["AST","ADT"]},"America/Guadeloupe":{"long":["Atlantic Standard Time","Atlantic Daylight Time"],"short":["AST","ADT"]},"America/St_Kitts":{"long":["Atlantic Standard Time","Atlantic Daylight Time"],"short":["AST","ADT"]},"America/St_Lucia":{"long":["Atlantic Standard Time","Atlantic Daylight Time"],"short":["AST","ADT"]},"America/Marigot":{"long":["Atlantic Standard Time","Atlantic Daylight Time"],"short":["AST","ADT"]},"America/Martinique":{"long":["Atlantic Standard Time","Atlantic Daylight Time"],"short":["AST","ADT"]},"America/Montserrat":{"long":["Atlantic Standard Time","Atlantic Daylight Time"],"short":["AST","ADT"]},"America/Puerto_Rico":{"long":["Atlantic Standard Time","Atlantic Daylight Time"],"short":["AST","ADT"]},"America/Lower_Princes":{"long":["Atlantic Standard Time","Atlantic Daylight Time"],"short":["AST","ADT"]},"America/Port_of_Spain":{"long":["Atlantic Standard Time","Atlantic Daylight Time"],"short":["AST","ADT"]},"America/St_Vincent":{"long":["Atlantic Standard Time","Atlantic Daylight Time"],"short":["AST","ADT"]},"America/Tortola":{"long":["Atlantic Standard Time","Atlantic Daylight Time"],"short":["AST","ADT"]},"America/St_Thomas":{"long":["Atlantic Standard Time","Atlantic Daylight Time"],"short":["AST","ADT"]},"Australia/Adelaide":{"long":["Australian Central Standard Time","Australian Central Daylight Time"]},"Australia/Eucla":{"long":["Australian Central Western Standard Time","Australian Central Western Daylight Time"]},"Australia/Sydney":{"long":["Australian Eastern Standard Time","Australian Eastern Daylight Time"]},"Australia/Perth":{"long":["Australian Western Standard Time","Australian Western Daylight Time"]},"Atlantic/Azores":{"long":["Azores Standard Time","Azores Summer Time"]},"Asia/Thimphu":{"long":["Bhutan Time","Bhutan Time"]},"America/La_Paz":{"long":["Bolivia Time","Bolivia Time"]},"Asia/Kuching":{"long":["Malaysia Time","Malaysia Time"]},"America/Sao_Paulo":{"long":["Brasilia Standard Time","Brasilia Summer Time"]},"Europe/London":{"long":["Greenwich Mean Time","Greenwich Mean Time"],"short":["GMT","GMT"]},"Asia/Brunei":{"long":["Brunei Darussalam Time","Brunei Darussalam Time"]},"Atlantic/Cape_Verde":{"long":["Cape Verde Standard Time","Cape Verde Summer Time"]},"Antarctica/Casey":{"long":["Casey Time","Casey Time"]},"Pacific/Saipan":{"long":["North Mariana Islands Time","North Mariana Islands Time"]},"Pacific/Guam":{"long":["Guam Standard Time","Guam Standard Time"]},"Pacific/Chatham":{"long":["Chatham Standard Time","Chatham Daylight Time"]},"America/Santiago":{"long":["Chile Standard Time","Chile Summer Time"]},"Asia/Shanghai":{"long":["China Standard Time","China Daylight Time"]},"Asia/Choibalsan":{"long":["Choibalsan Standard Time","Choibalsan Summer Time"]},"Indian/Christmas":{"long":["Christmas Island Time","Christmas Island Time"]},"Indian/Cocos":{"long":["Cocos Islands Time","Cocos Islands Time"]},"America/Bogota":{"long":["Colombia Standard Time","Colombia Summer Time"]},"Pacific/Rarotonga":{"long":["Cook Islands Standard Time","Cook Islands Half Summer Time"]},"America/Havana":{"long":["Cuba Standard Time","Cuba Daylight Time"]},"Antarctica/Davis":{"long":["Davis Time","Davis Time"]},"Antarctica/DumontDUrville":{"long":["Dumont-d’Urville Time","Dumont-d’Urville Time"]},"Asia/Dushanbe":{"long":["Tajikistan Time","Tajikistan Time"]},"America/Paramaribo":{"long":["Suriname Time","Suriname Time"]},"Asia/Dili":{"long":["East Timor Time","East Timor Time"]},"Pacific/Easter":{"long":["Easter Island Standard Time","Easter Island Summer Time"]},"America/Guayaquil":{"long":["Ecuador Time","Ecuador Time"]},"Europe/Paris":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Andorra":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Tirane":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Vienna":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Sarajevo":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Brussels":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Zurich":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Prague":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Berlin":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Copenhagen":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Madrid":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Gibraltar":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Zagreb":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Budapest":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Rome":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Vaduz":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Luxembourg":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Monaco":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Podgorica":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Skopje":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Malta":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Amsterdam":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Oslo":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Warsaw":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Belgrade":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Stockholm":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Ljubljana":{"long":["Central European Standard Time","Central European Summer Time"]},"Arctic/Longyearbyen":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Bratislava":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/San_Marino":{"long":["Central European Standard Time","Central European Summer Time"]},"Africa/Tunis":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Vatican":{"long":["Central European Standard Time","Central European Summer Time"]},"Europe/Bucharest":{"long":["Eastern European Standard Time","Eastern European Summer Time"]},"Europe/Mariehamn":{"long":["Eastern European Standard Time","Eastern European Summer Time"]},"Europe/Sofia":{"long":["Eastern European Standard Time","Eastern European Summer Time"]},"Asia/Nicosia":{"long":["Eastern European Standard Time","Eastern European Summer Time"]},"Africa/Cairo":{"long":["Eastern European Standard Time","Eastern European Summer Time"]},"Europe/Helsinki":{"long":["Eastern European Standard Time","Eastern European Summer Time"]},"Europe/Athens":{"long":["Eastern European Standard Time","Eastern European Summer Time"]},"Asia/Amman":{"long":["Eastern European Standard Time","Eastern European Summer Time"]},"Asia/Beirut":{"long":["Eastern European Standard Time","Eastern European Summer Time"]},"Asia/Damascus":{"long":["Eastern European Standard Time","Eastern European Summer Time"]},"Europe/Minsk":{"long":["Further-eastern European Time","Further-eastern European Time"]},"Europe/Kaliningrad":{"long":["Further-eastern European Time","Further-eastern European Time"]},"Atlantic/Canary":{"long":["Western European Standard Time","Western European Summer Time"]},"Atlantic/Faeroe":{"long":["Western European Standard Time","Western European Summer Time"]},"Atlantic/Stanley":{"long":["Falkland Islands Standard Time","Falkland Islands Summer Time"]},"Pacific/Fiji":{"long":["Fiji Standard Time","Fiji Summer Time"]},"America/Cayenne":{"long":["French Guiana Time","French Guiana Time"]},"Indian/Kerguelen":{"long":["French Southern & Antarctic Time","French Southern & Antarctic Time"]},"Asia/Bishkek":{"long":["Kyrgyzstan Time","Kyrgyzstan Time"]},"Pacific/Galapagos":{"long":["Galapagos Time","Galapagos Time"]},"Pacific/Gambier":{"long":["Gambier Time","Gambier Time"]},"Pacific/Tarawa":{"long":["Gilbert Islands Time","Gilbert Islands Time"]},"Atlantic/Reykjavik":{"long":["Greenwich Mean Time","Greenwich Mean Time"],"short":["GMT","GMT"]},"Africa/Ouagadougou":{"long":["Greenwich Mean Time","Greenwich Mean Time"],"short":["GMT","GMT"]},"Africa/Abidjan":{"long":["Greenwich Mean Time","Greenwich Mean Time"],"short":["GMT","GMT"]},"Africa/Accra":{"long":["Greenwich Mean Time","Greenwich Mean Time"],"short":["GMT","GMT"]},"Africa/Banjul":{"long":["Greenwich Mean Time","Greenwich Mean Time"],"short":["GMT","GMT"]},"Africa/Conakry":{"long":["Greenwich Mean Time","Greenwich Mean Time"],"short":["GMT","GMT"]},"Africa/Bamako":{"long":["Greenwich Mean Time","Greenwich Mean Time"],"short":["GMT","GMT"]},"Africa/Nouakchott":{"long":["Greenwich Mean Time","Greenwich Mean Time"],"short":["GMT","GMT"]},"Atlantic/St_Helena":{"long":["Greenwich Mean Time","Greenwich Mean Time"],"short":["GMT","GMT"]},"Africa/Freetown":{"long":["Greenwich Mean Time","Greenwich Mean Time"],"short":["GMT","GMT"]},"Africa/Dakar":{"long":["Greenwich Mean Time","Greenwich Mean Time"],"short":["GMT","GMT"]},"Africa/Lome":{"long":["Greenwich Mean Time","Greenwich Mean Time"],"short":["GMT","GMT"]},"America/Scoresbysund":{"long":["East Greenland Standard Time","East Greenland Summer Time"]},"America/Godthab":{"long":["West Greenland Standard Time","West Greenland Summer Time"]},"Asia/Dubai":{"long":["Gulf Standard Time","Gulf Standard Time"]},"Asia/Muscat":{"long":["Gulf Standard Time","Gulf Standard Time"]},"America/Guyana":{"long":["Guyana Time","Guyana Time"]},"Pacific/Honolulu":{"long":["Hawaii-Aleutian Standard Time","Hawaii-Aleutian Daylight Time"],"short":["HAST","HADT"]},"Asia/Hong_Kong":{"long":["Hong Kong Standard Time","Hong Kong Summer Time"]},"Asia/Hovd":{"long":["Hovd Standard Time","Hovd Summer Time"]},"Asia/Calcutta":{"long":["India Standard Time","India Standard Time"]},"Asia/Colombo":{"long":["Lanka Time","Lanka Time"]},"Indian/Chagos":{"long":["Indian Ocean Time","Indian Ocean Time"]},"Asia/Bangkok":{"long":["Indochina Time","Indochina Time"]},"Asia/Phnom_Penh":{"long":["Indochina Time","Indochina Time"]},"Asia/Vientiane":{"long":["Indochina Time","Indochina Time"]},"Asia/Makassar":{"long":["Central Indonesia Time","Central Indonesia Time"]},"Asia/Jayapura":{"long":["Eastern Indonesia Time","Eastern Indonesia Time"]},"Asia/Jakarta":{"long":["Western Indonesia Time","Western Indonesia Time"]},"Asia/Tehran":{"long":["Iran Standard Time","Iran Daylight Time"]},"Asia/Irkutsk":{"long":["Irkutsk Standard Time","Irkutsk Summer Time"]},"Asia/Jerusalem":{"long":["Israel Standard Time","Israel Daylight Time"]},"Asia/Tokyo":{"long":["Japan Standard Time","Japan Daylight Time"]},"Asia/Kamchatka":{"long":["Petropavlovsk-Kamchatski Standard Time","Petropavlovsk-Kamchatski Summer Time"]},"Asia/Karachi":{"long":["Pakistan Standard Time","Pakistan Summer Time"]},"Asia/Qyzylorda":{"long":["Qyzylorda Standard Time","Qyzylorda Summer Time"]},"Asia/Seoul":{"long":["Korean Standard Time","Korean Daylight Time"]},"Pacific/Kosrae":{"long":["Kosrae Time","Kosrae Time"]},"Asia/Krasnoyarsk":{"long":["Krasnoyarsk Standard Time","Krasnoyarsk Summer Time"]},"Europe/Samara":{"long":["Samara Standard Time","Samara Summer Time"]},"Pacific/Kiritimati":{"long":["Line Islands Time","Line Islands Time"]},"Australia/Lord_Howe":{"long":["Lord Howe Standard Time","Lord Howe Daylight Time"]},"Asia/Macau":{"long":["Macao Standard Time","Macao Summer Time"]},"Antarctica/Macquarie":{"long":["Macquarie Island Time","Macquarie Island Time"]},"Asia/Magadan":{"long":["Magadan Standard Time","Magadan Summer Time"]},"Indian/Maldives":{"long":["Maldives Time","Maldives Time"]},"Pacific/Marquesas":{"long":["Marquesas Time","Marquesas Time"]},"Pacific/Majuro":{"long":["Marshall Islands Time","Marshall Islands Time"]},"Indian/Mauritius":{"long":["Mauritius Standard Time","Mauritius Summer Time"]},"Antarctica/Mawson":{"long":["Mawson Time","Mawson Time"]},"America/Santa_Isabel":{"long":["Northwest Mexico Standard Time","Northwest Mexico Daylight Time"]},"America/Mazatlan":{"long":["Mexican Pacific Standard Time","Mexican Pacific Daylight Time"]},"Asia/Ulaanbaatar":{"long":["Ulaanbaatar Standard Time","Ulaanbaatar Summer Time"]},"Europe/Moscow":{"long":["Moscow Standard Time","Moscow Summer Time"]},"Asia/Rangoon":{"long":["Myanmar Time","Myanmar Time"]},"Pacific/Nauru":{"long":["Nauru Time","Nauru Time"]},"Asia/Katmandu":{"long":["Nepal Time","Nepal Time"]},"Pacific/Noumea":{"long":["New Caledonia Standard Time","New Caledonia Summer Time"]},"Pacific/Auckland":{"long":["New Zealand Standard Time","New Zealand Daylight Time"]},"Antarctica/McMurdo":{"long":["New Zealand Standard Time","New Zealand Daylight Time"]},"America/St_Johns":{"long":["Newfoundland Standard Time","Newfoundland Daylight Time"]},"Pacific/Niue":{"long":["Niue Time","Niue Time"]},"Pacific/Norfolk":{"long":["Norfolk Island Standard Time","Norfolk Island Daylight Time"]},"America/Noronha":{"long":["Fernando de Noronha Standard Time","Fernando de Noronha Summer Time"]},"Asia/Novosibirsk":{"long":["Novosibirsk Standard Time","Novosibirsk Summer Time"]},"Asia/Omsk":{"long":["Omsk Standard Time","Omsk Summer Time"]},"Pacific/Palau":{"long":["Palau Time","Palau Time"]},"Pacific/Port_Moresby":{"long":["Papua New Guinea Time","Papua New Guinea Time"]},"America/Asuncion":{"long":["Paraguay Standard Time","Paraguay Summer Time"]},"America/Lima":{"long":["Peru Standard Time","Peru Summer Time"]},"Asia/Manila":{"long":["Philippine Standard Time","Philippine Summer Time"]},"Pacific/Enderbury":{"long":["Phoenix Islands Time","Phoenix Islands Time"]},"America/Miquelon":{"long":["St. Pierre & Miquelon Standard Time","St. Pierre & Miquelon Daylight Time"]},"Pacific/Pitcairn":{"long":["Pitcairn Time","Pitcairn Time"]},"Pacific/Ponape":{"long":["Ponape Time","Ponape Time"]},"Asia/Pyongyang":{"long":["Pyongyang Time","Pyongyang Time"]},"Indian/Reunion":{"long":["Réunion Time","Réunion Time"]},"Antarctica/Rothera":{"long":["Rothera Time","Rothera Time"]},"Asia/Sakhalin":{"long":["Sakhalin Standard Time","Sakhalin Summer Time"]},"Pacific/Pago_Pago":{"long":["Samoa Standard Time","Samoa Daylight Time"]},"Indian/Mahe":{"long":["Seychelles Time","Seychelles Time"]},"Asia/Singapore":{"long":["Singapore Standard Time","Singapore Standard Time"]},"Pacific/Guadalcanal":{"long":["Solomon Islands Time","Solomon Islands Time"]},"Atlantic/South_Georgia":{"long":["South Georgia Time","South Georgia Time"]},"Asia/Yekaterinburg":{"long":["Yekaterinburg Standard Time","Yekaterinburg Summer Time"]},"Antarctica/Syowa":{"long":["Syowa Time","Syowa Time"]},"Pacific/Tahiti":{"long":["Tahiti Time","Tahiti Time"]},"Asia/Taipei":{"long":["Taipei Standard Time","Taipei Daylight Time"]},"Asia/Tashkent":{"long":["Uzbekistan Standard Time","Uzbekistan Summer Time"]},"Pacific/Fakaofo":{"long":["Tokelau Time","Tokelau Time"]},"Pacific/Tongatapu":{"long":["Tonga Standard Time","Tonga Summer Time"]},"Pacific/Truk":{"long":["Chuuk Time","Chuuk Time"]},"Pacific/Funafuti":{"long":["Tuvalu Time","Tuvalu Time"]},"America/Montevideo":{"long":["Uruguay Standard Time","Uruguay Summer Time"]},"Pacific/Efate":{"long":["Vanuatu Standard Time","Vanuatu Summer Time"]},"America/Caracas":{"long":["Venezuela Time","Venezuela Time"]},"Asia/Vladivostok":{"long":["Vladivostok Standard Time","Vladivostok Summer Time"]},"Europe/Volgograd":{"long":["Volgograd Standard Time","Volgograd Summer Time"]},"Antarctica/Vostok":{"long":["Vostok Time","Vostok Time"]},"Pacific/Wake":{"long":["Wake Island Time","Wake Island Time"]},"Pacific/Wallis":{"long":["Wallis & Futuna Time","Wallis & Futuna Time"]},"Asia/Yakutsk":{"long":["Yakutsk Standard Time","Yakutsk Summer Time"]},"UTC":{"long":["Coordinated Universal Time","Coordinated Universal Time"],"short":["UTC","UTC"]}},"gmtFormat":"GMT{0}","hourFormat":"+HH:mm;-HH:mm","dateFormat":{"full":"EEEE, MMMM d, y","long":"MMMM d, y","medium":"MMM d, y","short":"M/d/yy"},"timeFormat":{"full":"h:mm:ss a zzzz","long":"h:mm:ss a z","medium":"h:mm:ss a","short":"h:mm a"},"dateTimeFormat":{"full":"{1} 'at' {0}","long":"{1} 'at' {0}","medium":"{1}, {0}","short":"{1}, {0}"},"formats":{"gregory":{"Bh":"h B","Bhm":"h:mm B","Bhms":"h:mm:ss B","d":"d","E":"ccc","EBhm":"E h:mm B","EBhms":"E h:mm:ss B","Ed":"d E","Ehm":"E h:mm a","EHm":"E HH:mm","Ehms":"E h:mm:ss a","EHms":"E HH:mm:ss","Gy":"y G","GyMMM":"MMM y G","GyMMMd":"MMM d, y G","GyMMMEd":"E, MMM d, y G","h":"h a","H":"HH","hm":"h:mm a","Hm":"HH:mm","hms":"h:mm:ss a","Hms":"HH:mm:ss","hmsv":"h:mm:ss a v","Hmsv":"HH:mm:ss v","hmv":"h:mm a v","Hmv":"HH:mm v","M":"L","Md":"M/d","MEd":"E, M/d","MMM":"LLL","MMMd":"MMM d","MMMEd":"E, MMM d","MMMMd":"MMMM d","ms":"mm:ss","y":"y","yM":"M/y","yMd":"M/d/y","yMEd":"E, M/d/y","yMMM":"MMM y","yMMMd":"MMM d, y","yMMMEd":"E, MMM d, y","yMMMM":"MMMM y","EEEE, MMMM d, y":"EEEE, MMMM d, y","MMMM d, y":"MMMM d, y","MMM d, y":"MMM d, y","M/d/yy":"M/d/yy","h:mm:ss a zzzz":"h:mm:ss a zzzz","h:mm:ss a z":"h:mm:ss a z","h:mm:ss a":"h:mm:ss a","h:mm a":"h:mm a","EEEE, MMMM d, y 'at' h:mm:ss a zzzz":"EEEE, MMMM d, y 'at' h:mm:ss a zzzz","MMMM d, y 'at' h:mm:ss a zzzz":"MMMM d, y 'at' h:mm:ss a zzzz","MMM d, y, h:mm:ss a zzzz":"MMM d, y, h:mm:ss a zzzz","M/d/yy, h:mm:ss a zzzz":"M/d/yy, h:mm:ss a zzzz","d, h:mm:ss a zzzz":"d, h:mm:ss a zzzz","E, h:mm:ss a zzzz":"ccc, h:mm:ss a zzzz","Ed, h:mm:ss a zzzz":"d E, h:mm:ss a zzzz","Gy, h:mm:ss a zzzz":"y G, h:mm:ss a zzzz","GyMMM, h:mm:ss a zzzz":"MMM y G, h:mm:ss a zzzz","GyMMMd, h:mm:ss a zzzz":"MMM d, y G, h:mm:ss a zzzz","GyMMMEd, h:mm:ss a zzzz":"E, MMM d, y G, h:mm:ss a zzzz","M, h:mm:ss a zzzz":"L, h:mm:ss a zzzz","Md, h:mm:ss a zzzz":"M/d, h:mm:ss a zzzz","MEd, h:mm:ss a zzzz":"E, M/d, h:mm:ss a zzzz","MMM, h:mm:ss a zzzz":"LLL, h:mm:ss a zzzz","MMMd, h:mm:ss a zzzz":"MMM d, h:mm:ss a zzzz","MMMEd, h:mm:ss a zzzz":"E, MMM d, h:mm:ss a zzzz","MMMMd 'at' h:mm:ss a zzzz":"MMMM d 'at' h:mm:ss a zzzz","y, h:mm:ss a zzzz":"y, h:mm:ss a zzzz","yM, h:mm:ss a zzzz":"M/y, h:mm:ss a zzzz","yMd, h:mm:ss a zzzz":"M/d/y, h:mm:ss a zzzz","yMEd, h:mm:ss a zzzz":"E, M/d/y, h:mm:ss a zzzz","yMMM, h:mm:ss a zzzz":"MMM y, h:mm:ss a zzzz","yMMMd, h:mm:ss a zzzz":"MMM d, y, h:mm:ss a zzzz","yMMMEd, h:mm:ss a zzzz":"E, MMM d, y, h:mm:ss a zzzz","yMMMM 'at' h:mm:ss a zzzz":"MMMM y 'at' h:mm:ss a zzzz","EEEE, MMMM d, y 'at' h:mm:ss a z":"EEEE, MMMM d, y 'at' h:mm:ss a z","MMMM d, y 'at' h:mm:ss a z":"MMMM d, y 'at' h:mm:ss a z","MMM d, y, h:mm:ss a z":"MMM d, y, h:mm:ss a z","M/d/yy, h:mm:ss a z":"M/d/yy, h:mm:ss a z","d, h:mm:ss a z":"d, h:mm:ss a z","E, h:mm:ss a z":"ccc, h:mm:ss a z","Ed, h:mm:ss a z":"d E, h:mm:ss a z","Gy, h:mm:ss a z":"y G, h:mm:ss a z","GyMMM, h:mm:ss a z":"MMM y G, h:mm:ss a z","GyMMMd, h:mm:ss a z":"MMM d, y G, h:mm:ss a z","GyMMMEd, h:mm:ss a z":"E, MMM d, y G, h:mm:ss a z","M, h:mm:ss a z":"L, h:mm:ss a z","Md, h:mm:ss a z":"M/d, h:mm:ss a z","MEd, h:mm:ss a z":"E, M/d, h:mm:ss a z","MMM, h:mm:ss a z":"LLL, h:mm:ss a z","MMMd, h:mm:ss a z":"MMM d, h:mm:ss a z","MMMEd, h:mm:ss a z":"E, MMM d, h:mm:ss a z","MMMMd 'at' h:mm:ss a z":"MMMM d 'at' h:mm:ss a z","y, h:mm:ss a z":"y, h:mm:ss a z","yM, h:mm:ss a z":"M/y, h:mm:ss a z","yMd, h:mm:ss a z":"M/d/y, h:mm:ss a z","yMEd, h:mm:ss a z":"E, M/d/y, h:mm:ss a z","yMMM, h:mm:ss a z":"MMM y, h:mm:ss a z","yMMMd, h:mm:ss a z":"MMM d, y, h:mm:ss a z","yMMMEd, h:mm:ss a z":"E, MMM d, y, h:mm:ss a z","yMMMM 'at' h:mm:ss a z":"MMMM y 'at' h:mm:ss a z","EEEE, MMMM d, y 'at' h:mm:ss a":"EEEE, MMMM d, y 'at' h:mm:ss a","MMMM d, y 'at' h:mm:ss a":"MMMM d, y 'at' h:mm:ss a","MMM d, y, h:mm:ss a":"MMM d, y, h:mm:ss a","M/d/yy, h:mm:ss a":"M/d/yy, h:mm:ss a","d, h:mm:ss a":"d, h:mm:ss a","E, h:mm:ss a":"ccc, h:mm:ss a","Ed, h:mm:ss a":"d E, h:mm:ss a","Gy, h:mm:ss a":"y G, h:mm:ss a","GyMMM, h:mm:ss a":"MMM y G, h:mm:ss a","GyMMMd, h:mm:ss a":"MMM d, y G, h:mm:ss a","GyMMMEd, h:mm:ss a":"E, MMM d, y G, h:mm:ss a","M, h:mm:ss a":"L, h:mm:ss a","Md, h:mm:ss a":"M/d, h:mm:ss a","MEd, h:mm:ss a":"E, M/d, h:mm:ss a","MMM, h:mm:ss a":"LLL, h:mm:ss a","MMMd, h:mm:ss a":"MMM d, h:mm:ss a","MMMEd, h:mm:ss a":"E, MMM d, h:mm:ss a","MMMMd 'at' h:mm:ss a":"MMMM d 'at' h:mm:ss a","y, h:mm:ss a":"y, h:mm:ss a","yM, h:mm:ss a":"M/y, h:mm:ss a","yMd, h:mm:ss a":"M/d/y, h:mm:ss a","yMEd, h:mm:ss a":"E, M/d/y, h:mm:ss a","yMMM, h:mm:ss a":"MMM y, h:mm:ss a","yMMMd, h:mm:ss a":"MMM d, y, h:mm:ss a","yMMMEd, h:mm:ss a":"E, MMM d, y, h:mm:ss a","yMMMM 'at' h:mm:ss a":"MMMM y 'at' h:mm:ss a","EEEE, MMMM d, y 'at' h:mm a":"EEEE, MMMM d, y 'at' h:mm a","MMMM d, y 'at' h:mm a":"MMMM d, y 'at' h:mm a","MMM d, y, h:mm a":"MMM d, y, h:mm a","M/d/yy, h:mm a":"M/d/yy, h:mm a","d, h:mm a":"d, h:mm a","E, h:mm a":"ccc, h:mm a","Ed, h:mm a":"d E, h:mm a","Gy, h:mm a":"y G, h:mm a","GyMMM, h:mm a":"MMM y G, h:mm a","GyMMMd, h:mm a":"MMM d, y G, h:mm a","GyMMMEd, h:mm a":"E, MMM d, y G, h:mm a","M, h:mm a":"L, h:mm a","Md, h:mm a":"M/d, h:mm a","MEd, h:mm a":"E, M/d, h:mm a","MMM, h:mm a":"LLL, h:mm a","MMMd, h:mm a":"MMM d, h:mm a","MMMEd, h:mm a":"E, MMM d, h:mm a","MMMMd 'at' h:mm a":"MMMM d 'at' h:mm a","y, h:mm a":"y, h:mm a","yM, h:mm a":"M/y, h:mm a","yMd, h:mm a":"M/d/y, h:mm a","yMEd, h:mm a":"E, M/d/y, h:mm a","yMMM, h:mm a":"MMM y, h:mm a","yMMMd, h:mm a":"MMM d, y, h:mm a","yMMMEd, h:mm a":"E, MMM d, y, h:mm a","yMMMM 'at' h:mm a":"MMMM y 'at' h:mm a","EEEE, MMMM d, y 'at' Bh":"EEEE, MMMM d, y 'at' h B","MMMM d, y 'at' Bh":"MMMM d, y 'at' h B","MMM d, y, Bh":"MMM d, y, h B","M/d/yy, Bh":"M/d/yy, h B","d, Bh":"d, h B","E, Bh":"ccc, h B","Ed, Bh":"d E, h B","Gy, Bh":"y G, h B","GyMMM, Bh":"MMM y G, h B","GyMMMd, Bh":"MMM d, y G, h B","GyMMMEd, Bh":"E, MMM d, y G, h B","M, Bh":"L, h B","Md, Bh":"M/d, h B","MEd, Bh":"E, M/d, h B","MMM, Bh":"LLL, h B","MMMd, Bh":"MMM d, h B","MMMEd, Bh":"E, MMM d, h B","MMMMd 'at' Bh":"MMMM d 'at' h B","y, Bh":"y, h B","yM, Bh":"M/y, h B","yMd, Bh":"M/d/y, h B","yMEd, Bh":"E, M/d/y, h B","yMMM, Bh":"MMM y, h B","yMMMd, Bh":"MMM d, y, h B","yMMMEd, Bh":"E, MMM d, y, h B","yMMMM 'at' Bh":"MMMM y 'at' h B","EEEE, MMMM d, y 'at' Bhm":"EEEE, MMMM d, y 'at' h:mm B","MMMM d, y 'at' Bhm":"MMMM d, y 'at' h:mm B","MMM d, y, Bhm":"MMM d, y, h:mm B","M/d/yy, Bhm":"M/d/yy, h:mm B","d, Bhm":"d, h:mm B","E, Bhm":"ccc, h:mm B","Ed, Bhm":"d E, h:mm B","Gy, Bhm":"y G, h:mm B","GyMMM, Bhm":"MMM y G, h:mm B","GyMMMd, Bhm":"MMM d, y G, h:mm B","GyMMMEd, Bhm":"E, MMM d, y G, h:mm B","M, Bhm":"L, h:mm B","Md, Bhm":"M/d, h:mm B","MEd, Bhm":"E, M/d, h:mm B","MMM, Bhm":"LLL, h:mm B","MMMd, Bhm":"MMM d, h:mm B","MMMEd, Bhm":"E, MMM d, h:mm B","MMMMd 'at' Bhm":"MMMM d 'at' h:mm B","y, Bhm":"y, h:mm B","yM, Bhm":"M/y, h:mm B","yMd, Bhm":"M/d/y, h:mm B","yMEd, Bhm":"E, M/d/y, h:mm B","yMMM, Bhm":"MMM y, h:mm B","yMMMd, Bhm":"MMM d, y, h:mm B","yMMMEd, Bhm":"E, MMM d, y, h:mm B","yMMMM 'at' Bhm":"MMMM y 'at' h:mm B","EEEE, MMMM d, y 'at' Bhms":"EEEE, MMMM d, y 'at' h:mm:ss B","MMMM d, y 'at' Bhms":"MMMM d, y 'at' h:mm:ss B","MMM d, y, Bhms":"MMM d, y, h:mm:ss B","M/d/yy, Bhms":"M/d/yy, h:mm:ss B","d, Bhms":"d, h:mm:ss B","E, Bhms":"ccc, h:mm:ss B","Ed, Bhms":"d E, h:mm:ss B","Gy, Bhms":"y G, h:mm:ss B","GyMMM, Bhms":"MMM y G, h:mm:ss B","GyMMMd, Bhms":"MMM d, y G, h:mm:ss B","GyMMMEd, Bhms":"E, MMM d, y G, h:mm:ss B","M, Bhms":"L, h:mm:ss B","Md, Bhms":"M/d, h:mm:ss B","MEd, Bhms":"E, M/d, h:mm:ss B","MMM, Bhms":"LLL, h:mm:ss B","MMMd, Bhms":"MMM d, h:mm:ss B","MMMEd, Bhms":"E, MMM d, h:mm:ss B","MMMMd 'at' Bhms":"MMMM d 'at' h:mm:ss B","y, Bhms":"y, h:mm:ss B","yM, Bhms":"M/y, h:mm:ss B","yMd, Bhms":"M/d/y, h:mm:ss B","yMEd, Bhms":"E, M/d/y, h:mm:ss B","yMMM, Bhms":"MMM y, h:mm:ss B","yMMMd, Bhms":"MMM d, y, h:mm:ss B","yMMMEd, Bhms":"E, MMM d, y, h:mm:ss B","yMMMM 'at' Bhms":"MMMM y 'at' h:mm:ss B","EEEE, MMMM d, y 'at' h":"EEEE, MMMM d, y 'at' h a","MMMM d, y 'at' h":"MMMM d, y 'at' h a","MMM d, y, h":"MMM d, y, h a","M/d/yy, h":"M/d/yy, h a","d, h":"d, h a","E, h":"ccc, h a","Ed, h":"d E, h a","Gy, h":"y G, h a","GyMMM, h":"MMM y G, h a","GyMMMd, h":"MMM d, y G, h a","GyMMMEd, h":"E, MMM d, y G, h a","M, h":"L, h a","Md, h":"M/d, h a","MEd, h":"E, M/d, h a","MMM, h":"LLL, h a","MMMd, h":"MMM d, h a","MMMEd, h":"E, MMM d, h a","MMMMd 'at' h":"MMMM d 'at' h a","y, h":"y, h a","yM, h":"M/y, h a","yMd, h":"M/d/y, h a","yMEd, h":"E, M/d/y, h a","yMMM, h":"MMM y, h a","yMMMd, h":"MMM d, y, h a","yMMMEd, h":"E, MMM d, y, h a","yMMMM 'at' h":"MMMM y 'at' h a","EEEE, MMMM d, y 'at' H":"EEEE, MMMM d, y 'at' HH","MMMM d, y 'at' H":"MMMM d, y 'at' HH","MMM d, y, H":"MMM d, y, HH","M/d/yy, H":"M/d/yy, HH","d, H":"d, HH","E, H":"ccc, HH","Ed, H":"d E, HH","Gy, H":"y G, HH","GyMMM, H":"MMM y G, HH","GyMMMd, H":"MMM d, y G, HH","GyMMMEd, H":"E, MMM d, y G, HH","M, H":"L, HH","Md, H":"M/d, HH","MEd, H":"E, M/d, HH","MMM, H":"LLL, HH","MMMd, H":"MMM d, HH","MMMEd, H":"E, MMM d, HH","MMMMd 'at' H":"MMMM d 'at' HH","y, H":"y, HH","yM, H":"M/y, HH","yMd, H":"M/d/y, HH","yMEd, H":"E, M/d/y, HH","yMMM, H":"MMM y, HH","yMMMd, H":"MMM d, y, HH","yMMMEd, H":"E, MMM d, y, HH","yMMMM 'at' H":"MMMM y 'at' HH","EEEE, MMMM d, y 'at' hm":"EEEE, MMMM d, y 'at' h:mm a","MMMM d, y 'at' hm":"MMMM d, y 'at' h:mm a","MMM d, y, hm":"MMM d, y, h:mm a","M/d/yy, hm":"M/d/yy, h:mm a","d, hm":"d, h:mm a","E, hm":"ccc, h:mm a","Ed, hm":"d E, h:mm a","Gy, hm":"y G, h:mm a","GyMMM, hm":"MMM y G, h:mm a","GyMMMd, hm":"MMM d, y G, h:mm a","GyMMMEd, hm":"E, MMM d, y G, h:mm a","M, hm":"L, h:mm a","Md, hm":"M/d, h:mm a","MEd, hm":"E, M/d, h:mm a","MMM, hm":"LLL, h:mm a","MMMd, hm":"MMM d, h:mm a","MMMEd, hm":"E, MMM d, h:mm a","MMMMd 'at' hm":"MMMM d 'at' h:mm a","y, hm":"y, h:mm a","yM, hm":"M/y, h:mm a","yMd, hm":"M/d/y, h:mm a","yMEd, hm":"E, M/d/y, h:mm a","yMMM, hm":"MMM y, h:mm a","yMMMd, hm":"MMM d, y, h:mm a","yMMMEd, hm":"E, MMM d, y, h:mm a","yMMMM 'at' hm":"MMMM y 'at' h:mm a","EEEE, MMMM d, y 'at' Hm":"EEEE, MMMM d, y 'at' HH:mm","MMMM d, y 'at' Hm":"MMMM d, y 'at' HH:mm","MMM d, y, Hm":"MMM d, y, HH:mm","M/d/yy, Hm":"M/d/yy, HH:mm","d, Hm":"d, HH:mm","E, Hm":"ccc, HH:mm","Ed, Hm":"d E, HH:mm","Gy, Hm":"y G, HH:mm","GyMMM, Hm":"MMM y G, HH:mm","GyMMMd, Hm":"MMM d, y G, HH:mm","GyMMMEd, Hm":"E, MMM d, y G, HH:mm","M, Hm":"L, HH:mm","Md, Hm":"M/d, HH:mm","MEd, Hm":"E, M/d, HH:mm","MMM, Hm":"LLL, HH:mm","MMMd, Hm":"MMM d, HH:mm","MMMEd, Hm":"E, MMM d, HH:mm","MMMMd 'at' Hm":"MMMM d 'at' HH:mm","y, Hm":"y, HH:mm","yM, Hm":"M/y, HH:mm","yMd, Hm":"M/d/y, HH:mm","yMEd, Hm":"E, M/d/y, HH:mm","yMMM, Hm":"MMM y, HH:mm","yMMMd, Hm":"MMM d, y, HH:mm","yMMMEd, Hm":"E, MMM d, y, HH:mm","yMMMM 'at' Hm":"MMMM y 'at' HH:mm","EEEE, MMMM d, y 'at' hms":"EEEE, MMMM d, y 'at' h:mm:ss a","MMMM d, y 'at' hms":"MMMM d, y 'at' h:mm:ss a","MMM d, y, hms":"MMM d, y, h:mm:ss a","M/d/yy, hms":"M/d/yy, h:mm:ss a","d, hms":"d, h:mm:ss a","E, hms":"ccc, h:mm:ss a","Ed, hms":"d E, h:mm:ss a","Gy, hms":"y G, h:mm:ss a","GyMMM, hms":"MMM y G, h:mm:ss a","GyMMMd, hms":"MMM d, y G, h:mm:ss a","GyMMMEd, hms":"E, MMM d, y G, h:mm:ss a","M, hms":"L, h:mm:ss a","Md, hms":"M/d, h:mm:ss a","MEd, hms":"E, M/d, h:mm:ss a","MMM, hms":"LLL, h:mm:ss a","MMMd, hms":"MMM d, h:mm:ss a","MMMEd, hms":"E, MMM d, h:mm:ss a","MMMMd 'at' hms":"MMMM d 'at' h:mm:ss a","y, hms":"y, h:mm:ss a","yM, hms":"M/y, h:mm:ss a","yMd, hms":"M/d/y, h:mm:ss a","yMEd, hms":"E, M/d/y, h:mm:ss a","yMMM, hms":"MMM y, h:mm:ss a","yMMMd, hms":"MMM d, y, h:mm:ss a","yMMMEd, hms":"E, MMM d, y, h:mm:ss a","yMMMM 'at' hms":"MMMM y 'at' h:mm:ss a","EEEE, MMMM d, y 'at' Hms":"EEEE, MMMM d, y 'at' HH:mm:ss","MMMM d, y 'at' Hms":"MMMM d, y 'at' HH:mm:ss","MMM d, y, Hms":"MMM d, y, HH:mm:ss","M/d/yy, Hms":"M/d/yy, HH:mm:ss","d, Hms":"d, HH:mm:ss","E, Hms":"ccc, HH:mm:ss","Ed, Hms":"d E, HH:mm:ss","Gy, Hms":"y G, HH:mm:ss","GyMMM, Hms":"MMM y G, HH:mm:ss","GyMMMd, Hms":"MMM d, y G, HH:mm:ss","GyMMMEd, Hms":"E, MMM d, y G, HH:mm:ss","M, Hms":"L, HH:mm:ss","Md, Hms":"M/d, HH:mm:ss","MEd, Hms":"E, M/d, HH:mm:ss","MMM, Hms":"LLL, HH:mm:ss","MMMd, Hms":"MMM d, HH:mm:ss","MMMEd, Hms":"E, MMM d, HH:mm:ss","MMMMd 'at' Hms":"MMMM d 'at' HH:mm:ss","y, Hms":"y, HH:mm:ss","yM, Hms":"M/y, HH:mm:ss","yMd, Hms":"M/d/y, HH:mm:ss","yMEd, Hms":"E, M/d/y, HH:mm:ss","yMMM, Hms":"MMM y, HH:mm:ss","yMMMd, Hms":"MMM d, y, HH:mm:ss","yMMMEd, Hms":"E, MMM d, y, HH:mm:ss","yMMMM 'at' Hms":"MMMM y 'at' HH:mm:ss","EEEE, MMMM d, y 'at' hmsv":"EEEE, MMMM d, y 'at' h:mm:ss a v","MMMM d, y 'at' hmsv":"MMMM d, y 'at' h:mm:ss a v","MMM d, y, hmsv":"MMM d, y, h:mm:ss a v","M/d/yy, hmsv":"M/d/yy, h:mm:ss a v","d, hmsv":"d, h:mm:ss a v","E, hmsv":"ccc, h:mm:ss a v","Ed, hmsv":"d E, h:mm:ss a v","Gy, hmsv":"y G, h:mm:ss a v","GyMMM, hmsv":"MMM y G, h:mm:ss a v","GyMMMd, hmsv":"MMM d, y G, h:mm:ss a v","GyMMMEd, hmsv":"E, MMM d, y G, h:mm:ss a v","M, hmsv":"L, h:mm:ss a v","Md, hmsv":"M/d, h:mm:ss a v","MEd, hmsv":"E, M/d, h:mm:ss a v","MMM, hmsv":"LLL, h:mm:ss a v","MMMd, hmsv":"MMM d, h:mm:ss a v","MMMEd, hmsv":"E, MMM d, h:mm:ss a v","MMMMd 'at' hmsv":"MMMM d 'at' h:mm:ss a v","y, hmsv":"y, h:mm:ss a v","yM, hmsv":"M/y, h:mm:ss a v","yMd, hmsv":"M/d/y, h:mm:ss a v","yMEd, hmsv":"E, M/d/y, h:mm:ss a v","yMMM, hmsv":"MMM y, h:mm:ss a v","yMMMd, hmsv":"MMM d, y, h:mm:ss a v","yMMMEd, hmsv":"E, MMM d, y, h:mm:ss a v","yMMMM 'at' hmsv":"MMMM y 'at' h:mm:ss a v","EEEE, MMMM d, y 'at' Hmsv":"EEEE, MMMM d, y 'at' HH:mm:ss v","MMMM d, y 'at' Hmsv":"MMMM d, y 'at' HH:mm:ss v","MMM d, y, Hmsv":"MMM d, y, HH:mm:ss v","M/d/yy, Hmsv":"M/d/yy, HH:mm:ss v","d, Hmsv":"d, HH:mm:ss v","E, Hmsv":"ccc, HH:mm:ss v","Ed, Hmsv":"d E, HH:mm:ss v","Gy, Hmsv":"y G, HH:mm:ss v","GyMMM, Hmsv":"MMM y G, HH:mm:ss v","GyMMMd, Hmsv":"MMM d, y G, HH:mm:ss v","GyMMMEd, Hmsv":"E, MMM d, y G, HH:mm:ss v","M, Hmsv":"L, HH:mm:ss v","Md, Hmsv":"M/d, HH:mm:ss v","MEd, Hmsv":"E, M/d, HH:mm:ss v","MMM, Hmsv":"LLL, HH:mm:ss v","MMMd, Hmsv":"MMM d, HH:mm:ss v","MMMEd, Hmsv":"E, MMM d, HH:mm:ss v","MMMMd 'at' Hmsv":"MMMM d 'at' HH:mm:ss v","y, Hmsv":"y, HH:mm:ss v","yM, Hmsv":"M/y, HH:mm:ss v","yMd, Hmsv":"M/d/y, HH:mm:ss v","yMEd, Hmsv":"E, M/d/y, HH:mm:ss v","yMMM, Hmsv":"MMM y, HH:mm:ss v","yMMMd, Hmsv":"MMM d, y, HH:mm:ss v","yMMMEd, Hmsv":"E, MMM d, y, HH:mm:ss v","yMMMM 'at' Hmsv":"MMMM y 'at' HH:mm:ss v","EEEE, MMMM d, y 'at' hmv":"EEEE, MMMM d, y 'at' h:mm a v","MMMM d, y 'at' hmv":"MMMM d, y 'at' h:mm a v","MMM d, y, hmv":"MMM d, y, h:mm a v","M/d/yy, hmv":"M/d/yy, h:mm a v","d, hmv":"d, h:mm a v","E, hmv":"ccc, h:mm a v","Ed, hmv":"d E, h:mm a v","Gy, hmv":"y G, h:mm a v","GyMMM, hmv":"MMM y G, h:mm a v","GyMMMd, hmv":"MMM d, y G, h:mm a v","GyMMMEd, hmv":"E, MMM d, y G, h:mm a v","M, hmv":"L, h:mm a v","Md, hmv":"M/d, h:mm a v","MEd, hmv":"E, M/d, h:mm a v","MMM, hmv":"LLL, h:mm a v","MMMd, hmv":"MMM d, h:mm a v","MMMEd, hmv":"E, MMM d, h:mm a v","MMMMd 'at' hmv":"MMMM d 'at' h:mm a v","y, hmv":"y, h:mm a v","yM, hmv":"M/y, h:mm a v","yMd, hmv":"M/d/y, h:mm a v","yMEd, hmv":"E, M/d/y, h:mm a v","yMMM, hmv":"MMM y, h:mm a v","yMMMd, hmv":"MMM d, y, h:mm a v","yMMMEd, hmv":"E, MMM d, y, h:mm a v","yMMMM 'at' hmv":"MMMM y 'at' h:mm a v","EEEE, MMMM d, y 'at' Hmv":"EEEE, MMMM d, y 'at' HH:mm v","MMMM d, y 'at' Hmv":"MMMM d, y 'at' HH:mm v","MMM d, y, Hmv":"MMM d, y, HH:mm v","M/d/yy, Hmv":"M/d/yy, HH:mm v","d, Hmv":"d, HH:mm v","E, Hmv":"ccc, HH:mm v","Ed, Hmv":"d E, HH:mm v","Gy, Hmv":"y G, HH:mm v","GyMMM, Hmv":"MMM y G, HH:mm v","GyMMMd, Hmv":"MMM d, y G, HH:mm v","GyMMMEd, Hmv":"E, MMM d, y G, HH:mm v","M, Hmv":"L, HH:mm v","Md, Hmv":"M/d, HH:mm v","MEd, Hmv":"E, M/d, HH:mm v","MMM, Hmv":"LLL, HH:mm v","MMMd, Hmv":"MMM d, HH:mm v","MMMEd, Hmv":"E, MMM d, HH:mm v","MMMMd 'at' Hmv":"MMMM d 'at' HH:mm v","y, Hmv":"y, HH:mm v","yM, Hmv":"M/y, HH:mm v","yMd, Hmv":"M/d/y, HH:mm v","yMEd, Hmv":"E, M/d/y, HH:mm v","yMMM, Hmv":"MMM y, HH:mm v","yMMMd, Hmv":"MMM d, y, HH:mm v","yMMMEd, Hmv":"E, MMM d, y, HH:mm v","yMMMM 'at' Hmv":"MMMM y 'at' HH:mm v","EEEE, MMMM d, y 'at' ms":"EEEE, MMMM d, y 'at' mm:ss","MMMM d, y 'at' ms":"MMMM d, y 'at' mm:ss","MMM d, y, ms":"MMM d, y, mm:ss","M/d/yy, ms":"M/d/yy, mm:ss","d, ms":"d, mm:ss","E, ms":"ccc, mm:ss","Ed, ms":"d E, mm:ss","Gy, ms":"y G, mm:ss","GyMMM, ms":"MMM y G, mm:ss","GyMMMd, ms":"MMM d, y G, mm:ss","GyMMMEd, ms":"E, MMM d, y G, mm:ss","M, ms":"L, mm:ss","Md, ms":"M/d, mm:ss","MEd, ms":"E, M/d, mm:ss","MMM, ms":"LLL, mm:ss","MMMd, ms":"MMM d, mm:ss","MMMEd, ms":"E, MMM d, mm:ss","MMMMd 'at' ms":"MMMM d 'at' mm:ss","y, ms":"y, mm:ss","yM, ms":"M/y, mm:ss","yMd, ms":"M/d/y, mm:ss","yMEd, ms":"E, M/d/y, mm:ss","yMMM, ms":"MMM y, mm:ss","yMMMd, ms":"MMM d, y, mm:ss","yMMMEd, ms":"E, MMM d, y, mm:ss","yMMMM 'at' ms":"MMMM y 'at' mm:ss"}},"intervalFormats":{"intervalFormatFallback":"{0} – {1}","Bh":{"B":"h B – h B","h":"h – h B"},"Bhm":{"B":"h:mm B – h:mm B","h":"h:mm – h:mm B","m":"h:mm – h:mm B"},"d":{"d":"d – d"},"Gy":{"G":"y G – y G","y":"y – y G"},"GyM":{"G":"M/y GGGGG – M/y GGGGG","M":"M/y – M/y GGGGG","y":"M/y – M/y GGGGG"},"GyMd":{"d":"M/d/y – M/d/y GGGGG","G":"M/d/y GGGGG – M/d/y GGGGG","M":"M/d/y – M/d/y GGGGG","y":"M/d/y – M/d/y GGGGG"},"GyMEd":{"d":"E, M/d/y – E, M/d/y GGGGG","G":"E, M/d/y GGGGG – E, M/d/y GGGGG","M":"E, M/d/y – E, M/d/y GGGGG","y":"E, M/d/y – E, M/d/y GGGGG"},"GyMMM":{"G":"MMM y G – MMM y G","M":"MMM – MMM y G","y":"MMM y – MMM y G"},"GyMMMd":{"d":"MMM d – d, y G","G":"MMM d, y G – MMM d, y G","M":"MMM d – MMM d, y G","y":"MMM d, y – MMM d, y G"},"GyMMMEd":{"d":"E, MMM d – E, MMM d, y G","G":"E, MMM d, y G – E, MMM d, y G","M":"E, MMM d – E, MMM d, y G","y":"E, MMM d, y – E, MMM d, y G"},"h":{"a":"h a – h a","h":"h – h a"},"H":{"H":"HH – HH"},"hm":{"a":"h:mm a – h:mm a","h":"h:mm – h:mm a","m":"h:mm – h:mm a"},"Hm":{"H":"HH:mm – HH:mm","m":"HH:mm – HH:mm"},"hmv":{"a":"h:mm a – h:mm a v","h":"h:mm – h:mm a v","m":"h:mm – h:mm a v"},"Hmv":{"H":"HH:mm – HH:mm v","m":"HH:mm – HH:mm v"},"hv":{"a":"h a – h a v","h":"h – h a v"},"Hv":{"H":"HH – HH v"},"M":{"M":"M – M"},"Md":{"d":"M/d – M/d","M":"M/d – M/d"},"MEd":{"d":"E, M/d – E, M/d","M":"E, M/d – E, M/d"},"MMM":{"M":"MMM – MMM"},"MMMd":{"d":"MMM d – d","M":"MMM d – MMM d"},"MMMEd":{"d":"E, MMM d – E, MMM d","M":"E, MMM d – E, MMM d"},"y":{"y":"y – y"},"yM":{"M":"M/y – M/y","y":"M/y – M/y"},"yMd":{"d":"M/d/y – M/d/y","M":"M/d/y – M/d/y","y":"M/d/y – M/d/y"},"yMEd":{"d":"E, M/d/y – E, M/d/y","M":"E, M/d/y – E, M/d/y","y":"E, M/d/y – E, M/d/y"},"yMMM":{"M":"MMM – MMM y","y":"MMM y – MMM y"},"yMMMd":{"d":"MMM d – d, y","M":"MMM d – MMM d, y","y":"MMM d, y – MMM d, y"},"yMMMEd":{"d":"E, MMM d – E, MMM d, y","M":"E, MMM d – E, MMM d, y","y":"E, MMM d, y – E, MMM d, y"},"yMMMM":{"M":"MMMM – MMMM y","y":"MMMM y – MMMM y"}},"hourCycle":"h12","nu":["latn"],"ca":["gregory"],"hc":["h12","","h23",""]},"locale":"en"} ) } } if (!("Int8Array"in self&&"toLocaleString"in self.Int8Array.prototype )) { // TypedArray.prototype.toLocaleString /* global CreateMethodProperty */ // 23.2.3.31 %TypedArray%.prototype.toLocaleString ( [ reserved1 [ , reserved2 ] ] ) (function () { var fnName = 'toLocaleString' // %TypedArray%.prototype.toLocaleString is a distinct function that implements the same algorithm as Array.prototype.toLocaleString function toLocaleString () { return Array.prototype.toLocaleString.call(this, arguments); } // use "Int8Array" as a proxy for all "TypedArray" subclasses // in IE11, `Int8Array.prototype` inherits directly from `Object.prototype` // in that case, don't define it on the parent; define it directly on the prototype if ('__proto__' in self.Int8Array.prototype && self.Int8Array.prototype.__proto__ !== Object.prototype) { // set this on the underlying "TypedArrayPrototype", which is shared with all "TypedArray" subclasses CreateMethodProperty(self.Int8Array.prototype.__proto__, fnName, toLocaleString); } else { CreateMethodProperty(self.Int8Array.prototype, fnName, toLocaleString); CreateMethodProperty(self.Uint8Array.prototype, fnName, toLocaleString); CreateMethodProperty(self.Uint8ClampedArray.prototype, fnName, toLocaleString); CreateMethodProperty(self.Int16Array.prototype, fnName, toLocaleString); CreateMethodProperty(self.Uint16Array.prototype, fnName, toLocaleString); CreateMethodProperty(self.Int32Array.prototype, fnName, toLocaleString); CreateMethodProperty(self.Uint32Array.prototype, fnName, toLocaleString); CreateMethodProperty(self.Float32Array.prototype, fnName, toLocaleString); CreateMethodProperty(self.Float64Array.prototype, fnName, toLocaleString); } })(); } if (!("Intl"in self&&"RelativeTimeFormat"in self.Intl )) { // Intl.RelativeTimeFormat (function() { // node_modules/tslib/tslib.es6.js var extendStatics = function(d, b) { extendStatics = Object.setPrototypeOf || {__proto__: []} instanceof Array && function(d2, b2) { d2.__proto__ = b2; } || function(d2, b2) { for (var p in b2) if (Object.prototype.hasOwnProperty.call(b2, p)) d2[p] = b2[p]; }; return extendStatics(d, b); }; function __extends(d, b) { if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/utils.js var UNICODE_EXTENSION_SEQUENCE_REGEX = /-u(?:-[0-9a-z]{2,8})+/gi; function invariant(condition, message, Err) { if (Err === void 0) { Err = Error; } if (!condition) { throw new Err(message); } } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/types/date-time.js var RangePatternType; (function(RangePatternType2) { RangePatternType2["startRange"] = "startRange"; RangePatternType2["shared"] = "shared"; RangePatternType2["endRange"] = "endRange"; })(RangePatternType || (RangePatternType = {})); // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/CanonicalizeLocaleList.js function CanonicalizeLocaleList(locales) { return Intl.getCanonicalLocales(locales); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/262.js function ToString(o) { if (typeof o === "symbol") { throw TypeError("Cannot convert a Symbol value to a string"); } return String(o); } function ToObject(arg) { if (arg == null) { throw new TypeError("undefined/null cannot be converted to object"); } return Object(arg); } function SameValue(x, y) { if (Object.is) { return Object.is(x, y); } if (x === y) { return x !== 0 || 1 / x === 1 / y; } return x !== x && y !== y; } function Type(x) { if (x === null) { return "Null"; } if (typeof x === "undefined") { return "Undefined"; } if (typeof x === "function" || typeof x === "object") { return "Object"; } if (typeof x === "number") { return "Number"; } if (typeof x === "boolean") { return "Boolean"; } if (typeof x === "string") { return "String"; } if (typeof x === "symbol") { return "Symbol"; } if (typeof x === "bigint") { return "BigInt"; } } var MINUTES_PER_HOUR = 60; var SECONDS_PER_MINUTE = 60; var MS_PER_SECOND = 1e3; var MS_PER_MINUTE = MS_PER_SECOND * SECONDS_PER_MINUTE; var MS_PER_HOUR = MS_PER_MINUTE * MINUTES_PER_HOUR; // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/CoerceOptionsToObject.js function CoerceOptionsToObject(options) { if (typeof options === "undefined") { return Object.create(null); } return ToObject(options); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/PartitionPattern.js function PartitionPattern(pattern) { var result = []; var beginIndex = pattern.indexOf("{"); var endIndex = 0; var nextIndex = 0; var length = pattern.length; while (beginIndex < pattern.length && beginIndex > -1) { endIndex = pattern.indexOf("}", beginIndex); invariant(endIndex > beginIndex, "Invalid pattern " + pattern); if (beginIndex > nextIndex) { result.push({ type: "literal", value: pattern.substring(nextIndex, beginIndex) }); } result.push({ type: pattern.substring(beginIndex + 1, endIndex), value: void 0 }); nextIndex = endIndex + 1; beginIndex = pattern.indexOf("{", nextIndex); } if (nextIndex < length) { result.push({ type: "literal", value: pattern.substring(nextIndex, length) }); } return result; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/GetOption.js function GetOption(opts, prop, type, values, fallback) { if (typeof opts !== "object") { throw new TypeError("Options must be an object"); } var value = opts[prop]; if (value !== void 0) { if (type !== "boolean" && type !== "string") { throw new TypeError("invalid type"); } if (type === "boolean") { value = Boolean(value); } if (type === "string") { value = ToString(value); } if (values !== void 0 && !values.filter(function(val) { return val == value; }).length) { throw new RangeError(value + " is not within " + values.join(", ")); } return value; } return fallback; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/BestAvailableLocale.js function BestAvailableLocale(availableLocales, locale) { var candidate = locale; while (true) { if (availableLocales.has(candidate)) { return candidate; } var pos = candidate.lastIndexOf("-"); if (!~pos) { return void 0; } if (pos >= 2 && candidate[pos - 2] === "-") { pos -= 2; } candidate = candidate.slice(0, pos); } } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/LookupMatcher.js function LookupMatcher(availableLocales, requestedLocales, getDefaultLocale) { var result = {locale: ""}; for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) { var locale = requestedLocales_1[_i]; var noExtensionLocale = locale.replace(UNICODE_EXTENSION_SEQUENCE_REGEX, ""); var availableLocale = BestAvailableLocale(availableLocales, noExtensionLocale); if (availableLocale) { result.locale = availableLocale; if (locale !== noExtensionLocale) { result.extension = locale.slice(noExtensionLocale.length + 1, locale.length); } return result; } } result.locale = getDefaultLocale(); return result; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/BestFitMatcher.js function BestFitMatcher(availableLocales, requestedLocales, getDefaultLocale) { var minimizedAvailableLocaleMap = {}; var minimizedAvailableLocales = new Set(); availableLocales.forEach(function(locale2) { var minimizedLocale = new Intl.Locale(locale2).minimize().toString(); minimizedAvailableLocaleMap[minimizedLocale] = locale2; minimizedAvailableLocales.add(minimizedLocale); }); var foundLocale; for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) { var l = requestedLocales_1[_i]; if (foundLocale) { break; } var noExtensionLocale = l.replace(UNICODE_EXTENSION_SEQUENCE_REGEX, ""); if (availableLocales.has(noExtensionLocale)) { foundLocale = noExtensionLocale; break; } if (minimizedAvailableLocales.has(noExtensionLocale)) { foundLocale = minimizedAvailableLocaleMap[noExtensionLocale]; break; } var locale = new Intl.Locale(noExtensionLocale); var maximizedRequestedLocale = locale.maximize().toString(); var minimizedRequestedLocale = locale.minimize().toString(); if (minimizedAvailableLocales.has(minimizedRequestedLocale)) { foundLocale = minimizedAvailableLocaleMap[minimizedRequestedLocale]; break; } foundLocale = BestAvailableLocale(minimizedAvailableLocales, maximizedRequestedLocale); } return { locale: foundLocale || getDefaultLocale() }; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/UnicodeExtensionValue.js function UnicodeExtensionValue(extension, key) { invariant(key.length === 2, "key must have 2 elements"); var size = extension.length; var searchValue = "-" + key + "-"; var pos = extension.indexOf(searchValue); if (pos !== -1) { var start = pos + 4; var end = start; var k = start; var done = false; while (!done) { var e = extension.indexOf("-", k); var len = void 0; if (e === -1) { len = size - k; } else { len = e - k; } if (len === 2) { done = true; } else if (e === -1) { end = size; done = true; } else { end = e; k = e + 1; } } return extension.slice(start, end); } searchValue = "-" + key; pos = extension.indexOf(searchValue); if (pos !== -1 && pos + 3 === size) { return ""; } return void 0; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/ResolveLocale.js function ResolveLocale(availableLocales, requestedLocales, options, relevantExtensionKeys, localeData, getDefaultLocale) { var matcher = options.localeMatcher; var r; if (matcher === "lookup") { r = LookupMatcher(availableLocales, requestedLocales, getDefaultLocale); } else { r = BestFitMatcher(availableLocales, requestedLocales, getDefaultLocale); } var foundLocale = r.locale; var result = {locale: "", dataLocale: foundLocale}; var supportedExtension = "-u"; for (var _i = 0, relevantExtensionKeys_1 = relevantExtensionKeys; _i < relevantExtensionKeys_1.length; _i++) { var key = relevantExtensionKeys_1[_i]; invariant(foundLocale in localeData, "Missing locale data for " + foundLocale); var foundLocaleData = localeData[foundLocale]; invariant(typeof foundLocaleData === "object" && foundLocaleData !== null, "locale data " + key + " must be an object"); var keyLocaleData = foundLocaleData[key]; invariant(Array.isArray(keyLocaleData), "keyLocaleData for " + key + " must be an array"); var value = keyLocaleData[0]; invariant(typeof value === "string" || value === null, "value must be string or null but got " + typeof value + " in key " + key); var supportedExtensionAddition = ""; if (r.extension) { var requestedValue = UnicodeExtensionValue(r.extension, key); if (requestedValue !== void 0) { if (requestedValue !== "") { if (~keyLocaleData.indexOf(requestedValue)) { value = requestedValue; supportedExtensionAddition = "-" + key + "-" + value; } } else if (~requestedValue.indexOf("true")) { value = "true"; supportedExtensionAddition = "-" + key; } } } if (key in options) { var optionsValue = options[key]; invariant(typeof optionsValue === "string" || typeof optionsValue === "undefined" || optionsValue === null, "optionsValue must be String, Undefined or Null"); if (~keyLocaleData.indexOf(optionsValue)) { if (optionsValue !== value) { value = optionsValue; supportedExtensionAddition = ""; } } } result[key] = value; supportedExtension += supportedExtensionAddition; } if (supportedExtension.length > 2) { var privateIndex = foundLocale.indexOf("-x-"); if (privateIndex === -1) { foundLocale = foundLocale + supportedExtension; } else { var preExtension = foundLocale.slice(0, privateIndex); var postExtension = foundLocale.slice(privateIndex, foundLocale.length); foundLocale = preExtension + supportedExtension + postExtension; } foundLocale = Intl.getCanonicalLocales(foundLocale)[0]; } result.locale = foundLocale; return result; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/IsSanctionedSimpleUnitIdentifier.js var SANCTIONED_UNITS = [ "angle-degree", "area-acre", "area-hectare", "concentr-percent", "digital-bit", "digital-byte", "digital-gigabit", "digital-gigabyte", "digital-kilobit", "digital-kilobyte", "digital-megabit", "digital-megabyte", "digital-petabyte", "digital-terabit", "digital-terabyte", "duration-day", "duration-hour", "duration-millisecond", "duration-minute", "duration-month", "duration-second", "duration-week", "duration-year", "length-centimeter", "length-foot", "length-inch", "length-kilometer", "length-meter", "length-mile-scandinavian", "length-mile", "length-millimeter", "length-yard", "mass-gram", "mass-kilogram", "mass-ounce", "mass-pound", "mass-stone", "temperature-celsius", "temperature-fahrenheit", "volume-fluid-ounce", "volume-gallon", "volume-liter", "volume-milliliter" ]; function removeUnitNamespace(unit) { return unit.slice(unit.indexOf("-") + 1); } var SIMPLE_UNITS = SANCTIONED_UNITS.map(removeUnitNamespace); // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/regex.generated.js var S_UNICODE_REGEX = /[\$\+<->\^`\|~\xA2-\xA6\xA8\xA9\xAC\xAE-\xB1\xB4\xB8\xD7\xF7\u02C2-\u02C5\u02D2-\u02DF\u02E5-\u02EB\u02ED\u02EF-\u02FF\u0375\u0384\u0385\u03F6\u0482\u058D-\u058F\u0606-\u0608\u060B\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u07FE\u07FF\u09F2\u09F3\u09FA\u09FB\u0AF1\u0B70\u0BF3-\u0BFA\u0C7F\u0D4F\u0D79\u0E3F\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u166D\u17DB\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u1FBD\u1FBF-\u1FC1\u1FCD-\u1FCF\u1FDD-\u1FDF\u1FED-\u1FEF\u1FFD\u1FFE\u2044\u2052\u207A-\u207C\u208A-\u208C\u20A0-\u20BF\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u214F\u218A\u218B\u2190-\u2307\u230C-\u2328\u232B-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u2767\u2794-\u27C4\u27C7-\u27E5\u27F0-\u2982\u2999-\u29D7\u29DC-\u29FB\u29FE-\u2B73\u2B76-\u2B95\u2B97-\u2BFF\u2CE5-\u2CEA\u2E50\u2E51\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u309B\u309C\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA700-\uA716\uA720\uA721\uA789\uA78A\uA828-\uA82B\uA836-\uA839\uAA77-\uAA79\uAB5B\uAB6A\uAB6B\uFB29\uFBB2-\uFBC1\uFDFC\uFDFD\uFE62\uFE64-\uFE66\uFE69\uFF04\uFF0B\uFF1C-\uFF1E\uFF3E\uFF40\uFF5C\uFF5E\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFFC\uFFFD]|\uD800[\uDD37-\uDD3F\uDD79-\uDD89\uDD8C-\uDD8E\uDD90-\uDD9C\uDDA0\uDDD0-\uDDFC]|\uD802[\uDC77\uDC78\uDEC8]|\uD805\uDF3F|\uD807[\uDFD5-\uDFF1]|\uD81A[\uDF3C-\uDF3F\uDF45]|\uD82F\uDC9C|\uD834[\uDC00-\uDCF5\uDD00-\uDD26\uDD29-\uDD64\uDD6A-\uDD6C\uDD83\uDD84\uDD8C-\uDDA9\uDDAE-\uDDE8\uDE00-\uDE41\uDE45\uDF00-\uDF56]|\uD835[\uDEC1\uDEDB\uDEFB\uDF15\uDF35\uDF4F\uDF6F\uDF89\uDFA9\uDFC3]|\uD836[\uDC00-\uDDFF\uDE37-\uDE3A\uDE6D-\uDE74\uDE76-\uDE83\uDE85\uDE86]|\uD838[\uDD4F\uDEFF]|\uD83B[\uDCAC\uDCB0\uDD2E\uDEF0\uDEF1]|\uD83C[\uDC00-\uDC2B\uDC30-\uDC93\uDCA0-\uDCAE\uDCB1-\uDCBF\uDCC1-\uDCCF\uDCD1-\uDCF5\uDD0D-\uDDAD\uDDE6-\uDE02\uDE10-\uDE3B\uDE40-\uDE48\uDE50\uDE51\uDE60-\uDE65\uDF00-\uDFFF]|\uD83D[\uDC00-\uDED7\uDEE0-\uDEEC\uDEF0-\uDEFC\uDF00-\uDF73\uDF80-\uDFD8\uDFE0-\uDFEB]|\uD83E[\uDC00-\uDC0B\uDC10-\uDC47\uDC50-\uDC59\uDC60-\uDC87\uDC90-\uDCAD\uDCB0\uDCB1\uDD00-\uDD78\uDD7A-\uDDCB\uDDCD-\uDE53\uDE60-\uDE6D\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6\uDF00-\uDF92\uDF94-\uDFCA]/; // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/NumberFormat/format_to_parts.js var CARET_S_UNICODE_REGEX = new RegExp("^" + S_UNICODE_REGEX.source); var S_DOLLAR_UNICODE_REGEX = new RegExp(S_UNICODE_REGEX.source + "$"); // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/RelativeTimeFormat/SingularRelativeTimeUnit.js function SingularRelativeTimeUnit(unit) { invariant(Type(unit) === "String", "unit must be a string"); if (unit === "seconds") return "second"; if (unit === "minutes") return "minute"; if (unit === "hours") return "hour"; if (unit === "days") return "day"; if (unit === "weeks") return "week"; if (unit === "months") return "month"; if (unit === "quarters") return "quarter"; if (unit === "years") return "year"; if (unit !== "second" && unit !== "minute" && unit !== "hour" && unit !== "day" && unit !== "week" && unit !== "month" && unit !== "quarter" && unit !== "year") { throw new RangeError("invalid unit"); } return unit; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/RelativeTimeFormat/MakePartsList.js function MakePartsList(pattern, unit, parts) { var patternParts = PartitionPattern(pattern); var result = []; for (var _i = 0, patternParts_1 = patternParts; _i < patternParts_1.length; _i++) { var patternPart = patternParts_1[_i]; if (patternPart.type === "literal") { result.push({ type: "literal", value: patternPart.value }); } else { invariant(patternPart.type === "0", "Malformed pattern " + pattern); for (var _a = 0, parts_1 = parts; _a < parts_1.length; _a++) { var part = parts_1[_a]; result.push({ type: part.type, value: part.value, unit: unit }); } } } return result; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/RelativeTimeFormat/PartitionRelativeTimePattern.js function PartitionRelativeTimePattern(rtf, value, unit, _a) { var getInternalSlots2 = _a.getInternalSlots; invariant(Type(value) === "Number", "value must be number, instead got " + typeof value, TypeError); invariant(Type(unit) === "String", "unit must be number, instead got " + typeof value, TypeError); if (isNaN(value) || !isFinite(value)) { throw new RangeError("Invalid value " + value); } var resolvedUnit = SingularRelativeTimeUnit(unit); var _b = getInternalSlots2(rtf), fields = _b.fields, style = _b.style, numeric = _b.numeric, pluralRules = _b.pluralRules, numberFormat = _b.numberFormat; var entry = resolvedUnit; if (style === "short") { entry = resolvedUnit + "-short"; } else if (style === "narrow") { entry = resolvedUnit + "-narrow"; } if (!(entry in fields)) { entry = resolvedUnit; } var patterns = fields[entry]; if (numeric === "auto") { if (ToString(value) in patterns) { return [ { type: "literal", value: patterns[ToString(value)] } ]; } } var tl = "future"; if (SameValue(value, -0) || value < 0) { tl = "past"; } var po = patterns[tl]; var fv = typeof numberFormat.formatToParts === "function" ? numberFormat.formatToParts(Math.abs(value)) : [ { type: "literal", value: numberFormat.format(Math.abs(value)), unit: unit } ]; var pr = pluralRules.select(value); var pattern = po[pr]; return MakePartsList(pattern, resolvedUnit, fv); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/RelativeTimeFormat/InitializeRelativeTimeFormat.js var NUMBERING_SYSTEM_REGEX = /^[a-z0-9]{3,8}(-[a-z0-9]{3,8})*$/i; function InitializeRelativeTimeFormat(rtf, locales, options, _a) { var getInternalSlots2 = _a.getInternalSlots, availableLocales = _a.availableLocales, relevantExtensionKeys = _a.relevantExtensionKeys, localeData = _a.localeData, getDefaultLocale = _a.getDefaultLocale; var internalSlots = getInternalSlots2(rtf); internalSlots.initializedRelativeTimeFormat = true; var requestedLocales = CanonicalizeLocaleList(locales); var opt = Object.create(null); var opts = CoerceOptionsToObject(options); var matcher = GetOption(opts, "localeMatcher", "string", ["best fit", "lookup"], "best fit"); opt.localeMatcher = matcher; var numberingSystem = GetOption(opts, "numberingSystem", "string", void 0, void 0); if (numberingSystem !== void 0) { if (!NUMBERING_SYSTEM_REGEX.test(numberingSystem)) { throw new RangeError("Invalid numbering system " + numberingSystem); } } opt.nu = numberingSystem; var r = ResolveLocale(availableLocales, requestedLocales, opt, relevantExtensionKeys, localeData, getDefaultLocale); var locale = r.locale, nu = r.nu; internalSlots.locale = locale; internalSlots.style = GetOption(opts, "style", "string", ["long", "narrow", "short"], "long"); internalSlots.numeric = GetOption(opts, "numeric", "string", ["always", "auto"], "always"); var fields = localeData[r.dataLocale]; invariant(!!fields, "Missing locale data for " + r.dataLocale); internalSlots.fields = fields; internalSlots.numberFormat = new Intl.NumberFormat(locales); internalSlots.pluralRules = new Intl.PluralRules(locales); internalSlots.numberingSystem = nu; return rtf; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/LookupSupportedLocales.js function LookupSupportedLocales(availableLocales, requestedLocales) { var subset = []; for (var _i = 0, requestedLocales_1 = requestedLocales; _i < requestedLocales_1.length; _i++) { var locale = requestedLocales_1[_i]; var noExtensionLocale = locale.replace(UNICODE_EXTENSION_SEQUENCE_REGEX, ""); var availableLocale = BestAvailableLocale(availableLocales, noExtensionLocale); if (availableLocale) { subset.push(availableLocale); } } return subset; } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/SupportedLocales.js function SupportedLocales(availableLocales, requestedLocales, options) { var matcher = "best fit"; if (options !== void 0) { options = ToObject(options); matcher = GetOption(options, "localeMatcher", "string", ["lookup", "best fit"], "best fit"); } if (matcher === "best fit") { return LookupSupportedLocales(availableLocales, requestedLocales); } return LookupSupportedLocales(availableLocales, requestedLocales); } // bazel-out/darwin-fastbuild/bin/packages/ecma402-abstract/lib/data.js var MissingLocaleDataError = function(_super) { __extends(MissingLocaleDataError2, _super); function MissingLocaleDataError2() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.type = "MISSING_LOCALE_DATA"; return _this; } return MissingLocaleDataError2; }(Error); // bazel-out/darwin-fastbuild/bin/packages/intl-relativetimeformat/lib/get_internal_slots.js var internalSlotMap = new WeakMap(); function getInternalSlots(x) { var internalSlots = internalSlotMap.get(x); if (!internalSlots) { internalSlots = Object.create(null); internalSlotMap.set(x, internalSlots); } return internalSlots; } // bazel-out/darwin-fastbuild/bin/packages/intl-relativetimeformat/lib/index.js var RelativeTimeFormat = function() { function RelativeTimeFormat2(locales, options) { var newTarget = this && this instanceof RelativeTimeFormat2 ? this.constructor : void 0; if (!newTarget) { throw new TypeError("Intl.RelativeTimeFormat must be called with 'new'"); } return InitializeRelativeTimeFormat(this, locales, options, { getInternalSlots: getInternalSlots, availableLocales: RelativeTimeFormat2.availableLocales, relevantExtensionKeys: RelativeTimeFormat2.relevantExtensionKeys, localeData: RelativeTimeFormat2.localeData, getDefaultLocale: RelativeTimeFormat2.getDefaultLocale }); } RelativeTimeFormat2.prototype.format = function(value, unit) { if (typeof this !== "object") { throw new TypeError("format was called on a non-object"); } var internalSlots = getInternalSlots(this); if (!internalSlots.initializedRelativeTimeFormat) { throw new TypeError("format was called on a invalid context"); } return PartitionRelativeTimePattern(this, Number(value), ToString(unit), { getInternalSlots: getInternalSlots }).map(function(el) { return el.value; }).join(""); }; RelativeTimeFormat2.prototype.formatToParts = function(value, unit) { if (typeof this !== "object") { throw new TypeError("formatToParts was called on a non-object"); } var internalSlots = getInternalSlots(this); if (!internalSlots.initializedRelativeTimeFormat) { throw new TypeError("formatToParts was called on a invalid context"); } return PartitionRelativeTimePattern(this, Number(value), ToString(unit), {getInternalSlots: getInternalSlots}); }; RelativeTimeFormat2.prototype.resolvedOptions = function() { if (typeof this !== "object") { throw new TypeError("resolvedOptions was called on a non-object"); } var internalSlots = getInternalSlots(this); if (!internalSlots.initializedRelativeTimeFormat) { throw new TypeError("resolvedOptions was called on a invalid context"); } return { locale: internalSlots.locale, style: internalSlots.style, numeric: internalSlots.numeric, numberingSystem: internalSlots.numberingSystem }; }; RelativeTimeFormat2.supportedLocalesOf = function(locales, options) { return SupportedLocales(RelativeTimeFormat2.availableLocales, CanonicalizeLocaleList(locales), options); }; RelativeTimeFormat2.__addLocaleData = function() { var data = []; for (var _i = 0; _i < arguments.length; _i++) { data[_i] = arguments[_i]; } for (var _a = 0, data_1 = data; _a < data_1.length; _a++) { var _b = data_1[_a], d = _b.data, locale = _b.locale; var minimizedLocale = new Intl.Locale(locale).minimize().toString(); RelativeTimeFormat2.localeData[locale] = RelativeTimeFormat2.localeData[minimizedLocale] = d; RelativeTimeFormat2.availableLocales.add(minimizedLocale); RelativeTimeFormat2.availableLocales.add(locale); if (!RelativeTimeFormat2.__defaultLocale) { RelativeTimeFormat2.__defaultLocale = minimizedLocale; } } }; RelativeTimeFormat2.getDefaultLocale = function() { return RelativeTimeFormat2.__defaultLocale; }; RelativeTimeFormat2.localeData = {}; RelativeTimeFormat2.availableLocales = new Set(); RelativeTimeFormat2.__defaultLocale = ""; RelativeTimeFormat2.relevantExtensionKeys = ["nu"]; RelativeTimeFormat2.polyfilled = true; return RelativeTimeFormat2; }(); var lib_default = RelativeTimeFormat; try { if (typeof Symbol !== "undefined") { Object.defineProperty(RelativeTimeFormat.prototype, Symbol.toStringTag, { value: "Intl.RelativeTimeFormat", writable: false, enumerable: false, configurable: true }); } Object.defineProperty(RelativeTimeFormat.prototype.constructor, "length", { value: 0, writable: false, enumerable: false, configurable: true }); Object.defineProperty(RelativeTimeFormat.supportedLocalesOf, "length", { value: 1, writable: false, enumerable: false, configurable: true }); } catch (e) { } // bazel-out/darwin-fastbuild/bin/packages/intl-relativetimeformat/lib/should-polyfill.js function shouldPolyfill() { return typeof Intl === "undefined" || !("RelativeTimeFormat" in Intl); } // bazel-out/darwin-fastbuild/bin/packages/intl-relativetimeformat/lib/polyfill.js if (shouldPolyfill()) { Object.defineProperty(Intl, "RelativeTimeFormat", { value: lib_default, writable: true, enumerable: false, configurable: true }); } })(); /*! ***************************************************************************** Copyright (c) Microsoft Corporation. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ***************************************************************************** */ } if (!("Intl"in self&&Intl.RelativeTimeFormat&&Intl.RelativeTimeFormat.supportedLocalesOf&&1===Intl.RelativeTimeFormat.supportedLocalesOf("en").length )) { // Intl.RelativeTimeFormat.~locale.en /* @generated */ // prettier-ignore if (Intl.RelativeTimeFormat && typeof Intl.RelativeTimeFormat.__addLocaleData === 'function') { Intl.RelativeTimeFormat.__addLocaleData({"data":{"nu":["latn"],"year":{"0":"this year","1":"next year","future":{"one":"in {0} year","other":"in {0} years"},"past":{"one":"{0} year ago","other":"{0} years ago"},"-1":"last year"},"year-short":{"0":"this yr.","1":"next yr.","future":{"one":"in {0} yr.","other":"in {0} yr."},"past":{"one":"{0} yr. ago","other":"{0} yr. ago"},"-1":"last yr."},"year-narrow":{"0":"this yr.","1":"next yr.","future":{"one":"in {0} yr.","other":"in {0} yr."},"past":{"one":"{0} yr. ago","other":"{0} yr. ago"},"-1":"last yr."},"quarter":{"0":"this quarter","1":"next quarter","future":{"one":"in {0} quarter","other":"in {0} quarters"},"past":{"one":"{0} quarter ago","other":"{0} quarters ago"},"-1":"last quarter"},"quarter-short":{"0":"this qtr.","1":"next qtr.","future":{"one":"in {0} qtr.","other":"in {0} qtrs."},"past":{"one":"{0} qtr. ago","other":"{0} qtrs. ago"},"-1":"last qtr."},"quarter-narrow":{"0":"this qtr.","1":"next qtr.","future":{"one":"in {0} qtr.","other":"in {0} qtrs."},"past":{"one":"{0} qtr. ago","other":"{0} qtrs. ago"},"-1":"last qtr."},"month":{"0":"this month","1":"next month","future":{"one":"in {0} month","other":"in {0} months"},"past":{"one":"{0} month ago","other":"{0} months ago"},"-1":"last month"},"month-short":{"0":"this mo.","1":"next mo.","future":{"one":"in {0} mo.","other":"in {0} mo."},"past":{"one":"{0} mo. ago","other":"{0} mo. ago"},"-1":"last mo."},"month-narrow":{"0":"this mo.","1":"next mo.","future":{"one":"in {0} mo.","other":"in {0} mo."},"past":{"one":"{0} mo. ago","other":"{0} mo. ago"},"-1":"last mo."},"week":{"0":"this week","1":"next week","future":{"one":"in {0} week","other":"in {0} weeks"},"past":{"one":"{0} week ago","other":"{0} weeks ago"},"-1":"last week"},"week-short":{"0":"this wk.","1":"next wk.","future":{"one":"in {0} wk.","other":"in {0} wk."},"past":{"one":"{0} wk. ago","other":"{0} wk. ago"},"-1":"last wk."},"week-narrow":{"0":"this wk.","1":"next wk.","future":{"one":"in {0} wk.","other":"in {0} wk."},"past":{"one":"{0} wk. ago","other":"{0} wk. ago"},"-1":"last wk."},"day":{"0":"today","1":"tomorrow","future":{"one":"in {0} day","other":"in {0} days"},"past":{"one":"{0} day ago","other":"{0} days ago"},"-1":"yesterday"},"day-short":{"0":"today","1":"tomorrow","future":{"one":"in {0} day","other":"in {0} days"},"past":{"one":"{0} day ago","other":"{0} days ago"},"-1":"yesterday"},"day-narrow":{"0":"today","1":"tomorrow","future":{"one":"in {0} day","other":"in {0} days"},"past":{"one":"{0} day ago","other":"{0} days ago"},"-1":"yesterday"},"hour":{"0":"this hour","future":{"one":"in {0} hour","other":"in {0} hours"},"past":{"one":"{0} hour ago","other":"{0} hours ago"}},"hour-short":{"0":"this hour","future":{"one":"in {0} hr.","other":"in {0} hr."},"past":{"one":"{0} hr. ago","other":"{0} hr. ago"}},"hour-narrow":{"0":"this hour","future":{"one":"in {0} hr.","other":"in {0} hr."},"past":{"one":"{0} hr. ago","other":"{0} hr. ago"}},"minute":{"0":"this minute","future":{"one":"in {0} minute","other":"in {0} minutes"},"past":{"one":"{0} minute ago","other":"{0} minutes ago"}},"minute-short":{"0":"this minute","future":{"one":"in {0} min.","other":"in {0} min."},"past":{"one":"{0} min. ago","other":"{0} min. ago"}},"minute-narrow":{"0":"this minute","future":{"one":"in {0} min.","other":"in {0} min."},"past":{"one":"{0} min. ago","other":"{0} min. ago"}},"second":{"0":"now","future":{"one":"in {0} second","other":"in {0} seconds"},"past":{"one":"{0} second ago","other":"{0} seconds ago"}},"second-short":{"0":"now","future":{"one":"in {0} sec.","other":"in {0} sec."},"past":{"one":"{0} sec. ago","other":"{0} sec. ago"}},"second-narrow":{"0":"now","future":{"one":"in {0} sec.","other":"in {0} sec."},"past":{"one":"{0} sec. ago","other":"{0} sec. ago"}}},"locale":"en"} ) } } if (!("ResizeObserver"in self )) { // ResizeObserver (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : typeof define === 'function' && define.amd ? define(['exports'], factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.ResizeObserver = {})); })(this, (function (exports) { 'use strict'; var resizeObservers = []; var hasActiveObservations = function () { return resizeObservers.some(function (ro) { return ro.activeTargets.length > 0; }); }; var hasSkippedObservations = function () { return resizeObservers.some(function (ro) { return ro.skippedTargets.length > 0; }); }; var msg = 'ResizeObserver loop completed with undelivered notifications.'; var deliverResizeLoopError = function () { var event; if (typeof ErrorEvent === 'function') { event = new ErrorEvent('error', { message: msg }); } else { event = document.createEvent('Event'); event.initEvent('error', false, false); event.message = msg; } window.dispatchEvent(event); }; var ResizeObserverBoxOptions; (function (ResizeObserverBoxOptions) { ResizeObserverBoxOptions["BORDER_BOX"] = "border-box"; ResizeObserverBoxOptions["CONTENT_BOX"] = "content-box"; ResizeObserverBoxOptions["DEVICE_PIXEL_CONTENT_BOX"] = "device-pixel-content-box"; })(ResizeObserverBoxOptions || (ResizeObserverBoxOptions = {})); var freeze = function (obj) { return Object.freeze(obj); }; var ResizeObserverSize = (function () { function ResizeObserverSize(inlineSize, blockSize) { this.inlineSize = inlineSize; this.blockSize = blockSize; freeze(this); } return ResizeObserverSize; }()); var DOMRectReadOnly = (function () { function DOMRectReadOnly(x, y, width, height) { this.x = x; this.y = y; this.width = width; this.height = height; this.top = this.y; this.left = this.x; this.bottom = this.top + this.height; this.right = this.left + this.width; return freeze(this); } DOMRectReadOnly.prototype.toJSON = function () { var _a = this, x = _a.x, y = _a.y, top = _a.top, right = _a.right, bottom = _a.bottom, left = _a.left, width = _a.width, height = _a.height; return { x: x, y: y, top: top, right: right, bottom: bottom, left: left, width: width, height: height }; }; DOMRectReadOnly.fromRect = function (rectangle) { return new DOMRectReadOnly(rectangle.x, rectangle.y, rectangle.width, rectangle.height); }; return DOMRectReadOnly; }()); var isSVG = function (target) { return target instanceof SVGElement && 'getBBox' in target; }; var isHidden = function (target) { if (isSVG(target)) { var _a = target.getBBox(), width = _a.width, height = _a.height; return !width && !height; } var _b = target, offsetWidth = _b.offsetWidth, offsetHeight = _b.offsetHeight; return !(offsetWidth || offsetHeight || target.getClientRects().length); }; var isElement = function (obj) { var _a; if (obj instanceof Element) { return true; } var scope = (_a = obj === null || obj === void 0 ? void 0 : obj.ownerDocument) === null || _a === void 0 ? void 0 : _a.defaultView; return !!(scope && obj instanceof scope.Element); }; var isReplacedElement = function (target) { switch (target.tagName) { case 'INPUT': if (target.type !== 'image') { break; } case 'VIDEO': case 'AUDIO': case 'EMBED': case 'OBJECT': case 'CANVAS': case 'IFRAME': case 'IMG': return true; } return false; }; var global = typeof window !== 'undefined' ? window : {}; var cache = new WeakMap(); var scrollRegexp = /auto|scroll/; var verticalRegexp = /^tb|vertical/; var IE = (/msie|trident/i).test(global.navigator && global.navigator.userAgent); var parseDimension = function (pixel) { return parseFloat(pixel || '0'); }; var size = function (inlineSize, blockSize, switchSizes) { if (inlineSize === void 0) { inlineSize = 0; } if (blockSize === void 0) { blockSize = 0; } if (switchSizes === void 0) { switchSizes = false; } return new ResizeObserverSize((switchSizes ? blockSize : inlineSize) || 0, (switchSizes ? inlineSize : blockSize) || 0); }; var zeroBoxes = freeze({ devicePixelContentBoxSize: size(), borderBoxSize: size(), contentBoxSize: size(), contentRect: new DOMRectReadOnly(0, 0, 0, 0) }); var calculateBoxSizes = function (target, forceRecalculation) { if (forceRecalculation === void 0) { forceRecalculation = false; } if (cache.has(target) && !forceRecalculation) { return cache.get(target); } if (isHidden(target)) { cache.set(target, zeroBoxes); return zeroBoxes; } var cs = getComputedStyle(target); var svg = isSVG(target) && target.ownerSVGElement && target.getBBox(); var removePadding = !IE && cs.boxSizing === 'border-box'; var switchSizes = verticalRegexp.test(cs.writingMode || ''); var canScrollVertically = !svg && scrollRegexp.test(cs.overflowY || ''); var canScrollHorizontally = !svg && scrollRegexp.test(cs.overflowX || ''); var paddingTop = svg ? 0 : parseDimension(cs.paddingTop); var paddingRight = svg ? 0 : parseDimension(cs.paddingRight); var paddingBottom = svg ? 0 : parseDimension(cs.paddingBottom); var paddingLeft = svg ? 0 : parseDimension(cs.paddingLeft); var borderTop = svg ? 0 : parseDimension(cs.borderTopWidth); var borderRight = svg ? 0 : parseDimension(cs.borderRightWidth); var borderBottom = svg ? 0 : parseDimension(cs.borderBottomWidth); var borderLeft = svg ? 0 : parseDimension(cs.borderLeftWidth); var horizontalPadding = paddingLeft + paddingRight; var verticalPadding = paddingTop + paddingBottom; var horizontalBorderArea = borderLeft + borderRight; var verticalBorderArea = borderTop + borderBottom; var horizontalScrollbarThickness = !canScrollHorizontally ? 0 : target.offsetHeight - verticalBorderArea - target.clientHeight; var verticalScrollbarThickness = !canScrollVertically ? 0 : target.offsetWidth - horizontalBorderArea - target.clientWidth; var widthReduction = removePadding ? horizontalPadding + horizontalBorderArea : 0; var heightReduction = removePadding ? verticalPadding + verticalBorderArea : 0; var contentWidth = svg ? svg.width : parseDimension(cs.width) - widthReduction - verticalScrollbarThickness; var contentHeight = svg ? svg.height : parseDimension(cs.height) - heightReduction - horizontalScrollbarThickness; var borderBoxWidth = contentWidth + horizontalPadding + verticalScrollbarThickness + horizontalBorderArea; var borderBoxHeight = contentHeight + verticalPadding + horizontalScrollbarThickness + verticalBorderArea; var boxes = freeze({ devicePixelContentBoxSize: size(Math.round(contentWidth * devicePixelRatio), Math.round(contentHeight * devicePixelRatio), switchSizes), borderBoxSize: size(borderBoxWidth, borderBoxHeight, switchSizes), contentBoxSize: size(contentWidth, contentHeight, switchSizes), contentRect: new DOMRectReadOnly(paddingLeft, paddingTop, contentWidth, contentHeight) }); cache.set(target, boxes); return boxes; }; var calculateBoxSize = function (target, observedBox, forceRecalculation) { var _a = calculateBoxSizes(target, forceRecalculation), borderBoxSize = _a.borderBoxSize, contentBoxSize = _a.contentBoxSize, devicePixelContentBoxSize = _a.devicePixelContentBoxSize; switch (observedBox) { case ResizeObserverBoxOptions.DEVICE_PIXEL_CONTENT_BOX: return devicePixelContentBoxSize; case ResizeObserverBoxOptions.BORDER_BOX: return borderBoxSize; default: return contentBoxSize; } }; var ResizeObserverEntry = (function () { function ResizeObserverEntry(target) { var boxes = calculateBoxSizes(target); this.target = target; this.contentRect = boxes.contentRect; this.borderBoxSize = freeze([boxes.borderBoxSize]); this.contentBoxSize = freeze([boxes.contentBoxSize]); this.devicePixelContentBoxSize = freeze([boxes.devicePixelContentBoxSize]); } return ResizeObserverEntry; }()); var calculateDepthForNode = function (node) { if (isHidden(node)) { return Infinity; } var depth = 0; var parent = node.parentNode; while (parent) { depth += 1; parent = parent.parentNode; } return depth; }; var broadcastActiveObservations = function () { var shallowestDepth = Infinity; var callbacks = []; resizeObservers.forEach(function processObserver(ro) { if (ro.activeTargets.length === 0) { return; } var entries = []; ro.activeTargets.forEach(function processTarget(ot) { var entry = new ResizeObserverEntry(ot.target); var targetDepth = calculateDepthForNode(ot.target); entries.push(entry); ot.lastReportedSize = calculateBoxSize(ot.target, ot.observedBox); if (targetDepth < shallowestDepth) { shallowestDepth = targetDepth; } }); callbacks.push(function resizeObserverCallback() { ro.callback.call(ro.observer, entries, ro.observer); }); ro.activeTargets.splice(0, ro.activeTargets.length); }); for (var _i = 0, callbacks_1 = callbacks; _i < callbacks_1.length; _i++) { var callback = callbacks_1[_i]; callback(); } return shallowestDepth; }; var gatherActiveObservationsAtDepth = function (depth) { resizeObservers.forEach(function processObserver(ro) { ro.activeTargets.splice(0, ro.activeTargets.length); ro.skippedTargets.splice(0, ro.skippedTargets.length); ro.observationTargets.forEach(function processTarget(ot) { if (ot.isActive()) { if (calculateDepthForNode(ot.target) > depth) { ro.activeTargets.push(ot); } else { ro.skippedTargets.push(ot); } } }); }); }; var process = function () { var depth = 0; gatherActiveObservationsAtDepth(depth); while (hasActiveObservations()) { depth = broadcastActiveObservations(); gatherActiveObservationsAtDepth(depth); } if (hasSkippedObservations()) { deliverResizeLoopError(); } return depth > 0; }; var trigger; var callbacks = []; var notify = function () { return callbacks.splice(0).forEach(function (cb) { return cb(); }); }; var queueMicroTask = function (callback) { if (!trigger) { var toggle_1 = 0; var el_1 = document.createTextNode(''); var config = { characterData: true }; new MutationObserver(function () { return notify(); }).observe(el_1, config); trigger = function () { el_1.textContent = "".concat(toggle_1 ? toggle_1-- : toggle_1++); }; } callbacks.push(callback); trigger(); }; var queueResizeObserver = function (cb) { queueMicroTask(function ResizeObserver() { requestAnimationFrame(cb); }); }; var watching = 0; var isWatching = function () { return !!watching; }; var CATCH_PERIOD = 250; var observerConfig = { attributes: true, characterData: true, childList: true, subtree: true }; var events = [ 'resize', 'load', 'transitionend', 'animationend', 'animationstart', 'animationiteration', 'keyup', 'keydown', 'mouseup', 'mousedown', 'mouseover', 'mouseout', 'blur', 'focus' ]; var time = function (timeout) { if (timeout === void 0) { timeout = 0; } return Date.now() + timeout; }; var scheduled = false; var Scheduler = (function () { function Scheduler() { var _this = this; this.stopped = true; this.listener = function () { return _this.schedule(); }; } Scheduler.prototype.run = function (timeout) { var _this = this; if (timeout === void 0) { timeout = CATCH_PERIOD; } if (scheduled) { return; } scheduled = true; var until = time(timeout); queueResizeObserver(function () { var elementsHaveResized = false; try { elementsHaveResized = process(); } finally { scheduled = false; timeout = until - time(); if (!isWatching()) { return; } if (elementsHaveResized) { _this.run(1000); } else if (timeout > 0) { _this.run(timeout); } else { _this.start(); } } }); }; Scheduler.prototype.schedule = function () { this.stop(); this.run(); }; Scheduler.prototype.observe = function () { var _this = this; var cb = function () { return _this.observer && _this.observer.observe(document.body, observerConfig); }; document.body ? cb() : global.addEventListener('DOMContentLoaded', cb); }; Scheduler.prototype.start = function () { var _this = this; if (this.stopped) { this.stopped = false; this.observer = new MutationObserver(this.listener); this.observe(); events.forEach(function (name) { return global.addEventListener(name, _this.listener, true); }); } }; Scheduler.prototype.stop = function () { var _this = this; if (!this.stopped) { this.observer && this.observer.disconnect(); events.forEach(function (name) { return global.removeEventListener(name, _this.listener, true); }); this.stopped = true; } }; return Scheduler; }()); var scheduler = new Scheduler(); var updateCount = function (n) { !watching && n > 0 && scheduler.start(); watching += n; !watching && scheduler.stop(); }; var skipNotifyOnElement = function (target) { return !isSVG(target) && !isReplacedElement(target) && getComputedStyle(target).display === 'inline'; }; var ResizeObservation = (function () { function ResizeObservation(target, observedBox) { this.target = target; this.observedBox = observedBox || ResizeObserverBoxOptions.CONTENT_BOX; this.lastReportedSize = { inlineSize: 0, blockSize: 0 }; } ResizeObservation.prototype.isActive = function () { var size = calculateBoxSize(this.target, this.observedBox, true); if (skipNotifyOnElement(this.target)) { this.lastReportedSize = size; } if (this.lastReportedSize.inlineSize !== size.inlineSize || this.lastReportedSize.blockSize !== size.blockSize) { return true; } return false; }; return ResizeObservation; }()); var ResizeObserverDetail = (function () { function ResizeObserverDetail(resizeObserver, callback) { this.activeTargets = []; this.skippedTargets = []; this.observationTargets = []; this.observer = resizeObserver; this.callback = callback; } return ResizeObserverDetail; }()); var observerMap = new WeakMap(); var getObservationIndex = function (observationTargets, target) { for (var i = 0; i < observationTargets.length; i += 1) { if (observationTargets[i].target === target) { return i; } } return -1; }; var ResizeObserverController = (function () { function ResizeObserverController() { } ResizeObserverController.connect = function (resizeObserver, callback) { var detail = new ResizeObserverDetail(resizeObserver, callback); observerMap.set(resizeObserver, detail); }; ResizeObserverController.observe = function (resizeObserver, target, options) { var detail = observerMap.get(resizeObserver); var firstObservation = detail.observationTargets.length === 0; if (getObservationIndex(detail.observationTargets, target) < 0) { firstObservation && resizeObservers.push(detail); detail.observationTargets.push(new ResizeObservation(target, options && options.box)); updateCount(1); scheduler.schedule(); } }; ResizeObserverController.unobserve = function (resizeObserver, target) { var detail = observerMap.get(resizeObserver); var index = getObservationIndex(detail.observationTargets, target); var lastObservation = detail.observationTargets.length === 1; if (index >= 0) { lastObservation && resizeObservers.splice(resizeObservers.indexOf(detail), 1); detail.observationTargets.splice(index, 1); updateCount(-1); } }; ResizeObserverController.disconnect = function (resizeObserver) { var _this = this; var detail = observerMap.get(resizeObserver); detail.observationTargets.slice().forEach(function (ot) { return _this.unobserve(resizeObserver, ot.target); }); detail.activeTargets.splice(0, detail.activeTargets.length); }; return ResizeObserverController; }()); var ResizeObserver = (function () { function ResizeObserver(callback) { if (arguments.length === 0) { throw new TypeError("Failed to construct 'ResizeObserver': 1 argument required, but only 0 present."); } if (typeof callback !== 'function') { throw new TypeError("Failed to construct 'ResizeObserver': The callback provided as parameter 1 is not a function."); } ResizeObserverController.connect(this, callback); } ResizeObserver.prototype.observe = function (target, options) { if (arguments.length === 0) { throw new TypeError("Failed to execute 'observe' on 'ResizeObserver': 1 argument required, but only 0 present."); } if (!isElement(target)) { throw new TypeError("Failed to execute 'observe' on 'ResizeObserver': parameter 1 is not of type 'Element"); } ResizeObserverController.observe(this, target, options); }; ResizeObserver.prototype.unobserve = function (target) { if (arguments.length === 0) { throw new TypeError("Failed to execute 'unobserve' on 'ResizeObserver': 1 argument required, but only 0 present."); } if (!isElement(target)) { throw new TypeError("Failed to execute 'unobserve' on 'ResizeObserver': parameter 1 is not of type 'Element"); } ResizeObserverController.unobserve(this, target); }; ResizeObserver.prototype.disconnect = function () { ResizeObserverController.disconnect(this); }; ResizeObserver.toString = function () { return 'function ResizeObserver () { [polyfill code] }'; }; return ResizeObserver; }()); exports.ResizeObserver = ResizeObserver; exports.ResizeObserverEntry = ResizeObserverEntry; exports.ResizeObserverSize = ResizeObserverSize; Object.defineProperty(exports, '__esModule', { value: true }); })); ;self.ResizeObserverEntry = ResizeObserver.ResizeObserverEntry;self.ResizeObserver=ResizeObserver.ResizeObserver; } if (!((function(e){try{if(Object.prototype.hasOwnProperty.call(e,"WeakSet")&&0===e.WeakSet.length){var t={},r=new e.WeakSet([t]) return r.has(t)&&!1===r.delete(0)&&"toStringTag"in self.Symbol&&void 0!==r[self.Symbol.toStringTag]}return!1}catch(e){return!1}})(self) )) { // WeakSet /* global Call, CreateMethodProperty, Get, GetIterator, IsArray, IsCallable, IteratorClose, IteratorStep, IteratorValue, OrdinaryCreateFromConstructor, SameValueZero, Type, Symbol */ (function (global) { // Deleted set items mess with iterator pointers, so rather than removing them mark them as deleted. Can't use undefined or null since those both valid keys so use a private symbol. var undefMarker = Symbol('undef'); // 23.4.1.1. WeakSet ( [ iterable ] ) var WeakSet = function WeakSet() { // 1. If NewTarget is undefined, throw a TypeError exception. if (!(this instanceof WeakSet)) { throw new TypeError('Constructor WeakSet requires "new"'); } // 2. Let set be ? OrdinaryCreateFromConstructor(NewTarget, "%WeakSetPrototype%", « [[WeakSetData]] »). var set = OrdinaryCreateFromConstructor(this, WeakSet.prototype, { _values: [], _size: 0, _es6WeakSet: true }); // 3. Set set.[[WeakSetData]] to a new empty List. // Polyfill.io - This step was done as part of step two. // 4. If iterable is not present, let iterable be undefined. var iterable = arguments.length > 0 ? arguments[0] : undefined; // 5. If iterable is either undefined or null, return set. if (iterable === null || iterable === undefined) { return set; } // 6. Let adder be ? Get(set, "add"). var adder = Get(set, 'add'); // 7. If IsCallable(adder) is false, throw a TypeError exception. if (!IsCallable(adder)) { throw new TypeError("WeakSet.prototype.add is not a function"); } try { // 8. Let iteratorRecord be ? GetIterator(iterable). var iteratorRecord = GetIterator(iterable); // 9. Repeat, // eslint-disable-next-line no-constant-condition while (true) { // a. Let next be ? IteratorStep(iteratorRecord). var next = IteratorStep(iteratorRecord); // b. If next is false, return set. if (next === false) { return set; } // c. Let nextValue be ? IteratorValue(next). var nextValue = IteratorValue(next); // d. Let status be Call(adder, set, « nextValue »). try { Call(adder, set, [nextValue]); } catch (e) { // e. If status is an abrupt completion, return ? IteratorClose(iteratorRecord, status). return IteratorClose(iteratorRecord, e); } } } catch (e) { // Polyfill.io - For user agents which do not have iteration methods on argument objects or arrays, we can special case those. if (IsArray(iterable) || Object.prototype.toString.call(iterable) === '[object Arguments]') { var index; var length = iterable.length; for (index = 0; index < length; index++) { Call(adder, set, [iterable[index]]); } } } return set; }; // 23.4.2.1. WeakSet.prototype // The initial value of WeakSet.prototype is the intrinsic %WeakSetPrototype% object. // This property has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: false }. Object.defineProperty(WeakSet, 'prototype', { configurable: false, enumerable: false, writable: false, value: {} }); // 23.4.3.1. WeakSet.prototype.add ( value ) CreateMethodProperty(WeakSet.prototype, 'add', function add(value) { // 1. Let S be the this value. var S = this; // 2. If Type(S) is not Object, throw a TypeError exception. if (Type(S) !== 'object') { throw new TypeError('Method WeakSet.prototype.add called on incompatible receiver ' + Object.prototype.toString.call(S)); } // 3. If S does not have a [[WeakSetData]] internal slot, throw a TypeError exception. if (S._es6WeakSet !== true) { throw new TypeError('Method WeakSet.prototype.add called on incompatible receiver ' + Object.prototype.toString.call(S)); } // 4. If Type(value) is not Object, throw a TypeError exception. if (Type(value) !== 'object') { throw new TypeError('Invalid value used in weak set'); } // 5. Let entries be the List that is S.[[WeakSetData]]. var entries = S._values; // 6. For each e that is an element of entries, do for (var i = 0; i < entries.length; i++) { var e = entries[i]; // a. If e is not empty and SameValue(e, value) is true, then if (e !== undefMarker && SameValueZero(e, value)) { // i. Return S. return S; } } // 7. Append value as the last element of entries. S._values.push(value); // 8. Return S. return S; }); // 23.4.3.2. WeakSet.prototype.constructor CreateMethodProperty(WeakSet.prototype, 'constructor', WeakSet); // 23.4.3.3. WeakSet.prototype.delete ( value ) CreateMethodProperty(WeakSet.prototype, 'delete', function (value) { // 1. Let S be the this value. var S = this; // 2. If Type(S) is not Object, throw a TypeError exception. if (Type(S) !== 'object') { throw new TypeError('Method WeakSet.prototype.delete called on incompatible receiver ' + Object.prototype.toString.call(S)); } // 3. If S does not have a [[WeakSetData]] internal slot, throw a TypeError exception. if (S._es6WeakSet !== true) { throw new TypeError('Method WeakSet.prototype.delete called on incompatible receiver ' + Object.prototype.toString.call(S)); } // 4. If Type(value) is not Object, return false. if (Type(value) !== 'object') { return false; } // 5. Let entries be the List that is S.[[WeakSetData]]. var entries = S._values; // 6. For each e that is an element of entries, do for (var i = 0; i < entries.length; i++) { var e = entries[i]; // a. If e is not empty and SameValue(e, value) is true, then if (e !== undefMarker && SameValueZero(e, value)) { // i. Replace the element of entries whose value is e with an element whose value is empty. entries[i] = undefMarker; // ii. Return true. return true; } } // 7. Return false. return false; }); // 23.4.3.4. WeakSet.prototype.has ( value ) CreateMethodProperty(WeakSet.prototype, 'has', function has(value) { // 1. Let S be the this value. var S = this; // 2. If Type(S) is not Object, throw a TypeError exception. if (Type(S) !== 'object') { throw new TypeError('Method WeakSet.prototype.has called on incompatible receiver ' + Object.prototype.toString.call(S)); } // 3. If S does not have a [[WeakSetData]] internal slot, throw a TypeError exception. if (S._es6WeakSet !== true) { throw new TypeError('Method WeakSet.prototype.has called on incompatible receiver ' + Object.prototype.toString.call(S)); } // 4. Let entries be the List that is S.[[WeakSetData]]. var entries = S._values; // 5. If Type(value) is not Object, return false. if (Type(value) !== 'object') { return false; } // 6. For each e that is an element of entries, do for (var i = 0; i < entries.length; i++) { var e = entries[i]; // a. If e is not empty and SameValue(e, value) is true, return true. if (e !== undefMarker && SameValueZero(e, value)) { return true; } } // 7. Return false. return false; }); // 23.4.3.5. WeakSet.prototype [ @@toStringTag ] // The initial value of the @@toStringTag property is the String value "WeakSet". // This property has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: true }. Object.defineProperty(WeakSet.prototype, Symbol.toStringTag, { configurable: true, enumerable: false, writable: false, value: 'WeakSet' }); // Polyfill.io - Safari 8 implements Set.name but as a non-configurable property, which means it would throw an error if we try and configure it here. if (!('name' in WeakSet)) { // 19.2.4.2 name Object.defineProperty(WeakSet, 'name', { configurable: true, enumerable: false, writable: false, value: 'WeakSet' }); } // Export the object CreateMethodProperty(global, 'WeakSet', WeakSet); }(self)); } }) ('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});


A Guide to the Continent and all its Creatures
The world of The Witcher spans thousands of years and stretches to the furthest reaches of the Continent. Contained therein are spells and monsters, poisonous herbs and magical beings, endless deserts and stormy mountaintops. Upon the release of Season 4, here is our guide to every single thing that falls within its boundaries. After reading it, you’ll be ready to endure the Trial by Ordeal — if you dare.
A telekinetic thrust that can be used to stun, repel or disarm an opponent.
A precious stone that can provide warmth, energy, balance and the courage to right wrongs.
One of the Four Kingdoms, lying between Temeria and the Mahakam Mountains to the west and the Blue and Fiery Mountains to the east. It is where Yennefer first served as a mage.
The sword, scabbard and belt; polearm; and dagger and sheath are common weapons for combatants from the kingdom of Aedirn.
A muscular amphibian with rough skin, a viciously spiked tail and corrosive, acidic green saliva that makes it good at killing.
Ithlinne’s widowed mother, proprietor of the Drunken Goat tavern in Inis Dubh.
Alchemy is closely related to magic and also involves elixirs and potions, but an alchemist would say that their field of study is more scientific. Usually mages as well, alchemists devote their life to the study of metals, the transmutation of matter and the secrets to eternal life. Perhaps the most important and controversial form of alchemy is mutagenic alchemy.
The newly crowned King of Xin'trea after the death of Mad King Darach, Alvitir’s reign was short. He tried to end the 1000-year war between elves by brokering a peace treaty, but with tragic consequences.
A student at Aretuza Academy, who attended at the same time as Yennefer, but didn’t show the same magical promise. She was turned into an eel by Tissaia, along with Doralis and Lark. If you didn’t have what it took to support Chaos, you were sacrificed to support the ones who did.

A magical aca demy for women situated on Thanedd Island, with architecture reminiscent of the elves who built it. Notable students include Yennefer, whose time there under the mentorship of Tissaia de Vries formed her future.
An old mage of the Nilfgaardian vassal state of Toussaint, Artorius Vigo is a traditionalist member of the Brotherhood of Sorcerers and the nepotistic uncle of Fringilla. Artorius was once the chair of the Chapter, where he gained influence by preaching conservative ideas, though he lost his power by refusing to adapt with the times. He found it hard to choose sides as conflict captured the Continent, but his passivity was what led to the burning of Cintra — paving the way for Tissaia and Vilgefortz to gain influence in the aftermath.

A lower ranked mage amongst the Xin’trean palace mages, young Avallac’h was content with his position, but destiny had other plans. After inadvertently saving the Empress from an assassination attempt, Merwyn entrusted Avallac'h with the task of retrieving Syndril’s book of monoliths from Balor, with the intention of trapping the Chief Sage in another world. Avallac'h found the book, but it was obvious to Balor that the young mage was behind the theft. Balor lashed out at this young upstart. Avallac'h fought back but barely survived their encounter. Unwittingly he had now forced Eredin to act, choosing Merwyn’s side, and leading to the imprisonment of Balor. Avallac’h was now at the core of Merwyn and Eredin’s plan to conquer other worlds. His study of Syndril’s Book Of Monoliths led him to discover its other power, the magical equation for time travel. Avallac’h’s influence on the Continent was just getting started.
A hypnosis sign that can be used on all creatures to manipulate their thoughts, whether to get them to do what you want, play mind games or even just calm a skittish horse.
A roughed up pair of elven refugees who were forced to sacrifice flesh and family in exchange for freedom. The brave duo escaped violent roundups in the North and sought refuge where they could find it. Their journey to the Sandpiper led them through a Gors Velen aqueduct where they ran into Yennefer, Cahir and a hungry zeugl. Even though Ba’lian didn’t want to go down without a fight, he fled when the deaf Dermain was dragged into the deep.

Chief Sage and adviser to the king with an insatiable thirst for power, Balor staged a coup against Xin'trea’s Mad King and established the new Golden Empire.
Balor didn’t like to talk of his past. But it was common knowledge at court that Balor was low-born, discovered by a mage after he mysteriously survived the burning of a feudal village. It was clear he was special; the mage took him to Xin’trea to school him further.
A prodigy with magic, Balor soon caught the eye of “Mad King” Darach. His unconventional ways with magic made him a favorite of the unhinged King, much to the chagrin of the inner chamber of mage advisers.
Balor adored order and despised the chaos and chance that is often found in elven mages’ earthen and celestial magic. Although he was wary at first, Balor found the theories of a shunned young Darwenish druid, Syndril Cullwyn, fascinating. They offered something in magic he had not seen before: logic — mathematical corridors and shapes applied to the wild earth/celestial magic. And so Balor took Syndril as his own apprentice and encouraged his experiments. When Darach’s son Alvitir tried to end the 1000-year conflict between elves, Balor seized the opportunity to stage a coup. Using Syndril’s magical equations to adapt the ancient dwarven monoliths he had raised, Balor was able to cross into another world, where he encountered the lure of chaos magic and used the gift of a terrifying beast from a mysterious lifeforce there to return to his own world and wipe out the Xin'trean, Darwenian and Pryshian royal families and clans sworn to protect them. Knowing his lowborn status in this classist society, he installed Merwyn as Empress of the new Golden Empire, as a puppet the people would accept. But, Balor was the real power behind the throne.
Merwyn tried to wrest power from Balor by siding with Eredin, the Golden Empire High Commander, but ultimately failed. Hungry for greater power, Balor sacrificed Fenrik, his only true friend, to a powerful force from another world. In doing so he became the first elf to harness both natural and chaos magic. As a means of revenge he trapped Eredin and his followers in another realm, but was ultimately defeated and killed when his own chaos magic was amplified by Zacaré and Syndril using the monolith and turned against him.
Zacaré and Syndril were able to defeat Balor and destroy the master monolith but unwittingly triggering the Conjunction of the Spheres, forever altering the Continent and bringing humans and beasts to the planet.
A prestigious magical academy for boys, located in the Kaedwen city of Ban Ard.
A deeply complicated dwarven game that used decorated playing cards.
A foul-breathed member of the draconid family commonly found in or near the Zerrikanian desert. Basilisks are dragons’ little siblings, though you might not see the resemblances instantly, because a basilisk’s body is a hodgepodge of different animal shapes and species. They have scaled bodies, sharp fangs, webbed wings and V-shaped legs — distinctive snake and bird features. Much like birds, basilisks can have different feather colors. In battle, a basilisk’s snakelike tail is not to be underestimated. A good tail whacking can send even the strongest witchers flying through brick walls. And whack you they will. They generally don’t need a reason to attack humans. They have toxic breath, a venomous bite and wings they use to attack prey — even though they can’t fly very far. Even their stare can be fatal, which is why using a mirror to show basilisks their own reflection is a good way to kill them. Though it might be wiser to use a silver weapon and aim for the head.
The basilisk’s mutated sibling, created through old magic. Equally dangerous, but even more ghastly, thanks to deformed talons, curved tusks and weathered wings. This basilisk is one of a kind, appearing only in the mountain pass near the elven academy. But it shares its deadliness with the original basilisk.
After the Slaughter of Cintra, Nilfgaard continued to march north, pillaging and burning every village in their tracks. None of the other kingdoms, nor the Brotherhood of Sorcerers, were willing to risk their lives to stop the Nilfgaardian army. Instead, a defiant group of mages, including Tissaia, Yennefer and Vilgefortz, faced Nilfgaard, unsure if their attempt would be futile. Fourteen mages, with Yennefer believed to be among them, died at the battle, but Nilfgaard was defeated — in the battle, at least, if not the war.
The climactic showdown where Geralt, Cahir, and their allies defend the Yaruga Bridge against Nilfgaard’s onslaught. Amid fire and chaos, Queen Meve rallies her troops, and Geralt earns his knighthood, finally becoming Geralt of Rivia.
The beasts of the Continent are legion, and each has its own distinctive power, motivation and vulnerability. While most humans would like to rid “their” land of these nuisances, Geralt, for one, realizes that not all beasts deserve to die, and not all humans deserve to live. Whether all the creatures in the Witcher universe, both malevolent and benevolent, should be seen as monsters is open to interpretation.
“Heiv eip, gröm eip!” “Bring together, bind together!”
Glowing moss used by elves and dryads to illuminate dark places. Safer and cleaner than a naked flame.
An age-old and relatively simple practice that allows the tracer to determine a person’s geographic location.

Brought to the continent by the explorer, Solryth and also known as Staff of the World, this powerful ceremonial staff was held by the Chief Sage, the highest magic office in the Xin’trean kingdom. It was Balor’s most treasured possession — a representation of all he was and all he’d gained — but he nevertheless sacrificed for a taste of the chaotic power from another world. The staff, however, was not enough: ultimately, he had to pay a far greater price to wield Chaos.
The inscription read:
“I am the echo of stars past, and those yet to shine.”
In the caves below the Tower of the Gull is an enormous collection of elven skulls and bones; the walls of the cave and its immense pillars are literally lined with them. Like many places on the Continent, Aretuza was built on the foundations of an ancient elven civilization like we see in The Witcher: Blood Origin.
Borch was a strange man who refused to carry a weapon. While he could be called a pacifist, his two Zerrikanian bodyguards — Téa and Véa — were definitely not. As the last of the gold dragons, Borch was very careful when traveling, rarely revealing his natural form. He was always disguised as a jovial man, no matter how skilled he was in the art of polymorphism. Borch had lived a very long time, gathering heaps of life experience. He tended to share his nuggets of wisdom with Geralt, whether the witcher asked for them or not. As much as Geralt hates a lecture, he recognizes the truth when he hears it. Without Borch, Geralt might never have returned to Cintra to seek out Ciri.
Botany is a core part of the magical experience, every magic student learns about nature’s medicine cabinet and all practicing mages pull from it. Witchers also have substantial knowledge of botany as they are, to a large extent, responsible for the creation of their elixirs. Each has its particular (poisonous) traits and purposes, so knowing where to find the right ingredients and how to apply them properly is paramount.
A gruff witcher from the Cat School whom the Rats recruit to help them with a dangerous heist in The Rats: A Witcher Tale. Initially reluctant, he’s known for his rough edges and thought to be a washed-up witcher. Over the course of the special, Brehen forms a complicated and sometimes protective bond with Mistle and the group, ultimately sacrificing himself to help the Rats escape.

Born into the merchant class, with a taste for the finer things in life, Brían worked his way to a position of comfort and influence. He was a secret lover of Eredin, the High Commander of the Golden Empire army, as relationships between warrior and Merchant classes were forbidden. Empress Merwyn used their relationship — and, more specifically, the secret information Brían was privy to - as a way of blackmailing Eredin into her service.
An ancient forest queendom inhabited by dryads; it’s the only remaining nonhuman state in the northern kingdoms. Magical waters run through Brokilon Forest, they have the power to heal and erase memories of pain and suffering endured. Newcomers must drink the waters — if they have ill intent, they’ll die; if they are pure of heart, they’ll survive. As war begins to consume the Continent, Brokilon becomes a safe space for the persecuted to find refuge.

Callan, better known as Brother Death, was a damaged former soldier. He fled from war and found himself lost in Zacaré’s mists. Brother Death was able to find peace with Zacaré, and the two outsiders to society became lovers. Although tired of war and bloodshed, Brother Death joined Éile and Fjall when he discovered they were taking on the hated Golden Empire, their soldiers having wiped out a village of innocents he cared for. He lost an eye while trying to restrain the bestial version of Fjall, but survived.
The Brotherhood of Sorcerers, established in 839, is the oldest and most influential organization of mages on the Continent. Its inaugural members were the ones who drafted the Laws of Magic — the rules and guiding principles that dictate how Chaos should be used responsibly. Fire magic, demonology, necromancy, to name a few, were forbidden by law, and the Brotherhood saw to it that their members abided. Those who didn’t could face serious repercussions, like incarceration, banishment or dimeritium chains.
Near Brokilon Forest and just north of the Yaruga River lies Brugge, one of Cintra’s vassal states.

Bruxas are creatures with range, both vocally and visually. They’re capable of beautiful deceptions and beastlike brutality. In human form, the bruxa is often an attractive young woman — a look that undoubtedly helps her when charming victims. Her huge eyes and pale skin may appear harmless, but this stone-cold parasite is far from that — she’s a vampire-like predator who thirsts for human blood. She’s small in stature but grand in grotesqueness.
In her natural form, the bruxa is extremely nimble. She can crawl and climb like a spider, maneuvering tight spaces to become almost invisible. Her frame may be small, but when she flaps out her webbed wings, dislocates her jaw to bare her needled teeth and flies at you, she’s quite a horror to behold.
The bruxa is often in a secluded location, but she tries never to be too far from a host. She can only shape-shift into a beautiful woman, but her powers don’t stop there. She can communicate without being heard and move without being seen, and her huge wings make her dangerous in battle. When her jaw is disengaged, she can create a blast strong enough to seriously injure humans.
How can she be defeated? A silver weapon is key, and a beheading works best. You’ll know the job is done when a bruxa spontaneously catches fire.

Cahir Mawr Dyffryn aep Ceallach is a Nilfgaardian soldier who reports directly to the Emperor. He was the mastermind behind the attack on Cintra, and his prime directive was to capture Ciri. But he failed to disclose this to his magical counterpart, Fringilla, as both of them were competing for power and the Emperor’s approval.
After the Battle of Sodden Hill, Cahir was captured by the mages. They brought him back to Aretuza, where he was questioned, tortured and eventually sentenced to die. Yennefer, who was supposed to execute his sentence, ended up sparing his life. By way of Redanian sewer and Sandpiper transport, Cahir finally made his way back to Cintra, where he continued to plot and scheme his way into Emhyr’s good graces.

Cahir’s single-edged sword serves one purpose: hacking and slashing. Notice that the guard bends in opposite directions and the pommel has a sort of jewel shape, simple yet sophisticated. The wavy edge of the blade is both tactical and economical. This cut-out design uses less steel, making the blade lighter to handle and cheaper to produce. It’s a standard-issue falchion sword with purely decorative curves. One weapon serves all Nilfgaardian soldiers, Cahir is no exception.
The northernmost part of the Continent, this kingdom at the foot of a treacherous mountain range is bordered by Barefield, Malleore and Creyden, and is a hotspot for eager dragon hunters.
Chaos is the most potent force on the Continent — and the most difficult one to control. Elves were the first to experiment with it, but they weren’t the only magical beings in the history of the Continent. There were other magical races — such as dryads — magical creatures and, eventually, magical humans. Magical humans are rare, though, and they usually go through years of training at either Aretuza or Ban Ard to master a level close to that of elven mages. If magical power remains unchecked, especially in a Source, it can become dangerous. But, with proper training, it’s possible to master skills such as healing, teleportation, destruction, illusion and shape-shifting. It’s also possible to create certain magical items, such as amulets — witcher medallions are a prime example.
“Magic is organizing Chaos. And while oceans of mystery remain, we’ve deduced that this requires two things: balance and control. Without them, Chaos will kill you.” —Tissaia

The Brotherhood was primarily a northern affair. It was controlled by a group of 12 mages called the Chapter, magical delegates from different realms, institutions and layers of society. The Chapter met regularly to discuss matters of state, the placement of young mages and whether or not to intervene in human affairs.
It was always the Chapter’s goal to remain neutral, but, of course, even mages were susceptible to bias and prejudice — they were, after all, human too.
A beast from another dimension, black like the crevice it came from and brutal beyond compare. Unlike other beasts and magical monsters, the Chernobog didn’t arrive during the Conjunction of the Spheres. It entered our world much later, mysteriously through a crack in the destroyed monolith near Cintra, proof that other spheres are still out there.
Everything about the Chernobog screams intimidation: Its sheer size. Its black exoskeleton. Its piercing yellow eyes. Its enormous claws, which are attached to long, muscular arms capable of grabbing a grown horse. And as having a hide that can barely be pierced isn’t challenging enough, the Chernobog also has the airspace advantage. With two giant webbed wings, it can swap solid ground for open air in a flash, attacking enemies ferociously from above.
The only way to kill this screeching, clawing, flying beast is to take a dagger or another sharp weapon to the weak spot in its exoskeleton.
Located along the western shores of the Continent, the country owes its prosperity to its maritime trade and shipping industry.
A powerful country known for its strong military force and its virtuous monarchy, Cintra is the realm that separates the northern realms from the Nilfgaardian Empire. Originally an elven city named Xin’trea, Cintra was once the only nation standing between Nilfgaard and the rest of the northern realms — until, that is, it was sacked and captured by Nilfgaard, leading to the death of its queen, Calanthe, and the escape of Princess Ciri.

“The Lion Cub” of Cintra, Princess Cirilla goes by Ciri. She’s an orphaned Child of Elder Blood, a Source, the sole heir to the Cintran throne and the first woman trained in the skills of a witcher.
Smart, strong and willful, with incredible magical powers that she had yet to discover, Ciri had what could be considered a charmed life as a girl, despite losing both her parents in a storm at sea when she was just an infant. She was the pride and joy of her grandmother, Queen Calanthe, and her strong will and self-sufficiency were as much a part of her DNA as her big green eyes. But everything changed when Cintra was seized by Nilfgaardian forces, and Ciri was forced to flee the only home she’d ever known and live like a fugitive, running from those who meant to use her for their own power-hungry purposes or — worse — kill her.
Despite her hardships, Ciri remained determined to build a new life for herself. In fact, when Destiny brought her and Geralt together, she seized the opportunity to train as a witcher like her newfound father figure. At Kaer Morhen, Ciri was introduced to a different way of life, one of swords, spells and endless studying.
As the prophesied Child of Elder Blood, and the sole heir to Cintra, Ciri was arguably the most important person on the Continent. Humans wanted her title, witchers wanted her blood, elves wanted her Chaos — but all stakes were upped when we discovered her own father actually mysteriously survived the shipwreck, and had risen to the role of Emperor Emhyr var Emreis of Nilfgaard – and he too was after her. She was the key to the destruction of the old world and the birth of the new, the descendant of Lara Dorren and the living epitome of Falka: fierce, remarkable women who were swallowed up by men afraid of their power — women whom Ciri was destined to avenge.
After her harrowing encounter at Kaer Morhen with Voleth Meir, Ciri goes into hiding with Geralt and Yennefer while agents from across the Northern Kingdoms and Nilfgaard try to track her down. The rogue mage Rience comes close, using a Jackapace to track Ciri’s blood while she’s distracted by the Belleteyn festival. Afterwards, Ciri’s treasured family is divided: Geralt sets out to track Rience down before he can strike again, while Yennefer takes Ciri to Aretuza to refine her control of Chaos.
This proves to be a mistake. Aretuza is attacked and Ciri is almost captured by Emperor Emhyr’s forces. In a desperate move, Ciri escapes through the unstable portal in Tor Lara, finding herself stranded in the Korath desert. After a grueling period of hunger, despair and wild visions of her powerful female ancestors, Ciri is eventually led to safety by a mysterious unicorn she christens ‘Little Horse’ – whose life she saves, though it leads to her renouncing her magical powers once and for all’ Alone, hunted, and still under threat, Ciri finds sanctuary with a band of young outlaws known as The Rats, joining their ranks under the pseudonym Falka.
The room from Yennefer’s perfect-little-family vision and Ciri’s residence in Kaer Morhen. It’s the first room that she truly got to call home since fleeing Cintra. She didn’t have much to work with — a cot, some mold and an inscription from a homesick boy — but added her own decorative touch: the skin of her first kill. A rat.

A blunt short sword inspired by Romanesque design. Light enough for tireless training, but heavy enough to prepare her for the real deal.
Standard issue witcher training sword. Blunted but still capable of inflicting pain. Similar in weight balance and design to the wooden variant.
The clans — Dog, Raven and Serpent — have existed as royal bodyguards since the dawn of time, even before the 1,000 Year War started. They are loyal to no one apart from the monarchs they protect. The clans of the three kingdoms have developed their own styles of combat, armor and strategy over the millennia.
Although they protect monarchs who are technically at war with each other, the clans hold a grudging respect for each other. They have clashed directly on occasions when kings and queens decide to leave the safety of their thrones to take to the battlefield. But the clan’s objective in battle is solely to keep the king and queen alive. They don’t work in concert with, or answer to the military. Clans don’t care for the outcome of the battle itself. Military tactics on the field, territory gained or lost are just distractions from their sole purpose: Protect the monarch at all costs. Three of the clans are associated with different geographical kingdoms. In Xin’trea in the West, there is Dog Clan; in Pryshia in the North, is Raven Clan; and in Darwen in the South, there’s the Serpent Clan.

Partners in (solving) crime, this multi-hyphenate duo deals in knowledge and knows where to find it. Codringher and Fenn were in the business of information: gathering, knowing, revealing and even burying it, for the right price. While Codringher acted as the face of the business, Fenn stayed buried in her research. Neither of them had ever been presented with a mystery as all-encompassing as the one Istredd brought to their attention. Together, Istredd, Codringher and Fenn dug up what Calanthe so desperately tried to hide: the truth of Ciri’s lineage and its linkage to the Lara gene.
A young and not-yet bitter witcher who helped train Ciri, Coen is easily recognized by his mismatched eyes. One of the youngest witchers at the keep, but a core part of the Kaer Morhen family, Coen is a skilled sword fighter, though not one to boast about it. Lambert is one of his closest friends. They often pull pranks and tell crude jokes, but unlike Lambert, Coen always knows when enough is enough. He formed a special bond with Ciri when she was living at Kaer Morhen.
All humans speak Common Speech (some better than others), but you’ll be able to tell a Kaedwenian from a Skelligen and a Cintran from a Kovirian based on their local dialects and unique colloquialisms.
Beyond heralding the arrival of new beings and monsters to the Continent, the Conjunction allowed Chaos to take root across all of the races. Following this event, the newly arrived humans could become mages and witchers, and they sought to assert dominance over the Elder Races that had always inhabited the land.

This is where the universe of The Witcher is situated: where elves, humans, witchers, gnomes and monsters battle to survive and thrive — and where good and evil aren’t easily identified. The regions of the Continent include Aedirn, Brokilon, Brugge, Caingorn, Cidaris, Cintra, Creyden, Dol Blathanna, Kaedwen, Korath, Lyria and Rivia, Redania, Riverdell, Skellige, Temeria and the Nilfgaardian Empire, which covers the southern half of the Continent.
Common herb used in Syndril and Zacaré’s elixir.
Poison which, when applied to blades, resulted in a slow, agonizing death. Only magical intervention could prevent its effects.
Situated at Aretuza Academy, this is a small room where big decisions are made. This is where the 12 Chapter members meet to discuss — and decide — the future of the Continent.
In the time before the Conjunction of the Spheres, during the 1,000 Year War, the majority of the lowborn elves were becoming restless, and the monarchies could feel it. There were rumors of peace between kingdoms, but the military and the mage classes were not keen on relinquishing their power in a world where every elf knew their place and birth role in society and acted accordingly.
Chief Sage Balor used Alvitir’s peace treaty to rally these disgruntled mages and generals from the kingdoms to wipe out all the royal families, establishing Xin'trean princess Merwyn as the empress of a new, unified Golden Empire.
Handheld explosives used by Kayleigh and other Rats.
A small northern kingdom of little importance near the Caingorn Mountains, this vassal state fell under the rule of Kovir and Povis, was home to Princess Renfri and was where Stregobor came to “treat” Fredefalk’s daughter for the Curse of the Black Sun, a story that resonates with Geralt early on in his career as a Witcher.
A seemingly ordinary solar eclipse that was interpreted as a dark omen by some. Stregobor thought that the eclipse was a sign of demon goddess Lilit’s return. He believed that women born during this eclipse were the foretold “60 women wearing gold crowns who would fill the river valleys with blood” and should thus be eradicated. To do so, he conducted horrible experiments, including confinement, starvation, mutations and operations. Renfri is the only one who survived Stregobor’s torture.
Old mining town in former Pryshia with a well-established dwarven bank. Éile, Fjall and Scían attempted to rob the bank, but were cornered by Golden Empire forces. They escaped, but not before Scían was wounded by a blade poisoned with corpse oil.

An orphaned elven boy who crosses paths with Ciri near a Cintran refugee camp and eventually finds himself in Francesca’s circle of trustees. Dara lost his family in Filvandrel’s Uprising, a rebellion that was squashed by Queen Calanthe. Orphaned and expelled from his homeland, Dara was forced to roam the Continent. He ended up in a Cintran refugee camp and stumbled upon Ciri, not knowing who she was. Both in search of safety and security, they decided to look for it together.
After helping Ciri survive an altercation with a doppler, Dara decided to keep himself safe and part ways with Ciri in the forest. Not much later, he found himself in Redania, caught up in soaring anti-elven sentiments. Soldiers eventually rounded him up with countless other elves and locked them away in prison camps. On the condition that Dara secretly reported to Dijkstra, he was released and sent to reunite with the free elves in Cintra — a deal that would come to cost Dara more than he bargained for.
Deglan was raised on the harsh and unforgiving Skellige Islands. A rough childhood and an even more grueling witcher training made him the hardened warrior-leader that he was. Wearing his characteristic wyvern cloak, he’d roam the Continent looking for coin and potentially some new recruits, Vesemir being one of his proudest enlistments.
Like those before him, Deglan was undoubtedly a devout leader. He would’ve done anything for his boys. He also understood that witchers need monsters. So when the latter were on the brink of extinction, he opted for an unorthodox approach: creating hybrids through mutation. He’d hoped that these hybrids would create jobs for his boys, but that plan backfired miserably. His zeal for the continuation of The Path meant its inevitable end. Kaer Morhen was brought to rubble, Deglan died defending it, and the knowledge needed to create new witchers was lost. Vesemir was tasked with rebuilding the fortress and keeping the tradition alive — which ultimately led to his fortuitous introduction to Ciri.
One of the three types of Forbidden Magic, this was the practice of summoning creatures from other spheres, across time and space. Strictly speaking, Ciri unintentionally (and unknowingly) dabbled in demonology. Her outbursts activated the monoliths and let creatures like the Myriapod and the Chernobog enter the Continent.
The Law of Surprise is closely linked to the concept of Destiny. Most humans believe Destiny is a binding force. One that can bring people together, keep them apart, make them rich, or inflict great pain. Others (read: Geralt) have a more down-to-earth view: They see Destiny as a construct, merely meant to help people make sense of things that otherwise don’t. Mousesack challenged Geralt on that belief, explaining to him that you can try to ignore Destiny, but you’ll never be able to outrun it. As Nenneke says to Geralt, “The difference between Destiny and fate is choice.”
A feathery plant with small pale flowers. It’s said to stop bleeding and promote healing. It’s extra potent in combination with Golden Oriole and knitbone.
Dijkstra’s relationship with Philippa Eilhart — itself a game of power and dominance — eventually leads to the mysterious assassination of King Vizimir of Redania. His younger brother, Radovid, is placed on the throne instead – which starts a rift between Dijkstra and Philippa.
Dimeritium is a particularly nasty metal for mages — it drains their powers and its effects don’t wear off instantly. A magical human exposed to dimeritium can feel depleted for some time. As such dimeritium isn’t particularly useful as a weapon — no more than a regular metal — but all the more effective when forged into handcuffs or prison cells, like the one in which Rience was kept.
An elusive air demon trapped in our sphere and coveted throughout for its ability to grant wishes. Djinns are incredibly powerful creatures, both wanted for their wishes and feared for their fickle nature. As they are air demons, there isn’t much of an outward appearance to describe — a djinn simply looks like a gust of wind or black dust that has a will of its own. Should you ever go looking for one, don’t do it without the proper amphora at hand. Once captured, djinns are proverbially bound to their master — forced to fulfill three wishes before being free once more.
Found in ruins, graveyards, deserts or amphoras, djinns are known for granting wishes (three in total, each one leaving a bloody mark on your flesh as it’s granted, so be careful what you wish for); wreaking havoc, using the power of the wind; attacking, or “marking” victims; and even, if rarely, taking possession of your body. Djinns don’t need to be killed to be vanquished — simply utter the third and final wish and watch them disappear.
Bodyguards to the monarchs of Xin'trea, Dog clan, as with all clans, were versed in every weapon known to Elfkind. But they specialized in the Battle Axe - a brutal double-headed axe, commonly slung across their backs. Their combat style was brutal; raw power and bludgeoning force. Although the kingdom of Xin'trea was a patriarchal monarchy, there have been female Dog Clan Chieftains.
The words Dol Blathanna are Elder Speech for “The Valley of the Flowers,” and this kingdom was the last elven stronghold. It was a sacred elven kingdom, said to be the only place where feainnewedd naturally grows. Elves were forced to leave during the Great Cleansing, and it is where Geralt and Jaskier were captured while on a job hunting a “devil.” Dol Blathanna eventually becomes a symbol for “home” — any place where elves can live peacefully and rule themselves again.
Translating roughly to “Valley of the Soul,” Dol Dusza is a practice that allows a skilled mage to enter the deepest layer of consciousness and uncover things that might be hidden there. Genetic memories, generational imprints that tell the story of who you really are and where you really come from. Triss used it on Ciri to figure out where her powers came from.
What is there to say about a creature that can take on any human form? A doppler is a unique being with a magnificent gift for metamorphosis and an unquenchable thirst for beauty. Its appearance could resemble literally anyone’s. In its “default” form, the doppler looks like a blueish goblin — or a person suffering from severe frostbite perhaps. Its skin looks rough, veiny and damaged; its eyes are bloodshot. But it’s unlikely that you’ll encounter a doppler in this form, as they’re generally said to be a kind and loving creature as long as you treat them equally well.
The doppler possesses an almost kneadable figure that allows it to change into shapes similar to its own. When it takes on another form, a doppler doesn’t just copy that shape, they copy that being’s memories, voice and behaviorisms too.
They like to live near or among humans, and can pick any shape to adopt; they also “collect” parts, building a perfect specimen to inhabit. Should you need to defeat a doppler, silver does the trick, causing an allergic reaction of sorts that scorches its skin.
A student at Aretuza Academy who attended at the same time as Yennefer but didn’t show the same magical promise. She was turned into an eel by Tissaia, along with Anica and Lark. If you didn’t have what it took to support Chaos, you were sacrificed to support the ones who did.
Like mages and witchers, druids are a type of magical human and are known for being scholars of the forest. Though less versed in the arts of magic than mages, druids are still capable of healing and other more rudimentary forms of magic; they have an extensive knowledge of all living things.

A popular lowborn tavern in Inis Dubh, owned by Aevenien. Notable for being the childhood home of Ithlinne.

Dryads are an all-female race of forest creatures; a self-sufficient tribe of warriors who live in total unison with nature. They tend to be very hostile toward humans — especially those who disregard the rules of the forest — though some human women are allowed to stay for protection, like Milva. How, or when, dryads exactly came to be on the Continent is unclear. Some say that they are enchanted human women — which would place them in post-Conjunction — while others claim that dryads descend from trees, meaning they could be even older than elves.
As a result of countless confrontations with humans, dryads retreated from many of their forest homes and created a single settlement in Brokilon forest. As much as they resemble humans physically, they are not like them. Dryads speak Elder Speech and have a sixth sense for magic. They also believe in things beyond human comprehension, like Shan-Kayan, an all-knowing ancient tree located deep in the heart of Brokilon Forest. Those who drink from her waters (the waters of Brokilon) will reveal “their true selves.” Prove yourself to be pure of heart, and the dryads will allow you to stay. Reveal ill intentions, and the waters will be lethal.
As is to be expected of a tribe of forest nymphs that lives away from “modern” society, dryads don’t rely on steel and metal for weapon-making, but on the materials that Brokilon Forest provides them with. This fact is clearly reflected in their mostly wooden weapons.
The nickname for Urcheon of Erlenwald, aka Emperor Emhyr var Emreis; Pavetta’s husband and Ciri’s father. A knight of no renown who was presumed dead but turned out to be the Emperor of Nilfgaard all along. (See also: Urcheon of Erlenwald; Emperor Emhyr var Emreis)
Before the elves came to power, dwarves controlled most of the lands that became known as Pryshia, Darwen, and Xin'trea. The dwarves were ultimately defeated and driven east into the mountain protectorate of Nolde, but their influence could still be felt: dwarven script adorned the walls of the Xin'trean royal palace, their control of Dwarven steel, and the raising of their sacred monoliths buried throughout the Continent by Balor, eager to repurpose them as gateways to other worlds.

Dwarves walked on the Continent long before all kinds of monsters did — and they might just be here long after, courtesy of the dwarves’ skill with the sword. Aside from excellent soldiers, dwarves have also produced enviable artisans and successful businesspeople.
When it comes to humans, dwarves hold less of a grudge than elves — dwarves and humans even work together in the mines of Temeria. That being said, a dwarf will always choose another Elder Race over humans. Shared enemies make for unlikely friends. As to where one would be most likely to find a dwarf: If the Trail doesn’t yield any results, try the dwarves’ motherland, the vassal state of Mahakam. They also own and run one of the larger banks in Gors Velen.
Dwarves are generally a good-humored but quick-tempered lot. Their weapons are a tad bit over the top — just like dwarves — with exaggerated elements and comical details that by no means diminish the weapon’s destructive abilities. Dwarves may be short in stature, but they’re sturdy and muscular, which allows them to wield large, heavy weapons. As one of the other Elder Races, they too have a long-standing history with the Continent. Their enclave in Mahakam happens to be a city rich in metal and mineral deposits, which help them excel in craftsmanship.

An elite warrior with the voice of a goddess, Éile abandoned her position in the Raven Clan protecting the Pryshian royal family in favor of a life spent as a nomadic musician, hoping to make more changes with words and melodies than by fist or blade.
To her Chieftain mother, Cethlenn of the Knives, Éile was her greatest disappointment. As a young child, she showed potential not seen in generations of Raven Clan births and was destined to be one of the greatest warriors ever known. Her mother groomed her to take over as chieftain of the clan, over her other six siblings, finding her the most exceptional tutors in the kingdom to hone her talents. One of the tutors she was fostered with, Scían, a mysterious sword master of deadly renown, also played the keyharp. Once Éile rested her hand on the instrument and heard the strings vibrate and sing, she was lost to it forever. This was what she was looking for all her young life. This made sense to her. It was the world in seven notes. By the end of her training she was lost to its magic.
On return to her clan, Éile was lost. She felt trapped. She had always accepted her fate - being born into the Raven clan, it was an honor people would die for. But the sense that she could make more of a change in the world with songs than with violence was growing bigger. Her mother was devastated when Éile told her that she wanted to be remembered for her music rather than her feats as a warrior. Despite her mother's protestations, Éile could not betray her truth, the burning need to atone for all the death she had brought into the world, by bringing song to the world. Her Chieftain mother banished her daughter from the clan.
Éile became a nomad traveling the harsh lands, slipping across borders into other kingdoms, playing for whoever would listen and living hand to mouth, avoiding the large cities. Choosing instead to bring her song to those who most needed it. This nomadic life shaped her: she became known as The Lark, a bard whose ballads gave hope to lowborn elves.
That life was shattered when she learned that the rest of her tribe was murdered in a coup orchestrated by Xin'trean sage supreme Balor and Princess Merwyn. Éile’s thirst for vengeance, and guilt for having abandoned her clan at their time of need, led her to make a blade pledge with Fjall, a rival warrior from the Dog Clan. Together, they set about destroying Merwyn’s newly-formed Golden Empire and the monstrous beast that allowed them to maintain control.
Over time, Éile and Fjall’s relationship changed from one of open hostility to respect and, eventually, a love forged in the crucible of war. While preparing for the final battle against Merwyn and Balor, Éile intended to undergo a dangerous magical experiment that would enhance her abilities and give her a chance of slaying Balor’s beast. Fjall, however, realising this would likely kill the warrior he loved, secretly took her place. Éile helped lead an army of sellswords into Xin'trea, where she reclaimed her place as The Lark: a figurehead to the lowborn, who inspired them to action during the final attack on Merwyn’s forces. Their attack was successful, but not without loss. The experiment left Fjall lost to the rising beast inside, and Éile was forced to end his suffering. Neither knew it at the time, but Éile was pregnant with Fjall’s child at the time of his death.

A musical instrument used by Éile to entertain and inspire the masses. It also doubled as a hiding place for her throwing knives.

Éile’s weapon of choice. She was forced to use these to kill Fjall after he fully degenerated into a beast following the final battle in Xin'trea.

A Skelligen jarl, or chief, who became King of Skellige by popular vote and King of Cintra by marriage to Calanthe. Eist is a typical Skelligen, ruggedly handsome, hairy and chatty. So chatty that he even persuaded Calanthe to marry him after countless proposals. Even though Calanthe saw her second husband mostly as an opportunity to strengthen Cintra’s bonds with Skellige, the marriage was a strong and loving one.
Eist was a warm step-grandfather to Ciri, loving her like his own flesh and blood, and a dear friend to fellow Skelligen, Mousesack. When Nilfgaard came to conquer Cintra, he rode out to battle beside his queen. But he never saw much action; Eist was instantly killed by an enemy arrow during the fight at Marnadal Valley.
The fearless leader of the dryads and protector of Brokilon Forest, Eithné is also known as the Silver-Eyed. Eithné is best described as a “Brokilonian earth mother meets regal bandit queen.” Her unbreakable bond with nature means that she’s respectful to all forest creatures, but not all living creatures — humans have wronged her and her people one too many times.
Even though she’s quick to judge, her judgment is rarely wrong. When meeting Ciri for the first time, she immediately sensed the girl’s magical power. The waters of Brokilon quickly confirmed her hunch and Ciri was allowed to stay — a unique display of dryad hospitality.
The term Elder Blood, or Hen Ichaer, refers to Lara Dorren’s bloodline, her descendents being children of Elder blood. It was thought that Lara Dorren had ruined everything by “contaminating” her bloodline, but the opposite is true. Ten generations down the family tree, Elder Blood is present in Ciri — a fact that became abundantly clear when her bloodshed caused feainnewedd to sprout. Feainnewedd, which means “Child of the Sun,” is a plant that only grows where Elder Blood is spilled. Those with Elder Blood are sought after because Ithlinne famously prophesied that a child of Elder Blood will save the elves when the world ends.
The importance of Elder Blood isn’t lost on other races and people either. Witchers, for instance, would like to get their hands on it, too. Elder Blood is one of the key ingredients needed to create witcher mutagens, but Kaer Morhen’s supply and knowledge of how to use it was lost during the sacking.
Most of the mages’ practices were appropriated from elves. Elves built Aretuza, elves taught humans how to control magic. The only way to do so is by using ancient incantations in Elder Speech, also known as Hen Linge.
Exceptional sword work isn’t always enough against a magical creature. To enhance their chances at winning, witchers take elixirs that have temporary physical effects. There are elixirs for enhanced night vision, extreme smell, superhuman hearing, you name it. Depending on the creature, witchers will create a cocktail of several elixirs that should help in that particular fight. Some of these elixirs can be quite toxic — even to witchers — so they have to be careful when calculating their dosages.
An ancient Elven dialect that was thought to be dead. This language is linked to darker times and therefore not commonly used.
The Elven Golden Era, a rich and complex pre-colonized elvish world that was filled with art, music, earth magic, architecture, deep math, high culture, and science. The elves of Blood Origin were post-agrarian and enlightened, with functioning cities, trade, higher education, and a vast history and belief system. They were more well-established as a society than the elves we have met in The Witcher. And because that society was thriving, the young and fertile elves were able to continue their reign by reproducing – a phenomenon that is lost over the following 1200 years.

Elves are one of the Elder Races and the first magical creatures on the Continent to control Chaos. Having mastered the art of magic, they were prepared to share their gift with the humans who arrived during the Conjunction — a decision the elves would come to regret. Humans may have been new on the Continent, but they were quick to rule it. Once the humans no longer needed the elves’ teachings, they turned against them. Elves refused to be forced out of their homes and cheated out of their land, but their resistance was futile against the humans’ brute force.
“When the humans arrived, we believed they were like us. Creatures of noble restraint and wisdom. We welcomed them as peers, instead of seeing what they really were… when we fought back, they called it proof. So we met their depravity with self-control. We took the high road — and it led to a mass grave we dug ourselves.” —Francesca Findabair
During what we call the Great Cleansing, nearly all young elven warriors were wiped out, killed in cold blood. The remaining elves were forced to live as second-rate citizens, licking their wounds in silence and longing for a chance at retaliation. The gruesome acts of the Great Cleansing irrevocably changed the Continent, explaining the deeply rooted tensions between elves and humans.
In spite of everything, the elves prefer to stand tall rather than cover their pointed ears and cower in caves. They still firmly believe in a “bright elven future” and will do anything if it ensures the survival of their species — a nigh impossible task given that the fertile segment of their civilization has been eradicated. There hasn’t been a successful elven birth in years, and as their numbers continue to decline, the stakes just keep getting higher.
The elves believe in a prophecy spoken by Ithlinne Aegli aep Avenien, a prophetess, which says that humans will perish in an ice age while elves will prevail, returning to their former glory through the offspring of Elder Blood.
Elven culture emphasizes balance — between all living things, between Order and Chaos — and honoring their elders. Elves will never forget where they come from, nor will they neglect their heritage. Transformational figures in elven history are adored and honored throughout the community. Perhaps the elves’ extremely long lifespans have something to do with their legends and stories persisting throughout history. Legends don’t die when those who lived them are still telling the tales hundreds of years later.

The ruler of the Nilfgaardian Empire, Emperor Emhyr’s thirst for power was felt through every inch of land the Nilfgaardian army took over and every move his puppets made in his play for world domination. But who was the Emperor? Unbeknownst to many, he was once known as Lord Urcheon, the cursed hedgehog man who’d come to Cintra to claim Princess Pavetta by Law of Surprise. Urcheon, or Duny, had saved Cintra’s King Roegner from death years ago and later fell in love with his daughter. Only after Duny nearly died and Pavetta had revealed her pregnancy did Calanthe agree to the union. Sadly, the pair’s wedded bliss was short-lived because a raging storm at sea was thought to have taken both of their lives some years later.
As Cintra mourned the loss of Pavetta and Duny fell off everyone’s radar, Emhyr made his moves, returning to Nilfgaard to reclaim his throne, shoring up his armies and invading the northern kingdoms, all in a plot to reunite with his daughter, Ciri.
After the failure of his campaign in the Northern Kingdoms, Emhyr employed his disgraced agent, Cahir, to track down Ciri — more out of a desire to consolidate his power than any kind of fatherly love. He also manipulated the elves into fighting for his cause, despite secretly being responsible for the death of the first elven child born in centuries.
Thanks to Vilgefortz, Emhyr is finally reunited with his daughter, Ciri – except the audience knows that it’s actually an imposter named Teryn.

Raised in a military family. Eredin’s mother died in childbirth and his father, a military man, lost his mind with age. He lost a sister and two brothers in the 1,000-Year War. Smaller and less physically strong than other recruits in the academy, Eredin played to his strengths, subterfuge and dirty tricks, to rise to the top of his class. He was the youngest elf ever to achieve the rank of captain after the battle of Stell’s fjord, where he took command of Xin'trean forces retreating in a panic after its two generals were killed by bowmen. Eredin rallied the troops and launched a counter-attack that routed the Darwenish forces and saved a critical Xin'trean border fort from capture.
When the Alvitir was murdered in the coup, Eredin was promoted to High Commander of the Golden Empire for his instrumental role in getting key generals from all kingdoms to join Balor’s ambitious plan.
Eredin was stoic, cold and ruthless, but he had secrets. He was in love with a lowborn merchant named Brían. Eredin hid his lover from the court, not because a same sex relationship meant anything of note in Xin'trea or the other Kingdoms, but because of their different classes by birth.
Merwyn leveraged this information to turn Eredin against Balor and regain control of the army. Balor, however, made Eredin pay for his betrayal, trapping him and his company in an arid world on the other side of a portal. Imprisoned for eternity, with neither hope nor humanity, Eredin took his first steps to becoming one of wraiths who would later be known throughout the Continent as the fabled Wild Hunt.
A typically boorish witcher who trained with Geralt as a young child, Eskel was proud, self-assured, and easily offended. Eskel was the life of the party, as long as the party revolved around him, that is. In Eskel’s hands, a run-of-the-mill monster fight could be spun into a tale of epic proportions. Finally, his hubris got the better of him: an arduous fight with a leshy left Eskel infected. Unaware of the infection, his symptoms worsened until, finally, he was fully consumed by the monster’s slithering vines. A now leshy-like Eksel turned against his friends, which forced the witchers to kill him.
Part of a group of witchers, along with Gawain and Merek, who wintered at Kaer Morhen and were found dead in their quarters shortly after Voleth Meir took possession of Ciri. Their chests were stabbed and throats were slit while they slept.
“Anain a veishme, aneinye a vol.” “Ignite to life, burn to death.”
“A power-hungry mutt of a girl, who cried death to all kinds when Vridank spurned her elven mother. Bent on revenge, she slaughtered nobility, priests, even civilians, with her bare hands. She preyed on foolish followers, incited a rebellion to burn cities to the ground, sent rivers of innocent blood down the streets of Redania and Temeria to reclaim power.” —Stregobor
In Stregobor’s hands, this story is a piece of anti-elven propaganda — a cautionary tale that reminds humans no one is ever what they seem, especially elves. Others say that Falka was just a girl abandoned by her family who came to reclaim what was rightfully hers. That she happened to be one-quarter elven only matters to those who already believe elves to be evil. The tale of Falka returns to haunt — or inspire — many characters in the future.

According to legend, feainnewedd — which means “Child of the Sun” — only grows in Dol Blathanna or where Elder Blood has been spilled. These purplish flowers are intrinsically linked to ancient elves, so much so that they still render some of their potent magic, including portaling. Feainnewedd was one of the main ingredients in the witcher mutagen, but is nearly impossible to get one’s hands on.
A haunted graveyard in which Geralt faces a vengeful wraith after a summoning gone wrong. Shrouded in fog and legend, Fen Carn becomes a battlefield that forces the Witcher to confront the cost of every soul he couldn’t save.
Balor’s cunning, nonverbal accomplice, Fenrik paid a cruel price for her loyalty. Fenrik was Balor’s closest confidant; he’d plucked her from the same mage institution that raised him, and their relationship was one of father and daughter. In order to harness the power of chaos, Balor had to sacrifice the thing he loved most in the world, Fenrik. Fenrik died at Balor’s hand, granting him incredible, rejuvenating magic abilities.
The parrot mascot in Geralt’s hansa.

An old friend to Vesemir, also known as Filavandrel of the Silver Towers, Filavandrel managed to rally some of the remaining elves to stage an uprising following years of suppression and elven genocide. This elven rebellion cost many human lives, but was soon dealt with by Calanthe. The face-off forced Filavandrel and his crew to retreat into the caves near Posada — the place where he met (or abducted) Geralt and Jaskier.
Over time, the elves’ situation deteriorated and they lost hope in their former king from the Blue Mountains. Looking for a new leader, they gathered behind Francesca, the elven mage with whom Filavandrel would eventually father the first elven baby born in ages. Though knocked back by his people’s loss of faith, Filavandrel remained strong. He was an elf who loved — and longed — to lead. This tough but just sovereign has the weapon skills of a warrior.
One of the three types of Forbidden Magic, fire magic is extremely dangerous, highly addictive and therefore forbidden by law. But that doesn’t stop mages from using it. Yennefer used it to scorch Nilfgaard at a cost to her magic, but rogue mages like Rience use it without remorse.
“People think Chaos comes from nothing, but that’s wrong. To draw it, you need a source. Fire is a forbidden source because it usually consumes those who draw from it. Unless you’re very talented. Then the body can withstand it.” — Rience

A brash and impulsive warrior who was banished from the Dog Clan, Fjall was the son of Osfar, and next in line to become chieftain of the Dog Clan until he was caught sleeping with Princess Merwyn, the same Xin'trean heir he swore to protect.
Fjall had long carried guilt for surviving his older brother who died in battle saving him from a marauder’s sword. Since then, Fjall, despite being a dog clan warrior without equal, drowned his sorrows in whatever vice he could get his hands on and self-sabotaged his place as chieftain — a place he believed he was “stealing” from his dead brother. The only one who really understood his pain was his sister, Ryl. As children, Fjall and Ryl grew up with Prince Alvitir and Princess Merwyn. Exiled and disgraced, Fjall tried his hand at becoming a sellsword, but couldn't quite get into killing for coin. He preferred to spend his waking hours drowning his guilt and rage in brothels and taverns.
Fjall later discovered his entire clan was murdered in a coup orchestrated by Merwyn. Fjall joined forces with his Raven Clan rival, Éile, and the two planned to return to Xin'trea and enact bloody vengeance on those responsible.
In order to defeat Balor’s beast, Éile agreed to undergo a dangerous procedure that would meld her body with that of the beast. But Fjall took her place instead, saving the life of the elfyn he had fallen for.
After undergoing the experiment, Fjall began to lose the sense of who he was, prone to bestial rages which could only be soothed by Éile’s singing. After his transformation, Fjall was able to defeat the beast, but lost himself to the beast inside him in the process. In the end, Éile had to kill Fjall, fulfilling part of Ithlinne’s prophecy — just not in the way she expected.

A well-balanced battle-axe taken from Fjall’s would-be assassin in Inis Dubh. A fearsome weapon that could be thrown overhead when needed.
Fjall’s backup weapon. He gave it to Merwyn when they were attacked in the lowborn streets. Merwyn used it to kill Fjall’s sister, Ryl, during the coup. Éile stabbed Merwyn with the same blade during the fall of the Golden Empire, giving her two options: leave the blade in place and live to face defeat and despair; or remove it and bleed to death. Merwyn eventually chose the latter.
A memento of Fjall’s time in the Dog Clan before his exile. Éile stole it from him while they were imprisoned together in Inis Dubh, leading him to seek her out after his release. After Fjall’s death, Éile wore the pendant in memory of their love — something previously unthinkable for a former member of the Raven Clan.

Along with Glacella and Murta, Fola was one of three young apprentices at Aretuza who encountered Yennefer upon her return to Academy for the emergency gathering of the Brotherhood. Though severely scarred and unlikely to disobey, Fola was a quick learner and highly competitive. Yennefer saw a lot of herself in Fola.
There are many types of magic that are forbidden by law, including fire magic, demonology and necromancy.
During the war with Nilfgaard, the Chapter was heavily divided. They stood idly by while tensions rose, thinking that having “one of theirs” — Fringilla — in Nilfgaard’s court would increase their influence and help temper their tensions. What they hadn’t anticipated was that Fringilla would succumb to Emperor Emhyr’s charms and fully embrace the Nilfgaardian doctrine. Feeling their control weaken, the Brotherhood called for a conclave, at which it was decided that no action was to be taken by mages.
Disagreeing with the Brotherhood’s verdict but too late to save Cintra, Tissaia and Vilgefortz recruited a group of vigilante mages to help them stop Nilfgaard at Sodden Hill. A brutal battle followed, amounting to considerable losses on both sides: 4,000 Temerians, 5,000 Kaedwenians, 20,000 Nilfgaardians, and 14 mages. While 14 seems insignificant compared to thousands, it was the Brotherhood’s biggest loss — and most public display of disobedience — to date. In honor of the Fourteen Fallen, and as a reminder of how the north bonded together, a memorial was erected at Aretuza.

A powerful elven mage who leads what’s left of the free elves, Francesca is spiteful toward humans, but willing to consort with the enemy if it will help her restore her elven glory.
After the elves lost hope in Filavandrel, they turned to Francesca, who they believed to have been blessed with a dream vision of Ithlinne. As much as Francesca hates humans for how they’ve treated her and her ancestors, she loves her kin more and will do anything to protect them. It was Francesca who kidnapped Yennefer and Fringilla, who mistakenly freed Voleth Meir from her tomb, and who briefly entered an alliance with Nilfgaard — all to secure a home, or Dol Blathanna, for her precious elves.
The alliance with Nilfgaard was bound to break eventually, but the death of Francesca’s newborn baby — at the hands of Emperor Emhyr — sped up the process considerably. Even though they suspected Redania instead of Nilfgaard, the enraged elves left the protection of the Nilfgaardian Empire to seek revenge, eventually becoming the rebel Scoia'tael. Now more aligned than ever, Francesca and Filavandrel were only out for one thing: justice for the murder of their child.

A zealous sorcerer with a powerful drive to prove herself, Fringilla is willing to do anything and cross anyone to impress Emperor Emhyr. Fringilla was one of the best students in her class at Aretuza. When the time came for mages in training to be assigned to a court, Fringilla was bound for Aedirn. But due to Yennefer’s interference, things panned out differently. Against her uncle’s wishes, Fringilla was assigned to Nilfgaard. She reluctantly accepted and decided to make the best of a bad situation. She quickly made a name for herself down south as fierce, resourceful and unforgiving — qualities that the Emperor appreciated and no doubt helped nurture.
Fringilla, who was once accused of only being able to “do as she’s told,” started charting her own course. Without the Brotherhood looking over her shoulder, she grew more powerful and confident. As her first major show of force, she sank an entire Skelligen fleet — the one that was supposed to come to Cintra’s rescue. Later, she led the Nilfgaardian troops to war and after Sodden Hill, forged a remarkable alliance with Francesca. Everything Fringilla did was to please the White Flame, a man whose approval was easy to win but nearly impossible to regain.
An elf defined by his broad build and boorish behavior, Gage is motivated by contrasting emotions: an undying anger toward humans and a deep love for his sister, Francesca. He’d do anything to protect her and fight anyone if it could secure a better future for elves at the cost of that of humans.
A bold, abrasive elf who is blindly devoted to the revolution. Gallatin is a born fighter who led an army of guerrilla Scoia’tael fighting on behalf of Nilfgaard. Unafraid to speak his truth and loyal to his people, Gallatin puts himself on a collision course with his ruler, Francesca.
Part of a group of witchers, along with Everard and Merek, who wintered at Kaer Morhen and were found dead in their quarters shortly after Voleth Meir took possession of Ciri. Their chests were stabbed and throats were slit while they slept.
Bustling northern port city with onion-domed rooftops and decorative buildings. Éile and Fjall found themselves here after escaping Inis Dubh and surviving a storm at sea.
A Nilfgaardian army general with an inclination toward violence and an aversion for insubordination, General Hake was, like most humans, not a big fan of elves. But he hated worthless soldiers who waste his time even more. (The Nilfgaardian army’s latest recruits were both.) The general often found himself at odds with Fringilla and Cahir, who constantly seemed to ignore Hake’s opinion and rank. As a result, the general grew more and more frustrated with them for trying to do his job, becoming more and more recalcitrant, until he met his death at the hands of Fringilla.

A witcher who’s seen it all and has the cynicism to prove it, Geralt is bound to Yennefer by desire and to Ciri by destiny. Arguably the most famous witcher on the Continent, Geralt is called the White Wolf or, less favorably, the Butcher of Blaviken. Given up by his mother to the men at Kaer Morhen — a deed for which he resented her at first — Geralt flourished at the School of the Wolf. He was so successful at his training that he was chosen for additional mutations, giving him his signature white hair and greater strength, speed, endurance and resilience than his peers. Combined with his heightened senses, near immunity to diseases and potions, and extreme resistance to pain, Geralt was practically unbeatable.
Geralt’s cynicism hid an affection for his loved ones that seemed at odds with his stoic demeanor. He’d protect them at all costs, but would rather avoid violence and remain neutral in all matters. As he got swept up in Ciri’s life (by the Law of Surprise), he was forced to choose a side in politics and question everything he thought to be true. Driven by destiny, he moved heaven and earth to help Ciri follow a path that was set out by prophecy.
After decades on the road, Geralt has made many “friends” and probably even more enemies. Important influences in his life include Jaskier, a bard and his best friend; Vesemir, the father figure who trained and mentored him; Triss, the sorceress who saved his ass more than once; and, of course, Yennefer, Geralt’s true love. Even though “it’s complicated” with Yen, she’s the most important person in his life, next to Ciri.
As Ciri’s true nature becomes more widely known across the Continent, Geralt’s role as her protector and father figure is increasingly crucial. He reluctantly enlists Yennefer to help teach Ciri to control her Chaos. It’s a partnership which, over time, helps ease the distrust between the two. He even allows Yennefer to take Ciri to Aretuza to continue her magical training.
In order to ensure the safety of his unconventional family, Geralt planned to draw out the rogue mage Rience. Their rivalry came to a head during the Aretuza coup, where Rience arrived with force of rogue sorcerors and Scoia'tael. Geralt beheaded Rience, but fell in combat against his real master: Vilgefortz. Triss was able to portal the injured Geralt to the safety of Brokilon, where he would recuperate under the watchful eye of the hunter, Milva. Eventually, Geralt turned his back on the witcher life, and set out to find his adoptive daughter, Ciri, who was once again lost after the chaos of Aretuza.
A nifty 9-inch knife that can easily be tucked away in boots, sleeves or pockets but can still hold its own against a full-size sword. This dagger is made from a single piece of steel, making it both sturdy and striking. Its modern grip was created by looping a leather lace through the blade. The two notches right above the grip are cutler catchers that stop any blade from sliding down the dagger and digging into Geralt’s knuckles.
Winters at Kaer Morhen are for rest, repair and upgrades. Similarly studded as its predecessor, this armor is a fine combination of leather and metal with the added bonus of a more rigid breastplate and scaled shoulder pads.
A dark leather armor, strategically studded with metal for maximum protection and minimal weight. This torso model is no match for trained swordsmen, but is a great first line of defense in other battles.

A double-edged sword with a 27.5-inch meteorite blade, which is stronger and more durable than steel, and sporting a narrow double-handed grip meant for non-monster fights. This blade has two striking details: the elven inscription along the fuller and Renfri’s broach on the hilt. Geralt added the broach to reinforce his belief that he shouldn’t get involved in the political affairs of men. Other than reminding Geralt of his beliefs, the broach serves as a cutler catcher, making it easier to deflect blows or overpower an enemy.
A weapon that is lethal against magical creatures but worthless against regular enemies. It has a silver blade and an ivory grip; silver swords are much more precious than steel swords, more malleable and thus easily damaged. To make sure that Geralt gets as much use out of this weapon as he can, he keeps it in a sword carrier on his mare, Roach. That way, it won’t be exposed to the elements but can always be grabbed when a monster is near.
Nomadic sword masters who owed no loyalty to any royal family. When they refused to fight for the Xin'trean ruler, Mad King Darach, he had their water supply poisoned, wiping them out. Darach also took the Ghost Tribe’s sacred blade, Soulreaver, as a war trophy and sign of Xin'trean supremacy. Scían was the sole Ghost Tribe survivor.
Ghouls, or ghuls, are a type of undead being that has a distinctive skeleton-like silhouette, piercing yellow eyes and a fang-filled mouth; with a long, snake-like tongue. They’re known to hunt for dead bodies and attack in groups, leaving little to no chance of escape. They hiss and snarl, not so much as a way to attack, but as a scare tactic or battle cry. Defeating a ghoul is easiest if you hit it in the head or neck; either twist the neck or use a silver sword to keep a safe distance and slash away. Should they bite, they’ll probably leave you to rot for a while, as they prefer the taste of aged flesh over fresh meat. A ghoul’s bite means certain death, unless you’re Geralt of Rivia.
A manicured mage known for his masterful transformations of countless Aretuza students, Giltine considered himself “nature’s final artist,” the creator of living pieces of art. The special Aretuza students chosen to “ascend” met with Giltine near the end of their time at the Academy. As an expert on various cultures and customs, he was well equipped to create custom looks for every mage, no matter their destination. With a special mixture of herbs, he would put a student under — Yennefer regrettably forwent that step — and perform surgical procedures to remove their uterus in exchange for great magical power. Once altered, there was no going back; Giltine’s transformations were everlasting.
“Ein te nepurte, the pur irig.” “From your unborn, you are reborn.”
Along with Fola and Murta, Glacella was one of three young apprentices at Aretuza who encountered Yennefer upon her return to the Academy for the emergency gathering of the Brotherhood. Glacella was beautiful but spoiled: She’d bought her way into Aretuza. She may not have had the knack of magic, but she already had the confidence of a skilled mage.
An extremely potent fungus that, when consumed, will lead to feelings of euphoria and overconfidence. The psychedelic side effects make it quite popular.
A mythical serpentine creature, the gold dragon is not to be mistaken for a white, black, red, green or rock dragon. Dragons are extremely rare and awe-inspiring creatures; built like a castle and armored like one, they are nigh indestructible — if you play your cards right, you’ll never have to try.
Though the gold dragon is said to be benevolent, it has all the features of a ferocious creature: huge taloned wings, razor-sharp teeth, and big, pointy claws. Their fiery breath is hotter than hell and can scorch buildings or bodies in the blink of an eye. They fly upon wings huge enough to cast a shadow over an entire village; they could also blow over that village with a single flap. They’re hunted in part because they’re known to collect and protect treasure; while dragon hunters might be able to share some tips for taking down more common dragons, nobody — witcher or otherwise — has managed to kill a gold one yet.
Whether there is more than one gold dragon out there remains to be seen; nonetheless, Villentretenmerth is unique. Reflective golden scales form an alluring and impenetrable shield along its backside, protecting it from dragon hunters. Though dragons are known to reside in mountains, gold dragons are skilled in polymorphism, so they shape-shift to hide anywhere as anything or anyone — keeping a low profile like Borch Three Jackdaws.
Borch and the Dragons
On his travels, Geralt meets a man by the name of Borch Three Jackdaws — a jovial fella who is always accompanied by two Zerrikanian warriors, Téa and Véa. After a brief introduction, the colorful trio decided to join Geralt on an impromptu dragon hunt. Funnily enough, Borch himself would never carry weapons. Instead, he relied on his two Zerrikanian bodyguards to fight his battles.
As the hunt progressed, hunters fell and tensions rose. When the group finally found a sleeping green dragon, it all came to a boiling point, forcing Borch to blow his cover. Rid of his guide, and to everyone’s amazement, Borch revealed that he was in fact the mythical gold dragon. He had responded to the green dragon’s cry for help and, apparently, arrived just on time to protect her egg. What exactly transpired in the dragon’s lair is lost to history, but a gold dragon hasn’t been sighted since.
A unified elven state, formed in the aftermath of Balor and Merwyn’s coup. After the Xin'trean, Darwenian and Pryshian royal families were murdered by Balor’s beast, the Golden Empire was formed (excluding the Dwarvish republic of Nolde) with Xin'trea as its capital and with Empress Merwyn as the figurehead — a demonstrative position designed to keep the masses happy. The Golden Empire troops quickly became unpopular, however, thanks to their brutal methods, use of slave labour to raise buried dwarven monoliths, and the worsening famine throughout the empire.
A bird or parts of a bird that neutralize the effects of poisons in the bloodstream — immensely beneficial when fighting basilisks. One of the main ingredients in the wound-binding potion.
A port city located in Temeria just above Brokilon Forest, Gors Velen and its bustling marketplace is the main connector to Thanedd Island.
After the conjunction, Elven elders taught humans how to control chaos, and having learned everything they needed, humans began taking elven land. During what is called the Great Cleansing, nearly all young elven warriors were killed in cold blood in a failed rebellion against the humans. The remaining elves were forced to live as second-class citizens, licking their wounds in silence and longing for a chance at retaliation. The gruesome acts of the Great Cleansing irrevocably changed the Continent, which explains the deeply rooted tensions between elves and humans.
A close relative of the gold dragon, a green dragon is often the collector or protector of treasure. Similar to other dragons, the green edition has a scaled body, taloned wings, large claws and fiery breath. It’s said that their teeth are white as snow, sharp as razors and roughly the size of rocks — big enough to fill a dwarf’s hand.
Though they’re not as rare as their golden-scaled siblings, the chances of an encounter with a green dragon are also rather slim. The treasure they’re known to rest (and nest) upon is also the reason why dragon hunts are such a lucrative business and why the species might soon go extinct. Even if a lair holds no treasure, the dragon can be bounty enough. Someone might sell a dragon’s skin, teeth, talons or even organs for ample amounts of gold and silver.
A parasitic cave creature, the greylock attacks Ciri and Mistle during their underground initiation. Bioluminescent and horrifying, it feeds on fear and flesh — forcing Ciri to unleash her deadliest instincts to survive.
Nilfgaardian battle ogre with fused armor and a triple axe grafted to his arm.
Contrary to what their name suggests, halflings are not half-human. They have human proportions and are often “employed” by them, but are in no way related. Like dwarves, halflings are short in stature, but don’t mistake one for the other; they won’t appreciate it. Nor do they appreciate being (ab)used as unpaid servants by rich Northern families.
Throughout history, halflings have shied away from the spotlight — stepping into it probably wouldn’t have done them much good anyway — preferring to live peaceful and quiet lives. Unlike dwarves, halflings don’t have any land or kingdom that’s traditionally theirs. In fact, in more recent times, halflings have been known to travel to Nilfgaardian territory. Away from human scrutiny, they enjoy the Emperor’s security.
A tree from the rose family that yields dark red fruit. Witchers use it for its healing properties.
There are different forms of healing magic. Some require spells, others potions, hand gestures or a combination of everything. Druids are usually skilled healers because of their extensive knowledge of all living things. Triss was also known to have a knack for it. Three common healing spells are: “Abeil kew net’a’t esen gweth. Gasheir kwe’s grönshil.” “Close what should not be open. Release what is bound.” And: “Ynilysh kwe’s perthe. Thenkreil kwe’s kov.” “Join what is broken. Replace what is lost.” And: “Ein ulka, zeil eip. Yn murm, gadeith kerve.” “From the ashes, rise. In the darkness, burn true.”
An ancient song that mourns the dead, and is also said to guide lost elves home. Yet another example of how important music is within the elven community.
A defensive sign. Much like Quen, Heliotrope helps deflect attacks and can soften impact. Use it as a temporary defense against physical attacks, spells, charms and other forms of combat magic or as a buffer when crashing into walls or falling to the ground.
Even rarer than dragons, with deceivingly harmless looks but a deadly appetite, hirikkas have distinctively thin, sinewy bodies covered in patchy fur. You can recognize their long, doglike ears, short head shape, and light brown skin. That neutral skin color helps them blend in with their environment — typically northern forests — but those yellowish eyes still stand out.
When they squat down, hirikkas might not look all that terrifying, but once they rise from behind the bushes, bare their sharp teeth and come coursing straight at you, that assessment will surely change. If you’re (un)lucky enough to see one, you’d do best to leave it be. Hirikkas were hunted nearly to extinction but usually bear no ill will toward humans; they’re just looking for quiet places to eat their fill.
Humans were the invaders of the Continent. Trapped in this world after the Conjunction of the Spheres, they wasted no time in overtaking it. In a short time, humans had colonized the Continent and established themselves as its rulers — much to the Elder Races’ regret. Humans looked down on the other evolved races, believing solely in their own inherent superiority. But that superiority was threatened — both by the long-prophesied Child of Elder Blood and the impending war with the southern empire of Nilfgaard. As tensions between kingdoms and races rose, humans had to be careful not to let conflict consume them.
A pyrokinetic sign with multiple purposes. Used to repel attacks with a burst of fire, warm things up or set them ablaze completely. Vesemir famously used Igni to set fire to his sword — extremely useful against leshies.
Vesemir’s childhood sweetheart. Illyana was a low-born, self-made member of Kaedwen’s court who pleaded the witchers’ case on several occasions as Lady Zerbst. When she was still just Illyana, she grew up in the same household as Vesemir, both children of servants. After Vesemir left to train with Deglan, she was sold to the Zerbst family. Their son fell in love with Illyana and married her, making her a duchess. After the Duke died, Illyana took his place at court and turned their home into an orphanage.
It would be more than half a century until Illyana saw Vesemir again. Both tried to ease the rising tensions between Kaedwen’s nobility and Kaer Morhen. In the end, neither Illyana nor Vesemir were able to protect one another from what they feared — Vesemir’s home was destroyed and Illyana was lethally wounded in the process. As the dust was settling, they shared one last bittersweet moment and Illyana died in Vesemir’s arms.
A grim, unforgiving harbor town in the far north. An island where those running from Elven society and its laws found themselves. Éile met Ithlinne here while performing at the Drunken Goat. Later, Éile found herself imprisoned with Fjall in the Inis Dubh jail, and fought together to survive Golden Empire assassins sent to kill them both.
In Aretuza, the Inquisition room is found in the Academy’s dungeon, where it is used to interrogate and torture suspects — Cahir can confirm. The chair itself doesn’t necessarily have any magical features, but it keeps the prisoner locked in place. The right mage — with a steady hand — can read a person’s mind, even relive their memories.

An inquisitive-by-nature mage who studied under Stregobor at Ban Ard, Istredd claims history as his muse. Aside from magic, Istredd was fascinated by archaeology. He studied anything from the remains on Thanedd Island to the monoliths in Nazair and Cintra. During his studies at Ban Ard, Istredd was captivated by Yennefer, whom he met in the caves of Tor Lara. A romantic relationship soon blossomed between the two magic students, one that was pure and true. She trusted and admired him. He adored and challenged her.
Despite his efforts to keep “Yenna” in his life, the star-crossed lovers progressed in different directions. But Istredd’s love never really faded, he merely buried it beneath heaps of work. He became somewhat of an expert on monoliths, and, as a scholar, was allowed to work on Nilfgaardian territory, which is where he met Geralt. Both looking for answers, they investigated the monolith outside Cintra together. Geralt knew enough — the monoliths were a portal for monsters — but Istredd’s thirst for information wasn’t quenched yet. Not until he learned about Ciri’s link to Lara Dorren.
A girl with the gift of prophecy, whose words will guide generations to come, Ithlinne grew up in a tavern in Inis Dubh with her mother, Aevenien. She was prone to sickness, fits, and visions, which made people around her scared and suspicious. All of her visions came true in some form, including, tragically, the loss at sea of her own father. Ithlinne foretold that Éile’s child would begin a lineage that would have great consequence for the world to come. Just who the child is linked to remains to be seen, though. The answer isn’t as simple as it would seem.
Ithlinne Aegli aep Avenien is the elves’ most sacred prophet and these are her (in)famous words:
“Verily I say unto you, the era of the sword and the axe is night, the era of the wolf’s blizzard. The Time of the White Chill and the White Light is nigh, the Time of Madness and the Time of Contempt: Tedd Deireaádh, the Time of Eind. The world will die amidst frost and be reborn with the new sun. It will be reborn of the Elder Blood, of Hen Ichaer, of the seed that has been sown. A seed which will not sprout but will burst into flame. Ess’tuath esse! Thus it shall be! Watch for the signs! What signs these shall be, I say unto you: first the earth will flow with the blood of Aen Seidhe, the Blood of Elves…”
The elves deeply believe that Ithlinne’s prophecy, or Aen Ithlinnespeath, will ring true. If it does, humans will come to perish in an ice age, while elves will prevail, returning to their former glory through the offspring of Elder Blood. This is why the elves are so keen to procreate, and why they are so disheartened by their lack of success.
A snarling creature that tracks and kills with deadly efficiency, the Jackapace’s flared proboscis gives it an unusually acute sense of smell that allows it to track prey from great distance.
A terrifying, alchemically altered monster that guards the vault targeted by the Rats during their heist in The Rats: A Witcher Tale. In a heartbreaking revelation, the jalowick is revealed to be Juniper — Mistle’s former lover — who has been transformed into this deadly creature. The jalowick poses both a lethal danger to the group and an emotional crisis for Mistle, who ultimately makes a devastating choice to kill the monster in order to save the Rats.
A young apprentice historian studying at the Temple of Melitele and Ciri’s slightly awkward study buddy. His thirst for historical knowledge led him to Melitele’s Temple where he devoured every item in the library. Upon Ciri’s arrival, Jarre was asked to show her around and help her get acquainted with the Orbuculum. Not long after, an unsuspecting Jarre fell victim to Rience, barely surviving the whole ordeal.

Jaskier is a successful bard and self-proclaimed romancer who entertains kings, queens and common people with his songs and poetry. The charming Jaskier (whose full name is actually Julian Alfred Pankratz) is everybody’s friend — or so he’d like to think. He dresses in the finest clothes and uses his boyish looks and born talent to impress anyone who will listen. As a bard, Jaskier always goes where stories can be found and songs can be written. He believes in the power of words, and that stories can change the course of history — which is why he wrote his most famous song to date, “Toss A Coin To Your Witcher.”
A traveling troubadour and a wandering witcher were bound to cross paths at some point. Their early time together resulted in some of the bard’s most popular work. Even though Jaskier had a nose for adventure, he didn’t always have the stomach for it. He joined Geralt on several monster hunts, nearly losing his life to a vicious djinn at one point, but left the life of adventure behind after a dispute with the White Wolf. A few years later, Jaskier popped up again. Under the alias “The Sandpiper,” a mysterious angel of refuge, Jaskier was helping fugitive elves out of Redania to safety — perhaps his most altruistic act to date — and soon reunited with Geralt in his quest to protect Ciri. He remains one of Geralt’s most trusted friends and frequent travel companions.
A sun-scorched frontier town, Jealousy becomes the bloody stage for Leo Bonhart’s massacre of the Rats. Its dusty streets and shuttered saloons turn into a nightmare arena — the place where Ciri’s rebellion ends in devastation and fire.
This is the largest northern kingdom, home to the witcher fortress of Kaer Morhen and the sorcerers’ school in Ban Ard. The witchers have lived there since the first witcher was created and remained even after their keep was burnt to the ground. Weather conditions in Kaedwen can be harsh — as are its inhabitants — so their weapons can withstand a lot. The scabbards and sheaths are covered in thick layers of fur so that frost and rust don’t stand a chance. As for the designs, those are simple yet sturdy. Well-built, solid swords that will hold up in combat, but demand a bit of muscle power to wield.

The training grounds for witchers located in the kingdom of Kaedwen was once a mighty keep, but now its ruins remind witchers of a proud past. The name Kaer Morhen literally means “Keep of the Sea,” but there’s no sea in the vicinity now. Built into the peaks of the Blue Mountains, Kaer Morhen is only accessible to those with knowledge of the treacherous trail that leads up to it. For centuries, it has been the home of the witchers from the School of the Wolf. These witchers-in-training could experience the closest thing to real-life monster combat on three huge wooden training contraptions. There’s the Pendulum, a series of swinging logs, with piercing metal spikes; the Windmill, an array of rotating wooden posts with jutting arms, ready to strike; and the Comb, a wooden bar hanging above a compactor of sorts, perfect for crushing small children. Even though Geralt didn’t like the thought of Ciri training on it without his presence, she was brave and didn’t let it conquer her.
Kaer Morhen’s armoury holds relics of a bygone age, each with its own epic origin story, like Klef’s crystal dagger, Deglan’s armor, or Vesemir’s Lab Axe that saved the witchers from the leshy. The armory’s collection of fully functional weapons and witcher memorabilia preserves the history of those witchers who have come and gone from its strong walls over the years after some rest and replenishing their elixirs and armor. Keen eyes will notice that the armory also holds some familiar weapons from a different part of Geralt’s universe…
Ket was Merwyn’s handmaiden, and trusted confidante.
An insectoid water creature with eight sinewy legs commonly found in swamps; hostile when hungry. Far from an insect in size, the kikimora stands tall on several multi-jointed legs. Their limbs bear some resemblance to a human’s, but the lion’s share of the kikimora’s bony physique consists of many different animal parts. They’re quite the sight to behold: mangled faces, mouths filled with crooked teeth. Their eyes are opaque and hollow, their blood thick and much darker than that of humans.
Starving kikimoras can kick up quite the fuss, gobbling up unsuspecting children or even grown men should they come charging at her. Otherwise, they largely operate under the radar of humans or witchers, only attacking out of hunger. They dwell in marshes, swamps and lakes, and their screeches sound like a dying woman’s scream, serving no purpose but to scare their foes. To slay the monster, a silver weapon to the head or heart will do the trick.
A natural, rocky path encircling Kaer Morhen. Young witchers had used the treacherous trail to train, so Geralt taught Ciri the path for her own witchering education. It was on the Killer Trail that Vesemir first spotted the feainnewedd that sprouted from Ciri’s blood.
The king of Kaedwen, Dagread was a lazy monarch who was more concerned with wearing the right makeup and wigs than ruling his kingdom. Before Henselt ascended to the throne, the vain Dagread was in charge — Vesemir will surely remember him from his younger days. Dagread was a king who never had much interest in governance. Instead, he trusted a group of advisors — eagerly led by Tetra — to keep him informed about pressing matters. All that Dagread had to do was decide on the next course of action before washing his hands of it.
The king of Aedirn, Demavend succeeded his father Virfuril — the king of Aedirn during Yennefer’s tenure at court — to the throne. Demavend is a chip off the old block. Like his father, Demavend was very suspicious of mages — mages born in Aedirn being the only exception. As the ruler of Aedirn, he was expected to join the royal councils. But Demavend was never all that interested in global politics. His concern was being superior to the neighboring kingdom of Kaedwen.

The king of Temeria, Foltest is a man of questionable morals and considerable political influence. He used to be one of the most disliked royals in the north. His kingdom, one of the largest in the Continent, was tormented by a striga — the direct result of an incestuous relationship between Foltest and his twin sister, Adda. When Foltest finally decided to deal with the situation, he gained some of Temeria’s trust back.
Together with Triss, Foltest’s mage, Geralt managed to free Foltest’s cursed child. With life behind castle doors somewhat settled, Foltest started to get more involved in global politics. Against expectations, he marched his armies to Sodden Hill, where he swayed the battle in the Brotherhood’s favor. After realizing the role he had to play in the fight against Nilfgaard, he started cooperating (or conspiring) with the other northern royals to gain more power.
The king of Kaedwen, Henselt was smitten with his mage, Sabrina, but even more enamored by the awe-inspiring war machine that was his army. As the ruler of one of the larger kingdoms, Henselt’s opinion was respected among royals. But when he did join royal councils, he wouldn’t voice his opinion all that much (he left that to Foltest and Meve). Henselt cared more about his kingdom than the prosperity of the Continent, going to great lengths to protect what was his. At one point, Yarpen and his crew worked as Henselt’s convoy security, until it was attacked by Scoia’tael.
The first husband to Queen Calanthe of Cintra and father to Pavetta, Roegner’s life was saved by Urcheon of Erienwald, also known as Duny, and granted him the Law of Surprise, which led to Duny’s eventual marriage to Pavetta.
The king of Aedirn. Virfuril was kind to his own people and even kinder to the beautiful mages from the motherland. He was known for two things: his hatred of elves, and his handsome looks. When the time came for Aretuza’s young mages to be appointed to a court, Virfuril’s was in high demand. Despite the Brotherhood’s effort to keep Yennefer — who’s a quarter elf — out of Aedirn, Virfuril fell for her. Upon hearing that she hailed from Vengerberg, there was no changing his mind. Some years after Yennefer’s tenure at Aedirn’s court, Virfuril died and Prince Demavend ascended to the throne.
The ruler of Redania. Vizimir is known for relentlessly rounding up elves and trusting none other than his head of intelligence, Sigismund Dijkstra. Vizimir is everything you’d expect a king to be: wealthy, powerful and always wanting more. Redania was already one of the largest and wealthiest kingdoms on the Continent, but Vizimir was still set on adding Ciri to his family and Cintra to his realm. If Vizimir were to force a union between the two of them, he would be the single most influential king on the Continent.
As with most powerful royals, there’s nothing Vizimir fears more than losing his power. Redania’s king isn’t exceptionally clever or cunning, but the people in his inner circle are. With the help of Dijkstra,his advisor Philippa Eilhart, and his brother Prince Radovid, Vizimir often manages to outsmart the competition, winning at a rigged game. What he might not realize, though, is that he’s the one being played.
A shape-shifting elven mage with fox-like hair and destructive fury. An elf-mahr hybrid who hides deep inside the ruins of an old elven academy.
Before she was corrupted by witchers, Kitsu was a regular elven girl, young and talented. She was taken from under Filavandrel’s watchful eye and forced to undergo mutations that didn’t agree with her — in fact, they’re what made her into an elf-mahr hybrid. Deglan’s plan for profit (create monsters to kill monsters) had backfired and Kitsu was living proof.
To hide the evidence, the witchers tried to get rid of her but only managed to estrange and anger her more. Kitsu fled into the mountains and found refuge in an old elven academy — there she stayed until Vesemir and Tetra followed her magical trail. Deceived by Tetra, Kitsu finally unleashed her fury on the witchers, thereby contributing to the destruction of Kaer Morhen.
One of the first witchers. Klef was part of the group that tried to entomb Voleth Meir, and died in the process. When Voleth Meir was first wreaking havoc on the Continent, Klef joined the task force meant to take her down. They succeeded (sort of), but not before she managed to take Klef down. His damaged armor and the crystal-hilted dagger that she used to kill him are all that’s left — a humble tribute hidden in the Kaer Morhen armoury.
A healing herb with hairy leaves. Strong enough to patch up wounded witchers and especially useful when healing broken bones.
A makeshift dexterity game played by Cintran street rats (and one disguised princess). The pieces are made out of sheep bones and the gameplay is as follows: using one hand, players toss the large knucklebone. While the bone’s mid-air, they grab the smaller pieces from the ground. The trick is to grab the right number of knucklebones and catch the big bone before it touches the soil, using just one hand.
A hostile desert wilderness. Those who go seldom return. It is the largest piece of (mostly) unexplored land, covering more ground than Cintra, Redania, Temeria, Brokilon and Nilfgaard combined. It’s the natural habitat of many nasty creatures, and famous for the expression: “Damn it to Korath!”
A vast, inhospitable wasteland to the southeast of the Northern Kingdoms. Ciri accidentally transported herself to Korath while escaping Thanedd, using the unstable portal at Tor Lara. Isolated and starving, Ciri suffered from hallucinations and malnutrition until she was led to safety by the unicorn she dubbed Little Horse.
Also known as a roach hound, a krallach is an artificially engineered arthropod with canine characteristics, long antennae and spear-like front legs. Krallachs are the result of extensive alchemic experiments and genetic engineering. They look somewhat like a cockroach on spiders’ legs — which unfortunately come up to your waist.
These genetically enhanced creatures are also formidable killers with exceptional hunting and tracking capabilities, hence the moniker roach hound. As invertebrates, they do not have a backbone; instead, their bodies rely on a scaled membrane for stability. Other defining features are its antennae and legs, two of which are made of razor-sharp metal.
Krallachs are created and kept in captivity by the mages who made them. They’re prized for their speed and agility; using all six of its legs, a krallach can reach speeds that no human can outrun. Once locked on its target, a krallach will follow a scent and track a target until it’s caught or killed. With its two antennae and tons of other little feelers, a krallach can detect the tiniest movement, which is good since its eyesight isn’t the best — yet it rarely misses a target with its lethal front legs. Want to kill it? Decapitation is most effective, either by sword or magic.
Located in the bowels of Kaer Morhen, the Lab is where Reidrich practiced mutagenic alchemy. Many young orphan boys were given the grassy green mutagen here — though only three in ten survived. Inside the Lab, behind a medieval vault door, is a secret room that Reidrich called the Bestiary. This room, an old catacomb, was indeed used to study beasts, but also to hybridize them — Kitsu was also created here.

A mountain of a man with a teaspoon’s worth of tact, Lambert is a witcher with strong tales, but little diplomacy. Lambert was one of the “younger” witchers; he and Geralt went way back. They trained together before the sacking of Kaer Morhen, but they didn’t always get along. Blunt as he was, Lambert could make people feel very unwelcome, especially non-witchers. When it came to Ciri, Lambert only dialed back the attitude when she started showing promise in their training sessions. He grew to appreciate her stubbornness and inability to give up — something he’d surely pride himself on as well. Lambert was spared when Ciri — possessed by Voleth Meir — attacked the witchers.
The story of the curse starts with an elven warrior, Lara Dorren, who falls in love with the one thing she is meant to kill: a man. Lara was “created” by elven mages as an answer to human tyranny — she would right the wrongs and secure the future of the elven race with her Elder Blood. But it was not her manslaying that made her famous, it was her controversial relationship with Cregannan of Lod, a human. Their union — and the child it produced — meant the end of Lara’s pure bloodline, and seemingly the end of Ithlinne’s prophecy. Chased to her death, Lara cursed the Continent with her last words:
“Know this. My curse will hound your descendants unto the tenth generation. Until the columns of time and space tremble and open for my people. Then my vengeance will be borne again.”
She died in a field of feainnewedd, but the child in her arms survived. The child would go on to bear children of her own, and those children after her. Eventually, Lara Dorren’s Elder Blood reached her descendant: Ciri. Lara’s story and the supposed end of the Elder Bloodline are also called The Fall of the Elders, the story depicted in Nivellen’s zoetrope.
Different from Éile, this Lark was a student at Aretuza Academy, who attended at the same time as Yennefer, but didn’t show the same magical promise. She was turned into an eel by Tissaia, along with Anica and Doralis. If you didn’t have what it took to support Chaos, you were sacrificed to support the ones who did.
A custom as old as history itself, the Law of Surprise can be given or called for as a form of payment in exchange for saving someone’s life. Instead of money, the Law of Surprise entitles the other to “that which you have, but don’t know yet.” This could mean a bounty of crops, or a newborn calf or sheep – but oftentimes, this would mean a child that hasn’t been born yet or was born in the parent’s absence.
“Who are we to challenge Destiny? A life was saved, a debt must be paid or the whole order of the world falls apart.” —a slightly dramatic Eist
Duny tried to use the Law of Surprise to “claim” Pavetta years after he had saved her father. When that plan backfired, and Calanthe tried to have Duny killed, Geralt jumped to action. He saved Duny and casually claimed the Law of Surprise himself, not thinking it would amount to anything — but ended up with the unborn princess Cirilla as his destiny.
Speaking of witchers, they have been known to claim the Law of Surprise hoping for a child surprise. New witcher recruits are hard to come by, especially since most humans don’t particularly offer their children up voluntarily. So, they tried their hands at destiny. If the Law of Surprise brought the witcher a child, that child would be taken to Kaer Morhen and trained with the rest of the young recruits. All they had to do was find people whose lives needed saving, and that isn’t all too difficult on the Continent.
These laws were drafted by the inaugural members of the Brotherhood of Sorcerers, established in 839. These rules and guiding principles dictate how Chaos should be used responsibly. Fire magic, demonology, necromancy, to name a few, were forbidden by law and the Brotherhood saw to it that their members abided. Those who didn’t abide could face serious repercussions, like incarceration, banishment or dimeritium chains.

A sadistic bounty hunter introduced in The Witcher Season 4, Leo Bonhart is the kind of man who treats killing as both sport and art form. Known for wearing witcher medallions from the targets he’s slain, he’s hired by Nilfgaardian agent Stefan Skellen at Emhyr’s order to track down Ciri and her gang, the Rats.

Ancient spirits tasked with the protection of the forest. Because the leshy is incapable of reproduction, this forest dweller will soon die out. Leshies are one of the original monsters that arrived with the Conjunction. Soon, though, they might be nothing more than a history lesson. These barky beasts look like humanoid trees; their branches are bunched together in the shapes of arms and legs.
Though they suffer from a bad reputation, leshies are, in fact, forest spirits of protection, closely watching what goes on in the forest with their dimly glowing green eyes. They won’t normally venture out of the woods other than to protect their land.
Using their vines to attack, leshies can lift, strangle or crush their opponents; like the hydra, cutting off one vine will just make room for a new one to sprout. The most effective way to take down a leshy is by fire through the heart, but animal sacrifice or old dryad spells might also work.
The first — and simplest — incantation that young Aretuza mages learn, used to assess their worthiness of Ascension; their worthiness to control Chaos. It’s as simple as lifting a rock without touching it: “Zeilil eip” which means, “Rise up.”
A young unicorn, named Ihuarraquax but called Little Horse by Ciri. The pair developed a deep bond while lost in the Korath Desert, sharing food and water, and each saving the other from monsters hidden in the sands.
“Hulil i vorzeilil.” “Find and Reveal.”
Formed at Montecalvo, the Lodge of Sorceresses unites Yennefer, Triss, Philippa, Francesca, and other surviving mages. Created to protect magic — and Ciri — it marks a turning point where rival sorceresses choose sisterhood to counter the attack of Vilgefortz following the fracturing of the Brotherhood of Sorcerers.
A Temerian Lord and local hero, Ostrit served as King Foltest’s spokesperson and royal liaison with the local miners and townspeople. The pair had known each other for years and seemed close, but, in fact, Ostrit resented the king. Ostrit had been deeply in love with Foltest’s sister, Adda, but never got the attention he craved from her. In an extreme act of jealousy, he had the princess cursed, resulting in the birth of the striga. When Geralt came to “investigate,” Ostrit tried to hide his involvement in the matter. But Geralt quickly sniffed out Ostrit’s lies and sacrificed the lying Lord to the striga he had created.
A pessimistic witcher who resented his profession. Unlike other witchers, he never learned to love what he did. Maybe his pessimism was merely a shield, maybe it was how he really felt; either way, Luka was vocal about nearly everything — and that got him into trouble more than once. After an altercation with two knights, an inebriated Luka was apprehended and brought before the king to explain himself. Unfortunately, Dagread had just learned about Deglan’s hybrids. Wanting to make an example of Luka, the king executed him on the spot.
Ill-intentioned and well-connected, Lydia is a slightly psychotic mage who is pro-magic and anti-establishment. She enjoys anarchy and fuels it any chance she gets. She isn’t one to get her hands dirty, but she knows people who will. After the fall of Cintra, Lydia freed Rience and brokered a deal between him and a mysterious mage in the quest to capture Ciri.
A small country located on the Yaruga River. Though Geralt chose the title “of Rivia,” he wasn’t actually from there. It was here that Yennefer was passing through with Queen Kalis and her newborn girl when they were attacked by a rogue mage for hire and his krallach; the king was hell-bent on producing a male heir to continue his bloodline, and Kalis kept having daughters.
Darach was the ruler of Xin'trea, and father to Alvitir and Merwyn, notorious for his cruelty and disregard for lowborn elves. He had his mage poison the Ghost Tribe’s water supply when they refused to fight for him as sellswords, leaving Scían as the last of her tribe. King Darach met a poetic end: he was fatally poisoned by Balor’s apprentice, Fenrik.

Mages and sorcerers (both being humans with magical abilities) are the most important political faction aside from royals. They train and study at special schools to control Chaos , but another large piece of their education involves their role in politics. Once their formal education is finished, each mage is expected to serve a kingdom (chosen by the Chapter) and work closely with that community’s leaders. Ideally, a mage is the person who helps guide kings and protect kingdoms, but as turmoil destabilized the Continent’s political structure, many mages started taking matters into their own hands and breaking sworn oaths to claim their own positions of power.
Traditionally, mages enjoy privileged positions, but that wasn’t always the case. After the Conjunction, during the reign of elves, humans had no control over Chaos. It was only because the first elves agreed to share their knowledge with humans that mages came to be. As humans realized that they were no longer reliant on elves for magic, they turned against them. Given their shared history and equal appreciation for the art of magic, mages generally don’t harbor the same prejudice against elves as kings and queens in the Continent. But they will fight if needed to protect their position of power and maintain social equilibrium.
In comparison to the dryads or elves, mage culture is virtually nonexistent since mages’ backgrounds are diverse, sourced from all over the Continent. At Aretuza and Ban Ard, young mages and sorcerers are taught to leave their pasts behind them and learn the strength and wisdom from the community of the Brotherhood to be influential political players in the kingdoms they are placed in.
Mages live nearly as long (or sometimes longer) than witchers or elves due to Chaos, which makes them age slower. And once Giltine has done his handiwork during “ascension”, their looks hardly change.
“Magic is organizing Chaos. And while oceans of mystery remain, we’ve deduced that this requires two things: balance and control. Without them, Chaos will kill you.” —Tissaia de Vries
It’s not something every living thing possesses, but magical beings - like elves and dryads - and magical humans — like mages, druids and witchers — were taught to master magic, with spells,signs, incantations and curses. The most important thing is that nothing is given without something else being taken.There must be a balance, a sacrifice. Then there’s the issue of control — to control Chaos one also needs to know how to keep emotions in check. As Yennefer says to Ciri, “Magic. It’s lodged in you, like a spiked arrow. It wounds you deeply. Hurts you. I know it does, but — it’s a strange sort of pain. Combined with… bliss. Trust me, it’s all you’ll ever need. It’s everything.”
Magic is not something you can develop over time, it’s something that you are born with and it’s extremely rare. The youngsters with magical abilities exhibit a “conduit moment” of Chaos — they can channel its power but are not yet able to control it. If they are not trained, they could become a danger to themselves and others. Therefore, magical children are recruited for education at either Aretuza, the academy for women, or Ban Ard, its male counterpart.
During several years of rigorous, unforgiving training, the students aren’t just taught what it takes to control Chaos. They also master incantations, study botany, learn the principles of alchemy and develop a better understanding of global politics and their role in it.
Magic doesn’t only reside in spells and incantations, it’s also in objects and practices — like the orbuculum, a levitating glass orb — or blood-tracing, that allows the tracer to determine a person’s geographic location using a blood sample.
Located in Aretuza, the magic pools are the Academy’s version of a spiritual cleanse. The healing waters aren’t exactly warm, but a simple heating spell can sort that out quickly.
A parasitic demon, a mahr can be hard to detect or recognize unless you know what you’re looking for. Like other demons, they aren’t visible to the human eye unless separated from their host. They proverbially sink their teeth into unsuspecting humans to make them do their bidding, and once a person has been possessed, the mahr feeds off the host’s madness, so it will make strenuous efforts to create physical discomfort and mental delusions to achieve utter delusion. Luckily, meteorite ore will disrupt that magic and make it possible to expel the mahr. Only once exorcized will the mahr show its true face: that of a fox-like gremlin with six knuckled legs — best to leave this to an experienced witcher.
A plant of the nightshade family. These fleshy roots are very distant relatives of a potato but they can be far more poisonous. Supposedly one of the ingredients in the witcher mutagen.
This monolith is located just outside Cintra; for centuries, monoliths were an inexplicable phenomenon — they were simply there. Nobody knew what they meant, or where they came from — until one night, when Ciri’s uncontrolled Chaos created a scar in the earth so wide that it swallowed the Pillar whole. It wasn’t until Istredd and Geralt examined the crevice lined with shattered stellacite that they discovered this was the source of the otherworldly monsters they’d faced recently. This shattered monolith is a portal to another sphere, one that was opened by the massive surge of energy that Ciri created.
Isolated marshland in former Pryshia and home of Zacaré. She could use the mists as a way of reading the minds of approaching travelers.
The enormous tree grew in Kaer Morhen’s Great Hall. Its trunk and branches are decorated with countless witcher medallions of those who have gone in memoriam. These medallions help alert the witcher wearing it by humming in the presence of magic. Unfortunately, the memorial was ruined when Ciri’s magic uprooted the tree, revealing there to be a monolith underneath it and opening a portal to another sphere.

An exuberant dwarf on a tireless quest for justice, Meldof was fierce with her war hammer, and lethal with a bow. A true wildcard, Meldof lost the love of her life, Gwen, and cast her hammer “Gwen of the Flowers” with her ashes. She set about tracking down the elven soldiers responsible for Gwen’s death in a brutal fashion. The last thing they would see would be Gwen about to crush the life from them.
Meldof found herself without purpose after avenging Gwen. Having saved Éile and Fjall’s company from Balor’s roaming beast, and, after giving them shelter, she agreed to help them infiltrate Xin’trea and complete their mission. One last quest to end her days in glory.

Meldof’s chatty warhammer. It was named after Gwen, a dwarf brutally murdered by elven soldiers. The hammer was constructed from ore from the Korath mountains, smelted down and mixed with Gwen's ashes. Meldof made revenge her life’s purpose, believing Gwen’s spirit resided in the hammer and guided her actions.
Part of a group of witchers, along with Everard and Gawain, who wintered at Kaer Morhen and were found dead in their quarters shortly after Voleth Meir took possession of Ciri. Their chests were stabbed and throats were slit while they slept.

An imaginative and underestimated Xin’trean princess who became a figurehead Empress of the new Golden Empire, Merwyn was the gentle flower that no one noticed had poisoned thorns beneath her blooms. Raised from a distance by her mother and barely being tolerated as a girl by her father King Darach, Merwyn consoled herself with books, losing herself in the deeds of her hero Solryth, the explorer who first led the elves to the Continent and drove the Dwarves from their cities.
As a Xin'trean princess, she was treated as a chess piece for marriage purposes in a patriarchal elven monarchy. Merwyn taught herself to hold on to two sides of her being: the public face and the private truth that she believed she was destined for more than marriage fodder.
Merwyn, refusing to accept her fate, became an expert at appearing docile, calm, playing the part of princess perfectly, carrying out her perfunctory duties for show. But all the while she was listening and studying how the cogs of monarchy and power worked. Her home away from home was the palace library, where she read all the dusty tomes cover to cover.
Having bonded with him while they grew up in the same court, Merwyn had sought solace in Fjall, the Dog Clan warrior sworn to protect her. Their illicit relationship resulted in Fjall being exiled from Xin’trea.
Desperate to avoid being married off to the The King of Pryshia as a barganing chip in her brother’s peace treaty, Merwyn agreed to join with Chief Sage Balor and High Commander Eredin’s plan to murder the Xin’trean, Darwenian and Pryshian royal families and their protectors. This coup resulted in the death of her brother, Alvitir, as well as Fjall’s father, Osfar, and sister, Ryl, and turned the elven world upside down.
Merwyn was installed as the puppet Empress of the united Golden Empire, but she chafed at being little more than a figurehead at Balor’s disposal. She blackmailed Eredin into helping her, and installed her own mage, Avallac'h, to take Balor’s place. She was able to contain Balor but her plan failed because Avallac'h was unable to control the monoliths. Out of options, Merwyn had to set Balor free, forming a tenuous alliance with him.
Merwyn was determined to bring Fjall back to Xin'trea alive so they could sire an heir together, but her plans were waylaid by Scían and her sellsword army. Merwyn was stabbed by Éile during the battle for Xin'trea and chose to hasten her own death by removing the blade — the very same Dog clan dagger Fjall previously gave her to protect herself.
As the name suggests, meteorite is a material that crash-landed on the Continent. It’s much stronger and more durable than metal, but also a lot harder to come by. Geralt has one meteorite sword — the perfect weapon for any non-magical foe — while a fellow witcher, Remus, carried the poor man’s version of the same weapon.
Flavius, Lodovico, Rizzi and Toublanc Michelet were a quartet capable of murder for the right price.At least three of these four brothers were not only built like bricks, they had brains as thick as bricks. So what the Michelet brothers lacked in smarts, they made up for in muscle. Rience hired them to accompany him on his search for Ciri in Melitele’s Temple. Alas, their attack-first-think-later tactics were no match for a skilled fighter like Geralt.
These little creatures can crawl into your ear, making you susceptible to mind control. Fringilla used them at Sodden Hill — and once ear-wormed, Sabrina suddenly turned against Yennefer as if in a trance.
A secluded stronghold and site of an epic magical battle against Vilgefortz, Montecalvo is where Yennefer gathers the surviving sorceresses in Season 4. Once a symbol of magical power, it becomes a fortress of resistance — and the birthplace of a new alliance that will change the balance of the Continent forever.
A skilled Skelligen druid working at the Cintran court, Mousesack was Geralt’s longtime friend, Calanthe’s trusted adviser, and Ciri’s beloved mentor. In the absence of Ciri’s parents, Mousesack took on the role of Ciri’s father figure. He taught her about nature, history, politics, and he tried to prepare her for her life as a queen. Mousesack was an incredibly loyal servant to the Cintran royals and a close friend to fellow Skelligen, King Eist.
The druid berated his friend Geralt on several occasions. Theirs may not have been friendship from the start, but deep mutual respect certainly grew between them. It was Mousesack who reminded Geralt not to forsake his Destiny, thus playing an important part in uniting Geralt and Ciri. Like the rest of Cintra’s court, Mousesack died by the hand of Nilfgaard — not during the siege, but shortly after, when the doppler employed by Cahir took Mousesack’s place.
Along with Fola and Glacella, Murta was one of three young apprentices at Aretuza who encountered Yennefer upon her return to the Academy for the emergency gathering of the Brotherhood. A worrier by nature, Murta was easily wowed by Yennefer; eventually she ended up aiding the King of Cidaris after her ascension.
Mutagenic alchemy is what led to the creation of the first witcher. When monsters threatened the safety of the Continent, mages turned to science for a solution. Through alchemy and magic, they produced a poisonous mutagen that could turn an ordinary person into a genetically enhanced superhuman, a witcher — that is, if they survived the mutagen. For ages, mutagenic alchemy was used only on humans. But there have been (failed) experiments with mutated creatures and hybrids as well.
The myriapod is an utterly horrific and absolutely dangerous mix of animal features. It has the skull of a wolf, the horns of a ram, the segmented body of an insect and random eyes scattered across its mangled head. If its visage doesn’t make you shake in your boots, the countless legs and clawing hands that cover its torso might. It’s incredibly tall, even taller than Queen Leshy, and gravity doesn’t seem to bother it , as it can crawl up, down, or inside anything. The size of the myriapod’s teeth and talons make it much more dangerous than other arthropods, and it takes a silver sword to the jaw, wrenched through the skull, to guarantee death.
Located in Nilfgaard, Nazair was the site of a massive excavation of monoliths. Istredd lived in Nazair while working on the monolith excavation, and Yennefer visited him there.
A collective name for magic and spells cast on the dead, either intended to revive the corpse completely or temporarily. Due to its unnatural character, the practice of necromancy was banned by law.

Archpriestess of the Temple of Melitele, Nenneke met Geralt as a young man, when she taught him magical witcher signs. To this day, she is the closest thing to a mother that Geralt has. In her position, Nenneke values her faith above all else. The many lost travelers who she nurses back to health with her elixirs, ointments, and level-headed advice come a close second. As devout as she is kind, Nenneke offers refuge to anyone seeking it as long as they respect the rules of the Temple. She is also incredibly perceptive, noticing the smallest details and reading people like books. Geralt has never truly managed to hide anything from her, nor does he need to.
Éile’s sister. Murdered by assassins attempting to wipe out any remnants of the Dog, Raven and Serpent clans.
A flowering plant with paralytic qualities and a very peculiar taste. It takes a skilled botanist to mask its taste and slip it to someone without arousing suspicion.
The largest empire known to man, covering the southern half of the Continent, also has one of the largest and strongest armies in the land. Inside Nilfgaardian walls, the kingdom offers its own people security and equality, while outside its walls it is seen as a nation driven by a lust for power, ruled by an Emperor unwilling to stop until he controls it all. Fringilla freely served as its mage during the invasion of Cintra. But others weren’t so lucky, and during its turbulent political history the order was made to lock up all its mages and conscript them into service.

A sharp-minded young historian and storyteller introduced in The Witcher Season 4, Nimue challenges the myths surrounding Geralt, Yennefer, and Ciri. Through her questioning of old tales as told by Stribog, she reframes their legend for a new generation.

A cursed man with a troubled past, Nivellen has clawed hands, huge tusks, and the head of a boar crossed with a bear. Nivellen was one of Geralt’s old friends. He was an educated man, but since his time at Oxenfurt University, Nivellen had gone down a dark path. High on godflesh mushrooms, he raided a sacred temple and raped a priestesses. As punishment, Nivellen was cursed, and forced to do penance for the rest of his unnaturally long life.
The curse took most of his humanity, but gave him certain magical abilities. Those abilities allowed Nivellen to make a home for himself in an enchanted mansion. There he lived alongside the bruxa, Vereena, until Geralt came around, inevitably confronting Nivellen with reality.
The Northern Kingdoms is composed of four of the largest kingdoms who allied against Nilfgaard in an attempt to keep their land and power: Kaedwen, Temeria, Redania and Aedirn. Historically xenophobic, some humans in positions of power in the North desired a full ethnic cleansing (so that they could rule the way they believed they were intended to rule), while the Elder Races just wanted to return to a world without humans in it. The political game that was played between the two groups was one of power and ownership, with both players paying no mind to the cost of their greed.
The Northern Kingdoms had their interpersonal conflicts and turf wars in the past, but they’d always seen eye to eye when it came to threats from the “outside world.” As the ancient proverb goes, “The enemy of my enemy is my friend” — which resulted in a tenuous bond between the Northern leaders as they faced the growing threat of Nilfgaard. They bonded over one other thing, as well: the need to capture and control Cirillia of Cintra, in order to maintain their power.
The orbuculum is a levitating glass orb kept in the Temple of Melitele. The priestesses use it to help mages-in-training hone their craft. Though Nenneke instructed Ciri to use it , she had no clue what to do with it — which is exactly how it’s supposed to be — until the orb responded to her magic.
“Felben geish ein me krethe ron. Anelsh’t fasta eip’t kern. Felgreth teigan ain ein’t mine.” “Curse my wicked king. Suffer him the horrors of his heart. Deny his love the light of day.”
The young boys undergoing the Trial of the Grasses would be locked up in this Kaer Morhen dungeon right after the mutagen was administered. Once the side effects wore off, those who survived could walk out of the oubliette and call themselves witchers.
Ghastly specters who hide their frightening facades behind long lace trains and forcefully attack innocent humans. They dwell in swamps and cemeteries.
The Path refers to the witchers’ way of life and is a set of principles and guidelines. The Path tells them right from wrong. It teaches them where their loyalties lie and shows them that not all monsters deserve to be killed, as not all humans deserve to live. The Path takes witchers all over the Continent, but it also sees them back home during wintertime. Each year, when monsters are hibernating and humans have no use for witchers, they return to warm their frozen bones, repair their busted armor and have their fill of white gull (a witcher-brewed alcoholic beverage that even manages to inebriate enhanced humans).
A sharp-nosed gnome inventor with an encyclopedic knowledge of herbs, metals, and mechanics, Percival brings wit and ingenuity to Geralt’s band of travelers.
Equal parts charming and conniving, Philippa is Dijkstra’s shape-shifting partner-in-crime and trusted advisor to King Vizimir. Her ability to figuratively — and literally — shapeshift through courts and parties alike make Philippa one of the most influential sorceresses within the Continent’s politics. It would be a mistake to take her for just another one of Dijkstra’s henchmen, because Philippa has an agenda all her own. Charming yet chilly, Philippa can command a room with a single look.
An armored, scorpion-like predator that hides in the desert. The Pit Monster spits sand to panic and confuse prey before using its snapping claws or venomous sting to kill victims.
“Vond agwethil,” “Door, be opened.”
“Acreid me, aheil me.” “Feed me, heal me.”
Using expertise around botany in order to make potions is a key aspect of magic, both for mages and witchers. Some particularly powerful potions include the Witcher Healing potion, a brew of veratrum, hawthorne, and spurge; and the Wound-binding potion, a mixture of Golden Oriole, devil’s nettle, and knitbone.
These valued substances are used for myriad reasons, from making weapons to casting spells. Some of the most notable among the Continent’s precious metals and materials include silver, dimeritium, meteorite and stellacite.
Princess Pavetta of Cintra was a kind-hearted young woman, willful like her mother, Calanthe, and magical like her daughter, Ciri.
Pavetta led a very sheltered life, kept out of harm’s way more than once by her mother, with whom she was often at odds. The princess cared deeply about people, regardless of race, and thus disagreed with Calanthe’s xenophobic ways.
Just like her daughter, Ciri, Pavetta had long, ashen hair, emerald eyes, and Elder Blood — the uncontrolled outburst of magic on the eve of Pavetta’s betrothal being a telltale sign. Much to her mother’s disapproval, Pavetta married the then-cursed Lord Urcheon of Erlenwald. Even though their love lifted the curse, the pair’s luck was short-lived. The couple was mysteriously lost at sea, leaving a newborn daughter behind.
“Vesie deireid’eip eigein, veise eig faidh’ar.” “Something ends, something begins.”
“Anymbreishil y murm, ankein eir murm.” “Grown in darkness, bring forth darkness.”

The Lioness of Cintra, mother of Pavetta, grandmother of Ciri. A fierce warrior who aggressively opposed all things elven, saying Calanthe’s name can elicit one of two responses: aversion or affection. She was young when she ascended to the throne — only 14 — but she accepted the role gladly. She fought to defend her country with vigor, making friends with former foes, and enemies out of elves. In her first year as queen, she defeated the Nazair military, earning her the Lioness moniker. (Her armor is telling of its owner’s royal status: gold-plated metal, adorned with Calanthe’s trademark lions on the breastplate.) Not much later, she married her first husband, Roegner, with whom she welcomed Princess Pavetta. Calanthe protected Pavetta (and her abilities) from the outside world — so far as to almost have the man Pavetta loved, Duny, killed so they could not be wed.
After the tragic loss of her first husband, Calanthe married a Skelligen named Eist Tuirseach. An unexpected but successful union, the two remained in love until their bitter end during and shortly after the Battle of Marnadal Valley when Nilfgaard invaded Cintra. If there’s one thing that Calanthe loved more than her country, it was her granddaughter, Ciri. When she realized that her beloved Cintra was lost, she used her dying breath to secure Ciri’s safety, taking the secret of her family’s elven heritage to the grave.
Like other leshies’ bodies, the queen’s body is built from layers upon layers of roots and vines. The shape of a regal gown in which they have formed —possibly over hundreds or thousands of years — is an indication of her status in nature. She’s the one that stands even taller, the one that leshies look to for guidance and the one that will fight even harder to defend her domain, the forest.
The fearless ruler of Lyria and Rivia, Queen Meve has never needed anyone’s permission to speak her mind. Once dismissed for her small kingdom and sharp tongue, she proves herself a brilliant tactician in The Witcher Season 4, leading her outnumbered forces against Nilfgaard in the Battle of the Bridge. Meve earns Geralt’s loyalty — and, in knighting him “Geralt of Rivia,” helps cement the legend of the White Wolf.
Quen is a protective sign — much like Heliotrope — that forms a protective field around the caster. You can use it to shield yourself from sonic waves or small pieces of debris, but it won’t hold up against a physical attack. Unlike Heliotrope, Quen lasts until the shield or the sign is broken. When multiple witchers create one combined Quen sign, it forms a much stronger, almost impenetrable shield.
The feckless and carefree Redanian prince who stumbled into a position of power, Prince Radovid was the hedonistic, overprivileged brother of King Vizimir. He shared a connection with the bard Jaskier, which Redanian spymasters Philippa Eilhart and Sigismund Dijkstra leveraged to get closer to Ciri.
When King Vizimir died under mysterious circumstances, Radovid ascended to the throne, but the true power lay with the spymasters who placed him there.
A huge, aquatic monster that Éile, Fjall and company fled from after Syndril’s portal took them to another world. It had a fishlike head, giant pincers, and rows of sharp teeth. The monster was killed after being sliced in half by a closing portal. Its body parts and heart were used by Syndril and Zacaré in the ritual to make the first prototype witcher.

Mistle, Kayleigh, Giselher, Iskra, and Asse were members of an outlaw band known as The Rats. Ciri first met Mistle in the basilisk tent at Gors Velen. They were reunited when Ciri was taken prisoner alongside Kayleigh in the town of Glyswen, where she escaped and met the other members of The Rats. Ciri joined their ranks under the pseudonym Falka.
Although there were male members, Raven Clan were mostly female warriors. Rumor had it that the Raven clan drowned male children at birth. As the name of their chieftain, Cethlenn of the Knives, suggests, the Raven clan specialized in close contact double knife combat.
An extremely wealthy realm known for supplying the Continent with grain and for its horse husbandry. The cult of nobility runs strong through Redania, and wealth disparity is at its most unequal here. In Redania, knowledge is also power, and King Vizimir pays Dijkstra to run the largest spy ring on the Continent — the Redanian Intelligence. It is where Geralt fought Renfri and her men in the streets of Blaviken and earned the nickname “the Butcher.”
A dense, cursed swamp that’s crawling with evil spirits. Deglan dropped his young witchers there to see how many of them could fend for themselves between the ghouls, pale brides, basilisks and krallachs. Survive, and you’d have proven your worth as a witcher.

A centuries-old “barber-surgeon” with impeccable manners and a dangerous secret, Regis is revealed to be a higher vampire — one who’s sworn off blood after a life of addiction and loss. Wise, wry, and quietly haunted, he becomes both healer and mentor to Geralt, challenging what it means to be a monster.
The last of the mages who knew the secrets to mutagenic alchemy, Reidrich lived, worked and died at Kaer Morhen. The dungeon lab in the old witcher keep was his domain. During his unnaturally long lifetime, Reidrich did many regrettable things — administered lethal potions to young boys, created dangerous hybrids — but he remained passionate about his field of study. He accepted the toll it took on his conscience as part of the job. When humans attacked Kaer Morhen, Reidrich was the prime target, and when he was killed, he took his knowledge with him.
When Kaer Morhen was under attack, Vesemir and Illyana saved several young witchers — Remus among them. Like his fellow trainees Geralt and Eskel, Remus soon set out on The Path. But as time passed, it became increasingly difficult to find work, so when King Foltest offered a hefty amount to the person who could take down the stubborn striga, Remus took the challenge. Attempting (and failing) to kill the monster would be Remus’ last job.

Born during the Black Sun eclipse, Renfri was the ousted Creyden princess turned fearless brigand leader who stole Geralt’s heart. She and her gang were tracking Stregobor and wreaking havoc around Blaviken when Geralt met her. But could you blame her? The deceptive Stregobor had tortured her extensively when she was a young girl, believing that he could “cure” her of the Curse of the Black Sun. When unsuccessful, Stregobor fled Creyden, and Renfri followed him. She tried everything to lure him out of hiding and bring him to justice — everything but the witcher.
As much as Geralt was taken with this stubborn and courageous woman — he saw bits of himself in her — he refused to be used by her or Stregobor. But Renfri came for blood , and she died by the witcher’s blade in a fight she forced him into. But Geralt didn’t take killing Renfri lightly, and had her iconic brooch set in the grip of his blade so he would never forget the lesson she taught him about not getting involved in the affairs of men.

A sadistic mage with a penchant for fire. Rience was a rogue mage who was enticed by the dark side of Chaos early on. Even though the Laws of Magic forbade it, Rience was a fire magic aficionado — and one of the few mages capable of using it without hurting himself. Soon, Rience became arrogant, and as punishment for his debt to the crown, Calanthe had him locked in a dimeritium dungeon for nearly 10 years, draining his magical powers.
After the fall of Cintra, he was presented with a way out: Lydia and her mysterious master. Newly freed and quickly regaining his full fiery potential, Rience could be bought, and set out to capture Ciri, leaving an ashy trail along the way.
Ambiguous territory that was fought over for ages by Cintra, Temeria and Redania before it was taken by Nilfgaard. Geralt and Ciri met here, in Sodden’s shadow.
A troll subspecies that relies on basic communicative skills and animal strength to coexist with humans.
Little Rusalka and Mama Rusalka are swamp-dwelling water spirits who ensnare Geralt and his companions in Season 4. Both eerie and mournful, Little Rusalka and her mother test Geralt with riddles, revealing his deepest fear — not through combat but through confession.
Fjall’s sister and talented Dog Clan warrior. She was murdered by Merwyn during the coup, her throat slit with Fjall’s Dog clan dagger.

Aretuza alumna from the same year as Yennefer and Fringilla who served Kaedwen. What Sabrina lacked in talent, she made up for in drive and ambition. Ever the teacher’s pet, Sabrina lived for the Laws of Magic and wouldn’t dare break them. After her enchantment, she was assigned to King Henselt’s court. Though she enjoyed it there — and she enjoyed King Henselt — a sense of obligation (or competition) swayed her to fight with Tissaia at Sodden Hill. Though Sabrina was not to blame — she was under the influence of mind-control worms — she nearly killed Yennefer and almost handed Nilfgaard the victory.
The witchers who lived in Kaer Morhen had little to do with the Kaedwen locals — a delicate balance that neither side wished to disrupt. During winter, when monsters would hibernate, the witchers all returned to the keep to repair their weapons, mend their armor and stock up on elixirs. But one winter, Kaer Morhen fell under attack.
For some time, monster hunters had been declining rapidly, leaving the witchers without work. So witcher leader Deglan started creating hybrids, ironically, to help his “sons” make an honest living. The news of Deglan’s deceit did not go over well with King Dagread and his court. Adding insult to injury, the cunning mage Tetra spread lies about the witchers that riled up the Kaedwen people and one of Deglan’s failed experiments, the mutated elf Kitsu.
Both man and monster stormed the keep, destroying nearly everything in their path. Witchers were slaughtered, the basement lab was raided and ruined, and any hopes of ever performing the Trial of the Grasses again were crushed. But there was a glimmer of hope: A young witcher called Vesemir managed to save some younglings — including Geralt. They were out of danger, for now, but they would certainly be the last of the witchers.
Known to those in hiding as a mysterious angel of refuge, the “Sandpiper” was really Jaskier, who assumed this alias in order to help fugitive elves out of Redania — perhaps his most altruistic act to date. His work was funded and sponsored by a mysterious benefactor, who is sure to come back for payment someday.

Last of the legendary Ghost Tribe, Éile’s old mentor and blademaster, Scían was searching to avenge the memory of the clan and retrieve her precious ancestral sword, Soulreaver.
Scían was the only survivor after the Xin'trean king Darach wiped out the Ghost Tribe. She lived alone in the mountains as she couldn’t understand how people could live in cities. While Scían was not born into the Raven Clan, she took many of the young Raven clan into her life to teach them the way of the blade. Scían wholeheartedly believed in the old gods. She prayed before every battle and left part of her food and drink out for them, as she believed they fought alongside her. She was calm at all times and always had a quote from a great elven philosopher to match every situation.
When Éile left the Raven Clan her mentor and blademaster, Scían, was also banished as a result and forced to become the thing she most hated: a sellsword.
After Merwyn’s coup, Scían joined Éile’s band of outsiders to avenge the memory of Raven Clan and retrieve her precious ancestral sword, Soulreaver, which was stolen by the Xin'treans. Scían was injured during a bank heist in the former Pryshian town of Daedwode, but made a full recovery thanks to the intervention of a healer named Zacaré. Scían pretended to betray Éile and Fjall, but instead engaged the services of a former sellsword associate, Uthrok One-Nut. The group disguised themselves as Golden Empire soldiers to gain access to the city, where Scían reclaimed Soulreaver and helped Éile and Fjall defeat Balor and Merwyn.
Her tattoos read:

A plain, strong, dwarven steel sword that Éile, Fjall and Scían used to escape the bank ambush at Daedwode — the only thing capable of cutting through the dwarven steel lock securing them.
Legendary ceremonial blade of the Ghost Tribe, believed to hold the souls of fallen Ghost Tribe warriors. It was taken by Mad King Darach after his mage poisoned the Ghost Tribe, and for years lay in the Xin'trean trophy room. Scían joined Fjall and Éile’s cause in order to retrieve the blade, which she successfully did after orchestrating the infiltration of Xin'trea. She returned the blade to her Ghost Tribe’s burial grounds.

A large lake monster with a cavernous muzzle capable of taking down ships in one swallow. Selkiemaws rarely surface, making them all the more prone to fantastic speculations. Lore states that they’re creatures with thousands of sharp teeth lining an enormous muzzle big enough to devour ships and even villages whole. Others say that they are, in fact, harmless plankton feeders, but people generally agree that there’s no smell more rancid than that of selkiemaw innards. Geralt, unfortunately, knows from personal experience.
A mixture of magic and alchemy, this spell can be used to analyze a sample. As a vial of the material — monster blood, mostly — is placed in a centrifuge, this spell helps separate the material into its components. If there’s any sign of mutagenic alchemy, if a mage has intervened, that component will glow. The incantation is: “Themben shwar felwas, themben zurshem gafeine.” “Let nature decay, let Chaos shine.”
The Serpent clan did not have gendered delineation, referring to each other only as “clan.” Their speciality was a sharpened shield, spear and poisoned blow dart. The Serpent clan worked in phalanxes and formations to optimize their strengths. Many moving as one. They were mathematical, surgical and deadly.
An all-knowing ancient tree deep in the heart of Brokilon forest, from which the Waters of Brokilon flow.

The head of Redanian Intelligence. A man whose impressive style and physical strength are second only to his knowledge of kings, mages and how to get exactly what he wants. Double-crossers and ne’er-do-wells from all over the Continent surely know Dijkstra’s name. He is King Vizimir’s most trusted advisor, but make no mistake, while he is the ultimate patriot, Dijkstra is also a free agent. With spies (intelligence agents) all over the land, he knows of every noteworthy event, sometimes even before they happen.
Despite his high position at Redanian court, Dijkstra was just a commoner — a lowborn man with an absolute first-rate mind. Case in point: It was Dijkstra who first alerted Vizimir to Ciri’s existence, luring him with the promise of an all-powerful Redanian-Cintran alliance. It was also Dijkstra who sent Dara to Cintra to spy on Nilfgaard and the elves — because information is the only thing that Dijkstra can never have enough of. It’s his weapon of choice, but it’s not the only weapon that he knows how to wield.
A finely crafted dwarven sword gifted to Geralt by Zoltan. Its blade bears the inscription “Defender of Dwarves,” symbolizing both Geralt’s bond with his companions and his acceptance of himself as a hero.
Silver is very valuable — even more so to witchers. Magical creatures have extreme reactions to silver, making them more vulnerable and easier to kill. Thus, witchers tend to carry at least one (fully or partially) silver weapon. One witcher, Albin, even had his entire armor forged from silver.
As a member of Queen Calanthe’s guard, the valiant and loyal Lazlo was privy to high-level information and extremely important tasks. During the Slaughter of Cintra, he was entrusted with Ciri’s protection — being asked was the highest honor Lazlo could’ve received from Calanthe. Unfortunately, honor didn’t help Lazlo succeed. He gave his life trying to keep Ciri from Cahir.
An archipelago of six islands located off the coast of the Continent in the Great Sea. Unlike nearly all other kings, Skellige’s king is chosen by its chiefs, the jarls. Skellige is known for its blunt and bushy warriors and has the most impressive and powerful battle fleet. It was allied with Cintra due to Eist’s marriage with Calanthe. Ciri spent much of her youth there, and considered it the closest thing to home after Cintra was sacked.

The Skelligens are seafaring people, thus their choice of weapons, and the design of said weapons, shows their connection to the maritime. Their swords have “scaled” grips, like a fish; there are “gills” engraved in the blade, and the serrated edges vaguely remind of fins. Their polearms are multipurpose: just wrap one around them and use them as harpoons or — as the Skelligens would — boarding pikes. In one of their famed war tactics, they’d link up polearms to create a row of boats and ships, conquering each from stern to bow.
A boyish apprentice with burns on his face, he pined for Tetra’s approval and preached the anti-witcher gospel. Skogar was Tetra’s right-hand man, a zealous student who’d do exactly as she said. While Tetra fueled the nobility’s outrage with half-truths and complete lies, Skogar preached to the Kaedwen locals with religious conviction. During the sacking of Kaer Morhen, he proved his worth as a mage, but even advanced magic couldn’t have stopped the Great Hall’s ceiling from collapsing on him.
The first in a series of catalyzing events. The news that Nilfgaard had breached Cintra’s borders arrived in the middle of some festivities. Queen Calanthe immediately left the throne room and prepared her army to meet Nilfgaard face-to-face at Marnadal Valley.
The battle didn’t last long. The Cintrans fought valiantly but were grossly outnumbered. King Eist died, and Calanthe was mortally wounded. As the valley soaked up the blood of soldiers from both sides, Calanthe returned to the palace where she arranged for her granddaughter’s escape. She entrusted the druid Mousesack and Sir Lazlo with Ciri’s life as she took her own — Calanthe would go down with her kingdom. The Northern Kingdoms hadn’t been oblivious to Nilgaard’s intentions, but the attack still came rather unexpectedly, as everyone underestimated their strength. Coming to terms with what had happened and what the loss of Cintra, the Continent’s crown jewel, meant for the distribution of power, the kingdoms carefully considered their next move.
An ancient elven hero, Solryth was an explorer who led her ships through a mighty storm, following the light of the two comets (now known as Solryth’s eyes). Landing on the continent she led her elven armies to drive the dwarves out of their cities and claim the Continent for elfkind — rebuilding cities like Xin’trea on their ruins. She was the subject of the Solryth sagas.
Twin comets associated with events of great significance, named after the legendary elven hero, Solryth. After her ship was blown off course by a tempest, the comets led Solryth to the Continent where she helped establish a golden era for the elves. The comets could be seen in the sky immediately preceding the Conjunction of the Spheres, and their impact was a possible catalyst for the events that followed.
People born with immense magical abilities, but little to no control over them, were called Sources. Their power grew as they matured and became increasingly difficult to control, leading to sometimes dangerous outbursts. Ciri was a Source, as was her mother, Pavetta, which is why it was so important to Triss and Yennefer that Ciri be trained and educated properly.
A plant with unique floral structures and a thick, milky sap that’s often poisonous. Strangely enough, witchers get better from spurge mixed with hawthorn and veratrum.
A ruthless Nilfgaardian intelligence officer, Stefan Skellen serves Emperor Emhyr with chilling precision. Cold, calculating, and always two steps ahead, he manipulates spies, bounty hunters, and even monsters to tighten Nilfgaard’s grip on the Continent — including unleashing Leo Bonhart to hunt down Ciri.
The material that the monoliths are made of, stellacite is a shimmery black material and nearly indestructible. It doesn’t appear to occur anywhere other than in monoliths, but Triss and Geralt also found traces of stellacite in the Myriapod’s remains. Plus, the Chernobog, the other monster that traveled through the monolith, had an exoskeleton that was made entirely of stellacite. It holds a deeper connection to other spheres.
A beverage made from dried thornapple leaves and seeds, it’s used as a painkiller or anti-inflammatory drug and can cause hallucinations.

Proud, prejudiced and positively archaic, Stregobor is Rector of Ban Ard, a prominent member of the Chapter, and master of illusion with some outdated ideas. He believed in the Curse of the Black Sun, the apocalyptic eclipse that foretold the coming of Lilit. And he didn’t hide the fact that he studied the girls — Renfri, most famously — born around the eclipse, subjecting them to lethal experiments and autopsies.
Despite his controversial (anti-elven) opinions, Stregobor was revered by his peers for his skilled use of magic and masterful illusions. Plus, some of the more conservative members of the Brotherhood still believed in “the old ways” and Stregobor’s racist views. This naturally put Yennefer on his list of dangerous women. Even when Vilgefortz and Tissaia introduced a new form of magical leadership, Stregobor managed to stay involved at the highest political level — not because he cared so much about the Continent, but because he cared about being right.
A traveling storyteller who opens and closes The Witcher Season 4, Stribog weaves tales of Geralt, Ciri, and Yennefer for a new generation.
A cursed female, extremely vicious and filled with hatred toward nearly all living things. This creature is a rarity — neither beast nor fully human, but simply the product of a curse put on a pregnant woman. As the curse progresses, the child grows more and more deformed, ripping its way out of the womb. Once matured, she stands taller than most men. She has long sinewy limbs, a protruding rib cage, darkened leathery skin and inhumanly large claws. Look closely and you’ll even see a bloodied umbilical cord still dangling from her abdomen.
Strigas are extremely vicious, and using their agility, strength and huge teeth they can kill nearly anything. Luckily for us, they tend to restrict their hunting to nights with a full moon. Once they slip out of their hiding place, they attack without hesitation. While silver can help dispatch a striga, why kill what can be cured? Keep the striga from returning to her hideout, make her see the light of day and the curse should be lifted.
A creature in the Korath Desert’s red sands that has a circular maw filled with meter-long teeth. The Suntrap lures desperate sun-stricken survivors in by using its thick saliva to create the appearance of pooling water before it attacks.
A misty marshland in which Geralt and his traveling companions are ensnared by supernatural forces. Teeming with drowned memories, the swamp tests each traveler’s fears.
A witcher who trained with Vesemir and Luka. Short, beefy and one-armed, but still very dangerous. When Kaer Morhen was attacked, Sven fought valiantly alongside his brothers but lost against a ferocious basilisk.
An exceedingly rare and highly intelligent humanoid herbivore that walks upright and speaks the common tongue. Sylvans are unique creatures. Neither man nor beast, but rather human-goat hybrids with impeccable grammar. Their outward appearance mostly resembles that of goats: horned heads, hairy legs, cloven hooves and tasseled tails.
Locals would describe sylvans as hairy devils, but that just goes to show that they’ve never taken the time to engage in conversation with one. Because despite their animalistic tendencies, sylvans are intelligent and well-behaved creatures who consider themselves equal to (or better than) humans.
Syndril Cullwyn was multi-talented, way beyond his time and misunderstood by many. Syndril was born into the conservative kingdom of Darwen. From a very young age, he was at one with the earth magic of the Continent and forever experimenting. Syndril was born in the same village under the same star as Zacaré, and after his parents died he was raised by Zacaré’s mother. When his adoptive mother fell ill and died, he and Zacaré worked on a magical remedy to bring her back to life. But the creature that returned to life was not their mother. This procedure was the precursor to the one they would later carry out on Fjall, itself a forerunner to the Trial of Grasses.
Syndril, ashamed of his failure, abandoned Zacaré and went to Xin'trea to atone for his failures. His abilities gained him the recognition of Xin'trea’s Chief Sage, Balor –especially his theories of travel between worlds using converted dwarven monoliths. His calculations allowed them to explore other realms. But when Syndril discovered a world alive with dangerous chaotic energy, he realized his mistake. It was too late. Balor betrayed him, stealing his work and imprisoning him, using the power from worlds beyond to harness a hydra-like beast that would help him seize control of Xin'trea.
Realizing the ruinous power of the monoliths was damaging the stability of the world, he escaped and returned to Zacaré to convince her to join magical forces with him and the master monolith. To do that, however, they first had to defeat Balor’s beast. Together, Zacaré and Syndril developed a procedure that would transform an elf using biology, chemistry and magic, creating a warrior with a chance of fighting the beast. Their procedure transformed Fjall into a precursor to the first witcher and he ultimately killed the Balor’s beast. Syndril and Zacaré were able to defeat an empowered Balor and destroy the master monolith, but Syndril, finally at peace with his adoptive sister, sacrificed himself in the process.
Syndril’s notes and calculations about how to repurpose bruied dwarven monoliths as triggers to open gateways to other worlds. Balor took it after imprisoning him. Avallac'h stole it back at Merwyn’s request. It contained the knowledge to use portals and monoliths, but still required some innate ability to be useful. Avallac’h eventually used the book to travel through time itself.
A duo of Zerrikanian warriors who accompanied Borch Three Jackdaws on his travels. Téa and Véa were women of action rather than words. These symbiotic twins simply didn’t need words to know what the other was thinking or planning; they could act in perfect unison and fight as one warrior with two swords. They wear traditional Zerrikanian armor and carry custom long swords that made for an awe-inspiring appearance. Just ask Jaskier.
Striking leaf-shaped steel blades that are double-edged, perfect for when you need to attack quickly and forcefully.
A wealthy and religious realm. Though the region is known for its politeness and is home to powerful sorcerers and famous travelers, Temeria is often highly xenophobic, especially when it comes to the Elder Race. The streets of Temeria were once tormented by a striga. Geralt and Triss solved the mystery that the striga was really King Foltest’s daughter, the cursed Princess Adda, whom Geralt saved by breaking the curse.
A house of worship erected in the name of goddess Melitele and run by the Archpriestess Nenneke. Leave your weapons at the door — the temple is a hub of knowledge and neutrality, and a sanctuary for the sick and wounded. Ciri takes her first (guided) steps into the realm of magic under Nenneke’s and eventually Yennefer’s care.
A young novice mage transformed by Vilgefortz into a living decoy of Ciri in Nilfgaard.
A vindictive sorceress with a talent for politics and a tendency to deceive. She looked chic but played dirty. When she was just a little girl, Tetra’s mother was killed by a witcher. Understandably, she harbored a lot of resentment toward witchers and wanted nothing more than to see them wiped from the Continent. Years later, becoming close to Kaedwen’s king and nobility, she was ready for plans to come to fruition. Though she concealed her true reasons from the Assembly of Nobility, she made her intentions very clear: seize Kaer Morhen and exile its occupants for crimes against Kaedwen’s people. With each manipulated account of events, Tetra managed to turn humans against witchers until, finally, she got her wish. Kaer Morhen was reduced to rubble, and Tetra got to revel in her long-awaited revenge. Still high on victory, she tried to kill Vesemir, but died by Deglan’s axe instead.
A vast, three-headed monster from another realm. Balor controlled the beast, using its incredible power to stage a coup, annihilating the Xin'trean, Darwenian and Pryshian royal families and establishing the Golden Empire. The 16-metre-long beast could fly, used echolocation to track down its prey, and had a thickly scaled hide that ordinary weapons couldn’t penetrate. Most notable, however, was its terrifying ranged attack using its three “stingers” which could instantaneously vaporize organic material. Fjall, having undergone his bestial transformation, was able to slay the beast using a stone greatsword taken from a fallen statue of Alvitir.
Headmistress of the Aretuza Academy, Tissaia is a strong leader and strict educator who thrives on order, discipline and control. She is a member of the Brotherhood of Sorcerers and was the one who took Yennefer under her wing when nobody else would. She wears a striking star-shaped necklace and always has a distinct air of authority about her. She can command a room with even the slightest movement. Her students — Yennefer excluded — follow her orders meekly, and most of her peers are equally obedient.
Tissaia’s pristine and composed exterior hides a much more conflicted interior. She takes her responsibility as an educator very seriously and wants what is best for her students and the Brotherhood, even if those interests often conflict. But the war with Nilfgaard and the loss of 14 mages — including Yen, whom she’d searched for — changed her. Together with her romantic partner and confidante, Vilgefortz, she started a new era for the Brotherhood, but soon came to realize that control didn’t always equal power and that authority didn’t always equal righteousness.
Tissaia’s loyalty is tested by the attack on Aretuza, orchestrated in secret by her lover, Vilgefortz. When the conclave comes under attack she uses all her power to protect her home, but it ultimately destroys her. Tissaia gave her life to protect Aretuza, passing away after seeing everything she ever loved fall to ruin.
A witcher recruit who trained with Vesemir, Sven and Luka. Tomas became a witcher by Law of Surprise — a career he wasn’t particularly thrilled about. In fact, the boy was terrified of what was ahead of him. When the young recruits were suddenly dropped in the deadly Red Swamp, completely left to their own devices, all of Tomas’ nightmares came true. As the boys were running for their lives, Tomas’ medallion snagged on a branch and a hungry ghoul caught up with him.
When Geralt and Jaskier were traveling through Posada, they caught wind of “a hairy devil with horns the size of tankards.” Local farmers and villagers complained about stolen crops and plundered fields. After a brief investigation, the pair found out that it was no hairy devil but a sylvan by the name of Torque who’d been stealing the farmers’ grain. Torque turned out to be a worthy foe — not the strongest but quick and clever. With Torque’s help, Geralt and Jaskier were captured by elves, but the captors soon learned that the witcher was on nobody’s side but his own. So Geralt and Jaskier resumed their travels and the events of Posada were immortalized in the lyrics of “Toss a Coin to Your Witcher.”
A fast and fierce free elf with an impressive fighting spirit. The ongoing fights between elves and humans forced Toruviel to leave her childhood home of Dol Blathanna, never to return. She followed her king, Filavandrel, throughout the Continent in the hopes of rebuilding the elven population and reclaiming their home. Her eventual death is memorialized in a heimlon that Francesca sings.
One of the most prominent places on the Continent, accessible only to members of the Brotherhood. The tower, also called Tor Lara, is used by Aretuza Academy for lessons, rites and rituals, as it holds strong chaotic power and a deep Elven history.
At the bottom of Tor Lara lies a grotto with a rocky pool, Aretuza’s dirty little secret. This water is the academy’s power source. Mages who proved incapable of harnessing Chaos were transformed into eels, forced to live out their days in this pool, providing power to the academy.
This is the collective name for a network of trade routes that spans the Continent. It’s widely used by merchants and traders, and thus a prime target for bandits and brigands. People know that the Trail isn’t always safe, but they have no other choice if they want to move their goods. As a result, there’s one sacred rule that goes for all travelers: You never refuse help on the Trail.
A brutal test of faith and justice in which Geralt intervenes to save two accused sisters from execution. The “ordeal” — pulling a red-hot horseshoe from the flames — proves that monsters aren’t always the ones with fangs.
Witchers aren’t born, witchers are made — created through years of physically demanding training and an extremely painful mutation process known as the Trial of the Grasses. Most young boys already struggle to make it through the training in one piece, but the trial claims many lives. During the trial, a certain mutagenic mixture is administered; it’s a dark green fluid, brimming with energy. Not knowing how their bodies will respond to it, the young witchers are tied down and injected with a syringe-like contraption. Afterward, they’re locked up in the Oubliette, where they wait for the grasses to do their work. Fevers, nosebleeds, black spit-up, seizures, extreme hair loss — anything can happen at that point. Eventually, the trial reveals who the newest, most hardened witchers will be. Cruel as it may be, this was the only way to create witchers. When Reidrich, the mage who concocted the mutagen was killed, the needed alchemy and magic to make more was lost.
A powerful healer and Temeria’s town mage, Triss is a practical but soft-hearted person, constantly trying to balance her heart’s desires with her brain’s sense of purpose and duty. While training at Aretuza Academy — several years after Yennefer — she discovered her talent for botany and healing. Triss developed a deep understanding of all the Continent’s plants, using them to create potions and salves for people in need. After Aretuza, she went on to practice in Temeria. In her capacity as King Foltest’s mage, she eventually met Geralt, the man she’d come to love but who’d never return her affections in the way she desired.
Triss and Geralt parted ways, only to be reunited some decades, scars and life-changing events later. No stranger to banged-up witchers, Triss was summoned to Kaer Morhen, and quickly realized she was there to help train Ciri. After Calanthe, Triss was the first woman to take an active role in raising Ciri, coming into her life when she needed it most. After performing a dol dusza, to help understand Ciri’s past trauma, Triss is also one of the first people to see Ciri’s possible power and what it means for the future of the Continent.
Pavetta’s husband and Ciri’s father. A knight of no renown who was presumed dead, but turned out to be the Emperor of Nilfgaard all along. Nobody really knew Lord Urcheon, the cursed hedgehog man who’d come to Cintra to claim Pavetta by Law of Surprise. Urcheon, or Duny, had saved Cintra’s King Roegner from sudden death years ago, and later fell in love with his daughter. Only after Geralt interfered and saved Duny from her blade, did Calanthe agree to the union. Duny and Pavetta were married, Geralt called his Law of Surprise, and surprise! Pavetta was pregnant the whole time. Sadly, the pair’s wedded bliss was short-lived because a raging storm at sea took both of their lives some years later — or that’s what everyone believed.
As Cintra mourned the loss of Pavetta and Duny fell off everyone's radar, Urcheon resurfaced as Emhyr, who overthrew the Usurper in Nilfgaard. After that moment, Emhyr’s name and thirst for power was felt through every inch of land that the Nilfgaardian army took over, and through every move his puppets made. Fringilla and Cahir were pawns in Emhyr’s play for global domination, which centers around the reunion with his daughter, Ciri.
A notorious sellsword keen to prove he did, in fact, have both testicles, Uthrok was a rough, capable sellsword and former associate of Scían. For a considerable sum of money and the spoils of sacking Xin'trea, Uthrok and his sellsword army helped Éile and Fjall bring down Merwyn and Balor’s regime, gaining access to the city disguised as Golden Empire soldiers. Unfortunately, Uthrok didn’t get to enjoy it: he was torn in half by a fully-transformed, bestial Fjall after Balor’s beast was destroyed.
A valued Chapter member, voice of reason and an advocate of change, Vanielle’s loyalties usually lay with Tissaia and Vilgefortz. Like her allies, she tried to make Artorius and Stregobor change their minds about Nilfgaard, but her efforts were in vain. With Nilfgaard on Sodden’s doorstep, Vanielle joined Vilgefortz’s cause and headed into battle. The battle was won, but it was paid for with Vanielle’s life as one of “The Fourteen.”
A tree from the Velen region. It can be acquired at local markets and used as a strong sedative.
A tall flowering plant with poisonous properties, contradictorily used in combination with hawthorn and spurge to heal witchers.

Witcher School of the Wolf chieftain and Geralt’s father figure. He lived through the sacking of Kaer Morhen and looked after the few witchers that were left. Vesemir grew up a servant in a nobleman’s household where he spent most of his time fantasizing about a bigger, better life beyond the walls of the estate. His partner in crime, the spunky Illyana, shared all his dreams and hopes for the future. But when Deglan offered him a chance at a better life, Vesemir left her to go train at Kaer Morhen.
Having passed the Trial of the Grasses, he started life on The Path, slaying monsters and making coin. When Kaer Morhen was attacked, Vesemir was there. There was no way for him to save the fortress, but he was able to rescue the young recruits. The last handful of witchers, including Geralt, have been in Vesemir’s care ever since. He is the one that other witchers look to for guidance or advice, though they might not always like what he has to say. Vesemir is also their living link to forgotten times — and he takes that role very seriously. He sees it as his responsibility to preserve the witchers’ way of life and thus wanted nothing more than to figure out a way to “create” new witchers.

A weathered but trustworthy dagger that has been in Vesemir’s possession for what seems an eternity. It was made to resemble the design of its hand-and-a-half brother.
A hand-and-a-half sword, damaged over time but lethal as ever. It is similar in grip and dimension to Geralt’s meteorite sword. This sword is also telling of Vesemir’s age. Not only is the blade fashioned in a medieval style, but if you look closely, you’ll also see marks from many a monster fight — the copper tinges show that whatever bit it had a very strange reaction with the steel.

Handsome, tall and mysterious, Vilgefortz is a charismatic mage with a military history. Vilgefortz looks young for a mage of his ability, honed from years spent as a mercenary. But the fact that he chose the life of a soldier despite having innate magical powers was held against him constantly by certain members of the Chapter. The Battle of Sodden — a battle that might never have happened without Vilgefortz’s influence — gave him a chance to redeem himself and prove his worth. There, he was beaten in a one-to-one battle with Cahir, a soldier with no magical abilities — a feat that leads us to believe that there’s more going on that we realize.
In the aftermath of Sodden, Vilgefortz knew he had to strike the iron while it was hot. So employing his talent for politics, he used the mages’ grief and anger at Nilfgaard to make a play for control. Together with Tissaia, his partner in love and politics, he is trying to steer the Brotherhood in a new direction — but he faces plenty of opposition among the old guard led by Stregobor and Artorius.
A master of manipulation and subterfuge, he allies with Nilfgaard and helps orchestrate the coup at Aretuza before eventually unveiling his true abilities. It was Vilgefortz, not Stregobor, who was behind the mysterious disappearances at Aretuza – and the hunt for Ciri. And instead of the weak, capricious mage bested by Cahir during the battle of Sodden, Vilgefortz reveals himself to be an inhumanly powerful warrior who easily destroys Geralt in single combat.
A skilled druid and Geralt’s mother, she abandoned her son with the witchers before saving his life nearly a century later. Kind-hearted and dedicated to her trade, she found herself a young mother without the means to support a family. Though she loved Geralt in her own way, she believed he’d get a better future with the witchers. Years later, the two were briefly reunited. Though Geralt could never forgive Visenna, he did have her to thank for saving him from an otherwise deadly ghoul bite.
These humanoid, fishlike monsters were widely seen after the Conjunction of the Spheres. Found in bodies of water where people often drowned.

Quite literally one of a kind, Voleth Meir is an elven warrior trapped on the Continent. As the inscription on her tomb reads, she is the Deathless Mother, nesting in dreams. But she doesn’t just nest (or manifest) in your dreams — she has power to manipulate them. She finds your weakness, makes you suffer so badly that you’d do anything to stop it, and then feeds off your agony like a demon. Her look is that of a gnarled old woman: deeply wrinkled skin that reveals her true age, hair white as snow and clothes black as her intentions. She lives in a little forest hut without doors that rises on basilisks’ legs. If you hear her calling to you with promises of granting your deepest wish, walk the other way. Her powers include: taking possession of both body and mind; telepathy; and shape-shifting, allowing her to take the form of the thing you desire most. She is eventually vanquished by Yennefer, in the process of saving Ciri’s life — and she returns to another sphere, where we realize she rides with her long-lost brethren, the Wild Hunt.
Made of steel, crystal and marble, the dagger is a relic of forgotten times – It once belonged to the witcher Klef, but was used by Voleth Meir to kill Klef. Henceforth it’s been kept in the Kaer Morhen armory. In the hands of a possessed Ciri, it would be used against witchers once more.
Therianthropes (aka part human, part animal beings) who transform into wolves by disease or curse. They’re fast, strong and feral creatures who are vulnerable to silver.
A member of the mint family that looks like a nettle, but without the stinging hairs. It’s one of the key ingredients in the witcher mutagen.
Seven skeletal horsemen, eyes glowing with death, whose appearance is generally seen as a portent of doom. The Wild Hunt, or the Wraiths of Mörhogg as they are known colloquially in Skellige, is a group of equestrian corpses from another sphere. Galloping through the sky on their equally undead horses, legend has it they appear as forbears of destruction or war. Each member of the hunt is fully clad in extremely intricate black armor, complete with custom weapons of the same fashion. They truly are quite the frightening sight to behold, though one could take comfort in knowing that they are mere manifestations.
The genesis of one of the most famous riders in the Wild Hunt is told in Blood Origin, we meet Eredin, the ambitious High Commander of the Golden Empire army, hungry for conquest and glory, before his banishment to another realm where he eventually becomes the leader of the Wild Hunt.
In Season 2 of The Witcher we learn that Voleth Meir will become another rider of the Wild Hunt — she was imprisoned on the Continent by the witchers and has been feeding on pain ever since, trying to get back to the sphere she came from during the Conjunction.

The Wild Hunt are, of course, elves, albeit from another time and place. They share ancestry, which is why the Wild Hunt’s “genesis weapons” bear some resemblance to later elven weapons. The Wild Hunt weapons, though, are much more elaborate, unusual-looking and stylized. They feel otherworldly, which the Wild Hunt technically are. Each member of the Hunt has a specific weapon that’s decorated with a particular animal: King Eredin’s Rat Sweihander, the Gargoyle Badiche, the Crow Hammer, the Alligator Spear, the Rhino Pole, the Snake Lance and the Terrapin Mace.
Witchers do have supernatural healing, but some wounds just won’t heal on their own. In that case, witchers drink an elixir brewed with veratrum, hawthorn and spurge.
The concoction that is needed to create witchers includes mandrake root, wolfsbane, white dead-nettle and, as legend would have it, Elder Blood. Unfortunately, the exact ingredients and ratios were lost when Reidrich and his fellow alchemists were killed. Even if the mutagen recipe were to resurface, one would still need a mage or alchemist with the knowledge needed to activate it.
Witchers are the Continent’s monster hunters for hire. They are humans who were taken as young children — usually orphans and always boys — into special training at the witcher keep, Kaer Morhen. At the keep, the “recruits” would undergo harsh mutations and strenuous conditioning. One long rite of passage culminated in the Trial of the Grasses. Only after surviving the trial can you truly call yourself a witcher. The first of these alchemically enhanced superhumans was created by mages somewhere after the Conjunction. They turned to mutagenic alchemy in an attempt to keep the increasing number of deadly creatures at bay.
Most of the boys sent (or sentenced) to be witchers never made it through the training — around seven out of ten died in the process. Those who did survive, left Kaer Morhen to follow The Path, which is how they referred to the witcher way of life. Ideally, the Path would lead them to monsters, maybe even riches, and keep them far away from politics. They had no interest in it, and no real ability to engage in it. Their mutations were believed to have snuffed out their ability to feel human emotions or forge meaningful relationships with others, although the behavior of witchers like Geralt clearly contradicted that belief. Their political ethos was one of neutrality, which was one of the many reasons why they were despised by higher society: they couldn’t be bought, couldn’t be swayed and, therefore, couldn’t be trusted when it came to grander schemes for political power. Of course, not all witchers stuck to this ethos.
Each witcher medallion is a unique yet universally recognizable token of its wearer’s allegiance. Aside from identifying the school, the medallion also serves a practical purpose: They start to hum in the presence of magic — a sort of natural link to Chaos. As such, witchers carry these magical divining rods prominently on their chests so as not to miss their cautionary hum.
Early on, witchers adapted spells that didn’t require a magic formula. They called them signs. All that was needed to “cast” a sign was concentration and a hand gesture — even witchers could muster that. Signs were most commonly used against monsters and other enemies, but some signs, like Axii or Igni, served other purposes too. The other signs are: Aard, Heliotrope, Quen and Yrden. Geralt mastered signs with the help of Nenneke, the priestess at the Temple of Melitele.

Witchers don’t wear standard-issue armour as soldiers do, they collect or fashion their own armour out on The Path. For instance, Deglan wore a wyvern cloak; Albin, one of the witchers who helped build Kaer Morhen, wore silver armour; and Geralt wears studded black leather. Differences in attire aside, there are a few items that each witcher has on him at all times: a silver sword, a steel sword, a witcher medallion and a collection of elixirs.
As monster hunters for hire, witchers rely heavily on weapons. On the Path, you’ll most likely see a witcher carrying two weapons: one meteorite or steel, one silver. The designs and weapon choices can vary greatly depending on personal preference, or types of enemies, but in the end, they all serve the same purpose: killing. That being said, witchers are taught not to kill out of fear or hatred; they kill in order to save lives. If the monster is of a magical nature, your run-of-the-mill steel weapon won’t work — you’ll require silver. Whether it’s in the form of a sword, a chain, a dagger, an axe, or an arrow depends on the monsters (and how deep your pockets are). Silver swords are much more precious than steel swords, more malleable too, and thus easily damaged.
A type of poisonous herb from the monkshood family, often with beautiful flowers. It was supposedly used in witcher mutagen. A powerful narcotic when used alone.
A potion that helps heal the most persistent wounds: a mixture of Golden Oriole, devil’s nettle and knitbone.
A type of undead, incorporeal spirit that eternally haunts our world hoping to harvest souls. Wraiths are worthy adversaries — the undead are notoriously tricky to kill. They are not of this world, nor do they belong in it. As for their appearance, wraiths look exactly as you’d expect a specter burdened with an eternity of soul harvesting to look. They’re barely visible creatures, tucked away in tattered cloaks and floating in air shrouded by darkness. Oftentimes their unfinished business will make wraiths linger in our world, so if you’re keen on avoiding a wraith face-off, steer clear of cemeteries or the places where their worldly selves passed away.
A flying reptile, not to be mistaken for dragons and only fought by witchers. Wyverns are snake-like creatures, caught somewhere between dragons and basilisks as far as appearance goes. With wyverns, it’s not their breath that kills, it’s their powerful tail covered in spikes. Apparently, their hides make for great coats and shoes.
While exploring the market in Gors Velen, Ciri and Fabio were drawn to a gaudy tent boasting a captive basilisk on display. Once at the front of the crowd though, Ciri immediately recognized the beast as a wyvern — and a small, dirty and starving one at that. It doesn’t take a witcher’s trained eye to tell a wyvern and basilisk apart. Like basilisks, wyverns are reptilian, but they are much smaller. But they typically grew not much larger than a dog, with long, snaking tails and hooked, flightless wings.
It didn’t pay to take them too lightly, however, as their fangs and claws can also still be deadly, especially if the creature is in a starving frenzy.
The Xin’trean capital city and seat of the royal family. It was built upon dwarven foundations, the ruins of which were still visible in some parts of the palace. The city was captured by the elven hero, Solryth, and later became the seat of Merwyn’s Golden Empire. It’s the home of the master monolith, which controlled all the others.
Thousands of years later, after the arrival of the humans, the city was captured again and became known as Cintra, the Continent’s crown jewel. When elves returned to occupied Cintra after its fall, it once again reverted to its ancient name.
Short in stature, big in bravery — Yarpen’s company are experienced dragon hunters and dwarves for hire. As much as Yarpen would like to think he could slay a dragon alone, dragon hunts are a team effort. His crew consisted of three members: Xavier Moran, Yannick Brass and Lucas Corto. Not long after the dragon hunt in Caingorn, Lucas Corto left the company because he decided to settle down and enjoy married life. Lucas was eventually replaced, and Yarpen’s company would go on to chase coin all over the Continent.

A well-known dwarven warrior from the Zigrin clan. Leader of a company of dragon hunters, and maker of crude jokes. Bald head, bushy beard, foul mouth: those are the three defining features of Yarpen Zigrin. Fierce and feisty as he is, Yarpen has yet to find a challenge too big. He has crossed paths with Geralt several times in his life — one might call them friends. Their joint contribution to the dragon hunt issued by King Niedamir is probably most memorable. The tales of Yarpen’s victory over the dragon earned him moderate fame and considerable fortune in the form of a lordship. But he would continue to travel across the Continent, running into the witcher and pursuing every adventure he can.

A quarter-elf whose mind is razor-sharp and whose magic is unmatched. The most powerful sorceress Aretuza ever produced and Geralt’s true love. Yennefer was not born the violet-eyed and raven-haired beauty that Geralt came to know, but she was born innately powerful. As a small girl with a deformed spine, she began exhibiting magical abilities in her early childhood — a childhood spent with a stepfather who abused her and a mother who turned a blind eye. Eventually she had her conduit moment, where she transported into the Tower of the Gull, and met Istredd for the first time. Soon after, Tissaia bought her from her father for four marks and brought her to Aretuza where she would learn how to control her chaos, fall in love for the first time, and that all she ever wanted was to be the best and most powerful. She forced Giltine to perform her enchantment — voluntarily giving up the ability to have children — and weaseled her way into Aedirn’s court.
For many years, Yennefer lived for herself and nobody else. Pressured into returning to Aretuza and the politics of the Continent, she joined Tissaia and a group of renegade mages to defend Sodden Hill from Nilfgaard, where she used fire magic and sacrificed her powers, but became the Saviour of Sodden. Yen’s prickly and bull-headed exterior started to change when Ciri came along. Seeing a lot of herself in the young girl, she became the mother figure Tissaia had been for her. Knowing she was the best qualified person to train Ciri, she would first have to convince Geralt to forgive her sins, and together the three of them could make a family unit strong enough to survive what the future of the Continent has in store for them.
After recovering her powers in the fight against Voleth Meir, Yen sets about repairing the broken bond of trust with Geralt. She agrees to help Princess Cirilla of Cintra learn to control her considerable magical abilities, a slow process that not only repairs their relationship, but gives Yennefer the chance to finally experience something like motherhood.
One of the Witcher signs, Yrden is sort of a telekinetic brand. It can be used to seal a door or a passage blocking opponents from escaping, or keeping yourself safely locked inside — which Geralt did when fighting the striga. A Yrden seal won’t be lifted until the caster removes it.
An exiled elven mage with astonishing healing powers, Zacaré had the ability to read people’s memories.
Zacaré grew up with her adoptive brother, Syndril, but the two were estranged when they tried and failed to bring Zacaré’s mother back to life with monstrous consequences. Syndril abandoned her, leaving Zacaré alone to destroy the thing that was once her parent. She took refuge from the world in the Marsh of Mists, where she eventually met her partner, the traumatized soldier known as Brother Death. A master healer, Zacaré was responsible for saving Scían after she was struck by a blade coated with corpse oil.
Zacaré was aware that the natural order of the world was under attack by energy leaking through tears in the world caused by the monolith gateways, so she joined forces with Éile, Fjall and Syndril to infiltrate Xin'trea and ultimately destroy the master monolith. They succeeded, defeating an empowered Balor, but Syndril had to sacrifice himself in the process.
A formidable sewer monster that’s drawn to filth and adept at drowning unsuspecting prey, Zeugls are a force to be reckoned with; they grow at an alarming rate and are never not hungry. These insatiable sewer dwellers mostly live underwater, only raising their tentacles to the surface when a tasty meal presents itself. Once they have a tentacle wrapped around you, they’ll drag you down the sewers and into their massive maw. Like the selkiemaw’s, the zeugl’s maw is filled with multiple rows of teeth. So, at least your death will be quick.
A loving woman and her modest merchant husband who played a pivotal role in uniting Geralt and Ciri in Season 1. Zola, Yurga, and their son lived in a small farmhouse near Sodden. While out at the marketplace, Zola met Ciri. Feeling sorry for the girl, she took her home. At the same time, Yurga ran into Geralt — just in time for the witcher to save them both from a ghoul attack. Wanting to return the favor, Yurga took the severely wounded witcher with him, offering him the Law of Surprise — but this time, having learned his lesson, Geralt refused. But destiny had its own plan: once there, Geralt sensed something in the forest: he bid Yurga and Zola farewell, wandered into the trees, and found… Ciri. This house was clearly a place of great comfort and importance to Ciri. It’s where she traveled with her first-ever portal, only to find that Rience had burned the remnants of her happy memory.
A battle-scarred dwarf who carries a sharp axe, Zoltan becomes a fiercely loyal and hilarious member of Geralt’s band of travelers.





























































































































