├── .github └── workflows │ ├── check-for-updates.yml │ ├── publish.yml │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── LICENSE ├── MANIFEST.in ├── NEWS.md ├── README.rst ├── VERSION ├── bump_version.py ├── docs ├── conf.py ├── index.rst ├── maintaining.rst └── requirements.txt ├── licenses └── LICENSE_APACHE ├── news.d ├── 2020a.md ├── 2020b.md ├── 2020c.md ├── 2020d.md ├── 2020e.md ├── 2020f.md ├── 2021a.md ├── 2021b.md ├── 2021bpost.md ├── 2021c.md ├── 2021d.md ├── 2021e.md ├── 2022a.md ├── 2022b.md ├── 2022c.md ├── 2022d.md ├── 2022e.md ├── 2022f.md ├── 2022g.md ├── 2023a.md ├── 2023b.md ├── 2023c.md ├── 2023d.md ├── 2024a.md ├── 2024b.md ├── 2025a.md └── 2025b.md ├── pyproject.toml ├── setup.cfg ├── src └── tzdata │ ├── __init__.py │ ├── zoneinfo │ ├── Africa │ │ ├── Abidjan │ │ ├── Accra │ │ ├── Addis_Ababa │ │ ├── Algiers │ │ ├── Asmara │ │ ├── Asmera │ │ ├── Bamako │ │ ├── Bangui │ │ ├── Banjul │ │ ├── Bissau │ │ ├── Blantyre │ │ ├── Brazzaville │ │ ├── Bujumbura │ │ ├── Cairo │ │ ├── Casablanca │ │ ├── Ceuta │ │ ├── Conakry │ │ ├── Dakar │ │ ├── Dar_es_Salaam │ │ ├── Djibouti │ │ ├── Douala │ │ ├── El_Aaiun │ │ ├── Freetown │ │ ├── Gaborone │ │ ├── Harare │ │ ├── Johannesburg │ │ ├── Juba │ │ ├── Kampala │ │ ├── Khartoum │ │ ├── Kigali │ │ ├── Kinshasa │ │ ├── Lagos │ │ ├── Libreville │ │ ├── Lome │ │ ├── Luanda │ │ ├── Lubumbashi │ │ ├── Lusaka │ │ ├── Malabo │ │ ├── Maputo │ │ ├── Maseru │ │ ├── Mbabane │ │ ├── Mogadishu │ │ ├── Monrovia │ │ ├── Nairobi │ │ ├── Ndjamena │ │ ├── Niamey │ │ ├── Nouakchott │ │ ├── Ouagadougou │ │ ├── Porto-Novo │ │ ├── Sao_Tome │ │ ├── Timbuktu │ │ ├── Tripoli │ │ ├── Tunis │ │ ├── Windhoek │ │ └── __init__.py │ ├── America │ │ ├── Adak │ │ ├── Anchorage │ │ ├── Anguilla │ │ ├── Antigua │ │ ├── Araguaina │ │ ├── Argentina │ │ │ ├── Buenos_Aires │ │ │ ├── Catamarca │ │ │ ├── ComodRivadavia │ │ │ ├── Cordoba │ │ │ ├── Jujuy │ │ │ ├── La_Rioja │ │ │ ├── Mendoza │ │ │ ├── Rio_Gallegos │ │ │ ├── Salta │ │ │ ├── San_Juan │ │ │ ├── San_Luis │ │ │ ├── Tucuman │ │ │ ├── Ushuaia │ │ │ └── __init__.py │ │ ├── Aruba │ │ ├── Asuncion │ │ ├── Atikokan │ │ ├── Atka │ │ ├── Bahia │ │ ├── Bahia_Banderas │ │ ├── Barbados │ │ ├── Belem │ │ ├── Belize │ │ ├── Blanc-Sablon │ │ ├── Boa_Vista │ │ ├── Bogota │ │ ├── Boise │ │ ├── Buenos_Aires │ │ ├── Cambridge_Bay │ │ ├── Campo_Grande │ │ ├── Cancun │ │ ├── Caracas │ │ ├── Catamarca │ │ ├── Cayenne │ │ ├── Cayman │ │ ├── Chicago │ │ ├── Chihuahua │ │ ├── Ciudad_Juarez │ │ ├── Coral_Harbour │ │ ├── Cordoba │ │ ├── Costa_Rica │ │ ├── Coyhaique │ │ ├── Creston │ │ ├── Cuiaba │ │ ├── Curacao │ │ ├── Danmarkshavn │ │ ├── Dawson │ │ ├── Dawson_Creek │ │ ├── Denver │ │ ├── Detroit │ │ ├── Dominica │ │ ├── Edmonton │ │ ├── Eirunepe │ │ ├── El_Salvador │ │ ├── Ensenada │ │ ├── Fort_Nelson │ │ ├── Fort_Wayne │ │ ├── Fortaleza │ │ ├── Glace_Bay │ │ ├── Godthab │ │ ├── Goose_Bay │ │ ├── Grand_Turk │ │ ├── Grenada │ │ ├── Guadeloupe │ │ ├── Guatemala │ │ ├── Guayaquil │ │ ├── Guyana │ │ ├── Halifax │ │ ├── Havana │ │ ├── Hermosillo │ │ ├── Indiana │ │ │ ├── Indianapolis │ │ │ ├── Knox │ │ │ ├── Marengo │ │ │ ├── Petersburg │ │ │ ├── Tell_City │ │ │ ├── Vevay │ │ │ ├── Vincennes │ │ │ ├── Winamac │ │ │ └── __init__.py │ │ ├── Indianapolis │ │ ├── Inuvik │ │ ├── Iqaluit │ │ ├── Jamaica │ │ ├── Jujuy │ │ ├── Juneau │ │ ├── Kentucky │ │ │ ├── Louisville │ │ │ ├── Monticello │ │ │ └── __init__.py │ │ ├── Knox_IN │ │ ├── Kralendijk │ │ ├── La_Paz │ │ ├── Lima │ │ ├── Los_Angeles │ │ ├── Louisville │ │ ├── Lower_Princes │ │ ├── Maceio │ │ ├── Managua │ │ ├── Manaus │ │ ├── Marigot │ │ ├── Martinique │ │ ├── Matamoros │ │ ├── Mazatlan │ │ ├── Mendoza │ │ ├── Menominee │ │ ├── Merida │ │ ├── Metlakatla │ │ ├── Mexico_City │ │ ├── Miquelon │ │ ├── Moncton │ │ ├── Monterrey │ │ ├── Montevideo │ │ ├── Montreal │ │ ├── Montserrat │ │ ├── Nassau │ │ ├── New_York │ │ ├── Nipigon │ │ ├── Nome │ │ ├── Noronha │ │ ├── North_Dakota │ │ │ ├── Beulah │ │ │ ├── Center │ │ │ ├── New_Salem │ │ │ └── __init__.py │ │ ├── Nuuk │ │ ├── Ojinaga │ │ ├── Panama │ │ ├── Pangnirtung │ │ ├── Paramaribo │ │ ├── Phoenix │ │ ├── Port-au-Prince │ │ ├── Port_of_Spain │ │ ├── Porto_Acre │ │ ├── Porto_Velho │ │ ├── Puerto_Rico │ │ ├── Punta_Arenas │ │ ├── Rainy_River │ │ ├── Rankin_Inlet │ │ ├── Recife │ │ ├── Regina │ │ ├── Resolute │ │ ├── Rio_Branco │ │ ├── Rosario │ │ ├── Santa_Isabel │ │ ├── Santarem │ │ ├── Santiago │ │ ├── Santo_Domingo │ │ ├── Sao_Paulo │ │ ├── Scoresbysund │ │ ├── Shiprock │ │ ├── Sitka │ │ ├── St_Barthelemy │ │ ├── St_Johns │ │ ├── St_Kitts │ │ ├── St_Lucia │ │ ├── St_Thomas │ │ ├── St_Vincent │ │ ├── Swift_Current │ │ ├── Tegucigalpa │ │ ├── Thule │ │ ├── Thunder_Bay │ │ ├── Tijuana │ │ ├── Toronto │ │ ├── Tortola │ │ ├── Vancouver │ │ ├── Virgin │ │ ├── Whitehorse │ │ ├── Winnipeg │ │ ├── Yakutat │ │ ├── Yellowknife │ │ └── __init__.py │ ├── Antarctica │ │ ├── Casey │ │ ├── Davis │ │ ├── DumontDUrville │ │ ├── Macquarie │ │ ├── Mawson │ │ ├── McMurdo │ │ ├── Palmer │ │ ├── Rothera │ │ ├── South_Pole │ │ ├── Syowa │ │ ├── Troll │ │ ├── Vostok │ │ └── __init__.py │ ├── Arctic │ │ ├── Longyearbyen │ │ └── __init__.py │ ├── Asia │ │ ├── Aden │ │ ├── Almaty │ │ ├── Amman │ │ ├── Anadyr │ │ ├── Aqtau │ │ ├── Aqtobe │ │ ├── Ashgabat │ │ ├── Ashkhabad │ │ ├── Atyrau │ │ ├── Baghdad │ │ ├── Bahrain │ │ ├── Baku │ │ ├── Bangkok │ │ ├── Barnaul │ │ ├── Beirut │ │ ├── Bishkek │ │ ├── Brunei │ │ ├── Calcutta │ │ ├── Chita │ │ ├── Choibalsan │ │ ├── Chongqing │ │ ├── Chungking │ │ ├── Colombo │ │ ├── Dacca │ │ ├── Damascus │ │ ├── Dhaka │ │ ├── Dili │ │ ├── Dubai │ │ ├── Dushanbe │ │ ├── Famagusta │ │ ├── Gaza │ │ ├── Harbin │ │ ├── Hebron │ │ ├── Ho_Chi_Minh │ │ ├── Hong_Kong │ │ ├── Hovd │ │ ├── Irkutsk │ │ ├── Istanbul │ │ ├── Jakarta │ │ ├── Jayapura │ │ ├── Jerusalem │ │ ├── Kabul │ │ ├── Kamchatka │ │ ├── Karachi │ │ ├── Kashgar │ │ ├── Kathmandu │ │ ├── Katmandu │ │ ├── Khandyga │ │ ├── Kolkata │ │ ├── Krasnoyarsk │ │ ├── Kuala_Lumpur │ │ ├── Kuching │ │ ├── Kuwait │ │ ├── Macao │ │ ├── Macau │ │ ├── Magadan │ │ ├── Makassar │ │ ├── Manila │ │ ├── Muscat │ │ ├── Nicosia │ │ ├── Novokuznetsk │ │ ├── Novosibirsk │ │ ├── Omsk │ │ ├── Oral │ │ ├── Phnom_Penh │ │ ├── Pontianak │ │ ├── Pyongyang │ │ ├── Qatar │ │ ├── Qostanay │ │ ├── Qyzylorda │ │ ├── Rangoon │ │ ├── Riyadh │ │ ├── Saigon │ │ ├── Sakhalin │ │ ├── Samarkand │ │ ├── Seoul │ │ ├── Shanghai │ │ ├── Singapore │ │ ├── Srednekolymsk │ │ ├── Taipei │ │ ├── Tashkent │ │ ├── Tbilisi │ │ ├── Tehran │ │ ├── Tel_Aviv │ │ ├── Thimbu │ │ ├── Thimphu │ │ ├── Tokyo │ │ ├── Tomsk │ │ ├── Ujung_Pandang │ │ ├── Ulaanbaatar │ │ ├── Ulan_Bator │ │ ├── Urumqi │ │ ├── Ust-Nera │ │ ├── Vientiane │ │ ├── Vladivostok │ │ ├── Yakutsk │ │ ├── Yangon │ │ ├── Yekaterinburg │ │ ├── Yerevan │ │ └── __init__.py │ ├── Atlantic │ │ ├── Azores │ │ ├── Bermuda │ │ ├── Canary │ │ ├── Cape_Verde │ │ ├── Faeroe │ │ ├── Faroe │ │ ├── Jan_Mayen │ │ ├── Madeira │ │ ├── Reykjavik │ │ ├── South_Georgia │ │ ├── St_Helena │ │ ├── Stanley │ │ └── __init__.py │ ├── Australia │ │ ├── ACT │ │ ├── Adelaide │ │ ├── Brisbane │ │ ├── Broken_Hill │ │ ├── Canberra │ │ ├── Currie │ │ ├── Darwin │ │ ├── Eucla │ │ ├── Hobart │ │ ├── LHI │ │ ├── Lindeman │ │ ├── Lord_Howe │ │ ├── Melbourne │ │ ├── NSW │ │ ├── North │ │ ├── Perth │ │ ├── Queensland │ │ ├── South │ │ ├── Sydney │ │ ├── Tasmania │ │ ├── Victoria │ │ ├── West │ │ ├── Yancowinna │ │ └── __init__.py │ ├── Brazil │ │ ├── Acre │ │ ├── DeNoronha │ │ ├── East │ │ ├── West │ │ └── __init__.py │ ├── CET │ ├── CST6CDT │ ├── Canada │ │ ├── Atlantic │ │ ├── Central │ │ ├── Eastern │ │ ├── Mountain │ │ ├── Newfoundland │ │ ├── Pacific │ │ ├── Saskatchewan │ │ ├── Yukon │ │ └── __init__.py │ ├── Chile │ │ ├── Continental │ │ ├── EasterIsland │ │ └── __init__.py │ ├── Cuba │ ├── EET │ ├── EST │ ├── EST5EDT │ ├── Egypt │ ├── Eire │ ├── Etc │ │ ├── GMT │ │ ├── GMT+0 │ │ ├── GMT+1 │ │ ├── GMT+10 │ │ ├── GMT+11 │ │ ├── GMT+12 │ │ ├── GMT+2 │ │ ├── GMT+3 │ │ ├── GMT+4 │ │ ├── GMT+5 │ │ ├── GMT+6 │ │ ├── GMT+7 │ │ ├── GMT+8 │ │ ├── GMT+9 │ │ ├── GMT-0 │ │ ├── GMT-1 │ │ ├── GMT-10 │ │ ├── GMT-11 │ │ ├── GMT-12 │ │ ├── GMT-13 │ │ ├── GMT-14 │ │ ├── GMT-2 │ │ ├── GMT-3 │ │ ├── GMT-4 │ │ ├── GMT-5 │ │ ├── GMT-6 │ │ ├── GMT-7 │ │ ├── GMT-8 │ │ ├── GMT-9 │ │ ├── GMT0 │ │ ├── Greenwich │ │ ├── UCT │ │ ├── UTC │ │ ├── Universal │ │ ├── Zulu │ │ └── __init__.py │ ├── Europe │ │ ├── Amsterdam │ │ ├── Andorra │ │ ├── Astrakhan │ │ ├── Athens │ │ ├── Belfast │ │ ├── Belgrade │ │ ├── Berlin │ │ ├── Bratislava │ │ ├── Brussels │ │ ├── Bucharest │ │ ├── Budapest │ │ ├── Busingen │ │ ├── Chisinau │ │ ├── Copenhagen │ │ ├── Dublin │ │ ├── Gibraltar │ │ ├── Guernsey │ │ ├── Helsinki │ │ ├── Isle_of_Man │ │ ├── Istanbul │ │ ├── Jersey │ │ ├── Kaliningrad │ │ ├── Kiev │ │ ├── Kirov │ │ ├── Kyiv │ │ ├── Lisbon │ │ ├── Ljubljana │ │ ├── London │ │ ├── Luxembourg │ │ ├── Madrid │ │ ├── Malta │ │ ├── Mariehamn │ │ ├── Minsk │ │ ├── Monaco │ │ ├── Moscow │ │ ├── Nicosia │ │ ├── Oslo │ │ ├── Paris │ │ ├── Podgorica │ │ ├── Prague │ │ ├── Riga │ │ ├── Rome │ │ ├── Samara │ │ ├── San_Marino │ │ ├── Sarajevo │ │ ├── Saratov │ │ ├── Simferopol │ │ ├── Skopje │ │ ├── Sofia │ │ ├── Stockholm │ │ ├── Tallinn │ │ ├── Tirane │ │ ├── Tiraspol │ │ ├── Ulyanovsk │ │ ├── Uzhgorod │ │ ├── Vaduz │ │ ├── Vatican │ │ ├── Vienna │ │ ├── Vilnius │ │ ├── Volgograd │ │ ├── Warsaw │ │ ├── Zagreb │ │ ├── Zaporozhye │ │ ├── Zurich │ │ └── __init__.py │ ├── Factory │ ├── GB │ ├── GB-Eire │ ├── GMT │ ├── GMT+0 │ ├── GMT-0 │ ├── GMT0 │ ├── Greenwich │ ├── HST │ ├── Hongkong │ ├── Iceland │ ├── Indian │ │ ├── Antananarivo │ │ ├── Chagos │ │ ├── Christmas │ │ ├── Cocos │ │ ├── Comoro │ │ ├── Kerguelen │ │ ├── Mahe │ │ ├── Maldives │ │ ├── Mauritius │ │ ├── Mayotte │ │ ├── Reunion │ │ └── __init__.py │ ├── Iran │ ├── Israel │ ├── Jamaica │ ├── Japan │ ├── Kwajalein │ ├── Libya │ ├── MET │ ├── MST │ ├── MST7MDT │ ├── Mexico │ │ ├── BajaNorte │ │ ├── BajaSur │ │ ├── General │ │ └── __init__.py │ ├── NZ │ ├── NZ-CHAT │ ├── Navajo │ ├── PRC │ ├── PST8PDT │ ├── Pacific │ │ ├── Apia │ │ ├── Auckland │ │ ├── Bougainville │ │ ├── Chatham │ │ ├── Chuuk │ │ ├── Easter │ │ ├── Efate │ │ ├── Enderbury │ │ ├── Fakaofo │ │ ├── Fiji │ │ ├── Funafuti │ │ ├── Galapagos │ │ ├── Gambier │ │ ├── Guadalcanal │ │ ├── Guam │ │ ├── Honolulu │ │ ├── Johnston │ │ ├── Kanton │ │ ├── Kiritimati │ │ ├── Kosrae │ │ ├── Kwajalein │ │ ├── Majuro │ │ ├── Marquesas │ │ ├── Midway │ │ ├── Nauru │ │ ├── Niue │ │ ├── Norfolk │ │ ├── Noumea │ │ ├── Pago_Pago │ │ ├── Palau │ │ ├── Pitcairn │ │ ├── Pohnpei │ │ ├── Ponape │ │ ├── Port_Moresby │ │ ├── Rarotonga │ │ ├── Saipan │ │ ├── Samoa │ │ ├── Tahiti │ │ ├── Tarawa │ │ ├── Tongatapu │ │ ├── Truk │ │ ├── Wake │ │ ├── Wallis │ │ ├── Yap │ │ └── __init__.py │ ├── Poland │ ├── Portugal │ ├── ROC │ ├── ROK │ ├── Singapore │ ├── Turkey │ ├── UCT │ ├── US │ │ ├── Alaska │ │ ├── Aleutian │ │ ├── Arizona │ │ ├── Central │ │ ├── East-Indiana │ │ ├── Eastern │ │ ├── Hawaii │ │ ├── Indiana-Starke │ │ ├── Michigan │ │ ├── Mountain │ │ ├── Pacific │ │ ├── Samoa │ │ └── __init__.py │ ├── UTC │ ├── Universal │ ├── W-SU │ ├── WET │ ├── Zulu │ ├── __init__.py │ ├── iso3166.tab │ ├── leapseconds │ ├── tzdata.zi │ ├── zone.tab │ ├── zone1970.tab │ └── zonenow.tab │ └── zones ├── tag_release.sh ├── templates └── __init__.py.in ├── tests ├── test_contents.py └── test_version.py ├── tox.ini └── update.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- 1 | # This workflow is triggered two ways: 2 | # 3 | # 1. When a tag is created, the workflow will upload the package to 4 | # test.pypi.org. 5 | # 2. When a release is made, the workflow will upload the package to pypi.org. 6 | # 7 | # It is done this way until PyPI has draft reviews, to allow for a two-stage 8 | # upload with a chance for manual intervention before the final publication. 9 | name: Upload package 10 | 11 | on: 12 | release: 13 | types: [created] 14 | push: 15 | tags: 16 | - '*' 17 | 18 | jobs: 19 | deploy: 20 | runs-on: ubuntu-latest 21 | steps: 22 | - uses: actions/checkout@v2 23 | - name: Set up Python 24 | uses: actions/setup-python@v2 25 | with: 26 | python-version: '3.x' 27 | - name: Install dependencies 28 | run: | 29 | python -m pip install --upgrade pip 30 | pip install -U tox 31 | - name: Create tox environments 32 | run: | 33 | tox -p -e py,build,release --notest 34 | - name: Run tests 35 | run: | 36 | tox -e py 37 | - name: Build package 38 | run: | 39 | tox -e build 40 | - name: Publish package 41 | env: 42 | TWINE_USERNAME: "__token__" 43 | run: | 44 | if [[ "$GITHUB_EVENT_NAME" == "push" ]]; then 45 | export TWINE_REPOSITORY_URL="https://test.pypi.org/legacy/" 46 | export TWINE_PASSWORD="${{ secrets.TEST_PYPI_UPLOAD_TOKEN }}" 47 | elif [[ "$GITHUB_EVENT_NAME" == "release" ]]; then 48 | export TWINE_REPOSITORY="pypi" 49 | export TWINE_PASSWORD="${{ secrets.PYPI_UPLOAD_TOKEN }}" 50 | else 51 | echo "Unknown event name: ${GITHUB_EVENT_NAME}" 52 | exit 1 53 | fi 54 | 55 | tox -e release 56 | -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- 1 | name: tzdata contents 2 | 3 | on: [push, pull_request, workflow_dispatch] 4 | 5 | jobs: 6 | tests: 7 | 8 | runs-on: ${{ matrix.os }} 9 | strategy: 10 | fail-fast: false 11 | matrix: 12 | python-version: ["2.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] 13 | os: ["ubuntu-latest", "windows-latest", "macos-latest"] 14 | exclude: 15 | - python-version: "2.7" 16 | os: "windows-latest" 17 | - python-version: "2.7" 18 | os: "macos-latest" 19 | - python-version: "2.7" 20 | os: "ubuntu-latest" 21 | include: 22 | - python-version: "2.7" 23 | os: "ubuntu-20.04" 24 | env: 25 | TOXENV: py 26 | 27 | steps: 28 | - uses: actions/checkout@v3 29 | - if: ${{ matrix.python-version == '2.7' }} 30 | run: | 31 | sudo apt-get install python-is-python2 32 | curl -sSL https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip.py 33 | python get-pip.py 34 | - if: ${{ matrix.python-version != '2.7' }} 35 | name: ${{ matrix.python-version }} - ${{ matrix.os }} 36 | uses: actions/setup-python@v4 37 | with: 38 | python-version: ${{ matrix.python-version }} 39 | allow-prereleases: true 40 | - name: Install dependencies 41 | run: | 42 | python -m pip install --upgrade pip 43 | python -m pip install --upgrade tox 44 | - name: Run tests 45 | run: | 46 | tox 47 | 48 | other: 49 | runs-on: "ubuntu-latest" 50 | strategy: 51 | matrix: 52 | toxenv: ["build", "precommit", "typing", "docs"] 53 | env: 54 | TOXENV: ${{ matrix.toxenv }} 55 | 56 | steps: 57 | - uses: actions/checkout@v3 58 | - name: ${{ matrix.toxenv }} 59 | uses: actions/setup-python@v4 60 | with: 61 | python-version: "3.x" 62 | - name: Install tox 63 | run: | 64 | python -m pip install --upgrade pip 65 | python -m pip install --upgrade tox 66 | - name: Run action 67 | run: | 68 | if [[ $TOXENV == "docs" ]]; then 69 | tox -- -j auto -bhtml -W -n -a --keep-going 70 | else 71 | tox 72 | fi 73 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | 5 | # Distribution / packaging 6 | build/ 7 | dist/ 8 | *.egg-info/ 9 | .eggs 10 | 11 | # Sphinx documentation 12 | docs/_build/ 13 | docs/_output/ 14 | 15 | # Testing 16 | .cache 17 | .hypothesis_cache 18 | .mypy_cache 19 | .pytest_cache 20 | .tox 21 | .pytype 22 | 23 | # Temporary files 24 | tmp/ 25 | 26 | venv/ 27 | .venv/ 28 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | repos: 2 | - repo: https://github.com/psf/black 3 | rev: 24.10.0 4 | hooks: 5 | - id: black 6 | language_version: "python3.12" 7 | 8 | - repo: https://github.com/pre-commit/mirrors-isort 9 | rev: v5.10.1 10 | hooks: 11 | - id: isort 12 | additional_dependencies: [toml] 13 | language_version: "python3.12" 14 | 15 | - repo: https://github.com/pre-commit/pre-commit-hooks 16 | rev: v5.0.0 17 | hooks: 18 | - id: trailing-whitespace 19 | - id: debug-statements 20 | 21 | - repo: https://github.com/asottile/setup-cfg-fmt 22 | rev: v2.7.0 23 | hooks: 24 | - id: setup-cfg-fmt 25 | -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- 1 | version: 2 # Required in order to install with pip 2 | 3 | build: 4 | os: "ubuntu-22.04" 5 | tools: 6 | python: "3.11" 7 | 8 | sphinx: 9 | configuration: "docs/conf.py" 10 | 11 | python: 12 | install: 13 | - method: "pip" 14 | path: "." 15 | - requirements: docs/requirements.txt 16 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache Software License 2.0 2 | 3 | Copyright (c) 2020, Paul Ganssle (Google) 4 | 5 | Licensed under the Apache License, Version 2.0 (the "License"); 6 | you may not use this file except in compliance with the License. 7 | You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | # All the stuff to include 2 | include VERSION 3 | include tox.ini 4 | include LICENSE *.md *.rst *.toml *.yml *.yaml *.ini *.sh *.cfg 5 | recursive-include licenses * 6 | recursive-include src/tzdata * 7 | recursive-include templates * 8 | graft .github 9 | 10 | recursive-include tests *.py 11 | 12 | # Documentation 13 | recursive-include docs *.png 14 | recursive-include docs *.svg 15 | recursive-include docs *.py 16 | recursive-include docs *.rst 17 | prune docs/_build 18 | prune docs/_output 19 | 20 | # Files and directories incidentally here 21 | prune build/ 22 | prune dist/ 23 | prune tmp/ 24 | prune src/*.egg-info 25 | global-exclude *.pyc *.pyo 26 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | tzdata: Python package providing IANA time zone data 2 | ==================================================== 3 | 4 | This is a Python package containing ``zic``-compiled binaries for the IANA time 5 | zone database. It is intended to be a fallback for systems that do not have 6 | system time zone data installed (or don't have it installed in a standard 7 | location), as a part of `PEP 615 `_ 8 | 9 | This repository generates a ``pip``-installable package, published on PyPI as 10 | `tzdata `_. 11 | 12 | For more information, see `the documentation `_. 13 | -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2025.2 -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- 1 | # Configuration file for the Sphinx documentation builder. 2 | # 3 | # This file only contains a selection of the most common options. For a full 4 | # list see the documentation: 5 | # https://www.sphinx-doc.org/en/master/usage/configuration.html 6 | 7 | import sphinx_bootstrap_theme 8 | 9 | import tzdata 10 | 11 | # -- Project information ----------------------------------------------------- 12 | 13 | project = "tzdata" 14 | copyright = "2020, Python Software Foundation" 15 | author = "Python Software Foundation" 16 | version = tzdata.__version__ 17 | 18 | 19 | # -- General configuration --------------------------------------------------- 20 | 21 | # Add any Sphinx extension module names here, as strings. They can be 22 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom 23 | # ones. 24 | extensions = ["sphinx.ext.intersphinx"] 25 | 26 | # Add any paths that contain templates here, relative to this directory. 27 | templates_path = ["_templates"] 28 | 29 | # List of patterns, relative to source directory, that match files and 30 | # directories to ignore when looking for source files. 31 | # This pattern also affects html_static_path and html_extra_path. 32 | exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] 33 | 34 | 35 | # -- Options for HTML output ------------------------------------------------- 36 | 37 | # The theme to use for HTML and HTML Help pages. See the documentation for 38 | # a list of builtin themes. 39 | # 40 | html_theme = "bootstrap" 41 | html_theme_path = sphinx_bootstrap_theme.get_html_theme_path() 42 | html_theme_options = { 43 | "bootswatch_theme": "cosmo", 44 | } 45 | 46 | # For cross-links to other documentation 47 | intersphinx_mapping = { 48 | "python": ("https://docs.python.org/3", None), 49 | "dateutil": ("https://dateutil.readthedocs.io/en/stable/", None), 50 | } 51 | -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx>=3.0.0 2 | sphinx_bootstrap_theme 3 | -------------------------------------------------------------------------------- /news.d/2020a.md: -------------------------------------------------------------------------------- 1 | # Version 2020.1 2 | Upstream version 2020a released 2020-04-23T23:03:47+00:00 3 | 4 | ## Briefly: 5 | 6 | Morocco springs forward on 2020-05-31, not 2020-05-24. Canada's Yukon advanced 7 | to -07 year-round on 2020-03-08. America/Nuuk renamed from America/Godthab. zic 8 | now supports expiration dates for leap second lists. 9 | 10 | ## Changes to future timestamps 11 | 12 | Morocco's second spring-forward transition in 2020 will be May 31, not May 24 as 13 | predicted earlier. (Thanks to Semlali Naoufal.) Adjust future-year predictions 14 | to use the first Sunday after the day after Ramadan, not the first Sunday after 15 | Ramadan. 16 | 17 | Canada's Yukon, represented by America/Whitehorse and America/Dawson, advanced 18 | to -07 year-round, beginning with its spring-forward transition on 2020-03-08, 19 | and will not fall back on 2020-11-01. Although a government press release calls 20 | this "permanent Pacific Daylight Saving Time", we prefer MST for consistency 21 | with nearby Dawson Creek, Creston, and Fort Nelson. (Thanks to Tim Parenti.) 22 | 23 | ## Changes to past timestamps 24 | 25 | Shanghai observed DST in 1919. (Thanks to Phake Nick.) 26 | 27 | ## Changes to timezone identifiers 28 | 29 | To reflect current usage in English better, America/Godthab has been renamed to 30 | America/Nuuk. A backwards-compatibility link remains for the old name. 31 | 32 | ## Changes to commentary 33 | 34 | The Îles-de-la-Madeleine and the Listuguj reserve are noted as following 35 | America/Halifax, and comments about Yukon's "south" and "north" have been 36 | corrected to say "east" and "west". (Thanks to Jeffery Nichols.) 37 | -------------------------------------------------------------------------------- /news.d/2020b.md: -------------------------------------------------------------------------------- 1 | # Version 2020.2 2 | Upstream version 2020b released 2020-10-07T01:35:04+00:00 3 | 4 | ## Briefly: 5 | 6 | Revised predictions for Morocco's changes starting in 2023. Canada's Yukon 7 | changes to -07 on 2020-11-01, not 2020-03-08. Macquarie Island has stayed in 8 | sync with Tasmania since 2011. Casey, Antarctica is at +08 in winter and +11 in 9 | summer. zic no longer supports -y, nor the TYPE field of Rules. 10 | 11 | ## Changes to future timestamps 12 | 13 | Morocco's spring-forward after Ramadan is now predicted to occur no sooner than 14 | two days after Ramadan, instead of one day. (Thanks to Milamber.) The first 15 | altered prediction is for 2023, now predicted to spring-forward on April 30 16 | instead of April 23. 17 | 18 | ## Changes to past and future timestamps 19 | 20 | Casey Station, Antarctica has been using +08 in winter and +11 in summer since 21 | 2018. The most recent transition from +08 to +11 was 2020-10-04 00:01. Also, 22 | Macquarie Island has been staying in sync with Tasmania since 2011. (Thanks to 23 | Steffen Thorsen.) 24 | 25 | ## Changes to past and future time zone abbreviations and DST flags 26 | 27 | Canada's Yukon, represented by America/Whitehorse and America/Dawson, changes 28 | its time zone rules from -08/-07 to permanent -07 on 2020-11-01, not on 29 | 2020-03-08 as 2020a had it. This change affects only the time zone abbreviation 30 | (MST vs PDT) and daylight saving flag for the period between the two dates. 31 | (Thanks to Andrew G. Smith.) 32 | 33 | ## Changes to past timestamps 34 | 35 | Correct several transitions for Hungary for 1918/1983. For example, the 36 | 1983-09-25 fall-back was at 01:00, not 03:00. (Thanks to Géza Nyáry.) Also, the 37 | 1890 transition to standard time was on 11-01, not 10-01 (thanks to Michael 38 | Deckers). 39 | 40 | The 1891 French transition was on March 16, not March 15. The 1911-03-11 French 41 | transition was at midnight, not a minute later. Monaco's transitions were on 42 | 1892-06-01 and 1911-03-29, not 1891-03-15 and 1911-03-11. (Thanks to Michael 43 | Deckers.) 44 | 45 | ## Changes to documentation and commentary 46 | 47 | The long-obsolete files pacificnew, systemv, and yearistype.sh have been removed 48 | from the distribution. (Thanks to Tim Parenti.) 49 | -------------------------------------------------------------------------------- /news.d/2020c.md: -------------------------------------------------------------------------------- 1 | # Version 2020.3 2 | Upstream version 2020c released 2020-10-16T18:15:53+00:00 3 | 4 | ## Briefly: 5 | 6 | Fiji starts DST later than usual, on 2020-12-20. 7 | 8 | ## Changes to future timestamps 9 | 10 | Fiji will start DST on 2020-12-20, instead of 2020-11-08 as previously 11 | predicted. DST will still end on 2021-01-17. (Thanks to Raymond Kumar and Alan 12 | Mintz.) Assume for now that the later-than-usual start date is a one-time 13 | departure from the recent pattern. 14 | -------------------------------------------------------------------------------- /news.d/2020d.md: -------------------------------------------------------------------------------- 1 | # Version 2020.4 2 | Upstream version 2020d released 2020-10-21T18:24:13+00:00 3 | 4 | ## Briefly: 5 | 6 | Palestine ends DST earlier than predicted, on 2020-10-24. 7 | 8 | ## Changes to past and future timestamps 9 | 10 | Palestine ends DST on 2020-10-24 at 01:00, instead of 2020-10-31 as previously 11 | predicted (thanks to Sharef Mustafa.) Its 2019-10-26 fall-back was at 00:00, 12 | not 01:00 (thanks to Steffen Thorsen.) Its 2015-10-23 transition was at 01:00 13 | not 00:00, and its spring 2020 transition was on March 28 at 00:00, not March 27 14 | (thanks to Pierre Cashon.) This affects Asia/Gaza and Asia/Hebron. Assume 15 | future spring and fall transitions will be on the Saturday preceding the last 16 | Sunday of March and October, respectively. -------------------------------------------------------------------------------- /news.d/2020e.md: -------------------------------------------------------------------------------- 1 | # Version 2020.5 2 | Upstream version 2020e released 2020-12-22T23:14:34+00:00 3 | 4 | ## Briefly: 5 | 6 | Volgograd switches to Moscow time on 2020-12-27 at 02:00. 7 | 8 | ## Changes to future timestamps 9 | 10 | Volgograd changes time zone from +04 to +03 on 2020-12-27 at 02:00. (Thanks to 11 | Alexander Krivenyshev and Stepan Golosunov.) 12 | 13 | ## Changes to past timestamps 14 | 15 | Correct many pre-1986 transitions, fixing entries originally derived from 16 | Shanks. The fixes include: 17 | 18 | - Australia: several 1917 through 1971 transitions 19 | - Bahamas: several 1941 through 1945 transitions 20 | - Bermuda: several 1917 through 1956 transitions 21 | - Belize: several 1942 through 1968 transitions 22 | - Ghana: several 1915 through 1956 transitions 23 | - Israel and Palestine: several 1940 through 1985 transitions 24 | - Kenya and adjacent: several 1908 through 1960 transitions 25 | - Nigeria and adjacent: correcting LMT in Lagos, and several 1905 through 1919 transitions 26 | - Seychelles: the introduction of standard time in 1907, not 1906 27 | - Vanuatu: DST in 1973-1974, and a corrected 1984 transition 28 | 29 | (Thanks to P Chan.) 30 | 31 | Because of the Australia change, Australia/Currie (King Island) is no longer 32 | needed, as it is identical to Australia/Hobart for all timestamps since 1970 and 33 | was therefore created by mistake. Australia/Currie has been moved to the 34 | 'backward' file and its corrected data moved to the 'backzone' file. 35 | 36 | ## Changes to past time zone abbreviations and DST flags 37 | 38 | To better match legislation in Turks and Caicos, the 2015 shift to year-round 39 | observance of -04 is now modeled as AST throughout before returning to Eastern 40 | Time with US DST in 2018, rather than as maintaining EDT until 2015-11-01. 41 | (Thanks to P Chan.) 42 | 43 | ## Changes to documentation 44 | 45 | The zic man page now documents zic's coalescing of transitions when a zone falls 46 | back just before DST springs forward. 47 | -------------------------------------------------------------------------------- /news.d/2020f.md: -------------------------------------------------------------------------------- 1 | # Version 2020.6 2 | Upstream version 2020f released 2020-12-29T08:17:46+00:00 3 | 4 | ## Change to build procedure 5 | 6 | 'make rearguard_tarballs' no longer generates a bad rearguard.zi, fixing a 2020e 7 | bug. (Problem reported by Deborah Goldsmith.) -------------------------------------------------------------------------------- /news.d/2021a.md: -------------------------------------------------------------------------------- 1 | # Version 2021.1 2 | Upstream version 2021a released 2021-01-24T18:54:57+00:00 3 | 4 | ## Changes to future timestamps 5 | 6 | South Sudan changes from +03 to +02 on 2021-02-01 at 00:00. (Thanks to Steffen 7 | Thorsen.) -------------------------------------------------------------------------------- /news.d/2021b.md: -------------------------------------------------------------------------------- 1 | # Version 2021.2 2 | Upstream version 2021b released 2021-09-24T23:23:00+00:00 3 | 4 | ## Briefly: 5 | 6 | This is an intermediate release that cherry-picks only the changes to Jordan and 7 | Samoa's DST. It will not match upstream 2021b, which includes many other 8 | changes. 9 | 10 | ## Changes to future timestamps 11 | 12 | Jordan now starts DST on February's last Thursday. (Thanks to Steffen Thorsen.) 13 | 14 | Samoa no longer observes DST. (Thanks to Geoffrey D. Bennett.) -------------------------------------------------------------------------------- /news.d/2021c.md: -------------------------------------------------------------------------------- 1 | # Version 2021.3 2 | Upstream version 2021c released 2021-10-01T21:21:49+00:00 3 | 4 | ## Briefly: 5 | 6 | Revert most 2021b changes to 'backward'. Fix 'zic -b fat' bug in pre-1970 32-bit 7 | data. Fix two Link line typos. Distribute SECURITY file. 8 | 9 | This release is intended as a bugfix release, to fix compatibility problems and 10 | typos reported since 2021b was released. 11 | 12 | ## Changes to Link directives 13 | 14 | Revert almost all of 2021b's changes to the 'backward' file, by moving Link 15 | directives back to where they were in 2021a. Although 'zic' doesn't care which 16 | source file contains a Link directive, some downstream uses ran into trouble 17 | with the move. (Problem reported by Stephen Colebourne for Joda-Time.) 18 | 19 | Fix typo that linked Atlantic/Jan_Mayen to the wrong location (problem reported 20 | by Chris Walton). 21 | 22 | Fix 'backzone' typo that linked America/Virgin to the wrong location (problem 23 | reported by Michael Deckers). 24 | 25 | ## Changes to documentation 26 | 27 | Distribute the SECURITY file (problem reported by Andreas Radke). -------------------------------------------------------------------------------- /news.d/2021d.md: -------------------------------------------------------------------------------- 1 | # Version 2021.4 2 | Upstream version 2021d released 2021-10-15T20:48:18+00:00 3 | 4 | ## Briefly: 5 | 6 | Fiji suspends DST for the 2021/2022 season. 'zic -r' marks unspecified 7 | timestamps with "-00". 8 | 9 | ## Changes to future timestamps 10 | 11 | Fiji will suspend observance of DST for the 2021/2022 season. Assume for now 12 | that it will return next year. (Thanks to Jashneel Kumar and P Chan.) -------------------------------------------------------------------------------- /news.d/2021e.md: -------------------------------------------------------------------------------- 1 | # Version 2021.5 2 | Upstream version 2021e released 2021-10-22T01:41:00+00:00 3 | 4 | ## Changes to future timestamps 5 | 6 | Palestine will fall back 10-29 (not 10-30) at 01:00. (Thanks to P Chan and Heba 7 | Hemad.) -------------------------------------------------------------------------------- /news.d/2022a.md: -------------------------------------------------------------------------------- 1 | # Version 2022.1 2 | Upstream version 2022a released 2022-03-16T06:02:01+00:00 3 | 4 | ## Briefly: 5 | 6 | Palestine will spring forward on 2022-03-27, not -03-26. zdump -v now outputs 7 | better failure indications. Bug fixes for code that reads corrupted TZif data. 8 | 9 | ## Changes to future timestamps 10 | 11 | Palestine will spring forward on 2022-03-27, not 2022-03-26. (Thanks to Heba 12 | Hamad.) Predict future transitions for first Sunday >= March 25. Additionally, 13 | predict fallbacks to be the first Friday on or after October 23, not October's 14 | last Friday, to be more consistent with recent practice. The first differing 15 | fallback prediction is on 2025-10-24, not 2025-10-31. 16 | 17 | ## Changes to past timestamps 18 | 19 | From 1992 through spring 1996, Ukraine's DST transitions were at 02:00 standard 20 | time, not at 01:00 UTC. (Thanks to Alois Treindl.) 21 | 22 | Chile's Santiago Mean Time and its LMT precursor have been adjusted eastward by 23 | 1 second to align with past and present law. 24 | 25 | ## Changes to commentary 26 | 27 | Add several references for Chile's 1946/1947 transitions, some of which only 28 | affected portions of the country. -------------------------------------------------------------------------------- /news.d/2022c.md: -------------------------------------------------------------------------------- 1 | # Version 2022.3 2 | Upstream version 2022c released 2022-08-16T00:47:18+00:00 3 | 4 | ## Briefly: 5 | 6 | Work around awk bug in FreeBSD, macOS, etc. Improve tzselect on intercontinental 7 | Zones. -------------------------------------------------------------------------------- /news.d/2022d.md: -------------------------------------------------------------------------------- 1 | # Version 2022.4 2 | Upstream version 2022d released 2022-09-23T19:02:57+00:00 3 | 4 | ## Briefly: 5 | 6 | Palestine transitions are now Saturdays at 02:00. Simplify three Ukraine zones 7 | into one. 8 | 9 | ## Changes to future timestamps 10 | 11 | Palestine now springs forward and falls back at 02:00 on the first Saturday on 12 | or after March 24 and October 24, respectively. This means 2022 falls back 10-29 13 | at 02:00, not 10-28 at 01:00. (Thanks to Heba Hamad.) 14 | 15 | ## Changes to past timestamps 16 | 17 | Simplify three Ukraine zones to one, since the post-1970 differences seem to 18 | have been imaginary. Move Europe/Uzhgorod and Europe/Zaporozhye to 'backzone'; 19 | backward-compatibility links still work, albeit with different timestamps before 20 | October 1991. -------------------------------------------------------------------------------- /news.d/2022e.md: -------------------------------------------------------------------------------- 1 | # Version 2022.5 2 | Upstream version 2022e released 2022-10-11T18:13:02+00:00 3 | 4 | ## Briefly: 5 | 6 | Jordan and Syria switch from +02/+03 with DST to year-round +03. 7 | 8 | ## Changes to future timestamps 9 | 10 | Jordan and Syria are abandoning the DST regime and are changing to permanent 11 | +03, so they will not fall back from +03 to +02 on 2022-10-28. (Thanks to 12 | Steffen Thorsen and Issam Al-Zuwairi.) 13 | 14 | ## Changes to past timestamps 15 | 16 | On 1922-01-01 Tijuana adopted standard time at 00:00, not 01:00. 17 | 18 | ## Changes to past time zone abbreviations and DST flags 19 | 20 | The temporary advancement of clocks in central Mexico in summer 1931 is now 21 | treated as daylight saving time, instead of as two changes to standard time. -------------------------------------------------------------------------------- /news.d/2022f.md: -------------------------------------------------------------------------------- 1 | # Version 2022.6 2 | Upstream version 2022f released 2022-10-29T01:04:57+00:00 3 | 4 | ## Briefly: 5 | 6 | Mexico will no longer observe DST except near the US border. Chihuahua moves to 7 | year-round -06 on 2022-10-30. Fiji no longer observes DST. Move links to 8 | 'backward'. In vanguard form, GMT is now a Zone and Etc/GMT a link. zic now 9 | supports links to links, and vanguard form uses this. Simplify four Ontario 10 | zones. Fix a Y2438 bug when reading TZif data. Enable 64-bit time_t on 32-bit 11 | glibc platforms. Omit large-file support when no longer needed. In C code, use 12 | some C23 features if available. Remove no-longer-needed workaround for Qt bug 13 | 53071. 14 | 15 | ## Changes to future timestamps. 16 | 17 | Mexico will no longer observe DST after 2022, except for areas near the US 18 | border that continue to observe US DST rules. On 2022-10-30 at 02:00 the Mexican 19 | state of Chihuahua moves from -07 (-06 with DST) to year-round -06, thus not 20 | changing its clocks that day. The new law states that Chihuahua near the US 21 | border no longer observes US DST. 22 | 23 | Fiji will not observe DST in 2022/3. (Thanks to Shalvin Narayan.) For now, 24 | assume DST is suspended indefinitely. 25 | 26 | ## Changes to data 27 | 28 | Move links to 'backward' to ease and simplify link maintenance. This affects 29 | generated data only if you use 'make BACKWARD='. 30 | 31 | GMT is now a Zone and Etc/GMT a link instead of vice versa, as GMT is needed for 32 | leap second support whereas Etc/GMT is not. However, this change exposes a bug 33 | in TZUpdater 2.3.2 so it is present only in vanguard form for now. 34 | 35 | Vanguard form now uses links to links, as zic now supports this. 36 | 37 | ## Changes to past timestamps 38 | 39 | Simplify four Ontario zones, as most of the post-1970 differences seem to have 40 | been imaginary. (Problem reported by Chris Walton.) Move America/Nipigon, 41 | America/Rainy_River, and America/Thunder_Bay to 'backzone'; backward- 42 | compatibility links still work, albeit with some different timestamps before 43 | November 2005. -------------------------------------------------------------------------------- /news.d/2022g.md: -------------------------------------------------------------------------------- 1 | # Version 2022.7 2 | Upstream version 2022g released 2022-11-29T16:58:31+00:00 3 | 4 | ## Briefly: 5 | 6 | The northern edge of Chihuahua changes to US timekeeping. Much of Greenland 7 | stops changing clocks after March 2023. Fix some pre-1996 timestamps in northern 8 | Canada. C89 is now deprecated; please use C99 or later. Portability fixes for 9 | AIX, libintl, MS-Windows, musl, z/OS In C code, use more C23 features if 10 | available. C23 timegm now supported by default Fixes for unlikely integer 11 | overflows 12 | 13 | ## Changes to future timestamps 14 | 15 | In the Mexican state of Chihuahua, the border strip near the US will change to 16 | agree with nearby US locations on 2022-11-30. The strip's western part, 17 | represented by Ciudad Juárez, switches from -06 all year to -07/-06 with US DST 18 | rules, like El Paso, TX. The eastern part, represented by Ojinaga, will observe 19 | US DST next year, like Presidio, TX. (Thanks to Heitor David Pinto.) A new Zone 20 | America/Ciudad_Juarez splits from America/Ojinaga. 21 | 22 | Much of Greenland, represented by America/Nuuk, stops observing winter time 23 | after March 2023, so its daylight saving time becomes standard time. (Thanks to 24 | Jonas Nyrup and Jürgen Appel.) 25 | 26 | ## Changes to past timestamps 27 | 28 | Changes for pre-1996 northern Canada (thanks to Chris Walton): 29 | 30 | Merge America/Iqaluit and America/Pangnirtung into the former, with a backward 31 | compatibility link for the latter name. There is no good evidence the two 32 | locations differ since 1970. This change affects pre-1996 America/Pangnirtung 33 | timestamps. 34 | 35 | Cambridge Bay, Inuvik, Iqaluit, Rankin Inlet, Resolute and Yellowknife did not 36 | observe DST in 1965, and did observe DST from 1972 through 1979. 37 | 38 | Whitehorse moved from -09 to -08 on 1966-02-27, not 1967-05-28. 39 | 40 | Colombia's 1993 fallback was 02-06 24:00, not 04-04 00:00. (Thanks to Alois 41 | Treindl.) 42 | 43 | Singapore's 1981-12-31 change was at 16:00 UTC (23:30 local time), not 24:00 44 | local time. (Thanks to Geoff Clare via Robert Elz.) -------------------------------------------------------------------------------- /news.d/2023b.md: -------------------------------------------------------------------------------- 1 | # Version 2023.2 2 | Upstream version 2023b released 2023-03-24T02:50:38+00:00 3 | 4 | ## Briefly: 5 | 6 | Lebanon delays the start of DST this year. 7 | 8 | ## Changes to future timestamps 9 | 10 | This year Lebanon springs forward April 20/21 not March 25/26. (Thanks to 11 | Saadallah Itani.) -------------------------------------------------------------------------------- /news.d/2023c.md: -------------------------------------------------------------------------------- 1 | # Version 2023.3 2 | Upstream version 2023c released 2023-03-28T19:42:14+00:00 3 | 4 | ## Changes to past and future timestamps 5 | 6 | Model Lebanon's DST chaos by reverting data to tzdb 2023a. (Thanks to Rany Hany 7 | for the heads-up.) -------------------------------------------------------------------------------- /news.d/2023d.md: -------------------------------------------------------------------------------- 1 | # Version 2023.4 2 | Upstream version 2023d released 2023-12-22T04:02:24+00:00 3 | 4 | ## Briefly: 5 | 6 | Ittoqqortoormiit, Greenland changes time zones on 2024-03-31. Vostok, Antarctica 7 | changed time zones on 2023-12-18. Casey, Antarctica changed time zones five 8 | times since 2020. Code and data fixes for Palestine timestamps starting in 2072. 9 | A new data file zonenow.tab for timestamps starting now. 10 | 11 | ## Changes to future timestamps 12 | 13 | Ittoqqortoormiit, Greenland (America/Scoresbysund) joins most of the rest of 14 | Greenland's timekeeping practice on 2024-03-31, by changing its time zone from 15 | -01/+00 to -02/-01 at the same moment as the spring-forward transition. Its 16 | clocks will therefore not spring forward as previously scheduled. The time zone 17 | change reverts to its common practice before 1981. 18 | 19 | Fix predictions for DST transitions in Palestine in 2072-2075, correcting a typo 20 | introduced in 2023a. 21 | 22 | ## Changes to past and future timestamps 23 | 24 | Vostok, Antarctica changed to +05 on 2023-12-18. It had been at +07 (not +06) 25 | for years. (Thanks to Zakhary V. Akulov.) 26 | 27 | Change data for Casey, Antarctica to agree with timeanddate.com, by adding five 28 | time zone changes since 2020. Casey is now at +08 instead of +11. 29 | 30 | ## Changes to past tm_isdst flags 31 | 32 | Much of Greenland, represented by America/Nuuk, changed its standard time from 33 | -03 to -02 on 2023-03-25, not on 2023-10-28. This does not affect UTC offsets, 34 | only the tm_isdst flag. (Thanks to Thomas M. Steenholdt.) 35 | 36 | ## New data file 37 | 38 | A new data file zonenow.tab helps configure applications that use timestamps 39 | dated from now on. This simplifies configuration, since users choose from a 40 | smaller Zone set. The file's format is experimental and subject to change. 41 | 42 | ## Changes to commentary 43 | 44 | Limitations and hazards of the optional support for obsolescent C89 platforms 45 | are documented better, along with a tentative schedule for removing this 46 | support. -------------------------------------------------------------------------------- /news.d/2024a.md: -------------------------------------------------------------------------------- 1 | # Version 2024.1 2 | Upstream version 2024a released 2024-02-01T17:28:56+00:00 3 | 4 | ## Briefly: 5 | 6 | Kazakhstan unifies on UTC+5 beginning 2024-03-01. Palestine springs forward a 7 | week later after Ramadan. zic no longer pretends to support indefinite-past DST. 8 | localtime no longer mishandles Ciudad Juárez in 2422. 9 | 10 | ## Changes to future timestamps 11 | 12 | Kazakhstan unifies on UTC+5. This affects Asia/Almaty and Asia/Qostanay which 13 | together represent the eastern portion of the country that will transition from 14 | UTC+6 on 2024-03-01 at 00:00 to join the western portion. (Thanks to Zhanbolat 15 | Raimbekov.) 16 | 17 | Palestine springs forward a week later than previously predicted in 2024 and 18 | 2025. (Thanks to Heba Hamad.) Change spring-forward predictions to the second 19 | Saturday after Ramadan, not the first; this also affects other predictions 20 | starting in 2039. 21 | 22 | ## Changes to past timestamps 23 | 24 | Asia/Ho_Chi_Minh's 1955-07-01 transition occurred at 01:00 not 00:00. (Thanks 25 | to Đoàn Trần Công Danh.) 26 | 27 | From 1947 through 1949, Toronto's transitions occurred at 02:00 not 00:00. 28 | (Thanks to Chris Walton.) 29 | 30 | In 1911 Miquelon adopted standard time on June 15, not May 15. 31 | 32 | ## Changes to documentation 33 | 34 | The strftime man page documents which struct tm members affect which conversion 35 | specs, and that tzset is called. (Problems reported by Robert Elz and Steve 36 | Summit.) -------------------------------------------------------------------------------- /news.d/2025a.md: -------------------------------------------------------------------------------- 1 | # Version 2025.1 2 | Upstream version 2025a released 2025-01-15T18:47:24+00:00 3 | 4 | ## Briefly: 5 | 6 | Paraguay adopts permanent -03 starting spring 2024. Improve pre-1991 data for 7 | the Philippines. Etc/Unknown is now reserved. 8 | 9 | ## Changes to future timestamps 10 | 11 | Paraguay will stop changing its clocks after the spring-forward transition on 12 | 2024-10-06, so it is now permanently at -03. (Thanks to Heitor David Pinto and 13 | Even Scharning.) This affects timestamps starting 2025-03-22, as well as the 14 | obsolescent tm_isdst flags starting 2024-10-15. 15 | 16 | ## Changes to past timestamps 17 | 18 | Correct timestamps for the Philippines before 1900, and from 1937 through 1990. 19 | (Thanks to P Chan for the heads-up and citations.) This includes adjusting local 20 | mean time before 1899; fixing transitions in September 1899, January 1937, and 21 | June 1954; adding transitions in December 1941, November 1945, March and 22 | September 1977, and May and July 1990; and removing incorrect transitions in 23 | March and September 1978. 24 | 25 | ## Changes to data 26 | 27 | Add zone1970.tab lines for the Concordia and Eyre Bird Observatory research 28 | stations. (Thanks to Derick Rethans and Jule Dabars.) 29 | 30 | ## Changes to documentation 31 | 32 | The name Etc/Unknown is now reserved: it will not be used by TZDB. This is for 33 | compatibility with CLDR, which uses the string "Etc/Unknown" for an unknown or 34 | invalid timezone. (Thanks to Justin Grant, Mark Davis, and Guy Harris.) 35 | 36 | Cite Internet RFC 9636, which obsoletes RFC 8536 for TZif format. -------------------------------------------------------------------------------- /news.d/2025b.md: -------------------------------------------------------------------------------- 1 | # Version 2025.2 2 | Upstream version 2025b released 2025-03-22T20:40:46+00:00 3 | 4 | ## Briefly: 5 | 6 | New zone for Aysén Region in Chile which moves from -04/-03 to -03. 7 | 8 | ## Changes to future timestamps 9 | 10 | Chile's Aysén Region moves from -04/-03 to -03 year-round, joining Magallanes 11 | Region. The region will not change its clocks on 2025-04-05 at 24:00, diverging 12 | from America/Santiago and creating a new zone America/Coyhaique. (Thanks to 13 | Yonathan Dossow.) Model this as a change to standard offset effective 14 | 2025-03-20. 15 | 16 | ## Changes to past timestamps 17 | 18 | Iran switched from +04 to +0330 on 1978-11-10 at 24:00, not at year end. 19 | (Thanks to Roozbeh Pournader.) -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["setuptools>=40.8.0", "wheel"] 3 | build-backend = "setuptools.build_meta" 4 | 5 | [tool.isort] 6 | atomic=true 7 | force_grid_wrap=0 8 | include_trailing_comma=true 9 | known_first_party=["tzdata"] 10 | extra_standard_library=["zoneinfo"] 11 | known_third_party=["click", "parver", "pytest", "requests"] 12 | multi_line_output=3 13 | use_parentheses=true 14 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | name = tzdata 3 | version = file: VERSION 4 | description = Provider of IANA time zone data 5 | long_description = file: README.rst 6 | long_description_content_type = text/x-rst 7 | url = https://github.com/python/tzdata 8 | author = Python Software Foundation 9 | author_email = datetime-sig@python.org 10 | license = Apache-2.0 11 | license_files = 12 | LICENSE 13 | licenses/LICENSE_APACHE 14 | classifiers = 15 | Development Status :: 4 - Beta 16 | Intended Audience :: Developers 17 | License :: OSI Approved :: Apache Software License 18 | Programming Language :: Python :: 2 19 | Programming Language :: Python :: 3 20 | project_urls = 21 | Bug Reports = https://github.com/python/tzdata/issues 22 | Source = https://github.com/python/tzdata 23 | Documentation = https://tzdata.readthedocs.io 24 | 25 | [options] 26 | packages = tzdata 27 | python_requires = >=2 28 | include_package_data = True 29 | package_dir = 30 | =src 31 | 32 | [bdist_wheel] 33 | universal = 1 34 | -------------------------------------------------------------------------------- /src/tzdata/__init__.py: -------------------------------------------------------------------------------- 1 | # IANA versions like 2020a are not valid PEP 440 identifiers; the recommended 2 | # way to translate the version is to use YYYY.n where `n` is a 0-based index. 3 | __version__ = "2025.2" 4 | 5 | # This exposes the original IANA version number. 6 | IANA_VERSION = "2025b" 7 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Abidjan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Abidjan -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Accra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Accra -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Addis_Ababa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Addis_Ababa -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Algiers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Algiers -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Asmara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Asmara -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Asmera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Asmera -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Bamako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Bamako -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Bangui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Bangui -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Banjul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Banjul -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Bissau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Bissau -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Blantyre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Blantyre -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Brazzaville: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Brazzaville -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Bujumbura: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Bujumbura -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Cairo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Casablanca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Casablanca -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Ceuta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Ceuta -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Conakry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Conakry -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Dakar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Dakar -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Dar_es_Salaam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Dar_es_Salaam -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Djibouti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Djibouti -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Douala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Douala -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/El_Aaiun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/El_Aaiun -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Freetown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Freetown -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Gaborone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Gaborone -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Harare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Harare -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Johannesburg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Johannesburg -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Juba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Juba -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Kampala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Kampala -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Khartoum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Khartoum -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Kigali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Kigali -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Kinshasa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Kinshasa -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Lagos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Lagos -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Libreville: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Libreville -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Lome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Lome -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Luanda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Luanda -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Lubumbashi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Lubumbashi -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Lusaka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Lusaka -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Malabo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Malabo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Maputo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Maputo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Maseru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Maseru -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Mbabane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Mbabane -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Mogadishu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Mogadishu -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Monrovia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Monrovia -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Nairobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Nairobi -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Ndjamena: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Ndjamena -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Niamey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Niamey -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Nouakchott: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Nouakchott -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Ouagadougou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Ouagadougou -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Porto-Novo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Porto-Novo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Sao_Tome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Sao_Tome -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Timbuktu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Timbuktu -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Tripoli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Tripoli -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Tunis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Tunis -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/Windhoek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/Windhoek -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Africa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Africa/__init__.py -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Adak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Adak -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Anchorage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Anchorage -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Anguilla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Anguilla -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Antigua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Antigua -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Araguaina: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Araguaina -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/Buenos_Aires: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Argentina/Buenos_Aires -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/Catamarca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Argentina/Catamarca -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/ComodRivadavia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Argentina/ComodRivadavia -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/Cordoba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Argentina/Cordoba -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/Jujuy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Argentina/Jujuy -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/La_Rioja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Argentina/La_Rioja -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/Mendoza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Argentina/Mendoza -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/Rio_Gallegos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Argentina/Rio_Gallegos -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/Salta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Argentina/Salta -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/San_Juan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Argentina/San_Juan -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/San_Luis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Argentina/San_Luis -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/Tucuman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Argentina/Tucuman -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/Ushuaia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Argentina/Ushuaia -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Argentina/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Argentina/__init__.py -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Aruba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Aruba -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Asuncion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Asuncion -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Atikokan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Atikokan -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Atka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Atka -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Bahia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Bahia -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Bahia_Banderas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Bahia_Banderas -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Barbados: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Barbados -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Belem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Belem -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Belize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Belize -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Blanc-Sablon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Blanc-Sablon -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Boa_Vista: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Boa_Vista -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Bogota: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Bogota -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Boise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Boise -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Buenos_Aires: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Buenos_Aires -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Cambridge_Bay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Cambridge_Bay -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Campo_Grande: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Campo_Grande -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Cancun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Cancun -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Caracas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Caracas -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Catamarca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Catamarca -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Cayenne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Cayenne -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Cayman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Cayman -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Chicago: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Chicago -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Chihuahua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Chihuahua -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Ciudad_Juarez: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Ciudad_Juarez -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Coral_Harbour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Coral_Harbour -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Cordoba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Cordoba -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Costa_Rica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Costa_Rica -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Coyhaique: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Coyhaique -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Creston: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Creston -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Cuiaba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Cuiaba -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Curacao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Curacao -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Danmarkshavn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Danmarkshavn -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Dawson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Dawson -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Dawson_Creek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Dawson_Creek -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Denver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Denver -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Detroit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Detroit -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Dominica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Dominica -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Edmonton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Edmonton -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Eirunepe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Eirunepe -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/El_Salvador: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/El_Salvador -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Ensenada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Ensenada -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Fort_Nelson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Fort_Nelson -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Fort_Wayne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Fort_Wayne -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Fortaleza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Fortaleza -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Glace_Bay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Glace_Bay -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Godthab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Godthab -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Goose_Bay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Goose_Bay -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Grand_Turk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Grand_Turk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Grenada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Grenada -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Guadeloupe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Guadeloupe -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Guatemala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Guatemala -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Guayaquil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Guayaquil -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Guyana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Guyana -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Halifax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Halifax -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Havana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Havana -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Hermosillo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Hermosillo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Indiana/Indianapolis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Indiana/Indianapolis -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Indiana/Knox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Indiana/Knox -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Indiana/Marengo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Indiana/Marengo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Indiana/Petersburg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Indiana/Petersburg -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Indiana/Tell_City: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Indiana/Tell_City -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Indiana/Vevay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Indiana/Vevay -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Indiana/Vincennes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Indiana/Vincennes -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Indiana/Winamac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Indiana/Winamac -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Indiana/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Indiana/__init__.py -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Indianapolis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Indianapolis -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Inuvik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Inuvik -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Iqaluit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Iqaluit -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Jamaica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Jamaica -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Jujuy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Jujuy -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Juneau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Juneau -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Kentucky/Louisville: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Kentucky/Louisville -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Kentucky/Monticello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Kentucky/Monticello -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Kentucky/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Kentucky/__init__.py -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Knox_IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Knox_IN -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Kralendijk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Kralendijk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/La_Paz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/La_Paz -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Lima: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Lima -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Los_Angeles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Los_Angeles -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Louisville: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Louisville -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Lower_Princes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Lower_Princes -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Maceio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Maceio -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Managua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Managua -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Manaus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Manaus -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Marigot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Marigot -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Martinique: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Martinique -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Matamoros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Matamoros -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Mazatlan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Mazatlan -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Mendoza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Mendoza -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Menominee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Menominee -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Merida: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Merida -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Metlakatla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Metlakatla -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Mexico_City: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Mexico_City -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Miquelon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Miquelon -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Moncton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Moncton -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Monterrey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Monterrey -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Montevideo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Montevideo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Montreal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Montreal -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Montserrat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Montserrat -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Nassau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Nassau -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/New_York: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/New_York -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Nipigon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Nipigon -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Nome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Nome -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Noronha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Noronha -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/North_Dakota/Beulah: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/North_Dakota/Beulah -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/North_Dakota/Center: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/North_Dakota/Center -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/North_Dakota/New_Salem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/North_Dakota/New_Salem -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/North_Dakota/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/North_Dakota/__init__.py -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Nuuk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Nuuk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Ojinaga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Ojinaga -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Panama: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Panama -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Pangnirtung: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Pangnirtung -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Paramaribo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Paramaribo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Phoenix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Phoenix -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Port-au-Prince: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Port-au-Prince -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Port_of_Spain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Port_of_Spain -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Porto_Acre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Porto_Acre -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Porto_Velho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Porto_Velho -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Puerto_Rico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Puerto_Rico -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Punta_Arenas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Punta_Arenas -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Rainy_River: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Rainy_River -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Rankin_Inlet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Rankin_Inlet -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Recife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Recife -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Regina: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Regina -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Resolute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Resolute -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Rio_Branco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Rio_Branco -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Rosario: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Rosario -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Santa_Isabel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Santa_Isabel -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Santarem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Santarem -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Santiago: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Santiago -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Santo_Domingo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Santo_Domingo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Sao_Paulo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Sao_Paulo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Scoresbysund: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Scoresbysund -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Shiprock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Shiprock -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Sitka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Sitka -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/St_Barthelemy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/St_Barthelemy -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/St_Johns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/St_Johns -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/St_Kitts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/St_Kitts -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/St_Lucia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/St_Lucia -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/St_Thomas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/St_Thomas -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/St_Vincent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/St_Vincent -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Swift_Current: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Swift_Current -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Tegucigalpa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Tegucigalpa -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Thule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Thule -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Thunder_Bay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Thunder_Bay -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Tijuana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Tijuana -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Toronto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Toronto -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Tortola: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Tortola -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Vancouver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Vancouver -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Virgin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Virgin -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Whitehorse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Whitehorse -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Winnipeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Winnipeg -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Yakutat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Yakutat -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/Yellowknife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/Yellowknife -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/America/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/America/__init__.py -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/Casey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Antarctica/Casey -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/Davis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Antarctica/Davis -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/DumontDUrville: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Antarctica/DumontDUrville -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/Macquarie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Antarctica/Macquarie -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/Mawson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Antarctica/Mawson -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/McMurdo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Antarctica/McMurdo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/Palmer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Antarctica/Palmer -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/Rothera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Antarctica/Rothera -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/South_Pole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Antarctica/South_Pole -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/Syowa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Antarctica/Syowa -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/Troll: -------------------------------------------------------------------------------- 1 | TZif2TZif2B G-00+00 2 | <+00>0<+02>-2,M3.5.0/1,M10.5.0/3 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/Vostok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Antarctica/Vostok -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Antarctica/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Antarctica/__init__.py -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Arctic/Longyearbyen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Arctic/Longyearbyen -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Arctic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Arctic/__init__.py -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Aden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Aden -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Almaty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Almaty -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Amman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Amman -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Anadyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Anadyr -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Aqtau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Aqtau -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Aqtobe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Aqtobe -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Ashgabat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Ashgabat -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Ashkhabad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Ashkhabad -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Atyrau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Atyrau -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Baghdad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Baghdad -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Bahrain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Bahrain -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Baku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Baku -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Bangkok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Bangkok -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Barnaul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Barnaul -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Beirut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Beirut -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Bishkek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Bishkek -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Brunei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Brunei -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Calcutta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Calcutta -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Chita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Chita -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Choibalsan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Choibalsan -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Chongqing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Chongqing -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Chungking: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Chungking -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Colombo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Colombo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Dacca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Dacca -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Damascus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Damascus -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Dhaka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Dhaka -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Dili: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Dili -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Dubai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Dubai -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Dushanbe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Dushanbe -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Famagusta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Famagusta -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Gaza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Gaza -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Harbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Harbin -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Hebron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Hebron -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Ho_Chi_Minh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Ho_Chi_Minh -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Hong_Kong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Hong_Kong -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Hovd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Hovd -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Irkutsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Irkutsk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Istanbul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Istanbul -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Jakarta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Jakarta -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Jayapura: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Jayapura -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Jerusalem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Jerusalem -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Kabul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Kabul -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Kamchatka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Kamchatka -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Karachi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Karachi -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Kashgar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Kashgar -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Kathmandu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Kathmandu -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Katmandu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Katmandu -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Khandyga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Khandyga -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Kolkata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Kolkata -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Krasnoyarsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Krasnoyarsk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Kuala_Lumpur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Kuala_Lumpur -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Kuching: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Kuching -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Kuwait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Kuwait -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Macao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Macao -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Macau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Macau -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Magadan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Magadan -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Makassar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Makassar -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Manila: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Manila -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Muscat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Muscat -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Nicosia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Nicosia -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Novokuznetsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Novokuznetsk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Novosibirsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Novosibirsk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Omsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Omsk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Oral: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Oral -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Phnom_Penh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Phnom_Penh -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Pontianak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Pontianak -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Pyongyang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Pyongyang -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Qatar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Qatar -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Qostanay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Qostanay -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Qyzylorda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Qyzylorda -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Rangoon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Rangoon -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Riyadh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Riyadh -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Saigon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Saigon -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Sakhalin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Sakhalin -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Samarkand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Samarkand -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Seoul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Seoul -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Shanghai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Shanghai -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Singapore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Singapore -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Srednekolymsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Srednekolymsk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Taipei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Taipei -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Tashkent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Tashkent -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Tbilisi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Tbilisi -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Tehran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Tehran -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Tel_Aviv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Tel_Aviv -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Thimbu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Thimbu -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Thimphu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Thimphu -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Tokyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Tokyo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Tomsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Tomsk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Ujung_Pandang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Ujung_Pandang -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Ulaanbaatar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Ulaanbaatar -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Ulan_Bator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Ulan_Bator -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Urumqi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Urumqi -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Ust-Nera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Ust-Nera -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Vientiane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Vientiane -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Vladivostok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Vladivostok -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Yakutsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Yakutsk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Yangon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Yangon -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Yekaterinburg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Yekaterinburg -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/Yerevan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/Yerevan -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Asia/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Asia/__init__.py -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/Azores: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Atlantic/Azores -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/Bermuda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Atlantic/Bermuda -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/Canary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Atlantic/Canary -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/Cape_Verde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Atlantic/Cape_Verde -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/Faeroe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Atlantic/Faeroe -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/Faroe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Atlantic/Faroe -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/Jan_Mayen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Atlantic/Jan_Mayen -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/Madeira: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Atlantic/Madeira -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/Reykjavik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Atlantic/Reykjavik -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/South_Georgia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Atlantic/South_Georgia -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/St_Helena: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Atlantic/St_Helena -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/Stanley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Atlantic/Stanley -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Atlantic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Atlantic/__init__.py -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/ACT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Australia/ACT -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Adelaide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Australia/Adelaide -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Brisbane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Australia/Brisbane -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Broken_Hill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Australia/Broken_Hill -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Canberra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Australia/Canberra -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Currie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Australia/Currie -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Australia/Darwin -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Eucla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Australia/Eucla -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Hobart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Australia/Hobart -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/LHI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Australia/LHI -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Lindeman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Australia/Lindeman -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Lord_Howe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Australia/Lord_Howe -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Melbourne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Australia/Melbourne -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/NSW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Australia/NSW -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/North: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Australia/North -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Perth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Australia/Perth -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Queensland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Australia/Queensland -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/South: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Australia/South -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Sydney: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Australia/Sydney -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Tasmania: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Australia/Tasmania -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Victoria: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Australia/Victoria -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/West: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Australia/West -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/Yancowinna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Australia/Yancowinna -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Australia/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Australia/__init__.py -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Brazil/Acre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Brazil/Acre -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Brazil/DeNoronha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Brazil/DeNoronha -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Brazil/East: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Brazil/East -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Brazil/West: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Brazil/West -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Brazil/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Brazil/__init__.py -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/CET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/CET -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/CST6CDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/CST6CDT -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Canada/Atlantic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Canada/Atlantic -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Canada/Central: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Canada/Central -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Canada/Eastern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Canada/Eastern -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Canada/Mountain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Canada/Mountain -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Canada/Newfoundland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Canada/Newfoundland -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Canada/Pacific: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Canada/Pacific -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Canada/Saskatchewan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Canada/Saskatchewan -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Canada/Yukon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Canada/Yukon -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Canada/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Canada/__init__.py -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Chile/Continental: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Chile/Continental -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Chile/EasterIsland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Chile/EasterIsland -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Chile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Chile/__init__.py -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Cuba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Cuba -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/EET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/EET -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/EST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/EST -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/EST5EDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/EST5EDT -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Egypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Egypt -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Eire -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+0: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Etc/GMT+1 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Etc/GMT+10 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Etc/GMT+11 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Etc/GMT+12 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Etc/GMT+2 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Etc/GMT+3 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Etc/GMT+4 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Etc/GMT+5 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Etc/GMT+6 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Etc/GMT+7 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Etc/GMT+8 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT+9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Etc/GMT+9 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-0: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-1: -------------------------------------------------------------------------------- 1 | TZif2TZif2+01 2 | <+01>-1 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Etc/GMT-10 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Etc/GMT-11 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Etc/GMT-12 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Etc/GMT-13 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Etc/GMT-14 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-2: -------------------------------------------------------------------------------- 1 | TZif2TZif2 +02 2 | <+02>-2 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-3: -------------------------------------------------------------------------------- 1 | TZif2TZif2*0+03 2 | <+03>-3 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-4: -------------------------------------------------------------------------------- 1 | TZif2TZif28@+04 2 | <+04>-4 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-5: -------------------------------------------------------------------------------- 1 | TZif2TZif2FP+05 2 | <+05>-5 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-6: -------------------------------------------------------------------------------- 1 | TZif2TZif2T`+06 2 | <+06>-6 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-7: -------------------------------------------------------------------------------- 1 | TZif2TZif2bp+07 2 | <+07>-7 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Etc/GMT-8 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT-9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Etc/GMT-9 -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/GMT0: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/Greenwich: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/UCT: -------------------------------------------------------------------------------- 1 | TZif2TZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/UTC: -------------------------------------------------------------------------------- 1 | TZif2TZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/Universal: -------------------------------------------------------------------------------- 1 | TZif2TZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/Zulu: -------------------------------------------------------------------------------- 1 | TZif2TZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Etc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Etc/__init__.py -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Amsterdam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Amsterdam -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Andorra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Andorra -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Astrakhan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Astrakhan -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Athens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Athens -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Belfast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Belfast -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Belgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Belgrade -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Berlin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Berlin -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Bratislava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Bratislava -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Brussels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Brussels -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Bucharest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Bucharest -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Budapest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Budapest -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Busingen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Busingen -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Chisinau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Chisinau -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Copenhagen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Copenhagen -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Dublin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Dublin -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Gibraltar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Gibraltar -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Guernsey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Guernsey -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Helsinki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Helsinki -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Isle_of_Man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Isle_of_Man -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Istanbul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Istanbul -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Jersey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Jersey -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Kaliningrad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Kaliningrad -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Kiev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Kiev -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Kirov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Kirov -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Kyiv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Kyiv -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Lisbon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Lisbon -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Ljubljana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Ljubljana -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/London: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/London -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Luxembourg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Luxembourg -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Madrid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Madrid -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Malta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Malta -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Mariehamn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Mariehamn -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Minsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Minsk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Monaco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Monaco -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Moscow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Moscow -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Nicosia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Nicosia -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Oslo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Oslo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Paris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Paris -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Podgorica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Podgorica -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Prague: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Prague -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Riga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Riga -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Rome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Rome -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Samara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Samara -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/San_Marino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/San_Marino -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Sarajevo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Sarajevo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Saratov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Saratov -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Simferopol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Simferopol -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Skopje: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Skopje -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Sofia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Sofia -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Stockholm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Stockholm -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Tallinn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Tallinn -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Tirane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Tirane -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Tiraspol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Tiraspol -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Ulyanovsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Ulyanovsk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Uzhgorod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Uzhgorod -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Vaduz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Vaduz -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Vatican: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Vatican -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Vienna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Vienna -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Vilnius: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Vilnius -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Volgograd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Volgograd -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Warsaw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Warsaw -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Zagreb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Zagreb -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Zaporozhye: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Zaporozhye -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/Zurich: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/Zurich -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Europe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Europe/__init__.py -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Factory: -------------------------------------------------------------------------------- 1 | TZif2TZif2-00 2 | <-00>0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/GB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/GB -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/GB-Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/GB-Eire -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/GMT: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/GMT+0: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/GMT-0: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/GMT0: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Greenwich: -------------------------------------------------------------------------------- 1 | TZif2TZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/HST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/HST -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Hongkong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Hongkong -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Iceland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Iceland -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Indian/Antananarivo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Indian/Antananarivo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Indian/Chagos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Indian/Chagos -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Indian/Christmas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Indian/Christmas -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Indian/Cocos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Indian/Cocos -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Indian/Comoro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Indian/Comoro -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Indian/Kerguelen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Indian/Kerguelen -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Indian/Mahe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Indian/Mahe -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Indian/Maldives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Indian/Maldives -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Indian/Mauritius: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Indian/Mauritius -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Indian/Mayotte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Indian/Mayotte -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Indian/Reunion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Indian/Reunion -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Indian/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Indian/__init__.py -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Iran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Iran -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Israel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Israel -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Jamaica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Jamaica -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Japan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Japan -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Kwajalein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Kwajalein -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Libya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Libya -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/MET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/MET -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/MST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/MST -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/MST7MDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/MST7MDT -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Mexico/BajaNorte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Mexico/BajaNorte -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Mexico/BajaSur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Mexico/BajaSur -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Mexico/General: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Mexico/General -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Mexico/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Mexico/__init__.py -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/NZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/NZ -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/NZ-CHAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/NZ-CHAT -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Navajo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Navajo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/PRC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/PRC -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/PST8PDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/PST8PDT -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Apia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Apia -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Auckland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Auckland -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Bougainville: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Bougainville -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Chatham: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Chatham -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Chuuk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Chuuk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Easter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Easter -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Efate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Efate -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Enderbury: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Enderbury -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Fakaofo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Fakaofo -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Fiji: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Fiji -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Funafuti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Funafuti -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Galapagos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Galapagos -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Gambier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Gambier -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Guadalcanal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Guadalcanal -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Guam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Guam -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Honolulu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Honolulu -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Johnston: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Johnston -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Kanton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Kanton -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Kiritimati: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Kiritimati -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Kosrae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Kosrae -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Kwajalein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Kwajalein -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Majuro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Majuro -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Marquesas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Marquesas -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Midway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Midway -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Nauru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Nauru -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Niue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Niue -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Norfolk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Norfolk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Noumea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Noumea -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Pago_Pago: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Pago_Pago -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Palau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Palau -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Pitcairn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Pitcairn -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Pohnpei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Pohnpei -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Ponape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Ponape -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Port_Moresby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Port_Moresby -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Rarotonga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Rarotonga -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Saipan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Saipan -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Samoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Samoa -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Tahiti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Tahiti -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Tarawa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Tarawa -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Tongatapu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Tongatapu -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Truk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Truk -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Wake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Wake -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Wallis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Wallis -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/Yap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/Yap -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Pacific/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Pacific/__init__.py -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Poland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Poland -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Portugal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Portugal -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/ROC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/ROC -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/ROK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/ROK -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Singapore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Singapore -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Turkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/Turkey -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/UCT: -------------------------------------------------------------------------------- 1 | TZif2TZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/Alaska: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/US/Alaska -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/Aleutian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/US/Aleutian -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/Arizona: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/US/Arizona -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/Central: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/US/Central -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/East-Indiana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/US/East-Indiana -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/Eastern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/US/Eastern -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/Hawaii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/US/Hawaii -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/Indiana-Starke: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/US/Indiana-Starke -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/Michigan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/US/Michigan -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/Mountain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/US/Mountain -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/Pacific: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/US/Pacific -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/Samoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/US/Samoa -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/US/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/US/__init__.py -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/UTC: -------------------------------------------------------------------------------- 1 | TZif2TZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Universal: -------------------------------------------------------------------------------- 1 | TZif2TZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/W-SU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/W-SU -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/WET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/WET -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/Zulu: -------------------------------------------------------------------------------- 1 | TZif2TZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /src/tzdata/zoneinfo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python/tzdata/b6ab832c0171af80d8829ab2af3f786b57848335/src/tzdata/zoneinfo/__init__.py -------------------------------------------------------------------------------- /tag_release.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | set -e 3 | VERSION=$(='3.6' 11 | importlib_resources; python_version<'3.7' 12 | commands = 13 | pytest {toxinidir} {posargs} 14 | 15 | [testenv:precommit] 16 | description = Run the pre-commit hooks on all files 17 | deps = 18 | pre-commit 19 | commands = 20 | pre-commit install -f --install-hooks 21 | pre-commit run --all-files 22 | 23 | [testenv:update] 24 | description = Update the tzdata contents 25 | skip_install = True 26 | deps = 27 | requests 28 | click 29 | parver 30 | commands = 31 | python update.py {posargs} 32 | 33 | [testenv:bump] 34 | description = Bump the current package version 35 | skip_install = True 36 | deps = 37 | parver 38 | commands = 39 | python bump_version.py {posargs} 40 | 41 | [testenv:typing] 42 | description = Run typechecking 43 | skip_install = True 44 | deps = 45 | mypy 46 | parver 47 | types-requests 48 | types-click 49 | commands = 50 | mypy {posargs} update.py 51 | mypy {posargs} bump_version.py 52 | 53 | [testenv:format] 54 | description = Run auto formatters 55 | skip_install = True 56 | deps = 57 | black 58 | isort >= 5.0.0 59 | commands = 60 | black . 61 | isort update.py 62 | isort --atomic -rc tests 63 | 64 | [testenv:docs] 65 | description = Build the documentation 66 | deps = 67 | -rdocs/requirements.txt 68 | commands = 69 | sphinx-build -d "{toxworkdir}/docs_doctree" "{toxinidir}/docs" \ 70 | "{toxinidir}/docs/_output" {posargs: -j auto --color -bhtml} 71 | 72 | [testenv:build] 73 | description = Build a wheel and source distribution 74 | skip_install = True 75 | deps = 76 | build 77 | twine 78 | commands = 79 | python -c "from pathlib import Path; \ 80 | [x.unlink(missing_ok=True) for x in Path('{toxinidir}/dist').glob('*')]" 81 | python -m build -o {toxinidir}/dist {toxinidir} 82 | twine check {toxinidir}/dist/* 83 | 84 | [testenv:release] 85 | description = Make a release; must be called after "build" 86 | skip_install = True 87 | deps = 88 | twine 89 | depends = 90 | build 91 | passenv = 92 | TWINE_* 93 | commands = 94 | twine check {toxinidir}/dist/* 95 | twine upload {toxinidir}/dist/* \ 96 | {posargs:-r {env:TWINE_REPOSITORY:testpypi} --non-interactive} 97 | --------------------------------------------------------------------------------