Skip to content

Instantly share code, notes, and snippets.

@buzzsurfr
Created August 6, 2018 15:40
Show Gist options
  • Save buzzsurfr/810c67f4cf644bded6cd018c078101d1 to your computer and use it in GitHub Desktop.
Save buzzsurfr/810c67f4cf644bded6cd018c078101d1 to your computer and use it in GitHub Desktop.
TimeZoneDB Postman Collection - based on https://timezonedb.com/api
{
"info": {
"_postman_id": "c9c7253b-249f-4231-9d66-bd851d06315b",
"name": "TimeZoneDB",
"description": "Based on https://timezonedb.com/api\n\nTimeZoneDB provides simple RESTful interface API and returns structured XML or JSON responses. You need to register a free API key to start using our services.\n\nOur API is free for personal and non-commercial usage. There are no limits on how many queries you can make, but there is a rate limit where you can only send request to the server once per second. Additional queries will get blocked.\n\nIf you are heavy user, or using this API for commercial purposes, please upgrade to premium service for more reliable and unlimited access.",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "List Time Zone",
"request": {
"method": "GET",
"header": [],
"body": {},
"url": {
"raw": "http://api.timezonedb.com/v2/list-time-zone?key={{key}}",
"protocol": "http",
"host": [
"api",
"timezonedb",
"com"
],
"path": [
"v2",
"list-time-zone"
],
"query": [
{
"key": "key",
"value": "{{key}}",
"description": "Your unique API key you get after register your account."
},
{
"key": "format",
"value": "xml",
"description": "The response format from API. It can be either xml or json.",
"disabled": true
},
{
"key": "callback",
"value": null,
"description": "Use for JavaScript JSON callback.",
"disabled": true
},
{
"key": "fields",
"value": "all",
"description": "Customize the field to display in response. Use commas (\",\" without spaces) to separate the field names. \n\nFIELDS: countryCode, countryName, zoneName, gmtOffset, timestamp ",
"disabled": true
},
{
"key": "country",
"value": "",
"description": "A valid ISO 3166 country code. Only time zones of provided country will list out.",
"disabled": true
},
{
"key": "zone",
"value": "",
"description": "The name of a time zone. Use asterisk (*) for wildcard search.",
"disabled": true
}
]
},
"description": "List out all available time zones supported by TimeZoneDB."
},
"response": [
{
"id": "e10cbfa3-1418-4b84-a614-895b91772a31",
"name": "Get all time zones in New Zealand",
"originalRequest": {
"method": "GET",
"header": [],
"body": {},
"url": {
"raw": "http://api.timezonedb.com/v2/list-time-zone?key={{key}}&format=xml&country=NZ",
"protocol": "http",
"host": [
"api",
"timezonedb",
"com"
],
"path": [
"v2",
"list-time-zone"
],
"query": [
{
"key": "key",
"value": "{{key}}",
"description": "Your unique API key you get after register your account."
},
{
"key": "format",
"value": "xml",
"description": "The response format from API. It can be either xml or json."
},
{
"key": "callback",
"value": null,
"description": "Use for JavaScript JSON callback.",
"disabled": true
},
{
"key": "fields",
"value": "all",
"description": "Customize the field to display in response. Use commas (\",\" without spaces) to separate the field names. \n\nFIELDS: countryCode, countryName, zoneName, gmtOffset, timestamp ",
"disabled": true
},
{
"key": "country",
"value": "NZ",
"description": "A valid ISO 3166 country code. Only time zones of provided country will list out."
},
{
"key": "zone",
"value": null,
"description": "The name of a time zone. Use asterisk (*) for wildcard search.",
"disabled": true
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "xml",
"header": [
{
"key": "Connection",
"value": "keep-alive",
"name": "Connection",
"description": "Options that are desired for the connection"
},
{
"key": "Content-Type",
"value": "application/xml",
"name": "Content-Type",
"description": "The mime type of this content"
},
{
"key": "Date",
"value": "Mon, 06 Aug 2018 15:28:43 GMT",
"name": "Date",
"description": "The date and time that the message was sent"
},
{
"key": "Server",
"value": "nginx",
"name": "Server",
"description": "A name for the server"
},
{
"key": "Transfer-Encoding",
"value": "chunked",
"name": "Transfer-Encoding",
"description": "The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."
},
{
"key": "Via",
"value": "1.1 iad7-proxy-3.amazon.com:80 (Cisco-WSA/10.5.1-296)",
"name": "Via",
"description": "Informs the client of proxies through which the response was sent."
}
],
"cookie": [],
"body": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<result><status>OK</status><message/><zones><zone><countryCode>NZ</countryCode><countryName>New Zealand</countryName><zoneName>Pacific/Auckland</zoneName><gmtOffset>43200</gmtOffset><timestamp>1533612523</timestamp></zone><zone><countryCode>NZ</countryCode><countryName>New Zealand</countryName><zoneName>Pacific/Chatham</zoneName><gmtOffset>45900</gmtOffset><timestamp>1533615223</timestamp></zone></zones></result>\n"
},
{
"id": "d51d4a4c-a951-44fd-8593-577b65c30232",
"name": "Get all time zones in United States where zone name contains \"New\"",
"originalRequest": {
"method": "GET",
"header": [],
"body": {},
"url": {
"raw": "http://api.timezonedb.com/v2/list-time-zone?key={{key}}&format=xml&country=US&zone=*New*",
"protocol": "http",
"host": [
"api",
"timezonedb",
"com"
],
"path": [
"v2",
"list-time-zone"
],
"query": [
{
"key": "key",
"value": "{{key}}",
"description": "Your unique API key you get after register your account."
},
{
"key": "format",
"value": "xml",
"description": "The response format from API. It can be either xml or json."
},
{
"key": "callback",
"value": null,
"description": "Use for JavaScript JSON callback.",
"disabled": true
},
{
"key": "fields",
"value": "all",
"description": "Customize the field to display in response. Use commas (\",\" without spaces) to separate the field names. \n\nFIELDS: countryCode, countryName, zoneName, gmtOffset, timestamp ",
"disabled": true
},
{
"key": "country",
"value": "US",
"description": "A valid ISO 3166 country code. Only time zones of provided country will list out."
},
{
"key": "zone",
"value": "*New*",
"description": "The name of a time zone. Use asterisk (*) for wildcard search."
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "xml",
"header": [
{
"key": "Connection",
"value": "keep-alive",
"name": "Connection",
"description": "Options that are desired for the connection"
},
{
"key": "Content-Type",
"value": "application/xml",
"name": "Content-Type",
"description": "The mime type of this content"
},
{
"key": "Date",
"value": "Mon, 06 Aug 2018 15:29:26 GMT",
"name": "Date",
"description": "The date and time that the message was sent"
},
{
"key": "Server",
"value": "nginx",
"name": "Server",
"description": "A name for the server"
},
{
"key": "Transfer-Encoding",
"value": "chunked",
"name": "Transfer-Encoding",
"description": "The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."
},
{
"key": "Via",
"value": "1.1 iad7-proxy-3.amazon.com:80 (Cisco-WSA/10.5.1-296)",
"name": "Via",
"description": "Informs the client of proxies through which the response was sent."
}
],
"cookie": [],
"body": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<result><status>OK</status><message/><zones><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/New_York</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554966</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/North_Dakota/New_Salem</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551366</timestamp></zone></zones></result>\n"
},
{
"id": "3eae2dfb-1625-4c05-a719-b95dff878c48",
"name": "Get all time zones supported by TimeZoneDB",
"originalRequest": {
"method": "GET",
"header": [],
"body": {},
"url": {
"raw": "http://api.timezonedb.com/v2/list-time-zone?key={{key}}&format=xml",
"protocol": "http",
"host": [
"api",
"timezonedb",
"com"
],
"path": [
"v2",
"list-time-zone"
],
"query": [
{
"key": "key",
"value": "{{key}}",
"description": "Your unique API key you get after register your account."
},
{
"key": "format",
"value": "xml",
"description": "The response format from API. It can be either xml or json."
},
{
"key": "callback",
"value": null,
"description": "Use for JavaScript JSON callback.",
"disabled": true
},
{
"key": "fields",
"value": "all",
"description": "Customize the field to display in response. Use commas (\",\" without spaces) to separate the field names. \n\nFIELDS: countryCode, countryName, zoneName, gmtOffset, timestamp ",
"disabled": true
},
{
"key": "country",
"value": null,
"description": "A valid ISO 3166 country code. Only time zones of provided country will list out.",
"disabled": true
},
{
"key": "zone",
"value": null,
"description": "The name of a time zone. Use asterisk (*) for wildcard search.",
"disabled": true
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "xml",
"header": [
{
"key": "Connection",
"value": "keep-alive",
"name": "Connection",
"description": "Options that are desired for the connection"
},
{
"key": "Content-Type",
"value": "application/xml",
"name": "Content-Type",
"description": "The mime type of this content"
},
{
"key": "Date",
"value": "Mon, 06 Aug 2018 15:28:00 GMT",
"name": "Date",
"description": "The date and time that the message was sent"
},
{
"key": "Server",
"value": "nginx",
"name": "Server",
"description": "A name for the server"
},
{
"key": "Transfer-Encoding",
"value": "chunked",
"name": "Transfer-Encoding",
"description": "The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."
},
{
"key": "Via",
"value": "1.1 iad7-proxy-3.amazon.com:80 (Cisco-WSA/10.5.1-296)",
"name": "Via",
"description": "Informs the client of proxies through which the response was sent."
}
],
"cookie": [],
"body": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<result><status>OK</status><message/><zones><zone><countryCode>AD</countryCode><countryName>Andorra</countryName><zoneName>Europe/Andorra</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>AE</countryCode><countryName>United Arab Emirates</countryName><zoneName>Asia/Dubai</zoneName><gmtOffset>14400</gmtOffset><timestamp>1533583680</timestamp></zone><zone><countryCode>AF</countryCode><countryName>Afghanistan</countryName><zoneName>Asia/Kabul</zoneName><gmtOffset>16200</gmtOffset><timestamp>1533585480</timestamp></zone><zone><countryCode>AG</countryCode><countryName>Antigua and Barbuda</countryName><zoneName>America/Antigua</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>AI</countryCode><countryName>Anguilla</countryName><zoneName>America/Anguilla</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>AL</countryCode><countryName>Albania</countryName><zoneName>Europe/Tirane</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>AM</countryCode><countryName>Armenia</countryName><zoneName>Asia/Yerevan</zoneName><gmtOffset>14400</gmtOffset><timestamp>1533583680</timestamp></zone><zone><countryCode>AO</countryCode><countryName>Angola</countryName><zoneName>Africa/Luanda</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>AQ</countryCode><countryName>Antarctica</countryName><zoneName>Antarctica/Casey</zoneName><gmtOffset>28800</gmtOffset><timestamp>1533598080</timestamp></zone><zone><countryCode>AQ</countryCode><countryName>Antarctica</countryName><zoneName>Antarctica/Davis</zoneName><gmtOffset>25200</gmtOffset><timestamp>1533594480</timestamp></zone><zone><countryCode>AQ</countryCode><countryName>Antarctica</countryName><zoneName>Antarctica/DumontDUrville</zoneName><gmtOffset>36000</gmtOffset><timestamp>1533605280</timestamp></zone><zone><countryCode>AQ</countryCode><countryName>Antarctica</countryName><zoneName>Antarctica/Mawson</zoneName><gmtOffset>18000</gmtOffset><timestamp>1533587280</timestamp></zone><zone><countryCode>AQ</countryCode><countryName>Antarctica</countryName><zoneName>Antarctica/McMurdo</zoneName><gmtOffset>43200</gmtOffset><timestamp>1533612480</timestamp></zone><zone><countryCode>AQ</countryCode><countryName>Antarctica</countryName><zoneName>Antarctica/Palmer</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>AQ</countryCode><countryName>Antarctica</countryName><zoneName>Antarctica/Rothera</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>AQ</countryCode><countryName>Antarctica</countryName><zoneName>Antarctica/Syowa</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>AQ</countryCode><countryName>Antarctica</countryName><zoneName>Antarctica/Troll</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>AQ</countryCode><countryName>Antarctica</countryName><zoneName>Antarctica/Vostok</zoneName><gmtOffset>21600</gmtOffset><timestamp>1533590880</timestamp></zone><zone><countryCode>AR</countryCode><countryName>Argentina</countryName><zoneName>America/Argentina/Buenos_Aires</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>AR</countryCode><countryName>Argentina</countryName><zoneName>America/Argentina/Catamarca</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>AR</countryCode><countryName>Argentina</countryName><zoneName>America/Argentina/Cordoba</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>AR</countryCode><countryName>Argentina</countryName><zoneName>America/Argentina/Jujuy</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>AR</countryCode><countryName>Argentina</countryName><zoneName>America/Argentina/La_Rioja</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>AR</countryCode><countryName>Argentina</countryName><zoneName>America/Argentina/Mendoza</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>AR</countryCode><countryName>Argentina</countryName><zoneName>America/Argentina/Rio_Gallegos</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>AR</countryCode><countryName>Argentina</countryName><zoneName>America/Argentina/Salta</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>AR</countryCode><countryName>Argentina</countryName><zoneName>America/Argentina/San_Juan</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>AR</countryCode><countryName>Argentina</countryName><zoneName>America/Argentina/San_Luis</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>AR</countryCode><countryName>Argentina</countryName><zoneName>America/Argentina/Tucuman</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>AR</countryCode><countryName>Argentina</countryName><zoneName>America/Argentina/Ushuaia</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>AS</countryCode><countryName>American Samoa</countryName><zoneName>Pacific/Pago_Pago</zoneName><gmtOffset>-39600</gmtOffset><timestamp>1533529680</timestamp></zone><zone><countryCode>AT</countryCode><countryName>Austria</countryName><zoneName>Europe/Vienna</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>AU</countryCode><countryName>Australia</countryName><zoneName>Antarctica/Macquarie</zoneName><gmtOffset>39600</gmtOffset><timestamp>1533608880</timestamp></zone><zone><countryCode>AU</countryCode><countryName>Australia</countryName><zoneName>Australia/Adelaide</zoneName><gmtOffset>34200</gmtOffset><timestamp>1533603480</timestamp></zone><zone><countryCode>AU</countryCode><countryName>Australia</countryName><zoneName>Australia/Brisbane</zoneName><gmtOffset>36000</gmtOffset><timestamp>1533605280</timestamp></zone><zone><countryCode>AU</countryCode><countryName>Australia</countryName><zoneName>Australia/Broken_Hill</zoneName><gmtOffset>34200</gmtOffset><timestamp>1533603480</timestamp></zone><zone><countryCode>AU</countryCode><countryName>Australia</countryName><zoneName>Australia/Currie</zoneName><gmtOffset>36000</gmtOffset><timestamp>1533605280</timestamp></zone><zone><countryCode>AU</countryCode><countryName>Australia</countryName><zoneName>Australia/Darwin</zoneName><gmtOffset>34200</gmtOffset><timestamp>1533603480</timestamp></zone><zone><countryCode>AU</countryCode><countryName>Australia</countryName><zoneName>Australia/Eucla</zoneName><gmtOffset>31500</gmtOffset><timestamp>1533600780</timestamp></zone><zone><countryCode>AU</countryCode><countryName>Australia</countryName><zoneName>Australia/Hobart</zoneName><gmtOffset>36000</gmtOffset><timestamp>1533605280</timestamp></zone><zone><countryCode>AU</countryCode><countryName>Australia</countryName><zoneName>Australia/Lindeman</zoneName><gmtOffset>36000</gmtOffset><timestamp>1533605280</timestamp></zone><zone><countryCode>AU</countryCode><countryName>Australia</countryName><zoneName>Australia/Lord_Howe</zoneName><gmtOffset>37800</gmtOffset><timestamp>1533607080</timestamp></zone><zone><countryCode>AU</countryCode><countryName>Australia</countryName><zoneName>Australia/Melbourne</zoneName><gmtOffset>36000</gmtOffset><timestamp>1533605280</timestamp></zone><zone><countryCode>AU</countryCode><countryName>Australia</countryName><zoneName>Australia/Perth</zoneName><gmtOffset>28800</gmtOffset><timestamp>1533598080</timestamp></zone><zone><countryCode>AU</countryCode><countryName>Australia</countryName><zoneName>Australia/Sydney</zoneName><gmtOffset>36000</gmtOffset><timestamp>1533605280</timestamp></zone><zone><countryCode>AW</countryCode><countryName>Aruba</countryName><zoneName>America/Aruba</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>AX</countryCode><countryName>Aland Islands</countryName><zoneName>Europe/Mariehamn</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>AZ</countryCode><countryName>Azerbaijan</countryName><zoneName>Asia/Baku</zoneName><gmtOffset>14400</gmtOffset><timestamp>1533583680</timestamp></zone><zone><countryCode>BA</countryCode><countryName>Bosnia and Herzegovina</countryName><zoneName>Europe/Sarajevo</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>BB</countryCode><countryName>Barbados</countryName><zoneName>America/Barbados</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>BD</countryCode><countryName>Bangladesh</countryName><zoneName>Asia/Dhaka</zoneName><gmtOffset>21600</gmtOffset><timestamp>1533590880</timestamp></zone><zone><countryCode>BE</countryCode><countryName>Belgium</countryName><zoneName>Europe/Brussels</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>BF</countryCode><countryName>Burkina Faso</countryName><zoneName>Africa/Ouagadougou</zoneName><gmtOffset>0</gmtOffset><timestamp>1533569280</timestamp></zone><zone><countryCode>BG</countryCode><countryName>Bulgaria</countryName><zoneName>Europe/Sofia</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>BH</countryCode><countryName>Bahrain</countryName><zoneName>Asia/Bahrain</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>BI</countryCode><countryName>Burundi</countryName><zoneName>Africa/Bujumbura</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>BJ</countryCode><countryName>Benin</countryName><zoneName>Africa/Porto-Novo</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>BL</countryCode><countryName>Saint Barthélemy</countryName><zoneName>America/St_Barthelemy</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>BM</countryCode><countryName>Bermuda</countryName><zoneName>Atlantic/Bermuda</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>BN</countryCode><countryName>Brunei</countryName><zoneName>Asia/Brunei</zoneName><gmtOffset>28800</gmtOffset><timestamp>1533598080</timestamp></zone><zone><countryCode>BO</countryCode><countryName>Bolivia</countryName><zoneName>America/La_Paz</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>BQ</countryCode><countryName>Bonaire, Saint Eustatius and Saba </countryName><zoneName>America/Kralendijk</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>BR</countryCode><countryName>Brazil</countryName><zoneName>America/Araguaina</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>BR</countryCode><countryName>Brazil</countryName><zoneName>America/Bahia</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>BR</countryCode><countryName>Brazil</countryName><zoneName>America/Belem</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>BR</countryCode><countryName>Brazil</countryName><zoneName>America/Boa_Vista</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>BR</countryCode><countryName>Brazil</countryName><zoneName>America/Campo_Grande</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>BR</countryCode><countryName>Brazil</countryName><zoneName>America/Cuiaba</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>BR</countryCode><countryName>Brazil</countryName><zoneName>America/Eirunepe</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>BR</countryCode><countryName>Brazil</countryName><zoneName>America/Fortaleza</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>BR</countryCode><countryName>Brazil</countryName><zoneName>America/Maceio</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>BR</countryCode><countryName>Brazil</countryName><zoneName>America/Manaus</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>BR</countryCode><countryName>Brazil</countryName><zoneName>America/Noronha</zoneName><gmtOffset>-7200</gmtOffset><timestamp>1533562080</timestamp></zone><zone><countryCode>BR</countryCode><countryName>Brazil</countryName><zoneName>America/Porto_Velho</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>BR</countryCode><countryName>Brazil</countryName><zoneName>America/Recife</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>BR</countryCode><countryName>Brazil</countryName><zoneName>America/Rio_Branco</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>BR</countryCode><countryName>Brazil</countryName><zoneName>America/Santarem</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>BR</countryCode><countryName>Brazil</countryName><zoneName>America/Sao_Paulo</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>BS</countryCode><countryName>Bahamas</countryName><zoneName>America/Nassau</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>BT</countryCode><countryName>Bhutan</countryName><zoneName>Asia/Thimphu</zoneName><gmtOffset>21600</gmtOffset><timestamp>1533590880</timestamp></zone><zone><countryCode>BW</countryCode><countryName>Botswana</countryName><zoneName>Africa/Gaborone</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>BY</countryCode><countryName>Belarus</countryName><zoneName>Europe/Minsk</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>BZ</countryCode><countryName>Belize</countryName><zoneName>America/Belize</zoneName><gmtOffset>-21600</gmtOffset><timestamp>1533547680</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Atikokan</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Blanc-Sablon</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Cambridge_Bay</zoneName><gmtOffset>-21600</gmtOffset><timestamp>1533547680</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Creston</zoneName><gmtOffset>-25200</gmtOffset><timestamp>1533544080</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Dawson</zoneName><gmtOffset>-25200</gmtOffset><timestamp>1533544080</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Dawson_Creek</zoneName><gmtOffset>-25200</gmtOffset><timestamp>1533544080</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Edmonton</zoneName><gmtOffset>-21600</gmtOffset><timestamp>1533547680</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Fort_Nelson</zoneName><gmtOffset>-25200</gmtOffset><timestamp>1533544080</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Glace_Bay</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Goose_Bay</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Halifax</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Inuvik</zoneName><gmtOffset>-21600</gmtOffset><timestamp>1533547680</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Iqaluit</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Moncton</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Nipigon</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Pangnirtung</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Rainy_River</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Rankin_Inlet</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Regina</zoneName><gmtOffset>-21600</gmtOffset><timestamp>1533547680</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Resolute</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/St_Johns</zoneName><gmtOffset>-9000</gmtOffset><timestamp>1533560280</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Swift_Current</zoneName><gmtOffset>-21600</gmtOffset><timestamp>1533547680</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Thunder_Bay</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Toronto</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Vancouver</zoneName><gmtOffset>-25200</gmtOffset><timestamp>1533544080</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Whitehorse</zoneName><gmtOffset>-25200</gmtOffset><timestamp>1533544080</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Winnipeg</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>CA</countryCode><countryName>Canada</countryName><zoneName>America/Yellowknife</zoneName><gmtOffset>-21600</gmtOffset><timestamp>1533547680</timestamp></zone><zone><countryCode>CC</countryCode><countryName>Cocos Islands</countryName><zoneName>Indian/Cocos</zoneName><gmtOffset>23400</gmtOffset><timestamp>1533592680</timestamp></zone><zone><countryCode>CD</countryCode><countryName>Democratic Republic of the Congo</countryName><zoneName>Africa/Kinshasa</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>CD</countryCode><countryName>Democratic Republic of the Congo</countryName><zoneName>Africa/Lubumbashi</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>CF</countryCode><countryName>Central African Republic</countryName><zoneName>Africa/Bangui</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>CG</countryCode><countryName>Republic of the Congo</countryName><zoneName>Africa/Brazzaville</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>CH</countryCode><countryName>Switzerland</countryName><zoneName>Europe/Zurich</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>CI</countryCode><countryName>Ivory Coast</countryName><zoneName>Africa/Abidjan</zoneName><gmtOffset>0</gmtOffset><timestamp>1533569280</timestamp></zone><zone><countryCode>CK</countryCode><countryName>Cook Islands</countryName><zoneName>Pacific/Rarotonga</zoneName><gmtOffset>-36000</gmtOffset><timestamp>1533533280</timestamp></zone><zone><countryCode>CL</countryCode><countryName>Chile</countryName><zoneName>America/Punta_Arenas</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>CL</countryCode><countryName>Chile</countryName><zoneName>America/Santiago</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>CL</countryCode><countryName>Chile</countryName><zoneName>Pacific/Easter</zoneName><gmtOffset>-21600</gmtOffset><timestamp>1533547680</timestamp></zone><zone><countryCode>CM</countryCode><countryName>Cameroon</countryName><zoneName>Africa/Douala</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>CN</countryCode><countryName>China</countryName><zoneName>Asia/Shanghai</zoneName><gmtOffset>28800</gmtOffset><timestamp>1533598080</timestamp></zone><zone><countryCode>CN</countryCode><countryName>China</countryName><zoneName>Asia/Urumqi</zoneName><gmtOffset>21600</gmtOffset><timestamp>1533590880</timestamp></zone><zone><countryCode>CO</countryCode><countryName>Colombia</countryName><zoneName>America/Bogota</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>CR</countryCode><countryName>Costa Rica</countryName><zoneName>America/Costa_Rica</zoneName><gmtOffset>-21600</gmtOffset><timestamp>1533547680</timestamp></zone><zone><countryCode>CU</countryCode><countryName>Cuba</countryName><zoneName>America/Havana</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>CV</countryCode><countryName>Cape Verde</countryName><zoneName>Atlantic/Cape_Verde</zoneName><gmtOffset>-3600</gmtOffset><timestamp>1533565680</timestamp></zone><zone><countryCode>CW</countryCode><countryName>Curaçao</countryName><zoneName>America/Curacao</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>CX</countryCode><countryName>Christmas Island</countryName><zoneName>Indian/Christmas</zoneName><gmtOffset>25200</gmtOffset><timestamp>1533594480</timestamp></zone><zone><countryCode>CY</countryCode><countryName>Cyprus</countryName><zoneName>Asia/Famagusta</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>CY</countryCode><countryName>Cyprus</countryName><zoneName>Asia/Nicosia</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>CZ</countryCode><countryName>Czech Republic</countryName><zoneName>Europe/Prague</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>DE</countryCode><countryName>Germany</countryName><zoneName>Europe/Berlin</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>DE</countryCode><countryName>Germany</countryName><zoneName>Europe/Busingen</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>DJ</countryCode><countryName>Djibouti</countryName><zoneName>Africa/Djibouti</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>DK</countryCode><countryName>Denmark</countryName><zoneName>Europe/Copenhagen</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>DM</countryCode><countryName>Dominica</countryName><zoneName>America/Dominica</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>DO</countryCode><countryName>Dominican Republic</countryName><zoneName>America/Santo_Domingo</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>DZ</countryCode><countryName>Algeria</countryName><zoneName>Africa/Algiers</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>EC</countryCode><countryName>Ecuador</countryName><zoneName>America/Guayaquil</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>EC</countryCode><countryName>Ecuador</countryName><zoneName>Pacific/Galapagos</zoneName><gmtOffset>-21600</gmtOffset><timestamp>1533547680</timestamp></zone><zone><countryCode>EE</countryCode><countryName>Estonia</countryName><zoneName>Europe/Tallinn</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>EG</countryCode><countryName>Egypt</countryName><zoneName>Africa/Cairo</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>EH</countryCode><countryName>Western Sahara</countryName><zoneName>Africa/El_Aaiun</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>ER</countryCode><countryName>Eritrea</countryName><zoneName>Africa/Asmara</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>ES</countryCode><countryName>Spain</countryName><zoneName>Africa/Ceuta</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>ES</countryCode><countryName>Spain</countryName><zoneName>Atlantic/Canary</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>ES</countryCode><countryName>Spain</countryName><zoneName>Europe/Madrid</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>ET</countryCode><countryName>Ethiopia</countryName><zoneName>Africa/Addis_Ababa</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>FI</countryCode><countryName>Finland</countryName><zoneName>Europe/Helsinki</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>FJ</countryCode><countryName>Fiji</countryName><zoneName>Pacific/Fiji</zoneName><gmtOffset>43200</gmtOffset><timestamp>1533612480</timestamp></zone><zone><countryCode>FK</countryCode><countryName>Falkland Islands</countryName><zoneName>Atlantic/Stanley</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>FM</countryCode><countryName>Micronesia</countryName><zoneName>Pacific/Chuuk</zoneName><gmtOffset>36000</gmtOffset><timestamp>1533605280</timestamp></zone><zone><countryCode>FM</countryCode><countryName>Micronesia</countryName><zoneName>Pacific/Kosrae</zoneName><gmtOffset>39600</gmtOffset><timestamp>1533608880</timestamp></zone><zone><countryCode>FM</countryCode><countryName>Micronesia</countryName><zoneName>Pacific/Pohnpei</zoneName><gmtOffset>39600</gmtOffset><timestamp>1533608880</timestamp></zone><zone><countryCode>FO</countryCode><countryName>Faroe Islands</countryName><zoneName>Atlantic/Faroe</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>FR</countryCode><countryName>France</countryName><zoneName>Europe/Paris</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>GA</countryCode><countryName>Gabon</countryName><zoneName>Africa/Libreville</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>GB</countryCode><countryName>United Kingdom</countryName><zoneName>Europe/London</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>GD</countryCode><countryName>Grenada</countryName><zoneName>America/Grenada</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>GE</countryCode><countryName>Georgia</countryName><zoneName>Asia/Tbilisi</zoneName><gmtOffset>14400</gmtOffset><timestamp>1533583680</timestamp></zone><zone><countryCode>GF</countryCode><countryName>French Guiana</countryName><zoneName>America/Cayenne</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>GG</countryCode><countryName>Guernsey</countryName><zoneName>Europe/Guernsey</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>GH</countryCode><countryName>Ghana</countryName><zoneName>Africa/Accra</zoneName><gmtOffset>0</gmtOffset><timestamp>1533569280</timestamp></zone><zone><countryCode>GI</countryCode><countryName>Gibraltar</countryName><zoneName>Europe/Gibraltar</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>GL</countryCode><countryName>Greenland</countryName><zoneName>America/Danmarkshavn</zoneName><gmtOffset>0</gmtOffset><timestamp>1533569280</timestamp></zone><zone><countryCode>GL</countryCode><countryName>Greenland</countryName><zoneName>America/Godthab</zoneName><gmtOffset>-7200</gmtOffset><timestamp>1533562080</timestamp></zone><zone><countryCode>GL</countryCode><countryName>Greenland</countryName><zoneName>America/Scoresbysund</zoneName><gmtOffset>0</gmtOffset><timestamp>1533569280</timestamp></zone><zone><countryCode>GL</countryCode><countryName>Greenland</countryName><zoneName>America/Thule</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>GM</countryCode><countryName>Gambia</countryName><zoneName>Africa/Banjul</zoneName><gmtOffset>0</gmtOffset><timestamp>1533569280</timestamp></zone><zone><countryCode>GN</countryCode><countryName>Guinea</countryName><zoneName>Africa/Conakry</zoneName><gmtOffset>0</gmtOffset><timestamp>1533569280</timestamp></zone><zone><countryCode>GP</countryCode><countryName>Guadeloupe</countryName><zoneName>America/Guadeloupe</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>GQ</countryCode><countryName>Equatorial Guinea</countryName><zoneName>Africa/Malabo</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>GR</countryCode><countryName>Greece</countryName><zoneName>Europe/Athens</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>GS</countryCode><countryName>South Georgia and the South Sandwich Islands</countryName><zoneName>Atlantic/South_Georgia</zoneName><gmtOffset>-7200</gmtOffset><timestamp>1533562080</timestamp></zone><zone><countryCode>GT</countryCode><countryName>Guatemala</countryName><zoneName>America/Guatemala</zoneName><gmtOffset>-21600</gmtOffset><timestamp>1533547680</timestamp></zone><zone><countryCode>GU</countryCode><countryName>Guam</countryName><zoneName>Pacific/Guam</zoneName><gmtOffset>36000</gmtOffset><timestamp>1533605280</timestamp></zone><zone><countryCode>GW</countryCode><countryName>Guinea-Bissau</countryName><zoneName>Africa/Bissau</zoneName><gmtOffset>0</gmtOffset><timestamp>1533569280</timestamp></zone><zone><countryCode>GY</countryCode><countryName>Guyana</countryName><zoneName>America/Guyana</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>HK</countryCode><countryName>Hong Kong</countryName><zoneName>Asia/Hong_Kong</zoneName><gmtOffset>28800</gmtOffset><timestamp>1533598080</timestamp></zone><zone><countryCode>HN</countryCode><countryName>Honduras</countryName><zoneName>America/Tegucigalpa</zoneName><gmtOffset>-21600</gmtOffset><timestamp>1533547680</timestamp></zone><zone><countryCode>HR</countryCode><countryName>Croatia</countryName><zoneName>Europe/Zagreb</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>HT</countryCode><countryName>Haiti</countryName><zoneName>America/Port-au-Prince</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>HU</countryCode><countryName>Hungary</countryName><zoneName>Europe/Budapest</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>ID</countryCode><countryName>Indonesia</countryName><zoneName>Asia/Jakarta</zoneName><gmtOffset>25200</gmtOffset><timestamp>1533594480</timestamp></zone><zone><countryCode>ID</countryCode><countryName>Indonesia</countryName><zoneName>Asia/Jayapura</zoneName><gmtOffset>32400</gmtOffset><timestamp>1533601680</timestamp></zone><zone><countryCode>ID</countryCode><countryName>Indonesia</countryName><zoneName>Asia/Makassar</zoneName><gmtOffset>28800</gmtOffset><timestamp>1533598080</timestamp></zone><zone><countryCode>ID</countryCode><countryName>Indonesia</countryName><zoneName>Asia/Pontianak</zoneName><gmtOffset>25200</gmtOffset><timestamp>1533594480</timestamp></zone><zone><countryCode>IE</countryCode><countryName>Ireland</countryName><zoneName>Europe/Dublin</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>IL</countryCode><countryName>Israel</countryName><zoneName>Asia/Jerusalem</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>IM</countryCode><countryName>Isle of Man</countryName><zoneName>Europe/Isle_of_Man</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>IN</countryCode><countryName>India</countryName><zoneName>Asia/Kolkata</zoneName><gmtOffset>19800</gmtOffset><timestamp>1533589080</timestamp></zone><zone><countryCode>IO</countryCode><countryName>British Indian Ocean Territory</countryName><zoneName>Indian/Chagos</zoneName><gmtOffset>21600</gmtOffset><timestamp>1533590880</timestamp></zone><zone><countryCode>IQ</countryCode><countryName>Iraq</countryName><zoneName>Asia/Baghdad</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>IR</countryCode><countryName>Iran</countryName><zoneName>Asia/Tehran</zoneName><gmtOffset>16200</gmtOffset><timestamp>1533585480</timestamp></zone><zone><countryCode>IS</countryCode><countryName>Iceland</countryName><zoneName>Atlantic/Reykjavik</zoneName><gmtOffset>0</gmtOffset><timestamp>1533569280</timestamp></zone><zone><countryCode>IT</countryCode><countryName>Italy</countryName><zoneName>Europe/Rome</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>JE</countryCode><countryName>Jersey</countryName><zoneName>Europe/Jersey</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>JM</countryCode><countryName>Jamaica</countryName><zoneName>America/Jamaica</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>JO</countryCode><countryName>Jordan</countryName><zoneName>Asia/Amman</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>JP</countryCode><countryName>Japan</countryName><zoneName>Asia/Tokyo</zoneName><gmtOffset>32400</gmtOffset><timestamp>1533601680</timestamp></zone><zone><countryCode>KE</countryCode><countryName>Kenya</countryName><zoneName>Africa/Nairobi</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>KG</countryCode><countryName>Kyrgyzstan</countryName><zoneName>Asia/Bishkek</zoneName><gmtOffset>21600</gmtOffset><timestamp>1533590880</timestamp></zone><zone><countryCode>KH</countryCode><countryName>Cambodia</countryName><zoneName>Asia/Phnom_Penh</zoneName><gmtOffset>25200</gmtOffset><timestamp>1533594480</timestamp></zone><zone><countryCode>KI</countryCode><countryName>Kiribati</countryName><zoneName>Pacific/Enderbury</zoneName><gmtOffset>46800</gmtOffset><timestamp>1533616080</timestamp></zone><zone><countryCode>KI</countryCode><countryName>Kiribati</countryName><zoneName>Pacific/Kiritimati</zoneName><gmtOffset>50400</gmtOffset><timestamp>1533619680</timestamp></zone><zone><countryCode>KI</countryCode><countryName>Kiribati</countryName><zoneName>Pacific/Tarawa</zoneName><gmtOffset>43200</gmtOffset><timestamp>1533612480</timestamp></zone><zone><countryCode>KM</countryCode><countryName>Comoros</countryName><zoneName>Indian/Comoro</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>KN</countryCode><countryName>Saint Kitts and Nevis</countryName><zoneName>America/St_Kitts</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>KP</countryCode><countryName>North Korea</countryName><zoneName>Asia/Pyongyang</zoneName><gmtOffset>32400</gmtOffset><timestamp>1533601680</timestamp></zone><zone><countryCode>KR</countryCode><countryName>South Korea</countryName><zoneName>Asia/Seoul</zoneName><gmtOffset>32400</gmtOffset><timestamp>1533601680</timestamp></zone><zone><countryCode>KW</countryCode><countryName>Kuwait</countryName><zoneName>Asia/Kuwait</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>KY</countryCode><countryName>Cayman Islands</countryName><zoneName>America/Cayman</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>KZ</countryCode><countryName>Kazakhstan</countryName><zoneName>Asia/Almaty</zoneName><gmtOffset>21600</gmtOffset><timestamp>1533590880</timestamp></zone><zone><countryCode>KZ</countryCode><countryName>Kazakhstan</countryName><zoneName>Asia/Aqtau</zoneName><gmtOffset>18000</gmtOffset><timestamp>1533587280</timestamp></zone><zone><countryCode>KZ</countryCode><countryName>Kazakhstan</countryName><zoneName>Asia/Aqtobe</zoneName><gmtOffset>18000</gmtOffset><timestamp>1533587280</timestamp></zone><zone><countryCode>KZ</countryCode><countryName>Kazakhstan</countryName><zoneName>Asia/Atyrau</zoneName><gmtOffset>18000</gmtOffset><timestamp>1533587280</timestamp></zone><zone><countryCode>KZ</countryCode><countryName>Kazakhstan</countryName><zoneName>Asia/Oral</zoneName><gmtOffset>18000</gmtOffset><timestamp>1533587280</timestamp></zone><zone><countryCode>KZ</countryCode><countryName>Kazakhstan</countryName><zoneName>Asia/Qyzylorda</zoneName><gmtOffset>21600</gmtOffset><timestamp>1533590880</timestamp></zone><zone><countryCode>LA</countryCode><countryName>Laos</countryName><zoneName>Asia/Vientiane</zoneName><gmtOffset>25200</gmtOffset><timestamp>1533594480</timestamp></zone><zone><countryCode>LB</countryCode><countryName>Lebanon</countryName><zoneName>Asia/Beirut</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>LC</countryCode><countryName>Saint Lucia</countryName><zoneName>America/St_Lucia</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>LI</countryCode><countryName>Liechtenstein</countryName><zoneName>Europe/Vaduz</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>LK</countryCode><countryName>Sri Lanka</countryName><zoneName>Asia/Colombo</zoneName><gmtOffset>19800</gmtOffset><timestamp>1533589080</timestamp></zone><zone><countryCode>LR</countryCode><countryName>Liberia</countryName><zoneName>Africa/Monrovia</zoneName><gmtOffset>0</gmtOffset><timestamp>1533569280</timestamp></zone><zone><countryCode>LS</countryCode><countryName>Lesotho</countryName><zoneName>Africa/Maseru</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>LT</countryCode><countryName>Lithuania</countryName><zoneName>Europe/Vilnius</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>LU</countryCode><countryName>Luxembourg</countryName><zoneName>Europe/Luxembourg</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>LV</countryCode><countryName>Latvia</countryName><zoneName>Europe/Riga</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>LY</countryCode><countryName>Libya</countryName><zoneName>Africa/Tripoli</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>MA</countryCode><countryName>Morocco</countryName><zoneName>Africa/Casablanca</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>MC</countryCode><countryName>Monaco</countryName><zoneName>Europe/Monaco</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>MD</countryCode><countryName>Moldova</countryName><zoneName>Europe/Chisinau</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>ME</countryCode><countryName>Montenegro</countryName><zoneName>Europe/Podgorica</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>MF</countryCode><countryName>Saint Martin</countryName><zoneName>America/Marigot</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>MG</countryCode><countryName>Madagascar</countryName><zoneName>Indian/Antananarivo</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>MH</countryCode><countryName>Marshall Islands</countryName><zoneName>Pacific/Kwajalein</zoneName><gmtOffset>43200</gmtOffset><timestamp>1533612480</timestamp></zone><zone><countryCode>MH</countryCode><countryName>Marshall Islands</countryName><zoneName>Pacific/Majuro</zoneName><gmtOffset>43200</gmtOffset><timestamp>1533612480</timestamp></zone><zone><countryCode>MK</countryCode><countryName>Macedonia</countryName><zoneName>Europe/Skopje</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>ML</countryCode><countryName>Mali</countryName><zoneName>Africa/Bamako</zoneName><gmtOffset>0</gmtOffset><timestamp>1533569280</timestamp></zone><zone><countryCode>MM</countryCode><countryName>Myanmar</countryName><zoneName>Asia/Yangon</zoneName><gmtOffset>23400</gmtOffset><timestamp>1533592680</timestamp></zone><zone><countryCode>MN</countryCode><countryName>Mongolia</countryName><zoneName>Asia/Choibalsan</zoneName><gmtOffset>28800</gmtOffset><timestamp>1533598080</timestamp></zone><zone><countryCode>MN</countryCode><countryName>Mongolia</countryName><zoneName>Asia/Hovd</zoneName><gmtOffset>25200</gmtOffset><timestamp>1533594480</timestamp></zone><zone><countryCode>MN</countryCode><countryName>Mongolia</countryName><zoneName>Asia/Ulaanbaatar</zoneName><gmtOffset>28800</gmtOffset><timestamp>1533598080</timestamp></zone><zone><countryCode>MO</countryCode><countryName>Macao</countryName><zoneName>Asia/Macau</zoneName><gmtOffset>28800</gmtOffset><timestamp>1533598080</timestamp></zone><zone><countryCode>MP</countryCode><countryName>Northern Mariana Islands</countryName><zoneName>Pacific/Saipan</zoneName><gmtOffset>36000</gmtOffset><timestamp>1533605280</timestamp></zone><zone><countryCode>MQ</countryCode><countryName>Martinique</countryName><zoneName>America/Martinique</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>MR</countryCode><countryName>Mauritania</countryName><zoneName>Africa/Nouakchott</zoneName><gmtOffset>0</gmtOffset><timestamp>1533569280</timestamp></zone><zone><countryCode>MS</countryCode><countryName>Montserrat</countryName><zoneName>America/Montserrat</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>MT</countryCode><countryName>Malta</countryName><zoneName>Europe/Malta</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>MU</countryCode><countryName>Mauritius</countryName><zoneName>Indian/Mauritius</zoneName><gmtOffset>14400</gmtOffset><timestamp>1533583680</timestamp></zone><zone><countryCode>MV</countryCode><countryName>Maldives</countryName><zoneName>Indian/Maldives</zoneName><gmtOffset>18000</gmtOffset><timestamp>1533587280</timestamp></zone><zone><countryCode>MW</countryCode><countryName>Malawi</countryName><zoneName>Africa/Blantyre</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>MX</countryCode><countryName>Mexico</countryName><zoneName>America/Bahia_Banderas</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>MX</countryCode><countryName>Mexico</countryName><zoneName>America/Cancun</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>MX</countryCode><countryName>Mexico</countryName><zoneName>America/Chihuahua</zoneName><gmtOffset>-21600</gmtOffset><timestamp>1533547680</timestamp></zone><zone><countryCode>MX</countryCode><countryName>Mexico</countryName><zoneName>America/Hermosillo</zoneName><gmtOffset>-25200</gmtOffset><timestamp>1533544080</timestamp></zone><zone><countryCode>MX</countryCode><countryName>Mexico</countryName><zoneName>America/Matamoros</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>MX</countryCode><countryName>Mexico</countryName><zoneName>America/Mazatlan</zoneName><gmtOffset>-21600</gmtOffset><timestamp>1533547680</timestamp></zone><zone><countryCode>MX</countryCode><countryName>Mexico</countryName><zoneName>America/Merida</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>MX</countryCode><countryName>Mexico</countryName><zoneName>America/Mexico_City</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>MX</countryCode><countryName>Mexico</countryName><zoneName>America/Monterrey</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>MX</countryCode><countryName>Mexico</countryName><zoneName>America/Ojinaga</zoneName><gmtOffset>-21600</gmtOffset><timestamp>1533547680</timestamp></zone><zone><countryCode>MX</countryCode><countryName>Mexico</countryName><zoneName>America/Tijuana</zoneName><gmtOffset>-25200</gmtOffset><timestamp>1533544080</timestamp></zone><zone><countryCode>MY</countryCode><countryName>Malaysia</countryName><zoneName>Asia/Kuala_Lumpur</zoneName><gmtOffset>28800</gmtOffset><timestamp>1533598080</timestamp></zone><zone><countryCode>MY</countryCode><countryName>Malaysia</countryName><zoneName>Asia/Kuching</zoneName><gmtOffset>28800</gmtOffset><timestamp>1533598080</timestamp></zone><zone><countryCode>MZ</countryCode><countryName>Mozambique</countryName><zoneName>Africa/Maputo</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>NA</countryCode><countryName>Namibia</countryName><zoneName>Africa/Windhoek</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>NC</countryCode><countryName>New Caledonia</countryName><zoneName>Pacific/Noumea</zoneName><gmtOffset>39600</gmtOffset><timestamp>1533608880</timestamp></zone><zone><countryCode>NE</countryCode><countryName>Niger</countryName><zoneName>Africa/Niamey</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>NF</countryCode><countryName>Norfolk Island</countryName><zoneName>Pacific/Norfolk</zoneName><gmtOffset>39600</gmtOffset><timestamp>1533608880</timestamp></zone><zone><countryCode>NG</countryCode><countryName>Nigeria</countryName><zoneName>Africa/Lagos</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>NI</countryCode><countryName>Nicaragua</countryName><zoneName>America/Managua</zoneName><gmtOffset>-21600</gmtOffset><timestamp>1533547680</timestamp></zone><zone><countryCode>NL</countryCode><countryName>Netherlands</countryName><zoneName>Europe/Amsterdam</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>NO</countryCode><countryName>Norway</countryName><zoneName>Europe/Oslo</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>NP</countryCode><countryName>Nepal</countryName><zoneName>Asia/Kathmandu</zoneName><gmtOffset>20700</gmtOffset><timestamp>1533589980</timestamp></zone><zone><countryCode>NR</countryCode><countryName>Nauru</countryName><zoneName>Pacific/Nauru</zoneName><gmtOffset>43200</gmtOffset><timestamp>1533612480</timestamp></zone><zone><countryCode>NU</countryCode><countryName>Niue</countryName><zoneName>Pacific/Niue</zoneName><gmtOffset>-39600</gmtOffset><timestamp>1533529680</timestamp></zone><zone><countryCode>NZ</countryCode><countryName>New Zealand</countryName><zoneName>Pacific/Auckland</zoneName><gmtOffset>43200</gmtOffset><timestamp>1533612480</timestamp></zone><zone><countryCode>NZ</countryCode><countryName>New Zealand</countryName><zoneName>Pacific/Chatham</zoneName><gmtOffset>45900</gmtOffset><timestamp>1533615180</timestamp></zone><zone><countryCode>OM</countryCode><countryName>Oman</countryName><zoneName>Asia/Muscat</zoneName><gmtOffset>14400</gmtOffset><timestamp>1533583680</timestamp></zone><zone><countryCode>PA</countryCode><countryName>Panama</countryName><zoneName>America/Panama</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>PE</countryCode><countryName>Peru</countryName><zoneName>America/Lima</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>PF</countryCode><countryName>French Polynesia</countryName><zoneName>Pacific/Gambier</zoneName><gmtOffset>-32400</gmtOffset><timestamp>1533536880</timestamp></zone><zone><countryCode>PF</countryCode><countryName>French Polynesia</countryName><zoneName>Pacific/Marquesas</zoneName><gmtOffset>-34200</gmtOffset><timestamp>1533535080</timestamp></zone><zone><countryCode>PF</countryCode><countryName>French Polynesia</countryName><zoneName>Pacific/Tahiti</zoneName><gmtOffset>-36000</gmtOffset><timestamp>1533533280</timestamp></zone><zone><countryCode>PG</countryCode><countryName>Papua New Guinea</countryName><zoneName>Pacific/Bougainville</zoneName><gmtOffset>39600</gmtOffset><timestamp>1533608880</timestamp></zone><zone><countryCode>PG</countryCode><countryName>Papua New Guinea</countryName><zoneName>Pacific/Port_Moresby</zoneName><gmtOffset>36000</gmtOffset><timestamp>1533605280</timestamp></zone><zone><countryCode>PH</countryCode><countryName>Philippines</countryName><zoneName>Asia/Manila</zoneName><gmtOffset>28800</gmtOffset><timestamp>1533598080</timestamp></zone><zone><countryCode>PK</countryCode><countryName>Pakistan</countryName><zoneName>Asia/Karachi</zoneName><gmtOffset>18000</gmtOffset><timestamp>1533587280</timestamp></zone><zone><countryCode>PL</countryCode><countryName>Poland</countryName><zoneName>Europe/Warsaw</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>PM</countryCode><countryName>Saint Pierre and Miquelon</countryName><zoneName>America/Miquelon</zoneName><gmtOffset>-7200</gmtOffset><timestamp>1533562080</timestamp></zone><zone><countryCode>PN</countryCode><countryName>Pitcairn</countryName><zoneName>Pacific/Pitcairn</zoneName><gmtOffset>-28800</gmtOffset><timestamp>1533540480</timestamp></zone><zone><countryCode>PR</countryCode><countryName>Puerto Rico</countryName><zoneName>America/Puerto_Rico</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>PS</countryCode><countryName>Palestinian Territory</countryName><zoneName>Asia/Gaza</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>PS</countryCode><countryName>Palestinian Territory</countryName><zoneName>Asia/Hebron</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>PT</countryCode><countryName>Portugal</countryName><zoneName>Atlantic/Azores</zoneName><gmtOffset>0</gmtOffset><timestamp>1533569280</timestamp></zone><zone><countryCode>PT</countryCode><countryName>Portugal</countryName><zoneName>Atlantic/Madeira</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>PT</countryCode><countryName>Portugal</countryName><zoneName>Europe/Lisbon</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>PW</countryCode><countryName>Palau</countryName><zoneName>Pacific/Palau</zoneName><gmtOffset>32400</gmtOffset><timestamp>1533601680</timestamp></zone><zone><countryCode>PY</countryCode><countryName>Paraguay</countryName><zoneName>America/Asuncion</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>QA</countryCode><countryName>Qatar</countryName><zoneName>Asia/Qatar</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>RE</countryCode><countryName>Reunion</countryName><zoneName>Indian/Reunion</zoneName><gmtOffset>14400</gmtOffset><timestamp>1533583680</timestamp></zone><zone><countryCode>RO</countryCode><countryName>Romania</countryName><zoneName>Europe/Bucharest</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>RS</countryCode><countryName>Serbia</countryName><zoneName>Europe/Belgrade</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Asia/Anadyr</zoneName><gmtOffset>43200</gmtOffset><timestamp>1533612480</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Asia/Barnaul</zoneName><gmtOffset>25200</gmtOffset><timestamp>1533594480</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Asia/Chita</zoneName><gmtOffset>32400</gmtOffset><timestamp>1533601680</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Asia/Irkutsk</zoneName><gmtOffset>28800</gmtOffset><timestamp>1533598080</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Asia/Kamchatka</zoneName><gmtOffset>43200</gmtOffset><timestamp>1533612480</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Asia/Khandyga</zoneName><gmtOffset>32400</gmtOffset><timestamp>1533601680</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Asia/Krasnoyarsk</zoneName><gmtOffset>25200</gmtOffset><timestamp>1533594480</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Asia/Magadan</zoneName><gmtOffset>39600</gmtOffset><timestamp>1533608880</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Asia/Novokuznetsk</zoneName><gmtOffset>25200</gmtOffset><timestamp>1533594480</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Asia/Novosibirsk</zoneName><gmtOffset>25200</gmtOffset><timestamp>1533594480</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Asia/Omsk</zoneName><gmtOffset>21600</gmtOffset><timestamp>1533590880</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Asia/Sakhalin</zoneName><gmtOffset>39600</gmtOffset><timestamp>1533608880</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Asia/Srednekolymsk</zoneName><gmtOffset>39600</gmtOffset><timestamp>1533608880</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Asia/Tomsk</zoneName><gmtOffset>25200</gmtOffset><timestamp>1533594480</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Asia/Ust-Nera</zoneName><gmtOffset>36000</gmtOffset><timestamp>1533605280</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Asia/Vladivostok</zoneName><gmtOffset>36000</gmtOffset><timestamp>1533605280</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Asia/Yakutsk</zoneName><gmtOffset>32400</gmtOffset><timestamp>1533601680</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Asia/Yekaterinburg</zoneName><gmtOffset>18000</gmtOffset><timestamp>1533587280</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Europe/Astrakhan</zoneName><gmtOffset>14400</gmtOffset><timestamp>1533583680</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Europe/Kaliningrad</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Europe/Kirov</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Europe/Moscow</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Europe/Samara</zoneName><gmtOffset>14400</gmtOffset><timestamp>1533583680</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Europe/Saratov</zoneName><gmtOffset>14400</gmtOffset><timestamp>1533583680</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Europe/Simferopol</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Europe/Ulyanovsk</zoneName><gmtOffset>14400</gmtOffset><timestamp>1533583680</timestamp></zone><zone><countryCode>RU</countryCode><countryName>Russia</countryName><zoneName>Europe/Volgograd</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>RW</countryCode><countryName>Rwanda</countryName><zoneName>Africa/Kigali</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>SA</countryCode><countryName>Saudi Arabia</countryName><zoneName>Asia/Riyadh</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>SB</countryCode><countryName>Solomon Islands</countryName><zoneName>Pacific/Guadalcanal</zoneName><gmtOffset>39600</gmtOffset><timestamp>1533608880</timestamp></zone><zone><countryCode>SC</countryCode><countryName>Seychelles</countryName><zoneName>Indian/Mahe</zoneName><gmtOffset>14400</gmtOffset><timestamp>1533583680</timestamp></zone><zone><countryCode>SD</countryCode><countryName>Sudan</countryName><zoneName>Africa/Khartoum</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>SE</countryCode><countryName>Sweden</countryName><zoneName>Europe/Stockholm</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>SG</countryCode><countryName>Singapore</countryName><zoneName>Asia/Singapore</zoneName><gmtOffset>28800</gmtOffset><timestamp>1533598080</timestamp></zone><zone><countryCode>SH</countryCode><countryName>Saint Helena</countryName><zoneName>Atlantic/St_Helena</zoneName><gmtOffset>0</gmtOffset><timestamp>1533569280</timestamp></zone><zone><countryCode>SI</countryCode><countryName>Slovenia</countryName><zoneName>Europe/Ljubljana</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>SJ</countryCode><countryName>Svalbard and Jan Mayen</countryName><zoneName>Arctic/Longyearbyen</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>SK</countryCode><countryName>Slovakia</countryName><zoneName>Europe/Bratislava</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>SL</countryCode><countryName>Sierra Leone</countryName><zoneName>Africa/Freetown</zoneName><gmtOffset>0</gmtOffset><timestamp>1533569280</timestamp></zone><zone><countryCode>SM</countryCode><countryName>San Marino</countryName><zoneName>Europe/San_Marino</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>SN</countryCode><countryName>Senegal</countryName><zoneName>Africa/Dakar</zoneName><gmtOffset>0</gmtOffset><timestamp>1533569280</timestamp></zone><zone><countryCode>SO</countryCode><countryName>Somalia</countryName><zoneName>Africa/Mogadishu</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>SR</countryCode><countryName>Suriname</countryName><zoneName>America/Paramaribo</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>SS</countryCode><countryName>South Sudan</countryName><zoneName>Africa/Juba</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>ST</countryCode><countryName>Sao Tome and Principe</countryName><zoneName>Africa/Sao_Tome</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>SV</countryCode><countryName>El Salvador</countryName><zoneName>America/El_Salvador</zoneName><gmtOffset>-21600</gmtOffset><timestamp>1533547680</timestamp></zone><zone><countryCode>SX</countryCode><countryName>Sint Maarten</countryName><zoneName>America/Lower_Princes</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>SY</countryCode><countryName>Syria</countryName><zoneName>Asia/Damascus</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>SZ</countryCode><countryName>Swaziland</countryName><zoneName>Africa/Mbabane</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>TC</countryCode><countryName>Turks and Caicos Islands</countryName><zoneName>America/Grand_Turk</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>TD</countryCode><countryName>Chad</countryName><zoneName>Africa/Ndjamena</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>TF</countryCode><countryName>French Southern Territories</countryName><zoneName>Indian/Kerguelen</zoneName><gmtOffset>18000</gmtOffset><timestamp>1533587280</timestamp></zone><zone><countryCode>TG</countryCode><countryName>Togo</countryName><zoneName>Africa/Lome</zoneName><gmtOffset>0</gmtOffset><timestamp>1533569280</timestamp></zone><zone><countryCode>TH</countryCode><countryName>Thailand</countryName><zoneName>Asia/Bangkok</zoneName><gmtOffset>25200</gmtOffset><timestamp>1533594480</timestamp></zone><zone><countryCode>TJ</countryCode><countryName>Tajikistan</countryName><zoneName>Asia/Dushanbe</zoneName><gmtOffset>18000</gmtOffset><timestamp>1533587280</timestamp></zone><zone><countryCode>TK</countryCode><countryName>Tokelau</countryName><zoneName>Pacific/Fakaofo</zoneName><gmtOffset>46800</gmtOffset><timestamp>1533616080</timestamp></zone><zone><countryCode>TL</countryCode><countryName>East Timor</countryName><zoneName>Asia/Dili</zoneName><gmtOffset>32400</gmtOffset><timestamp>1533601680</timestamp></zone><zone><countryCode>TM</countryCode><countryName>Turkmenistan</countryName><zoneName>Asia/Ashgabat</zoneName><gmtOffset>18000</gmtOffset><timestamp>1533587280</timestamp></zone><zone><countryCode>TN</countryCode><countryName>Tunisia</countryName><zoneName>Africa/Tunis</zoneName><gmtOffset>3600</gmtOffset><timestamp>1533572880</timestamp></zone><zone><countryCode>TO</countryCode><countryName>Tonga</countryName><zoneName>Pacific/Tongatapu</zoneName><gmtOffset>46800</gmtOffset><timestamp>1533616080</timestamp></zone><zone><countryCode>TR</countryCode><countryName>Turkey</countryName><zoneName>Europe/Istanbul</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>TT</countryCode><countryName>Trinidad and Tobago</countryName><zoneName>America/Port_of_Spain</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>TV</countryCode><countryName>Tuvalu</countryName><zoneName>Pacific/Funafuti</zoneName><gmtOffset>43200</gmtOffset><timestamp>1533612480</timestamp></zone><zone><countryCode>TW</countryCode><countryName>Taiwan</countryName><zoneName>Asia/Taipei</zoneName><gmtOffset>28800</gmtOffset><timestamp>1533598080</timestamp></zone><zone><countryCode>TZ</countryCode><countryName>Tanzania</countryName><zoneName>Africa/Dar_es_Salaam</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>UA</countryCode><countryName>Ukraine</countryName><zoneName>Europe/Kiev</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>UA</countryCode><countryName>Ukraine</countryName><zoneName>Europe/Uzhgorod</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>UA</countryCode><countryName>Ukraine</countryName><zoneName>Europe/Zaporozhye</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>UG</countryCode><countryName>Uganda</countryName><zoneName>Africa/Kampala</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>UM</countryCode><countryName>United States Minor Outlying Islands</countryName><zoneName>Pacific/Midway</zoneName><gmtOffset>-39600</gmtOffset><timestamp>1533529680</timestamp></zone><zone><countryCode>UM</countryCode><countryName>United States Minor Outlying Islands</countryName><zoneName>Pacific/Wake</zoneName><gmtOffset>43200</gmtOffset><timestamp>1533612480</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Adak</zoneName><gmtOffset>-32400</gmtOffset><timestamp>1533536880</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Anchorage</zoneName><gmtOffset>-28800</gmtOffset><timestamp>1533540480</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Boise</zoneName><gmtOffset>-21600</gmtOffset><timestamp>1533547680</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Chicago</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Denver</zoneName><gmtOffset>-21600</gmtOffset><timestamp>1533547680</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Detroit</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Indiana/Indianapolis</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Indiana/Knox</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Indiana/Marengo</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Indiana/Petersburg</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Indiana/Tell_City</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Indiana/Vevay</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Indiana/Vincennes</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Indiana/Winamac</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Juneau</zoneName><gmtOffset>-28800</gmtOffset><timestamp>1533540480</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Kentucky/Louisville</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Kentucky/Monticello</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Los_Angeles</zoneName><gmtOffset>-25200</gmtOffset><timestamp>1533544080</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Menominee</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Metlakatla</zoneName><gmtOffset>-28800</gmtOffset><timestamp>1533540480</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/New_York</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Nome</zoneName><gmtOffset>-28800</gmtOffset><timestamp>1533540480</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/North_Dakota/Beulah</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/North_Dakota/Center</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/North_Dakota/New_Salem</zoneName><gmtOffset>-18000</gmtOffset><timestamp>1533551280</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Phoenix</zoneName><gmtOffset>-25200</gmtOffset><timestamp>1533544080</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Sitka</zoneName><gmtOffset>-28800</gmtOffset><timestamp>1533540480</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Yakutat</zoneName><gmtOffset>-28800</gmtOffset><timestamp>1533540480</timestamp></zone><zone><countryCode>US</countryCode><countryName>United States</countryName><zoneName>Pacific/Honolulu</zoneName><gmtOffset>-36000</gmtOffset><timestamp>1533533280</timestamp></zone><zone><countryCode>UY</countryCode><countryName>Uruguay</countryName><zoneName>America/Montevideo</zoneName><gmtOffset>-10800</gmtOffset><timestamp>1533558480</timestamp></zone><zone><countryCode>UZ</countryCode><countryName>Uzbekistan</countryName><zoneName>Asia/Samarkand</zoneName><gmtOffset>18000</gmtOffset><timestamp>1533587280</timestamp></zone><zone><countryCode>UZ</countryCode><countryName>Uzbekistan</countryName><zoneName>Asia/Tashkent</zoneName><gmtOffset>18000</gmtOffset><timestamp>1533587280</timestamp></zone><zone><countryCode>VA</countryCode><countryName>Vatican</countryName><zoneName>Europe/Vatican</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>VC</countryCode><countryName>Saint Vincent and the Grenadines</countryName><zoneName>America/St_Vincent</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>VE</countryCode><countryName>Venezuela</countryName><zoneName>America/Caracas</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>VG</countryCode><countryName>British Virgin Islands</countryName><zoneName>America/Tortola</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>VI</countryCode><countryName>U.S. Virgin Islands</countryName><zoneName>America/St_Thomas</zoneName><gmtOffset>-14400</gmtOffset><timestamp>1533554880</timestamp></zone><zone><countryCode>VN</countryCode><countryName>Vietnam</countryName><zoneName>Asia/Ho_Chi_Minh</zoneName><gmtOffset>25200</gmtOffset><timestamp>1533594480</timestamp></zone><zone><countryCode>VU</countryCode><countryName>Vanuatu</countryName><zoneName>Pacific/Efate</zoneName><gmtOffset>39600</gmtOffset><timestamp>1533608880</timestamp></zone><zone><countryCode>WF</countryCode><countryName>Wallis and Futuna</countryName><zoneName>Pacific/Wallis</zoneName><gmtOffset>43200</gmtOffset><timestamp>1533612480</timestamp></zone><zone><countryCode>WS</countryCode><countryName>Samoa</countryName><zoneName>Pacific/Apia</zoneName><gmtOffset>46800</gmtOffset><timestamp>1533616080</timestamp></zone><zone><countryCode>YE</countryCode><countryName>Yemen</countryName><zoneName>Asia/Aden</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>YT</countryCode><countryName>Mayotte</countryName><zoneName>Indian/Mayotte</zoneName><gmtOffset>10800</gmtOffset><timestamp>1533580080</timestamp></zone><zone><countryCode>ZA</countryCode><countryName>South Africa</countryName><zoneName>Africa/Johannesburg</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>ZM</countryCode><countryName>Zambia</countryName><zoneName>Africa/Lusaka</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone><zone><countryCode>ZW</countryCode><countryName>Zimbabwe</countryName><zoneName>Africa/Harare</zoneName><gmtOffset>7200</gmtOffset><timestamp>1533576480</timestamp></zone></zones></result>\n"
}
]
},
{
"name": "Get Time Zone",
"request": {
"method": "GET",
"header": [],
"body": {},
"url": {
"raw": "http://api.timezonedb.com/v2/get-time-zone?key={{key}}&by=",
"protocol": "http",
"host": [
"api",
"timezonedb",
"com"
],
"path": [
"v2",
"get-time-zone"
],
"query": [
{
"key": "key",
"value": "{{key}}",
"description": "Your unique API key you get after register your account."
},
{
"key": "format",
"value": "xml",
"description": "The response format from API. It can be either xml or json.",
"disabled": true
},
{
"key": "callback",
"value": null,
"description": "Use for JavaScript JSON callback.",
"disabled": true
},
{
"key": "fields",
"value": "all",
"description": "Customize the field to display in response. Use commas (\",\" without spaces) to separate the field names. \n\nFIELDS: countryCode, countryName, regionName, cityName, zoneName, abbreviation, gmtOffset, dst, dstStart, dstEnd, nextAbbreviation, timestamp, formatted ",
"disabled": true
},
{
"key": "by",
"value": "",
"description": "The method of lookup.\nzone - Lookup local time by using a time zone name.\nposition - Lookup local time by using latitude & longitude of a city."
},
{
"key": "zone",
"value": "",
"description": "A time zone abbreviation or time zone name. Required if lookup by zone method.",
"disabled": true
},
{
"key": "lat",
"value": null,
"description": "Latitude of a city. Required if lookup by position method.",
"disabled": true
},
{
"key": "lng",
"value": null,
"description": "Longitude of a city. Required if lookup by position method.",
"disabled": true
},
{
"key": "page",
"value": null,
"description": "Navigate to other page when result is more than 25 records.",
"disabled": true
},
{
"key": "time",
"value": "",
"description": "Unix time in UTC",
"disabled": true
}
]
},
"description": "Get local time of a city by its name, time zone, latitude & longtiude, or IP address."
},
"response": [
{
"id": "2e50e691-fed3-46b2-ba20-84abeb123df9",
"name": "Get current local time in Chicago, USA",
"originalRequest": {
"method": "GET",
"header": [],
"body": {},
"url": {
"raw": "http://api.timezonedb.com/v2/get-time-zone?key={{key}}&format=xml&by=zone&zone=America/Chicago",
"protocol": "http",
"host": [
"api",
"timezonedb",
"com"
],
"path": [
"v2",
"get-time-zone"
],
"query": [
{
"key": "key",
"value": "{{key}}",
"description": "Your unique API key you get after register your account."
},
{
"key": "format",
"value": "xml",
"description": "The response format from API. It can be either xml or json."
},
{
"key": "callback",
"value": null,
"description": "Use for JavaScript JSON callback.",
"disabled": true
},
{
"key": "fields",
"value": "all",
"description": "Customize the field to display in response. Use commas (\",\" without spaces) to separate the field names. \n\nFIELDS: countryCode, countryName, regionName, cityName, zoneName, abbreviation, gmtOffset, dst, dstStart, dstEnd, nextAbbreviation, timestamp, formatted ",
"disabled": true
},
{
"key": "by",
"value": "zone",
"description": "The method of lookup.\nzone - Lookup local time by using a time zone name.\nposition - Lookup local time by using latitude & longitude of a city."
},
{
"key": "zone",
"value": "America/Chicago",
"description": "A time zone abbreviation or time zone name. Required if lookup by zone method."
},
{
"key": "lat",
"value": null,
"description": "Latitude of a city. Required if lookup by position method.",
"disabled": true
},
{
"key": "lng",
"value": null,
"description": "Longitude of a city. Required if lookup by position method.",
"disabled": true
},
{
"key": "page",
"value": null,
"description": "Navigate to other page when result is more than 25 records.",
"disabled": true
},
{
"key": "time",
"value": null,
"description": "Unix time in UTC",
"disabled": true
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "xml",
"header": [
{
"key": "Connection",
"value": "keep-alive",
"name": "Connection",
"description": "Options that are desired for the connection"
},
{
"key": "Content-Type",
"value": "application/xml",
"name": "Content-Type",
"description": "The mime type of this content"
},
{
"key": "Date",
"value": "Mon, 06 Aug 2018 15:31:30 GMT",
"name": "Date",
"description": "The date and time that the message was sent"
},
{
"key": "Server",
"value": "nginx",
"name": "Server",
"description": "A name for the server"
},
{
"key": "Transfer-Encoding",
"value": "chunked",
"name": "Transfer-Encoding",
"description": "The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."
},
{
"key": "Via",
"value": "1.1 iad7-proxy-3.amazon.com:80 (Cisco-WSA/10.5.1-296)",
"name": "Via",
"description": "Informs the client of proxies through which the response was sent."
}
],
"cookie": [],
"body": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<result><status>OK</status><message/><countryCode>US</countryCode><countryName>United States</countryName><zoneName>America/Chicago</zoneName><abbreviation>CDT</abbreviation><gmtOffset>-18000</gmtOffset><dst>1</dst><dstStart>1520755200</dstStart><dstEnd>1541314799</dstEnd><nextAbbreviation>CST</nextAbbreviation><timestamp>1533551490</timestamp><formatted>2018-08-06 10:31:30</formatted></result>\n"
},
{
"id": "0d7d5f7f-983d-4f0f-b03f-5ed36a29d639",
"name": "Get current local time in Taipei, Taiwan when UTC is 24 December, 2015 11:50:55 PM",
"originalRequest": {
"method": "GET",
"header": [],
"body": {},
"url": {
"raw": "http://api.timezonedb.com/v2/get-time-zone?key={{key}}&format=xml&by=zone&zone=Asia/Taipei&time=1451001055",
"protocol": "http",
"host": [
"api",
"timezonedb",
"com"
],
"path": [
"v2",
"get-time-zone"
],
"query": [
{
"key": "key",
"value": "{{key}}",
"description": "Your unique API key you get after register your account."
},
{
"key": "format",
"value": "xml",
"description": "The response format from API. It can be either xml or json."
},
{
"key": "callback",
"value": null,
"description": "Use for JavaScript JSON callback.",
"disabled": true
},
{
"key": "fields",
"value": "all",
"description": "Customize the field to display in response. Use commas (\",\" without spaces) to separate the field names. \n\nFIELDS: countryCode, countryName, regionName, cityName, zoneName, abbreviation, gmtOffset, dst, dstStart, dstEnd, nextAbbreviation, timestamp, formatted ",
"disabled": true
},
{
"key": "by",
"value": "zone",
"description": "The method of lookup.\nzone - Lookup local time by using a time zone name.\nposition - Lookup local time by using latitude & longitude of a city."
},
{
"key": "zone",
"value": "Asia/Taipei",
"description": "A time zone abbreviation or time zone name. Required if lookup by zone method."
},
{
"key": "lat",
"value": null,
"description": "Latitude of a city. Required if lookup by position method.",
"disabled": true
},
{
"key": "lng",
"value": null,
"description": "Longitude of a city. Required if lookup by position method.",
"disabled": true
},
{
"key": "page",
"value": null,
"description": "Navigate to other page when result is more than 25 records.",
"disabled": true
},
{
"key": "time",
"value": "1451001055",
"description": "Unix time in UTC"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "xml",
"header": [
{
"key": "Connection",
"value": "keep-alive",
"name": "Connection",
"description": "Options that are desired for the connection"
},
{
"key": "Content-Type",
"value": "application/xml",
"name": "Content-Type",
"description": "The mime type of this content"
},
{
"key": "Date",
"value": "Mon, 06 Aug 2018 15:32:36 GMT",
"name": "Date",
"description": "The date and time that the message was sent"
},
{
"key": "Server",
"value": "nginx",
"name": "Server",
"description": "A name for the server"
},
{
"key": "Transfer-Encoding",
"value": "chunked",
"name": "Transfer-Encoding",
"description": "The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."
},
{
"key": "Via",
"value": "1.1 iad7-proxy-3.amazon.com:80 (Cisco-WSA/10.5.1-296)",
"name": "Via",
"description": "Informs the client of proxies through which the response was sent."
}
],
"cookie": [],
"body": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<result><status>OK</status><message/><countryCode>TW</countryCode><countryName>Taiwan</countryName><zoneName>Asia/Taipei</zoneName><abbreviation>CST</abbreviation><gmtOffset>28800</gmtOffset><dst>0</dst><dstStart>307551600</dstStart><dstEnd>0</dstEnd><nextAbbreviation/><timestamp>1451029855</timestamp><formatted>2015-12-25 07:50:55</formatted></result>\n"
}
]
},
{
"name": "Convert Time Zone",
"request": {
"method": "GET",
"header": [],
"body": {},
"url": {
"raw": "http://api.timezonedb.com/v2/convert-time-zone?key={{key}}&from=&to=",
"protocol": "http",
"host": [
"api",
"timezonedb",
"com"
],
"path": [
"v2",
"convert-time-zone"
],
"query": [
{
"key": "key",
"value": "{{key}}",
"description": "Your unique API key you get after register your account."
},
{
"key": "format",
"value": "xml",
"description": "The response format from API. It can be either xml or json.",
"disabled": true
},
{
"key": "callback",
"value": null,
"description": "Use for JavaScript JSON callback.",
"disabled": true
},
{
"key": "fields",
"value": "all",
"description": "Customize the field to display in response. Use commas (\",\" without spaces) to separate the field names. \n\nFIELDS: fromZoneName, fromAbbreviation, fromTimestamp, toZoneName, toAbbreviation, toTimestamp, offset",
"disabled": true
},
{
"key": "from",
"value": "",
"description": "A valid abbreviation or name of time zone to convert from."
},
{
"key": "to",
"value": "",
"description": "A valid abbreviation or name of time zone to convert to."
},
{
"key": "time",
"value": "",
"description": "Local unix time of the from time zone.",
"disabled": true
}
]
},
"description": "Convert timestamp between two different time zone."
},
"response": [
{
"id": "a927fa32-89af-4538-92c1-cd918e2dc9c5",
"name": "What is the time in Sydney, Australia when 01 June, 2016 03:00PM in Los Angeles, USA?",
"originalRequest": {
"method": "GET",
"header": [],
"body": {},
"url": {
"raw": "http://api.timezonedb.com/v2/convert-time-zone?key={{key}}&format=xml&from=America/Los_Angeles&to=Australia/Sydney&time=1464793200",
"protocol": "http",
"host": [
"api",
"timezonedb",
"com"
],
"path": [
"v2",
"convert-time-zone"
],
"query": [
{
"key": "key",
"value": "{{key}}",
"description": "Your unique API key you get after register your account."
},
{
"key": "format",
"value": "xml",
"description": "The response format from API. It can be either xml or json."
},
{
"key": "callback",
"value": null,
"description": "Use for JavaScript JSON callback.",
"disabled": true
},
{
"key": "fields",
"value": "all",
"description": "Customize the field to display in response. Use commas (\",\" without spaces) to separate the field names. \n\nFIELDS: fromZoneName, fromAbbreviation, fromTimestamp, toZoneName, toAbbreviation, toTimestamp, offset",
"disabled": true
},
{
"key": "from",
"value": "America/Los_Angeles",
"description": "A valid abbreviation or name of time zone to convert from."
},
{
"key": "to",
"value": "Australia/Sydney",
"description": "A valid abbreviation or name of time zone to convert to."
},
{
"key": "time",
"value": "1464793200",
"description": "Local unix time of the from time zone."
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "xml",
"header": [
{
"key": "Connection",
"value": "keep-alive",
"name": "Connection",
"description": "Options that are desired for the connection"
},
{
"key": "Content-Type",
"value": "application/xml",
"name": "Content-Type",
"description": "The mime type of this content"
},
{
"key": "Date",
"value": "Mon, 06 Aug 2018 15:34:23 GMT",
"name": "Date",
"description": "The date and time that the message was sent"
},
{
"key": "Server",
"value": "nginx",
"name": "Server",
"description": "A name for the server"
},
{
"key": "Transfer-Encoding",
"value": "chunked",
"name": "Transfer-Encoding",
"description": "The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."
},
{
"key": "Via",
"value": "1.1 iad7-proxy-3.amazon.com:80 (Cisco-WSA/10.5.1-296)",
"name": "Via",
"description": "Informs the client of proxies through which the response was sent."
}
],
"cookie": [],
"body": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<result><status>OK</status><message/><fromZoneName>America/Los_Angeles</fromZoneName><fromAbbreviation>PDT</fromAbbreviation><fromTimestamp>1464793200</fromTimestamp><toZoneName>Australia/Sydney</toZoneName><toAbbreviation>AEST</toAbbreviation><toTimestamp>1464854400</toTimestamp><offset>61200</offset></result>\n"
}
]
}
],
"event": [
{
"listen": "prerequest",
"script": {
"id": "ed37e1ef-fdbd-4b21-9bc7-7e1d9d91ad11",
"type": "text/javascript",
"exec": [
""
]
}
},
{
"listen": "test",
"script": {
"id": "0f11ae97-9b62-44c4-8fc4-88a1078d106e",
"type": "text/javascript",
"exec": [
""
]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment